
    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_7f7fbb91e641bc5021284ca8.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_31b88a2d159bc33df2f86c71.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_af13927a4063d2851a8c62b9.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_46fca978f661af1250e33c8d.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f8119aa5b1fce5e1bd03ae40.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.060547;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_d2dc9550e641cdd6e5e71333.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_159f2fdb91eb3f0f4898cf1c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a3f6c8cde141c7187955ff51.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_421b490af4dc9291c261b38b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_dd9407afb101f62439c18ca2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.710449;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_c0acca20c51b863035e5eb65.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_153c5da5b150eeda02db84b7.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.104004;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_1bdce24b1412df5a2d355741.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.690918;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_1cbcd0e5d4c9eeb5415246ab.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.690918;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_023dca2761d5ca2575bbf86f.woff2')format("woff");}.fff{font-family:fff;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m2{transform:matrix(0.249684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249684,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250083,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250321,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-151.200000px;}
.v2{vertical-align:-119.520000px;}
.v8{vertical-align:-83.520000px;}
.v1{vertical-align:-53.400000px;}
.v5{vertical-align:-33.120000px;}
.v6{vertical-align:-8.640000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:8.640000px;}
.v4{vertical-align:33.120000px;}
.ls1c{letter-spacing:-2.880000px;}
.lsd{letter-spacing:-2.736000px;}
.ls2d{letter-spacing:-2.376000px;}
.ls2c{letter-spacing:-2.232000px;}
.ls20{letter-spacing:-2.088000px;}
.ls3c{letter-spacing:-1.944000px;}
.ls14{letter-spacing:-1.800000px;}
.lse{letter-spacing:-1.728000px;}
.ls8{letter-spacing:-1.584000px;}
.lsb{letter-spacing:-1.440000px;}
.ls22{letter-spacing:-1.296000px;}
.ls5{letter-spacing:-1.260000px;}
.ls13{letter-spacing:-1.152000px;}
.lsf{letter-spacing:-1.128000px;}
.ls21{letter-spacing:-1.080000px;}
.ls1f{letter-spacing:-0.936000px;}
.ls32{letter-spacing:-0.792000px;}
.ls3{letter-spacing:-0.720000px;}
.ls37{letter-spacing:-0.648000px;}
.ls2b{letter-spacing:-0.604326px;}
.ls26{letter-spacing:-0.504000px;}
.ls1d{letter-spacing:-0.360000px;}
.ls31{letter-spacing:-0.288000px;}
.ls23{letter-spacing:-0.278084px;}
.ls24{letter-spacing:-0.192177px;}
.ls27{letter-spacing:-0.189022px;}
.ls7{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.ls34{letter-spacing:0.144000px;}
.ls3b{letter-spacing:0.239040px;}
.ls1b{letter-spacing:0.288000px;}
.ls38{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.452400px;}
.ls15{letter-spacing:0.504000px;}
.ls17{letter-spacing:0.648000px;}
.ls1{letter-spacing:0.720000px;}
.ls36{letter-spacing:1.440000px;}
.ls3a{letter-spacing:2.160000px;}
.ls30{letter-spacing:2.280000px;}
.ls35{letter-spacing:2.520000px;}
.ls1e{letter-spacing:3.960000px;}
.ls28{letter-spacing:5.040000px;}
.ls1a{letter-spacing:10.800000px;}
.ls2a{letter-spacing:13.680000px;}
.ls39{letter-spacing:13.692000px;}
.ls33{letter-spacing:14.040000px;}
.ls4{letter-spacing:16.560000px;}
.lsc{letter-spacing:28.944000px;}
.ls12{letter-spacing:33.420000px;}
.ls18{letter-spacing:36.300000px;}
.ls19{letter-spacing:54.984000px;}
.ls16{letter-spacing:63.504000px;}
.ls10{letter-spacing:68.307840px;}
.ls11{letter-spacing:68.427840px;}
.ls29{letter-spacing:152.272781px;}
.ls2f{letter-spacing:157.860000px;}
.ls2e{letter-spacing:193.680000px;}
.ls25{letter-spacing:193.836000px;}
.ls9{letter-spacing:1307.376000px;}
.ls0{letter-spacing:1849.320000px;}
.lsa{letter-spacing:2119.836000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa{word-spacing:-72.000000px;}
.wsc{word-spacing:-54.720000px;}
.ws16{word-spacing:-34.704000px;}
.ws3{word-spacing:-21.332400px;}
.ws1{word-spacing:-20.880000px;}
.ws2{word-spacing:-19.620000px;}
.ws26{word-spacing:-19.440000px;}
.ws19{word-spacing:-18.864000px;}
.ws13{word-spacing:-18.648000px;}
.ws18{word-spacing:-18.504000px;}
.ws14{word-spacing:-18.288000px;}
.ws4{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws24{word-spacing:-17.712000px;}
.ws20{word-spacing:-17.507202px;}
.ws1d{word-spacing:-17.496000px;}
.ws25{word-spacing:-17.208000px;}
.ws1c{word-spacing:-17.195152px;}
.ws23{word-spacing:-17.064000px;}
.ws10{word-spacing:-16.848000px;}
.ws5{word-spacing:-16.560000px;}
.wse{word-spacing:-16.416000px;}
.ws27{word-spacing:-16.272000px;}
.ws29{word-spacing:-16.056000px;}
.ws17{word-spacing:-15.912000px;}
.ws21{word-spacing:-15.768000px;}
.ws22{word-spacing:-15.624000px;}
.ws8{word-spacing:-15.264000px;}
.ws28{word-spacing:-15.120000px;}
.ws1a{word-spacing:-14.647722px;}
.ws1b{word-spacing:-14.223151px;}
.ws1f{word-spacing:-13.764570px;}
.wsb{word-spacing:-13.680000px;}
.ws9{word-spacing:-13.210560px;}
.ws12{word-spacing:-12.600000px;}
.wsd{word-spacing:-12.552000px;}
.ws7{word-spacing:-11.880000px;}
.ws15{word-spacing:-11.520000px;}
.wsf{word-spacing:-11.160000px;}
.ws11{word-spacing:-10.080000px;}
.ws0{word-spacing:0.000000px;}
.ws1e{word-spacing:121.767186px;}
._46{margin-left:-11.882400px;}
._1c{margin-left:-10.506720px;}
._49{margin-left:-7.922400px;}
._39{margin-left:-6.629760px;}
._1e{margin-left:-4.649760px;}
._c{margin-left:-3.507840px;}
._6{margin-left:-2.364480px;}
._1{margin-left:-1.008000px;}
._0{width:1.045440px;}
._3{width:2.316000px;}
._7{width:3.638880px;}
._1f{width:4.659840px;}
._e{width:5.666880px;}
._b{width:6.854400px;}
._d{width:8.718720px;}
._16{width:9.773760px;}
._21{width:11.322240px;}
._11{width:12.651840px;}
._12{width:13.830720px;}
._a{width:15.773280px;}
._10{width:17.602560px;}
._f{width:18.884160px;}
._1b{width:19.976640px;}
._15{width:21.337440px;}
._13{width:22.824000px;}
._14{width:24.468480px;}
._20{width:25.496640px;}
._2e{width:26.547840px;}
._26{width:27.583680px;}
._29{width:28.726560px;}
._9{width:30.354720px;}
._4b{width:31.598880px;}
._43{width:33.070560px;}
._1d{width:34.720800px;}
._4c{width:35.825280px;}
._2b{width:37.995840px;}
._50{width:39.082080px;}
._2c{width:40.127040px;}
._2d{width:41.703360px;}
._4d{width:43.946880px;}
._2a{width:45.443520px;}
._51{width:46.512000px;}
._25{width:47.560320px;}
._4a{width:48.648960px;}
._38{width:51.082560px;}
._4e{width:61.081920px;}
._4f{width:62.187840px;}
._36{width:69.144000px;}
._24{width:71.426880px;}
._33{width:80.688000px;}
._31{width:81.757440px;}
._32{width:82.910400px;}
._48{width:84.680640px;}
._47{width:85.787040px;}
._17{width:88.079040px;}
._19{width:93.687360px;}
._3f{width:108.200640px;}
._44{width:111.971040px;}
._45{width:121.808640px;}
._3d{width:123.144000px;}
._42{width:125.899312px;}
._34{width:134.484000px;}
._1a{width:139.473120px;}
._35{width:151.233600px;}
._37{width:158.485440px;}
._23{width:171.561600px;}
._3a{width:177.237600px;}
._3c{width:179.016480px;}
._28{width:187.673280px;}
._18{width:190.956000px;}
._3b{width:192.827520px;}
._4{width:193.836000px;}
._5{width:195.120000px;}
._3e{width:196.212480px;}
._30{width:296.363241px;}
._8{width:347.916000px;}
._2f{width:373.237948px;}
._41{width:426.065946px;}
._40{width:500.802213px;}
._2{width:705.432000px;}
._22{width:1712.261280px;}
._27{width:2072.078880px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(192,192,192);}
.fs0{font-size:47.520000px;}
.fsc{font-size:49.512842px;}
.fsb{font-size:50.322395px;}
.fs9{font-size:51.162413px;}
.fs8{font-size:52.689649px;}
.fs1{font-size:54.720000px;}
.fsa{font-size:61.853066px;}
.fsd{font-size:62.975548px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:83.520000px;}
.fs4{font-size:88.036930px;}
.fse{font-size:96.480000px;}
.fs5{font-size:108.000000px;}
.fs7{font-size:119.520000px;}
.fs6{font-size:144.000000px;}
.ye4{bottom:-100.479000px;}
.ye3{bottom:-59.403000px;}
.ye2{bottom:-16.560000px;}
.y146{bottom:-10.800000px;}
.y0{bottom:0.000000px;}
.y156{bottom:2.520000px;}
.y6{bottom:4.323000px;}
.y170{bottom:5.345327px;}
.y126{bottom:6.120000px;}
.y191{bottom:7.698575px;}
.y15c{bottom:7.827086px;}
.y1a5{bottom:9.020013px;}
.y145{bottom:9.720000px;}
.y16c{bottom:20.427102px;}
.y106{bottom:21.600000px;}
.y155{bottom:23.400000px;}
.y19e{bottom:24.756421px;}
.y19b{bottom:25.779274px;}
.ye1{bottom:25.920000px;}
.y125{bottom:27.360000px;}
.y98{bottom:28.800000px;}
.y16f{bottom:29.208392px;}
.y144{bottom:30.240000px;}
.y1a4{bottom:32.654542px;}
.y161{bottom:37.799414px;}
.y105{bottom:43.200000px;}
.y154{bottom:43.920000px;}
.y195{bottom:43.992977px;}
.y124{bottom:47.880000px;}
.y143{bottom:50.760000px;}
.y16e{bottom:53.119184px;}
.y97{bottom:53.280000px;}
.y18f{bottom:53.670000px;}
.y1a3{bottom:57.410963px;}
.y104{bottom:63.360000px;}
.y153{bottom:64.440000px;}
.yad{bottom:66.630000px;}
.y4{bottom:67.716000px;}
.y123{bottom:68.760000px;}
.ye0{bottom:68.790000px;}
.y142{bottom:71.280000px;}
.y1b3{bottom:74.910000px;}
.y18e{bottom:75.270000px;}
.y96{bottom:76.725000px;}
.y162{bottom:79.454782px;}
.yac{bottom:83.550000px;}
.y103{bottom:84.600000px;}
.y152{bottom:85.320000px;}
.y19f{bottom:85.488185px;}
.y3{bottom:88.236000px;}
.y122{bottom:89.640000px;}
.y1c2{bottom:89.685000px;}
.y141{bottom:92.160000px;}
.y18d{bottom:95.790000px;}
.yab{bottom:100.110000px;}
.y95{bottom:100.125000px;}
.y2{bottom:104.796000px;}
.y102{bottom:104.805000px;}
.y151{bottom:106.200000px;}
.y121{bottom:110.565000px;}
.y1c1{bottom:111.285000px;}
.ydf{bottom:111.630000px;}
.y140{bottom:113.085000px;}
.yaa{bottom:116.310000px;}
.y18c{bottom:116.670000px;}
.y163{bottom:121.071969px;}
.y94{bottom:123.165000px;}
.y101{bottom:125.685000px;}
.y150{bottom:126.390000px;}
.y120{bottom:130.725000px;}
.y1c0{bottom:131.835000px;}
.ya9{bottom:132.870000px;}
.y13f{bottom:133.965000px;}
.y196{bottom:135.474584px;}
.y1b2{bottom:137.190000px;}
.y18b{bottom:137.220000px;}
.y93{bottom:146.565000px;}
.y14f{bottom:147.630000px;}
.y5{bottom:148.032000px;}
.ya8{bottom:149.430000px;}
.y11f{bottom:151.965000px;}
.y1bf{bottom:152.715000px;}
.yde{bottom:154.110000px;}
.y13e{bottom:154.125000px;}
.y1b1{bottom:158.070000px;}
.y18a{bottom:158.100000px;}
.y164{bottom:162.722564px;}
.ya7{bottom:165.990000px;}
.y100{bottom:167.085000px;}
.y14e{bottom:168.150000px;}
.y92{bottom:169.965000px;}
.y1a0{bottom:171.006286px;}
.y11e{bottom:172.125000px;}
.y1be{bottom:173.235000px;}
.y13d{bottom:175.365000px;}
.y189{bottom:178.620000px;}
.y6c{bottom:180.435000px;}
.ya6{bottom:182.190000px;}
.y1c6{bottom:186.915000px;}
.yff{bottom:187.965000px;}
.yb1{bottom:188.355000px;}
.y14d{bottom:188.670000px;}
.y91{bottom:193.005000px;}
.y1bd{bottom:194.115000px;}
.y5f{bottom:195.555000px;}
.y13c{bottom:195.885000px;}
.y3e{bottom:195.915000px;}
.ydd{bottom:196.995000px;}
.yd8{bottom:197.355000px;}
.ya5{bottom:197.715000px;}
.y19c{bottom:199.155000px;}
.y188{bottom:199.500000px;}
.yb9{bottom:200.235000px;}
.y165{bottom:204.339750px;}
.y9e{bottom:206.715000px;}
.yfe{bottom:208.485000px;}
.y14c{bottom:209.550000px;}
.y11d{bottom:213.525000px;}
.ya4{bottom:213.555000px;}
.y1bc{bottom:214.635000px;}
.y194{bottom:216.195000px;}
.y13b{bottom:216.405000px;}
.y90{bottom:216.435000px;}
.y17c{bottom:219.315000px;}
.y187{bottom:220.020000px;}
.y6b{bottom:221.835000px;}
.yd7{bottom:226.515000px;}
.y197{bottom:226.920201px;}
.yc3{bottom:228.315000px;}
.yfd{bottom:229.395000px;}
.ya3{bottom:229.755000px;}
.y14b{bottom:230.430000px;}
.y11c{bottom:234.795000px;}
.y1bb{bottom:235.515000px;}
.y9f{bottom:236.955000px;}
.y3d{bottom:237.315000px;}
.ydc{bottom:239.475000px;}
.y8f{bottom:239.835000px;}
.y186{bottom:240.900000px;}
.yb8{bottom:241.635000px;}
.ya2{bottom:245.235000px;}
.ye5{bottom:245.595000px;}
.y166{bottom:245.956937px;}
.y9d{bottom:248.115000px;}
.yfc{bottom:249.915000px;}
.y14a{bottom:250.635000px;}
.y190{bottom:252.489401px;}
.y11b{bottom:254.955000px;}
.y1a1{bottom:255.372579px;}
.y1ba{bottom:256.065000px;}
.y13a{bottom:258.195000px;}
.ya1{bottom:260.715000px;}
.y17b{bottom:260.745000px;}
.ydb{bottom:261.435000px;}
.y185{bottom:261.465000px;}
.y8e{bottom:262.875000px;}
.y6a{bottom:263.265000px;}
.yd6{bottom:267.945000px;}
.yc2{bottom:269.745000px;}
.yfb{bottom:270.795000px;}
.yb0{bottom:271.185000px;}
.y149{bottom:271.515000px;}
.y11a{bottom:275.835000px;}
.y1b9{bottom:276.945000px;}
.ye9{bottom:278.025000px;}
.y139{bottom:278.355000px;}
.y7d{bottom:278.385000px;}
.y3c{bottom:278.745000px;}
.y107{bottom:280.185000px;}
.y19{bottom:280.545000px;}
.y175{bottom:281.265000px;}
.yda{bottom:281.955000px;}
.y1b0{bottom:282.300000px;}
.y184{bottom:282.345000px;}
.yb7{bottom:283.065000px;}
.y8d{bottom:286.275000px;}
.y167{bottom:287.621850px;}
.y9c{bottom:289.545000px;}
.yfa{bottom:291.315000px;}
.y148{bottom:292.035000px;}
.y119{bottom:296.355000px;}
.y192{bottom:296.427611px;}
.y1b8{bottom:297.465000px;}
.y138{bottom:299.595000px;}
.y17a{bottom:302.145000px;}
.y7e{bottom:302.505000px;}
.yd9{bottom:302.835000px;}
.y1af{bottom:302.865000px;}
.y18{bottom:304.665000px;}
.yd5{bottom:309.345000px;}
.y8c{bottom:309.675000px;}
.yc1{bottom:311.145000px;}
.yf9{bottom:312.195000px;}
.yaf{bottom:312.225000px;}
.y118{bottom:317.595000px;}
.y198{bottom:318.207779px;}
.y1b7{bottom:318.345000px;}
.y5d{bottom:319.785000px;}
.y137{bottom:320.115000px;}
.y3b{bottom:320.145000px;}
.y174{bottom:322.665000px;}
.y183{bottom:323.745000px;}
.yb6{bottom:324.465000px;}
.y17{bottom:328.785000px;}
.y168{bottom:329.429941px;}
.y9b{bottom:330.945000px;}
.yf8{bottom:332.715000px;}
.y8b{bottom:332.745000px;}
.y117{bottom:337.755000px;}
.y1b6{bottom:338.865000px;}
.y136{bottom:340.635000px;}
.y179{bottom:343.545000px;}
.y182{bottom:344.265000px;}
.y69{bottom:346.065000px;}
.yae{bottom:349.665000px;}
.yd4{bottom:350.745000px;}
.y16{bottom:352.545000px;}
.yf7{bottom:353.625000px;}
.y8a{bottom:356.145000px;}
.y116{bottom:358.665000px;}
.y1b5{bottom:359.745000px;}
.y7c{bottom:361.185000px;}
.y3a{bottom:361.545000px;}
.y173{bottom:364.065000px;}
.y181{bottom:365.145000px;}
.yb5{bottom:365.865000px;}
.y169{bottom:371.078945px;}
.y9a{bottom:372.345000px;}
.y15{bottom:373.065000px;}
.yf6{bottom:374.145000px;}
.y1b4{bottom:376.305000px;}
.y89{bottom:379.545000px;}
.y52{bottom:382.110000px;}
.y135{bottom:382.425000px;}
.y178{bottom:384.990000px;}
.y1ae{bottom:385.665000px;}
.y180{bottom:385.695000px;}
.y28{bottom:386.070000px;}
.y68{bottom:387.510000px;}
.yd3{bottom:392.190000px;}
.y14{bottom:393.990000px;}
.yf5{bottom:395.025000px;}
.y115{bottom:400.065000px;}
.y88{bottom:402.585000px;}
.y7b{bottom:402.630000px;}
.y134{bottom:402.945000px;}
.y39{bottom:402.990000px;}
.y172{bottom:405.510000px;}
.y1ad{bottom:406.545000px;}
.y17f{bottom:406.575000px;}
.yb4{bottom:407.310000px;}
.y99{bottom:409.470000px;}
.y199{bottom:409.698775px;}
.y16a{bottom:412.696132px;}
.y13{bottom:414.510000px;}
.yf4{bottom:415.545000px;}
.y114{bottom:420.585000px;}
.y133{bottom:423.465000px;}
.y87{bottom:425.985000px;}
.y177{bottom:426.390000px;}
.y17e{bottom:427.095000px;}
.y67{bottom:428.910000px;}
.yd2{bottom:433.590000px;}
.y27{bottom:434.310000px;}
.y29{bottom:434.670000px;}
.yc0{bottom:435.390000px;}
.yf3{bottom:436.065000px;}
.y113{bottom:441.465000px;}
.y7a{bottom:444.030000px;}
.y132{bottom:444.345000px;}
.y38{bottom:444.390000px;}
.y171{bottom:446.910000px;}
.yb3{bottom:448.710000px;}
.y86{bottom:449.430000px;}
.y16b{bottom:454.345136px;}
.y12{bottom:455.910000px;}
.yf2{bottom:456.945000px;}
.y112{bottom:462.345000px;}
.y51{bottom:464.910000px;}
.y131{bottom:465.225000px;}
.y176{bottom:467.790000px;}
.y1ac{bottom:468.150000px;}
.y160{bottom:469.270672px;}
.y66{bottom:470.310000px;}
.y85{bottom:472.470000px;}
.y1ab{bottom:473.910000px;}
.yd1{bottom:474.990000px;}
.ybf{bottom:476.790000px;}
.yf1{bottom:477.870000px;}
.y26{bottom:482.910000px;}
.y79{bottom:485.430000px;}
.y37{bottom:485.790000px;}
.yb2{bottom:489.750000px;}
.y17d{bottom:491.550000px;}
.y84{bottom:495.870000px;}
.y47{bottom:497.310000px;}
.yf0{bottom:498.390000px;}
.y19a{bottom:501.174123px;}
.y11{bottom:501.270000px;}
.y111{bottom:503.430000px;}
.y130{bottom:506.310000px;}
.y50{bottom:506.340000px;}
.y65{bottom:511.740000px;}
.y1aa{bottom:515.340000px;}
.yd0{bottom:516.420000px;}
.ybe{bottom:518.220000px;}
.yef{bottom:518.910000px;}
.y83{bottom:519.270000px;}
.y110{bottom:524.670000px;}
.y78{bottom:526.860000px;}
.y12f{bottom:527.190000px;}
.y36{bottom:527.220000px;}
.y25{bottom:531.180000px;}
.yee{bottom:540.150000px;}
.y82{bottom:542.310000px;}
.y64{bottom:542.340000px;}
.y10f{bottom:544.830000px;}
.y4f{bottom:547.740000px;}
.y12e{bottom:548.070000px;}
.y10{bottom:549.540000px;}
.y1a9{bottom:556.740000px;}
.y1c5{bottom:557.100000px;}
.ycf{bottom:557.460000px;}
.ybd{bottom:559.620000px;}
.yed{bottom:560.310000px;}
.ya0{bottom:564.660000px;}
.y81{bottom:565.710000px;}
.y12d{bottom:568.230000px;}
.y5e{bottom:568.260000px;}
.y35{bottom:568.620000px;}
.y63{bottom:570.420000px;}
.yce{bottom:577.980000px;}
.y24{bottom:579.420000px;}
.yec{bottom:581.550000px;}
.y10e{bottom:586.230000px;}
.y12c{bottom:589.110000px;}
.y4e{bottom:589.140000px;}
.y1c3{bottom:593.100000px;}
.y62{bottom:593.460000px;}
.yf{bottom:597.780000px;}
.y1a8{bottom:598.140000px;}
.ybc{bottom:601.020000px;}
.yeb{bottom:601.740000px;}
.ye8{bottom:606.780000px;}
.y10d{bottom:607.500000px;}
.y77{bottom:609.660000px;}
.y34{bottom:610.020000px;}
.y5a{bottom:613.620000px;}
.y80{bottom:620.100000px;}
.y1c4{bottom:621.540000px;}
.y61{bottom:626.220000px;}
.y10c{bottom:627.660000px;}
.y23{bottom:627.690000px;}
.y4d{bottom:630.570000px;}
.y12b{bottom:630.900000px;}
.y1a7{bottom:639.570000px;}
.ybb{bottom:642.450000px;}
.yea{bottom:643.500000px;}
.ye{bottom:646.410000px;}
.y10b{bottom:648.540000px;}
.y7f{bottom:651.060000px;}
.y76{bottom:651.090000px;}
.y33{bottom:651.450000px;}
.y193{bottom:660.255708px;}
.y46{bottom:662.970000px;}
.ycd{bottom:667.650000px;}
.y10a{bottom:669.420000px;}
.y4c{bottom:671.970000px;}
.y12a{bottom:672.300000px;}
.y16d{bottom:675.328563px;}
.y22{bottom:675.930000px;}
.y19d{bottom:676.620000px;}
.y1a6{bottom:676.650000px;}
.ye7{bottom:681.330000px;}
.yba{bottom:683.850000px;}
.y59{bottom:684.570000px;}
.y109{bottom:689.940000px;}
.y6d{bottom:692.490000px;}
.y129{bottom:692.820000px;}
.y32{bottom:692.850000px;}
.yd{bottom:695.010000px;}
.ycc{bottom:709.050000px;}
.y108{bottom:710.460000px;}
.y128{bottom:713.340000px;}
.y4b{bottom:713.370000px;}
.y21{bottom:724.170000px;}
.y45{bottom:725.250000px;}
.y75{bottom:733.890000px;}
.y127{bottom:733.905000px;}
.y31{bottom:734.250000px;}
.yc{bottom:743.610000px;}
.y15a{bottom:745.770000px;}
.y58{bottom:746.490000px;}
.ycb{bottom:750.450000px;}
.y147{bottom:752.655000px;}
.y4a{bottom:754.815000px;}
.y20{bottom:772.815000px;}
.y74{bottom:775.335000px;}
.y30{bottom:775.695000px;}
.y44{bottom:787.215000px;}
.yb{bottom:787.935000px;}
.yca{bottom:791.895000px;}
.y49{bottom:796.215000px;}
.y159{bottom:808.095000px;}
.y57{bottom:808.815000px;}
.y73{bottom:816.735000px;}
.y2f{bottom:817.095000px;}
.y1f{bottom:820.695000px;}
.y15f{bottom:826.986300px;}
.yc9{bottom:833.295000px;}
.y48{bottom:837.615000px;}
.y43{bottom:849.495000px;}
.y1a2{bottom:856.601424px;}
.y72{bottom:858.135000px;}
.y2e{bottom:858.495000px;}
.y1e{bottom:869.295000px;}
.y158{bottom:870.015000px;}
.y56{bottom:870.735000px;}
.yc8{bottom:874.695000px;}
.y2d{bottom:879.045000px;}
.y15e{bottom:884.639467px;}
.yc7{bottom:894.885000px;}
.y71{bottom:899.565000px;}
.y5c{bottom:899.925000px;}
.y1d{bottom:917.565000px;}
.ya{bottom:920.445000px;}
.yc6{bottom:921.885000px;}
.y15b{bottom:927.624803px;}
.y15d{bottom:928.006612px;}
.y157{bottom:932.325000px;}
.y55{bottom:933.045000px;}
.y70{bottom:940.965000px;}
.y42{bottom:941.325000px;}
.yc5{bottom:948.885000px;}
.y2c{bottom:961.845000px;}
.y9{bottom:965.445000px;}
.y1c{bottom:965.805000px;}
.yc4{bottom:975.885000px;}
.y6f{bottom:982.365000px;}
.y41{bottom:982.725000px;}
.ye6{bottom:994.245000px;}
.y54{bottom:994.965000px;}
.y2b{bottom:1003.290000px;}
.y8{bottom:1013.730000px;}
.y1b{bottom:1014.090000px;}
.y6e{bottom:1023.810000px;}
.y40{bottom:1024.170000px;}
.y5b{bottom:1048.650000px;}
.y2a{bottom:1056.570000px;}
.y53{bottom:1057.290000px;}
.y7{bottom:1062.330000px;}
.y1a{bottom:1062.690000px;}
.y60{bottom:1065.210000px;}
.y3f{bottom:1065.570000px;}
.y1{bottom:1125.720000px;}
.h6{height:20.880000px;}
.h29{height:22.907956px;}
.h23{height:23.290352px;}
.h21{height:23.672161px;}
.h1b{height:46.638281px;}
.h3{height:47.891250px;}
.h15{height:48.601406px;}
.h2d{height:51.640347px;}
.h2a{height:52.484685px;}
.h24{height:53.360798px;}
.h22{height:54.953658px;}
.h14{height:55.147500px;}
.h11{height:57.071250px;}
.h27{height:64.510815px;}
.h17{height:64.546875px;}
.h2f{height:65.681529px;}
.h26{height:70.100142px;}
.hc{height:70.628906px;}
.h4{height:70.664062px;}
.h5{height:72.562500px;}
.h10{height:75.093750px;}
.h2e{height:75.391155px;}
.h8{height:79.439573px;}
.hf{height:79.758281px;}
.h18{height:79.878281px;}
.h1a{height:81.011250px;}
.ha{height:81.929531px;}
.h9{height:81.970312px;}
.h12{height:82.681875px;}
.h7{height:84.172500px;}
.h31{height:97.233750px;}
.hd{height:105.996094px;}
.hb{height:108.843750px;}
.h1c{height:120.453750px;}
.he{height:145.125000px;}
.h16{height:273.315000px;}
.h20{height:308.580000px;}
.h19{height:319.425000px;}
.h30{height:376.305000px;}
.h2c{height:405.003080px;}
.h28{height:443.670000px;}
.h25{height:482.033928px;}
.h2b{height:534.221665px;}
.h1d{height:659.700000px;}
.h13{height:663.300000px;}
.h1e{height:727.050000px;}
.h1f{height:750.450000px;}
.h2{height:1188.000000px;}
.h0{height:1267.200000px;}
.h1{height:1267.500000px;}
.w12{width:11.082123px;}
.w13{width:18.031928px;}
.w14{width:25.019300px;}
.wb{width:25.358206px;}
.wa{width:25.930195px;}
.wd{width:28.980806px;}
.we{width:29.552796px;}
.wc{width:29.590929px;}
.w3{width:33.480000px;}
.w10{width:115.961358px;}
.w17{width:121.544692px;}
.w4{width:576.210000px;}
.w5{width:589.530000px;}
.w6{width:595.290000px;}
.w8{width:598.575000px;}
.w7{width:602.895000px;}
.w9{width:603.210000px;}
.w16{width:662.751828px;}
.wf{width:689.819458px;}
.w15{width:691.599577px;}
.w11{width:791.925000px;}
.w18{width:792.285000px;}
.w1{width:897.000000px;}
.w0{width:897.120000px;}
.w2{width:918.000000px;}
.x0{left:0.000000px;}
.x29{left:2.097295px;}
.x1c{left:10.800000px;}
.x32{left:16.969025px;}
.x35{left:18.303667px;}
.x3b{left:20.473752px;}
.x31{left:24.023563px;}
.x3d{left:25.874117px;}
.x3a{left:27.423557px;}
.x30{left:31.078102px;}
.x21{left:34.560000px;}
.x1b{left:37.800000px;}
.x1a{left:39.960000px;}
.x3f{left:47.284854px;}
.x15{left:63.720000px;}
.x40{left:75.996000px;}
.x3c{left:79.906461px;}
.x14{left:84.240000px;}
.x41{left:89.316000px;}
.x20{left:91.830000px;}
.x36{left:93.996000px;}
.x33{left:97.276365px;}
.x16{left:117.030000px;}
.x1{left:127.476000px;}
.x23{left:129.996000px;}
.x8{left:131.796000px;}
.x9{left:134.676000px;}
.x26{left:143.352000px;}
.x1e{left:148.752000px;}
.xa{left:153.795000px;}
.x13{left:156.675000px;}
.x5{left:161.715000px;}
.x17{left:170.310000px;}
.xe{left:180.435000px;}
.x1f{left:182.955000px;}
.x3{left:199.155000px;}
.x28{left:202.955097px;}
.x24{left:207.834000px;}
.x11{left:234.435000px;}
.x4{left:260.385000px;}
.x2a{left:263.395331px;}
.x37{left:266.826512px;}
.xc{left:324.105000px;}
.xd{left:338.550000px;}
.x2b{left:361.437526px;}
.xb{left:367.350000px;}
.x43{left:393.270000px;}
.x2c{left:395.184913px;}
.x10{left:410.910000px;}
.x38{left:422.392589px;}
.x2d{left:439.228112px;}
.x7{left:458.820000px;}
.x2e{left:483.112425px;}
.x27{left:491.580000px;}
.x2f{left:520.101086px;}
.x42{left:549.210000px;}
.x39{left:577.949275px;}
.x6{left:635.655000px;}
.x3e{left:662.087112px;}
.x34{left:700.516139px;}
.x18{left:710.895000px;}
.x25{left:744.405000px;}
.x22{left:748.725000px;}
.x2{left:751.965000px;}
.x19{left:762.405000px;}
.x1d{left:774.645000px;}
.xf{left:790.485000px;}
.x12{left:801.645000px;}
@media print{
.v3{vertical-align:-134.400000pt;}
.v2{vertical-align:-106.240000pt;}
.v8{vertical-align:-74.240000pt;}
.v1{vertical-align:-47.466667pt;}
.v5{vertical-align:-29.440000pt;}
.v6{vertical-align:-7.680000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:7.680000pt;}
.v4{vertical-align:29.440000pt;}
.ls1c{letter-spacing:-2.560000pt;}
.lsd{letter-spacing:-2.432000pt;}
.ls2d{letter-spacing:-2.112000pt;}
.ls2c{letter-spacing:-1.984000pt;}
.ls20{letter-spacing:-1.856000pt;}
.ls3c{letter-spacing:-1.728000pt;}
.ls14{letter-spacing:-1.600000pt;}
.lse{letter-spacing:-1.536000pt;}
.ls8{letter-spacing:-1.408000pt;}
.lsb{letter-spacing:-1.280000pt;}
.ls22{letter-spacing:-1.152000pt;}
.ls5{letter-spacing:-1.120000pt;}
.ls13{letter-spacing:-1.024000pt;}
.lsf{letter-spacing:-1.002667pt;}
.ls21{letter-spacing:-0.960000pt;}
.ls1f{letter-spacing:-0.832000pt;}
.ls32{letter-spacing:-0.704000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls37{letter-spacing:-0.576000pt;}
.ls2b{letter-spacing:-0.537179pt;}
.ls26{letter-spacing:-0.448000pt;}
.ls1d{letter-spacing:-0.320000pt;}
.ls31{letter-spacing:-0.256000pt;}
.ls23{letter-spacing:-0.247186pt;}
.ls24{letter-spacing:-0.170824pt;}
.ls27{letter-spacing:-0.168019pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls34{letter-spacing:0.128000pt;}
.ls3b{letter-spacing:0.212480pt;}
.ls1b{letter-spacing:0.256000pt;}
.ls38{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.402133pt;}
.ls15{letter-spacing:0.448000pt;}
.ls17{letter-spacing:0.576000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls36{letter-spacing:1.280000pt;}
.ls3a{letter-spacing:1.920000pt;}
.ls30{letter-spacing:2.026667pt;}
.ls35{letter-spacing:2.240000pt;}
.ls1e{letter-spacing:3.520000pt;}
.ls28{letter-spacing:4.480000pt;}
.ls1a{letter-spacing:9.600000pt;}
.ls2a{letter-spacing:12.160000pt;}
.ls39{letter-spacing:12.170667pt;}
.ls33{letter-spacing:12.480000pt;}
.ls4{letter-spacing:14.720000pt;}
.lsc{letter-spacing:25.728000pt;}
.ls12{letter-spacing:29.706667pt;}
.ls18{letter-spacing:32.266667pt;}
.ls19{letter-spacing:48.874667pt;}
.ls16{letter-spacing:56.448000pt;}
.ls10{letter-spacing:60.718080pt;}
.ls11{letter-spacing:60.824747pt;}
.ls29{letter-spacing:135.353583pt;}
.ls2f{letter-spacing:140.320000pt;}
.ls2e{letter-spacing:172.160000pt;}
.ls25{letter-spacing:172.298667pt;}
.ls9{letter-spacing:1162.112000pt;}
.ls0{letter-spacing:1643.840000pt;}
.lsa{letter-spacing:1884.298667pt;}
.wsa{word-spacing:-64.000000pt;}
.wsc{word-spacing:-48.640000pt;}
.ws16{word-spacing:-30.848000pt;}
.ws3{word-spacing:-18.962133pt;}
.ws1{word-spacing:-18.560000pt;}
.ws2{word-spacing:-17.440000pt;}
.ws26{word-spacing:-17.280000pt;}
.ws19{word-spacing:-16.768000pt;}
.ws13{word-spacing:-16.576000pt;}
.ws18{word-spacing:-16.448000pt;}
.ws14{word-spacing:-16.256000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws24{word-spacing:-15.744000pt;}
.ws20{word-spacing:-15.561958pt;}
.ws1d{word-spacing:-15.552000pt;}
.ws25{word-spacing:-15.296000pt;}
.ws1c{word-spacing:-15.284580pt;}
.ws23{word-spacing:-15.168000pt;}
.ws10{word-spacing:-14.976000pt;}
.ws5{word-spacing:-14.720000pt;}
.wse{word-spacing:-14.592000pt;}
.ws27{word-spacing:-14.464000pt;}
.ws29{word-spacing:-14.272000pt;}
.ws17{word-spacing:-14.144000pt;}
.ws21{word-spacing:-14.016000pt;}
.ws22{word-spacing:-13.888000pt;}
.ws8{word-spacing:-13.568000pt;}
.ws28{word-spacing:-13.440000pt;}
.ws1a{word-spacing:-13.020198pt;}
.ws1b{word-spacing:-12.642801pt;}
.ws1f{word-spacing:-12.235173pt;}
.wsb{word-spacing:-12.160000pt;}
.ws9{word-spacing:-11.742720pt;}
.ws12{word-spacing:-11.200000pt;}
.wsd{word-spacing:-11.157333pt;}
.ws7{word-spacing:-10.560000pt;}
.ws15{word-spacing:-10.240000pt;}
.wsf{word-spacing:-9.920000pt;}
.ws11{word-spacing:-8.960000pt;}
.ws0{word-spacing:0.000000pt;}
.ws1e{word-spacing:108.237499pt;}
._46{margin-left:-10.562133pt;}
._1c{margin-left:-9.339307pt;}
._49{margin-left:-7.042133pt;}
._39{margin-left:-5.893120pt;}
._1e{margin-left:-4.133120pt;}
._c{margin-left:-3.118080pt;}
._6{margin-left:-2.101760pt;}
._1{margin-left:-0.896000pt;}
._0{width:0.929280pt;}
._3{width:2.058667pt;}
._7{width:3.234560pt;}
._1f{width:4.142080pt;}
._e{width:5.037227pt;}
._b{width:6.092800pt;}
._d{width:7.749973pt;}
._16{width:8.687787pt;}
._21{width:10.064213pt;}
._11{width:11.246080pt;}
._12{width:12.293973pt;}
._a{width:14.020693pt;}
._10{width:15.646720pt;}
._f{width:16.785920pt;}
._1b{width:17.757013pt;}
._15{width:18.966613pt;}
._13{width:20.288000pt;}
._14{width:21.749760pt;}
._20{width:22.663680pt;}
._2e{width:23.598080pt;}
._26{width:24.518827pt;}
._29{width:25.534720pt;}
._9{width:26.981973pt;}
._4b{width:28.087893pt;}
._43{width:29.396053pt;}
._1d{width:30.862933pt;}
._4c{width:31.844693pt;}
._2b{width:33.774080pt;}
._50{width:34.739627pt;}
._2c{width:35.668480pt;}
._2d{width:37.069653pt;}
._4d{width:39.063893pt;}
._2a{width:40.394240pt;}
._51{width:41.344000pt;}
._25{width:42.275840pt;}
._4a{width:43.243520pt;}
._38{width:45.406720pt;}
._4e{width:54.295040pt;}
._4f{width:55.278080pt;}
._36{width:61.461333pt;}
._24{width:63.490560pt;}
._33{width:71.722667pt;}
._31{width:72.673280pt;}
._32{width:73.698133pt;}
._48{width:75.271680pt;}
._47{width:76.255147pt;}
._17{width:78.292480pt;}
._19{width:83.277653pt;}
._3f{width:96.178347pt;}
._44{width:99.529813pt;}
._45{width:108.274347pt;}
._3d{width:109.461333pt;}
._42{width:111.910500pt;}
._34{width:119.541333pt;}
._1a{width:123.976107pt;}
._35{width:134.429867pt;}
._37{width:140.875947pt;}
._23{width:152.499200pt;}
._3a{width:157.544533pt;}
._3c{width:159.125760pt;}
._28{width:166.820693pt;}
._18{width:169.738667pt;}
._3b{width:171.402240pt;}
._4{width:172.298667pt;}
._5{width:173.440000pt;}
._3e{width:174.411093pt;}
._30{width:263.433992pt;}
._8{width:309.258667pt;}
._2f{width:331.767065pt;}
._41{width:378.725285pt;}
._40{width:445.157522pt;}
._2{width:627.050667pt;}
._22{width:1522.010027pt;}
._27{width:1841.847893pt;}
.fs0{font-size:42.240000pt;}
.fsc{font-size:44.011415pt;}
.fsb{font-size:44.731017pt;}
.fs9{font-size:45.477700pt;}
.fs8{font-size:46.835244pt;}
.fs1{font-size:48.640000pt;}
.fsa{font-size:54.980503pt;}
.fsd{font-size:55.978265pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.240000pt;}
.fs4{font-size:78.255049pt;}
.fse{font-size:85.760000pt;}
.fs5{font-size:96.000000pt;}
.fs7{font-size:106.240000pt;}
.fs6{font-size:128.000000pt;}
.ye4{bottom:-89.314667pt;}
.ye3{bottom:-52.802667pt;}
.ye2{bottom:-14.720000pt;}
.y146{bottom:-9.600000pt;}
.y0{bottom:0.000000pt;}
.y156{bottom:2.240000pt;}
.y6{bottom:3.842667pt;}
.y170{bottom:4.751402pt;}
.y126{bottom:5.440000pt;}
.y191{bottom:6.843178pt;}
.y15c{bottom:6.957409pt;}
.y1a5{bottom:8.017790pt;}
.y145{bottom:8.640000pt;}
.y16c{bottom:18.157424pt;}
.y106{bottom:19.200000pt;}
.y155{bottom:20.800000pt;}
.y19e{bottom:22.005708pt;}
.y19b{bottom:22.914910pt;}
.ye1{bottom:23.040000pt;}
.y125{bottom:24.320000pt;}
.y98{bottom:25.600000pt;}
.y16f{bottom:25.963016pt;}
.y144{bottom:26.880000pt;}
.y1a4{bottom:29.026260pt;}
.y161{bottom:33.599479pt;}
.y105{bottom:38.400000pt;}
.y154{bottom:39.040000pt;}
.y195{bottom:39.104868pt;}
.y124{bottom:42.560000pt;}
.y143{bottom:45.120000pt;}
.y16e{bottom:47.217053pt;}
.y97{bottom:47.360000pt;}
.y18f{bottom:47.706667pt;}
.y1a3{bottom:51.031967pt;}
.y104{bottom:56.320000pt;}
.y153{bottom:57.280000pt;}
.yad{bottom:59.226667pt;}
.y4{bottom:60.192000pt;}
.y123{bottom:61.120000pt;}
.ye0{bottom:61.146667pt;}
.y142{bottom:63.360000pt;}
.y1b3{bottom:66.586667pt;}
.y18e{bottom:66.906667pt;}
.y96{bottom:68.200000pt;}
.y162{bottom:70.626473pt;}
.yac{bottom:74.266667pt;}
.y103{bottom:75.200000pt;}
.y152{bottom:75.840000pt;}
.y19f{bottom:75.989498pt;}
.y3{bottom:78.432000pt;}
.y122{bottom:79.680000pt;}
.y1c2{bottom:79.720000pt;}
.y141{bottom:81.920000pt;}
.y18d{bottom:85.146667pt;}
.yab{bottom:88.986667pt;}
.y95{bottom:89.000000pt;}
.y2{bottom:93.152000pt;}
.y102{bottom:93.160000pt;}
.y151{bottom:94.400000pt;}
.y121{bottom:98.280000pt;}
.y1c1{bottom:98.920000pt;}
.ydf{bottom:99.226667pt;}
.y140{bottom:100.520000pt;}
.yaa{bottom:103.386667pt;}
.y18c{bottom:103.706667pt;}
.y163{bottom:107.619528pt;}
.y94{bottom:109.480000pt;}
.y101{bottom:111.720000pt;}
.y150{bottom:112.346667pt;}
.y120{bottom:116.200000pt;}
.y1c0{bottom:117.186667pt;}
.ya9{bottom:118.106667pt;}
.y13f{bottom:119.080000pt;}
.y196{bottom:120.421852pt;}
.y1b2{bottom:121.946667pt;}
.y18b{bottom:121.973333pt;}
.y93{bottom:130.280000pt;}
.y14f{bottom:131.226667pt;}
.y5{bottom:131.584000pt;}
.ya8{bottom:132.826667pt;}
.y11f{bottom:135.080000pt;}
.y1bf{bottom:135.746667pt;}
.yde{bottom:136.986667pt;}
.y13e{bottom:137.000000pt;}
.y1b1{bottom:140.506667pt;}
.y18a{bottom:140.533333pt;}
.y164{bottom:144.642279pt;}
.ya7{bottom:147.546667pt;}
.y100{bottom:148.520000pt;}
.y14e{bottom:149.466667pt;}
.y92{bottom:151.080000pt;}
.y1a0{bottom:152.005588pt;}
.y11e{bottom:153.000000pt;}
.y1be{bottom:153.986667pt;}
.y13d{bottom:155.880000pt;}
.y189{bottom:158.773333pt;}
.y6c{bottom:160.386667pt;}
.ya6{bottom:161.946667pt;}
.y1c6{bottom:166.146667pt;}
.yff{bottom:167.080000pt;}
.yb1{bottom:167.426667pt;}
.y14d{bottom:167.706667pt;}
.y91{bottom:171.560000pt;}
.y1bd{bottom:172.546667pt;}
.y5f{bottom:173.826667pt;}
.y13c{bottom:174.120000pt;}
.y3e{bottom:174.146667pt;}
.ydd{bottom:175.106667pt;}
.yd8{bottom:175.426667pt;}
.ya5{bottom:175.746667pt;}
.y19c{bottom:177.026667pt;}
.y188{bottom:177.333333pt;}
.yb9{bottom:177.986667pt;}
.y165{bottom:181.635334pt;}
.y9e{bottom:183.746667pt;}
.yfe{bottom:185.320000pt;}
.y14c{bottom:186.266667pt;}
.y11d{bottom:189.800000pt;}
.ya4{bottom:189.826667pt;}
.y1bc{bottom:190.786667pt;}
.y194{bottom:192.173333pt;}
.y13b{bottom:192.360000pt;}
.y90{bottom:192.386667pt;}
.y17c{bottom:194.946667pt;}
.y187{bottom:195.573333pt;}
.y6b{bottom:197.186667pt;}
.yd7{bottom:201.346667pt;}
.y197{bottom:201.706846pt;}
.yc3{bottom:202.946667pt;}
.yfd{bottom:203.906667pt;}
.ya3{bottom:204.226667pt;}
.y14b{bottom:204.826667pt;}
.y11c{bottom:208.706667pt;}
.y1bb{bottom:209.346667pt;}
.y9f{bottom:210.626667pt;}
.y3d{bottom:210.946667pt;}
.ydc{bottom:212.866667pt;}
.y8f{bottom:213.186667pt;}
.y186{bottom:214.133333pt;}
.yb8{bottom:214.786667pt;}
.ya2{bottom:217.986667pt;}
.ye5{bottom:218.306667pt;}
.y166{bottom:218.628388pt;}
.y9d{bottom:220.546667pt;}
.yfc{bottom:222.146667pt;}
.y14a{bottom:222.786667pt;}
.y190{bottom:224.435023pt;}
.y11b{bottom:226.626667pt;}
.y1a1{bottom:226.997848pt;}
.y1ba{bottom:227.613333pt;}
.y13a{bottom:229.506667pt;}
.ya1{bottom:231.746667pt;}
.y17b{bottom:231.773333pt;}
.ydb{bottom:232.386667pt;}
.y185{bottom:232.413333pt;}
.y8e{bottom:233.666667pt;}
.y6a{bottom:234.013333pt;}
.yd6{bottom:238.173333pt;}
.yc2{bottom:239.773333pt;}
.yfb{bottom:240.706667pt;}
.yb0{bottom:241.053333pt;}
.y149{bottom:241.346667pt;}
.y11a{bottom:245.186667pt;}
.y1b9{bottom:246.173333pt;}
.ye9{bottom:247.133333pt;}
.y139{bottom:247.426667pt;}
.y7d{bottom:247.453333pt;}
.y3c{bottom:247.773333pt;}
.y107{bottom:249.053333pt;}
.y19{bottom:249.373333pt;}
.y175{bottom:250.013333pt;}
.yda{bottom:250.626667pt;}
.y1b0{bottom:250.933333pt;}
.y184{bottom:250.973333pt;}
.yb7{bottom:251.613333pt;}
.y8d{bottom:254.466667pt;}
.y167{bottom:255.663866pt;}
.y9c{bottom:257.373333pt;}
.yfa{bottom:258.946667pt;}
.y148{bottom:259.586667pt;}
.y119{bottom:263.426667pt;}
.y192{bottom:263.491210pt;}
.y1b8{bottom:264.413333pt;}
.y138{bottom:266.306667pt;}
.y17a{bottom:268.573333pt;}
.y7e{bottom:268.893333pt;}
.yd9{bottom:269.186667pt;}
.y1af{bottom:269.213333pt;}
.y18{bottom:270.813333pt;}
.yd5{bottom:274.973333pt;}
.y8c{bottom:275.266667pt;}
.yc1{bottom:276.573333pt;}
.yf9{bottom:277.506667pt;}
.yaf{bottom:277.533333pt;}
.y118{bottom:282.306667pt;}
.y198{bottom:282.851359pt;}
.y1b7{bottom:282.973333pt;}
.y5d{bottom:284.253333pt;}
.y137{bottom:284.546667pt;}
.y3b{bottom:284.573333pt;}
.y174{bottom:286.813333pt;}
.y183{bottom:287.773333pt;}
.yb6{bottom:288.413333pt;}
.y17{bottom:292.253333pt;}
.y168{bottom:292.826614pt;}
.y9b{bottom:294.173333pt;}
.yf8{bottom:295.746667pt;}
.y8b{bottom:295.773333pt;}
.y117{bottom:300.226667pt;}
.y1b6{bottom:301.213333pt;}
.y136{bottom:302.786667pt;}
.y179{bottom:305.373333pt;}
.y182{bottom:306.013333pt;}
.y69{bottom:307.613333pt;}
.yae{bottom:310.813333pt;}
.yd4{bottom:311.773333pt;}
.y16{bottom:313.373333pt;}
.yf7{bottom:314.333333pt;}
.y8a{bottom:316.573333pt;}
.y116{bottom:318.813333pt;}
.y1b5{bottom:319.773333pt;}
.y7c{bottom:321.053333pt;}
.y3a{bottom:321.373333pt;}
.y173{bottom:323.613333pt;}
.y181{bottom:324.573333pt;}
.yb5{bottom:325.213333pt;}
.y169{bottom:329.847951pt;}
.y9a{bottom:330.973333pt;}
.y15{bottom:331.613333pt;}
.yf6{bottom:332.573333pt;}
.y1b4{bottom:334.493333pt;}
.y89{bottom:337.373333pt;}
.y52{bottom:339.653333pt;}
.y135{bottom:339.933333pt;}
.y178{bottom:342.213333pt;}
.y1ae{bottom:342.813333pt;}
.y180{bottom:342.840000pt;}
.y28{bottom:343.173333pt;}
.y68{bottom:344.453333pt;}
.yd3{bottom:348.613333pt;}
.y14{bottom:350.213333pt;}
.yf5{bottom:351.133333pt;}
.y115{bottom:355.613333pt;}
.y88{bottom:357.853333pt;}
.y7b{bottom:357.893333pt;}
.y134{bottom:358.173333pt;}
.y39{bottom:358.213333pt;}
.y172{bottom:360.453333pt;}
.y1ad{bottom:361.373333pt;}
.y17f{bottom:361.400000pt;}
.yb4{bottom:362.053333pt;}
.y99{bottom:363.973333pt;}
.y199{bottom:364.176689pt;}
.y16a{bottom:366.841006pt;}
.y13{bottom:368.453333pt;}
.yf4{bottom:369.373333pt;}
.y114{bottom:373.853333pt;}
.y133{bottom:376.413333pt;}
.y87{bottom:378.653333pt;}
.y177{bottom:379.013333pt;}
.y17e{bottom:379.640000pt;}
.y67{bottom:381.253333pt;}
.yd2{bottom:385.413333pt;}
.y27{bottom:386.053333pt;}
.y29{bottom:386.373333pt;}
.yc0{bottom:387.013333pt;}
.yf3{bottom:387.613333pt;}
.y113{bottom:392.413333pt;}
.y7a{bottom:394.693333pt;}
.y132{bottom:394.973333pt;}
.y38{bottom:395.013333pt;}
.y171{bottom:397.253333pt;}
.yb3{bottom:398.853333pt;}
.y86{bottom:399.493333pt;}
.y16b{bottom:403.862343pt;}
.y12{bottom:405.253333pt;}
.yf2{bottom:406.173333pt;}
.y112{bottom:410.973333pt;}
.y51{bottom:413.253333pt;}
.y131{bottom:413.533333pt;}
.y176{bottom:415.813333pt;}
.y1ac{bottom:416.133333pt;}
.y160{bottom:417.129486pt;}
.y66{bottom:418.053333pt;}
.y85{bottom:419.973333pt;}
.y1ab{bottom:421.253333pt;}
.yd1{bottom:422.213333pt;}
.ybf{bottom:423.813333pt;}
.yf1{bottom:424.773333pt;}
.y26{bottom:429.253333pt;}
.y79{bottom:431.493333pt;}
.y37{bottom:431.813333pt;}
.yb2{bottom:435.333333pt;}
.y17d{bottom:436.933333pt;}
.y84{bottom:440.773333pt;}
.y47{bottom:442.053333pt;}
.yf0{bottom:443.013333pt;}
.y19a{bottom:445.488109pt;}
.y11{bottom:445.573333pt;}
.y111{bottom:447.493333pt;}
.y130{bottom:450.053333pt;}
.y50{bottom:450.080000pt;}
.y65{bottom:454.880000pt;}
.y1aa{bottom:458.080000pt;}
.yd0{bottom:459.040000pt;}
.ybe{bottom:460.640000pt;}
.yef{bottom:461.253333pt;}
.y83{bottom:461.573333pt;}
.y110{bottom:466.373333pt;}
.y78{bottom:468.320000pt;}
.y12f{bottom:468.613333pt;}
.y36{bottom:468.640000pt;}
.y25{bottom:472.160000pt;}
.yee{bottom:480.133333pt;}
.y82{bottom:482.053333pt;}
.y64{bottom:482.080000pt;}
.y10f{bottom:484.293333pt;}
.y4f{bottom:486.880000pt;}
.y12e{bottom:487.173333pt;}
.y10{bottom:488.480000pt;}
.y1a9{bottom:494.880000pt;}
.y1c5{bottom:495.200000pt;}
.ycf{bottom:495.520000pt;}
.ybd{bottom:497.440000pt;}
.yed{bottom:498.053333pt;}
.ya0{bottom:501.920000pt;}
.y81{bottom:502.853333pt;}
.y12d{bottom:505.093333pt;}
.y5e{bottom:505.120000pt;}
.y35{bottom:505.440000pt;}
.y63{bottom:507.040000pt;}
.yce{bottom:513.760000pt;}
.y24{bottom:515.040000pt;}
.yec{bottom:516.933333pt;}
.y10e{bottom:521.093333pt;}
.y12c{bottom:523.653333pt;}
.y4e{bottom:523.680000pt;}
.y1c3{bottom:527.200000pt;}
.y62{bottom:527.520000pt;}
.yf{bottom:531.360000pt;}
.y1a8{bottom:531.680000pt;}
.ybc{bottom:534.240000pt;}
.yeb{bottom:534.880000pt;}
.ye8{bottom:539.360000pt;}
.y10d{bottom:540.000000pt;}
.y77{bottom:541.920000pt;}
.y34{bottom:542.240000pt;}
.y5a{bottom:545.440000pt;}
.y80{bottom:551.200000pt;}
.y1c4{bottom:552.480000pt;}
.y61{bottom:556.640000pt;}
.y10c{bottom:557.920000pt;}
.y23{bottom:557.946667pt;}
.y4d{bottom:560.506667pt;}
.y12b{bottom:560.800000pt;}
.y1a7{bottom:568.506667pt;}
.ybb{bottom:571.066667pt;}
.yea{bottom:572.000000pt;}
.ye{bottom:574.586667pt;}
.y10b{bottom:576.480000pt;}
.y7f{bottom:578.720000pt;}
.y76{bottom:578.746667pt;}
.y33{bottom:579.066667pt;}
.y193{bottom:586.893963pt;}
.y46{bottom:589.306667pt;}
.ycd{bottom:593.466667pt;}
.y10a{bottom:595.040000pt;}
.y4c{bottom:597.306667pt;}
.y12a{bottom:597.600000pt;}
.y16d{bottom:600.292056pt;}
.y22{bottom:600.826667pt;}
.y19d{bottom:601.440000pt;}
.y1a6{bottom:601.466667pt;}
.ye7{bottom:605.626667pt;}
.yba{bottom:607.866667pt;}
.y59{bottom:608.506667pt;}
.y109{bottom:613.280000pt;}
.y6d{bottom:615.546667pt;}
.y129{bottom:615.840000pt;}
.y32{bottom:615.866667pt;}
.yd{bottom:617.786667pt;}
.ycc{bottom:630.266667pt;}
.y108{bottom:631.520000pt;}
.y128{bottom:634.080000pt;}
.y4b{bottom:634.106667pt;}
.y21{bottom:643.706667pt;}
.y45{bottom:644.666667pt;}
.y75{bottom:652.346667pt;}
.y127{bottom:652.360000pt;}
.y31{bottom:652.666667pt;}
.yc{bottom:660.986667pt;}
.y15a{bottom:662.906667pt;}
.y58{bottom:663.546667pt;}
.ycb{bottom:667.066667pt;}
.y147{bottom:669.026667pt;}
.y4a{bottom:670.946667pt;}
.y20{bottom:686.946667pt;}
.y74{bottom:689.186667pt;}
.y30{bottom:689.506667pt;}
.y44{bottom:699.746667pt;}
.yb{bottom:700.386667pt;}
.yca{bottom:703.906667pt;}
.y49{bottom:707.746667pt;}
.y159{bottom:718.306667pt;}
.y57{bottom:718.946667pt;}
.y73{bottom:725.986667pt;}
.y2f{bottom:726.306667pt;}
.y1f{bottom:729.506667pt;}
.y15f{bottom:735.098934pt;}
.yc9{bottom:740.706667pt;}
.y48{bottom:744.546667pt;}
.y43{bottom:755.106667pt;}
.y1a2{bottom:761.423488pt;}
.y72{bottom:762.786667pt;}
.y2e{bottom:763.106667pt;}
.y1e{bottom:772.706667pt;}
.y158{bottom:773.346667pt;}
.y56{bottom:773.986667pt;}
.yc8{bottom:777.506667pt;}
.y2d{bottom:781.373333pt;}
.y15e{bottom:786.346193pt;}
.yc7{bottom:795.453333pt;}
.y71{bottom:799.613333pt;}
.y5c{bottom:799.933333pt;}
.y1d{bottom:815.613333pt;}
.ya{bottom:818.173333pt;}
.yc6{bottom:819.453333pt;}
.y15b{bottom:824.555380pt;}
.y15d{bottom:824.894766pt;}
.y157{bottom:828.733333pt;}
.y55{bottom:829.373333pt;}
.y70{bottom:836.413333pt;}
.y42{bottom:836.733333pt;}
.yc5{bottom:843.453333pt;}
.y2c{bottom:854.973333pt;}
.y9{bottom:858.173333pt;}
.y1c{bottom:858.493333pt;}
.yc4{bottom:867.453333pt;}
.y6f{bottom:873.213333pt;}
.y41{bottom:873.533333pt;}
.ye6{bottom:883.773333pt;}
.y54{bottom:884.413333pt;}
.y2b{bottom:891.813333pt;}
.y8{bottom:901.093333pt;}
.y1b{bottom:901.413333pt;}
.y6e{bottom:910.053333pt;}
.y40{bottom:910.373333pt;}
.y5b{bottom:932.133333pt;}
.y2a{bottom:939.173333pt;}
.y53{bottom:939.813333pt;}
.y7{bottom:944.293333pt;}
.y1a{bottom:944.613333pt;}
.y60{bottom:946.853333pt;}
.y3f{bottom:947.173333pt;}
.y1{bottom:1000.640000pt;}
.h6{height:18.560000pt;}
.h29{height:20.362627pt;}
.h23{height:20.702535pt;}
.h21{height:21.041921pt;}
.h1b{height:41.456250pt;}
.h3{height:42.570000pt;}
.h15{height:43.201250pt;}
.h2d{height:45.902530pt;}
.h2a{height:46.653053pt;}
.h24{height:47.431820pt;}
.h22{height:48.847696pt;}
.h14{height:49.020000pt;}
.h11{height:50.730000pt;}
.h27{height:57.342947pt;}
.h17{height:57.375000pt;}
.h2f{height:58.383581pt;}
.h26{height:62.311237pt;}
.hc{height:62.781250pt;}
.h4{height:62.812500pt;}
.h5{height:64.500000pt;}
.h10{height:66.750000pt;}
.h2e{height:67.014360pt;}
.h8{height:70.612954pt;}
.hf{height:70.896250pt;}
.h18{height:71.002917pt;}
.h1a{height:72.010000pt;}
.ha{height:72.826250pt;}
.h9{height:72.862500pt;}
.h12{height:73.495000pt;}
.h7{height:74.820000pt;}
.h31{height:86.430000pt;}
.hd{height:94.218750pt;}
.hb{height:96.750000pt;}
.h1c{height:107.070000pt;}
.he{height:129.000000pt;}
.h16{height:242.946667pt;}
.h20{height:274.293333pt;}
.h19{height:283.933333pt;}
.h30{height:334.493333pt;}
.h2c{height:360.002737pt;}
.h28{height:394.373333pt;}
.h25{height:428.474603pt;}
.h2b{height:474.863703pt;}
.h1d{height:586.400000pt;}
.h13{height:589.600000pt;}
.h1e{height:646.266667pt;}
.h1f{height:667.066667pt;}
.h2{height:1056.000000pt;}
.h0{height:1126.400000pt;}
.h1{height:1126.666667pt;}
.w12{width:9.850776pt;}
.w13{width:16.028381pt;}
.w14{width:22.239378pt;}
.wb{width:22.540627pt;}
.wa{width:23.049062pt;}
.wd{width:25.760717pt;}
.we{width:26.269152pt;}
.wc{width:26.303048pt;}
.w3{width:29.760000pt;}
.w10{width:103.076763pt;}
.w17{width:108.039726pt;}
.w4{width:512.186667pt;}
.w5{width:524.026667pt;}
.w6{width:529.146667pt;}
.w8{width:532.066667pt;}
.w7{width:535.906667pt;}
.w9{width:536.186667pt;}
.w16{width:589.112736pt;}
.wf{width:613.172851pt;}
.w15{width:614.755180pt;}
.w11{width:703.933333pt;}
.w18{width:704.253333pt;}
.w1{width:797.333333pt;}
.w0{width:797.440000pt;}
.w2{width:816.000000pt;}
.x0{left:0.000000pt;}
.x29{left:1.864262pt;}
.x1c{left:9.600000pt;}
.x32{left:15.083578pt;}
.x35{left:16.269926pt;}
.x3b{left:18.198890pt;}
.x31{left:21.354278pt;}
.x3d{left:22.999215pt;}
.x3a{left:24.376495pt;}
.x30{left:27.624979pt;}
.x21{left:30.720000pt;}
.x1b{left:33.600000pt;}
.x1a{left:35.520000pt;}
.x3f{left:42.030982pt;}
.x15{left:56.640000pt;}
.x40{left:67.552000pt;}
.x3c{left:71.027966pt;}
.x14{left:74.880000pt;}
.x41{left:79.392000pt;}
.x20{left:81.626667pt;}
.x36{left:83.552000pt;}
.x33{left:86.467880pt;}
.x16{left:104.026667pt;}
.x1{left:113.312000pt;}
.x23{left:115.552000pt;}
.x8{left:117.152000pt;}
.x9{left:119.712000pt;}
.x26{left:127.424000pt;}
.x1e{left:132.224000pt;}
.xa{left:136.706667pt;}
.x13{left:139.266667pt;}
.x5{left:143.746667pt;}
.x17{left:151.386667pt;}
.xe{left:160.386667pt;}
.x1f{left:162.626667pt;}
.x3{left:177.026667pt;}
.x28{left:180.404530pt;}
.x24{left:184.741333pt;}
.x11{left:208.386667pt;}
.x4{left:231.453333pt;}
.x2a{left:234.129183pt;}
.x37{left:237.179122pt;}
.xc{left:288.093333pt;}
.xd{left:300.933333pt;}
.x2b{left:321.277801pt;}
.xb{left:326.533333pt;}
.x43{left:349.573333pt;}
.x2c{left:351.275478pt;}
.x10{left:365.253333pt;}
.x38{left:375.460079pt;}
.x2d{left:390.424988pt;}
.x7{left:407.840000pt;}
.x2e{left:429.433267pt;}
.x27{left:436.960000pt;}
.x2f{left:462.312076pt;}
.x42{left:488.186667pt;}
.x39{left:513.732689pt;}
.x6{left:565.026667pt;}
.x3e{left:588.521877pt;}
.x34{left:622.681012pt;}
.x18{left:631.906667pt;}
.x25{left:661.693333pt;}
.x22{left:665.533333pt;}
.x2{left:668.413333pt;}
.x19{left:677.693333pt;}
.x1d{left:688.573333pt;}
.xf{left:702.653333pt;}
.x12{left:712.573333pt;}
}




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