
    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_eb224ff9303540f971b47b6c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_b08b61a2f27def0c76b57aaa.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.898000;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_c41bbec3717ccf4f0c256b4e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.890000;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_4d2a0c4dcf6bbb20aec42811.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.860000;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_d20e9d3d4fdd6321714a149c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.007324;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;}
.m8{transform:matrix(0.139206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139206,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.154636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154636,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.186477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186477,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.236144,0.000000,-0.080753,0.236599,0,0);-ms-transform:matrix(0.236144,0.000000,-0.080753,0.236599,0,0);-webkit-transform:matrix(0.236144,0.000000,-0.080753,0.236599,0,0);}
.m7{transform:matrix(0.236145,0.000000,-0.080755,0.236598,0,0);-ms-transform:matrix(0.236145,0.000000,-0.080755,0.236598,0,0);-webkit-transform:matrix(0.236145,0.000000,-0.080755,0.236598,0,0);}
.ma{transform:matrix(0.236146,0.000000,-0.080757,0.236597,0,0);-ms-transform:matrix(0.236146,0.000000,-0.080757,0.236597,0,0);-webkit-transform:matrix(0.236146,0.000000,-0.080757,0.236597,0,0);}
.m13{transform:matrix(0.249508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249508,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249531,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249533,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249537,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250540,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250642,0.000000,0.000000,0.250000,0,0);}
.v6{vertical-align:-35.279986px;}
.v4{vertical-align:-30.239988px;}
.v9{vertical-align:-26.639989px;}
.v3{vertical-align:-20.159992px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:2.879999px;}
.v2{vertical-align:20.159992px;}
.v1{vertical-align:28.079989px;}
.v5{vertical-align:30.239988px;}
.v7{vertical-align:35.279986px;}
.ls1{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.043315px;}
.ls0{letter-spacing:0.046560px;}
.ls4{letter-spacing:0.049745px;}
.lsb{letter-spacing:0.247387px;}
.ls2{letter-spacing:0.306806px;}
.lsd{letter-spacing:0.383940px;}
.ls6{letter-spacing:0.421613px;}
.lsa{letter-spacing:0.968767px;}
.ls3{letter-spacing:211.025916px;}
.ls7{letter-spacing:314.490089px;}
.ls8{letter-spacing:374.778450px;}
.ls9{letter-spacing:441.453178px;}
.ls5{letter-spacing:538.531585px;}
.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;}
}
.ws4{word-spacing:-17.025443px;}
.ws11{word-spacing:-16.971293px;}
.wsb{word-spacing:-16.919993px;}
.ws16{word-spacing:-16.825193px;}
.ws1b{word-spacing:-14.652354px;}
.ws7{word-spacing:-14.093339px;}
.ws0{word-spacing:-14.043594px;}
.ws18{word-spacing:-13.921194px;}
.ws1c{word-spacing:-13.499995px;}
.ws3{word-spacing:-10.494221px;}
.ws12{word-spacing:-10.460807px;}
.wsc{word-spacing:-10.428816px;}
.ws6{word-spacing:-9.931676px;}
.wsf{word-spacing:-9.899996px;}
.wsa{word-spacing:-9.869756px;}
.ws15{word-spacing:-9.814136px;}
.ws1{word-spacing:-9.136436px;}
.ws2{word-spacing:0.000000px;}
.ws8{word-spacing:0.688356px;}
.ws1a{word-spacing:122.217512px;}
.ws19{word-spacing:157.410086px;}
.ws5{word-spacing:310.195227px;}
.wsd{word-spacing:356.329777px;}
.wse{word-spacing:362.292719px;}
.ws10{word-spacing:443.747296px;}
.ws9{word-spacing:482.101413px;}
.ws14{word-spacing:526.428144px;}
.ws17{word-spacing:526.797634px;}
.ws13{word-spacing:582.660752px;}
._52{margin-left:-630.527363px;}
._5b{margin-left:-457.959868px;}
._5a{margin-left:-339.423464px;}
._4e{margin-left:-338.138625px;}
._4f{margin-left:-310.427756px;}
._67{margin-left:-301.952143px;}
._32{margin-left:-297.866480px;}
._46{margin-left:-288.303395px;}
._3f{margin-left:-281.513527px;}
._42{margin-left:-276.654609px;}
._30{margin-left:-262.557196px;}
._5c{margin-left:-260.578835px;}
._2d{margin-left:-254.005904px;}
._31{margin-left:-247.347581px;}
._44{margin-left:-246.239088px;}
._33{margin-left:-240.389873px;}
._35{margin-left:-238.443265px;}
._40{margin-left:-233.038900px;}
._3d{margin-left:-230.382628px;}
._56{margin-left:-223.264568px;}
._2c{margin-left:-216.655968px;}
._49{margin-left:-202.970439px;}
._47{margin-left:-201.527439px;}
._4d{margin-left:-200.504607px;}
._53{margin-left:-199.049502px;}
._2f{margin-left:-196.837609px;}
._59{margin-left:-195.131779px;}
._39{margin-left:-189.977261px;}
._58{margin-left:-186.666779px;}
._3b{margin-left:-180.459027px;}
._4b{margin-left:-178.546849px;}
._69{margin-left:-177.509895px;}
._63{margin-left:-173.296764px;}
._5d{margin-left:-169.683671px;}
._54{margin-left:-168.386144px;}
._55{margin-left:-164.648857px;}
._64{margin-left:-161.174091px;}
._75{margin-left:-158.412319px;}
._37{margin-left:-154.151425px;}
._4c{margin-left:-151.576172px;}
._60{margin-left:-149.368043px;}
._4a{margin-left:-145.030335px;}
._48{margin-left:-143.095863px;}
._57{margin-left:-139.906458px;}
._68{margin-left:-137.225941px;}
._2e{margin-left:-132.808967px;}
._45{margin-left:-129.615466px;}
._62{margin-left:-127.996398px;}
._34{margin-left:-125.689719px;}
._36{margin-left:-123.743111px;}
._41{margin-left:-121.945944px;}
._3e{margin-left:-120.732672px;}
._3a{margin-left:-119.127864px;}
._66{margin-left:-116.727389px;}
._61{margin-left:-114.284109px;}
._79{margin-left:-112.259475px;}
._80{margin-left:-104.799438px;}
._43{margin-left:-103.579279px;}
._5f{margin-left:-98.874463px;}
._7e{margin-left:-97.250961px;}
._38{margin-left:-90.885466px;}
._77{margin-left:-81.214592px;}
._5e{margin-left:-77.300822px;}
._76{margin-left:-76.165174px;}
._7d{margin-left:-74.887710px;}
._7c{margin-left:-69.837992px;}
._7a{margin-left:-58.469640px;}
._7f{margin-left:-54.051698px;}
._78{margin-left:-44.042706px;}
._51{margin-left:-41.441323px;}
._74{margin-left:-32.684490px;}
._6b{margin-left:-3.568787px;}
._1c{margin-left:-2.544865px;}
._1{margin-left:-1.221424px;}
._0{width:1.631887px;}
._6{width:2.950446px;}
._7{width:4.223518px;}
._1f{width:5.288235px;}
._8{width:6.351009px;}
._d{width:7.970214px;}
._e{width:9.112820px;}
._5{width:10.145130px;}
._4{width:11.273374px;}
._1e{width:12.777907px;}
._1d{width:15.075391px;}
._2{width:16.142536px;}
._16{width:17.275990px;}
._10{width:18.304176px;}
._11{width:19.896350px;}
._26{width:21.222412px;}
._14{width:22.325648px;}
._15{width:23.496639px;}
._25{width:24.581357px;}
._17{width:26.107799px;}
._9{width:27.121489px;}
._a{width:28.458685px;}
._22{width:29.614911px;}
._1a{width:30.750804px;}
._1b{width:32.206878px;}
._6e{width:33.472211px;}
._2a{width:34.778705px;}
._29{width:36.644798px;}
._c{width:38.107077px;}
._b{width:39.304268px;}
._6d{width:41.220334px;}
._24{width:42.847072px;}
._23{width:44.308823px;}
._3c{width:45.539862px;}
._13{width:46.563881px;}
._12{width:47.909232px;}
._20{width:49.045305px;}
._21{width:50.158780px;}
._7b{width:53.765978px;}
._19{width:63.797600px;}
._18{width:65.472797px;}
._84{width:91.281266px;}
._28{width:100.581831px;}
._27{width:101.895835px;}
._6c{width:103.919778px;}
._3{width:105.704958px;}
._73{width:107.709977px;}
._83{width:120.278601px;}
._2b{width:130.247768px;}
._82{width:134.037546px;}
._f{width:156.575337px;}
._71{width:236.731890px;}
._81{width:254.308698px;}
._50{width:267.293293px;}
._65{width:283.885086px;}
._70{width:296.349726px;}
._6f{width:315.056094px;}
._6a{width:425.275030px;}
._72{width:503.503949px;}
.fc2{color:transparent;}
.fc1{color:rgb(50,50,50);}
.fc0{color:rgb(0,0,0);}
.fs19{font-size:31.499987px;}
.fs17{font-size:34.188466px;}
.fs4{font-size:36.545745px;}
.fsf{font-size:39.256544px;}
.fs8{font-size:39.479024px;}
.fsb{font-size:39.599984px;}
.fs7{font-size:39.726704px;}
.fs9{font-size:41.715263px;}
.fsd{font-size:41.843228px;}
.fs5{font-size:41.976882px;}
.fs3{font-size:45.343422px;}
.fs15{font-size:50.759980px;}
.fs18{font-size:53.999978px;}
.fs14{font-size:55.684778px;}
.fs13{font-size:56.103818px;}
.fs0{font-size:56.174378px;}
.fs16{font-size:58.609417px;}
.fs10{font-size:67.300773px;}
.fs12{font-size:67.592973px;}
.fs1{font-size:67.679973px;}
.fsc{font-size:67.885173px;}
.fs6{font-size:68.101773px;}
.fs11{font-size:89.358564px;}
.fs2{font-size:101.519959px;}
.fse{font-size:107.786357px;}
.fsa{font-size:119.683152px;}
.yb6{bottom:-14.940051px;}
.y0{bottom:0.000000px;}
.y18d{bottom:2.519700px;}
.y18b{bottom:3.059689px;}
.y119{bottom:3.059890px;}
.y83{bottom:3.779729px;}
.y89{bottom:3.779745px;}
.yb2{bottom:4.859934px;}
.yab{bottom:5.939917px;}
.ya4{bottom:6.479900px;}
.y127{bottom:106.919957px;}
.y13e{bottom:110.159956px;}
.y141{bottom:110.339956px;}
.y3e{bottom:112.319955px;}
.y179{bottom:112.859955px;}
.y142{bottom:113.759954px;}
.y149{bottom:113.939954px;}
.y5d{bottom:115.559954px;}
.y13a{bottom:122.579951px;}
.y126{bottom:123.119951px;}
.yf5{bottom:126.179950px;}
.y3d{bottom:128.519949px;}
.y178{bottom:128.879948px;}
.y76{bottom:129.059948px;}
.y5c{bottom:131.759947px;}
.y146{bottom:132.299947px;}
.y186{bottom:134.459946px;}
.y143{bottom:135.719946px;}
.y14a{bottom:135.899946px;}
.y13b{bottom:136.619945px;}
.y125{bottom:139.319944px;}
.yb5{bottom:142.020000px;}
.yf4{bottom:142.379943px;}
.y3c{bottom:144.719942px;}
.y177{bottom:145.079942px;}
.y140{bottom:147.059941px;}
.y5b{bottom:147.959941px;}
.y13c{bottom:150.659940px;}
.y14c{bottom:153.179939px;}
.y147{bottom:154.259938px;}
.y124{bottom:155.699938px;}
.y144{bottom:157.679937px;}
.y14b{bottom:157.859937px;}
.yf3{bottom:158.579937px;}
.yb1{bottom:159.660000px;}
.yb4{bottom:160.199936px;}
.y3b{bottom:161.099936px;}
.yb9{bottom:161.279935px;}
.y176{bottom:161.459935px;}
.y5a{bottom:164.339934px;}
.y13d{bottom:164.699934px;}
.y185{bottom:167.039933px;}
.yb3{bottom:171.899931px;}
.yf2{bottom:174.779930px;}
.y148{bottom:176.219930px;}
.y3a{bottom:177.119929px;}
.yb8{bottom:178.019929px;}
.y13f{bottom:178.739929px;}
.y145{bottom:179.819928px;}
.y59{bottom:180.539928px;}
.y184{bottom:183.239927px;}
.y194{bottom:185.039926px;}
.yb0{bottom:186.479925px;}
.y123{bottom:188.099925px;}
.yf1{bottom:190.979924px;}
.y39{bottom:193.319923px;}
.yb7{bottom:194.399922px;}
.y58{bottom:196.559921px;}
.y139{bottom:199.439920px;}
.y193{bottom:199.619920px;}
.yaa{bottom:201.600000px;}
.yae{bottom:203.219919px;}
.yf0{bottom:207.179917px;}
.yaf{bottom:207.359917px;}
.yad{bottom:207.539917px;}
.y38{bottom:209.519916px;}
.y57{bottom:212.759915px;}
.yac{bottom:215.099914px;}
.y138{bottom:215.639914px;}
.yc2{bottom:220.139912px;}
.yef{bottom:223.559911px;}
.y37{bottom:225.899910px;}
.y151{bottom:227.519909px;}
.y56{bottom:229.139908px;}
.ya9{bottom:229.319908px;}
.y137{bottom:231.839907px;}
.y1a4{bottom:232.379907px;}
.yba{bottom:236.339905px;}
.yee{bottom:239.759904px;}
.y36{bottom:242.099903px;}
.ya3{bottom:242.640000px;}
.ya7{bottom:244.799902px;}
.y55{bottom:245.339902px;}
.y183{bottom:248.039901px;}
.ya8{bottom:248.939900px;}
.y136{bottom:249.119900px;}
.yc1{bottom:252.359899px;}
.ya6{bottom:257.759897px;}
.y35{bottom:258.299897px;}
.ya5{bottom:261.179896px;}
.y11a{bottom:261.359895px;}
.y54{bottom:261.539895px;}
.y182{bottom:264.239894px;}
.y135{bottom:265.499894px;}
.ybe{bottom:271.439891px;}
.y118{bottom:272.880000px;}
.y34{bottom:274.319890px;}
.ya2{bottom:275.219890px;}
.y117{bottom:275.939890px;}
.y53{bottom:277.739889px;}
.y181{bottom:280.439888px;}
.y134{bottom:281.699887px;}
.y33{bottom:290.699884px;}
.y52{bottom:293.939882px;}
.ya1{bottom:294.839882px;}
.y180{bottom:296.819881px;}
.y133{bottom:297.719881px;}
.ya0{bottom:302.399879px;}
.y32{bottom:306.899877px;}
.y51{bottom:310.139876px;}
.y17f{bottom:313.019875px;}
.y132{bottom:313.919874px;}
.y9f{bottom:316.799873px;}
.yc0{bottom:320.579872px;}
.y31{bottom:323.099871px;}
.y50{bottom:326.339869px;}
.y17e{bottom:329.039868px;}
.y131{bottom:330.299868px;}
.y9c{bottom:332.279867px;}
.ybf{bottom:335.879866px;}
.y9e{bottom:336.419865px;}
.y30{bottom:339.299864px;}
.y4f{bottom:342.539863px;}
.y9d{bottom:343.979862px;}
.y17d{bottom:345.239862px;}
.y130{bottom:346.499861px;}
.y2f{bottom:355.679858px;}
.y9b{bottom:358.559857px;}
.y4e{bottom:358.919856px;}
.y17c{bottom:361.619855px;}
.y12f{bottom:362.699855px;}
.y2e{bottom:371.699851px;}
.y116{bottom:372.059851px;}
.y9a{bottom:374.579850px;}
.y4d{bottom:375.119850px;}
.y17b{bottom:377.819849px;}
.y1a3{bottom:378.179849px;}
.y12e{bottom:378.899848px;}
.ybc{bottom:382.139847px;}
.y2d{bottom:387.899845px;}
.y99{bottom:390.779844px;}
.y4c{bottom:391.139844px;}
.y115{bottom:391.499843px;}
.ybd{bottom:393.839842px;}
.y17a{bottom:394.019842px;}
.y12d{bottom:395.099842px;}
.ybb{bottom:398.879840px;}
.y2c{bottom:404.099838px;}
.y98{bottom:406.979837px;}
.y4b{bottom:407.339837px;}
.y114{bottom:410.579836px;}
.y12c{bottom:411.299835px;}
.y2b{bottom:420.479832px;}
.y196{bottom:420.659832px;}
.y97{bottom:423.359831px;}
.y4a{bottom:423.719831px;}
.y113{bottom:426.779829px;}
.y12b{bottom:427.499829px;}
.y195{bottom:435.419826px;}
.y2a{bottom:436.679825px;}
.y96{bottom:439.559824px;}
.y49{bottom:439.919824px;}
.y112{bottom:443.159823px;}
.y12a{bottom:443.699823px;}
.y175{bottom:444.239822px;}
.y29{bottom:452.699819px;}
.y95{bottom:455.759818px;}
.y48{bottom:456.119818px;}
.y111{bottom:459.359816px;}
.y129{bottom:460.079816px;}
.y174{bottom:460.439816px;}
.y28{bottom:468.899812px;}
.y94{bottom:471.779811px;}
.y47{bottom:472.139811px;}
.y110{bottom:475.559810px;}
.y128{bottom:476.279809px;}
.y173{bottom:476.639809px;}
.y27{bottom:485.279806px;}
.y93{bottom:488.159805px;}
.y46{bottom:488.519805px;}
.y10f{bottom:491.579803px;}
.y122{bottom:492.299803px;}
.yed{bottom:492.479803px;}
.y172{bottom:492.839803px;}
.y26{bottom:501.479799px;}
.y92{bottom:504.359798px;}
.y45{bottom:504.719798px;}
.y10e{bottom:507.959797px;}
.y121{bottom:508.499797px;}
.yec{bottom:508.679797px;}
.y171{bottom:509.039796px;}
.y25{bottom:517.679793px;}
.y91{bottom:520.559792px;}
.y44{bottom:520.919792px;}
.y10d{bottom:524.159790px;}
.y120{bottom:524.879790px;}
.yeb{bottom:525.059790px;}
.y170{bottom:525.239790px;}
.y23{bottom:533.879786px;}
.y90{bottom:536.759785px;}
.y43{bottom:537.119785px;}
.y10c{bottom:540.359784px;}
.y24{bottom:540.539784px;}
.yea{bottom:541.079784px;}
.y16f{bottom:541.619783px;}
.y22{bottom:550.079780px;}
.y8f{bottom:552.959779px;}
.y42{bottom:553.499779px;}
.y10b{bottom:556.559777px;}
.ye9{bottom:557.279777px;}
.y16e{bottom:557.639777px;}
.y21{bottom:566.279773px;}
.y8e{bottom:569.159772px;}
.y41{bottom:569.519772px;}
.y10a{bottom:572.939771px;}
.ye8{bottom:573.479771px;}
.y16d{bottom:573.839770px;}
.y75{bottom:582.479767px;}
.y20{bottom:582.659767px;}
.y8d{bottom:585.179766px;}
.y40{bottom:585.719766px;}
.y109{bottom:588.959764px;}
.y11f{bottom:589.679764px;}
.ye7{bottom:589.859764px;}
.y164{bottom:592.919763px;}
.y74{bottom:598.679761px;}
.y8c{bottom:600.479760px;}
.y160{bottom:601.019760px;}
.y1f{bottom:601.559759px;}
.y3f{bottom:601.919759px;}
.y8b{bottom:602.639759px;}
.y108{bottom:605.159758px;}
.ye6{bottom:606.059758px;}
.y15d{bottom:609.839756px;}
.y167{bottom:610.019756px;}
.y165{bottom:613.259755px;}
.y161{bottom:613.979754px;}
.y73{bottom:615.059754px;}
.y1e{bottom:617.939753px;}
.y8a{bottom:618.839752px;}
.y166{bottom:619.559752px;}
.y15c{bottom:619.739752px;}
.y107{bottom:621.359751px;}
.ye5{bottom:622.259751px;}
.y15f{bottom:623.519751px;}
.y14f{bottom:625.139750px;}
.y162{bottom:626.939749px;}
.y168{bottom:630.179748px;}
.y72{bottom:631.259747px;}
.y15e{bottom:632.519747px;}
.y16c{bottom:632.879747px;}
.y16a{bottom:633.419747px;}
.y169{bottom:633.599747px;}
.y1d{bottom:634.139746px;}
.y86{bottom:634.319746px;}
.y88{bottom:634.680000px;}
.y106{bottom:637.739745px;}
.ye4{bottom:638.279745px;}
.y87{bottom:638.459745px;}
.y14e{bottom:639.719744px;}
.y71{bottom:647.279741px;}
.y1c{bottom:650.699740px;}
.y163{bottom:652.679739px;}
.y16b{bottom:653.759738px;}
.y105{bottom:653.939738px;}
.y14d{bottom:654.479738px;}
.ye3{bottom:654.659738px;}
.y85{bottom:659.159736px;}
.y70{bottom:663.479735px;}
.y1b{bottom:666.359733px;}
.y104{bottom:670.139732px;}
.ye2{bottom:670.859732px;}
.y15b{bottom:671.039732px;}
.y84{bottom:671.579731px;}
.y80{bottom:674.459730px;}
.y82{bottom:674.820000px;}
.y81{bottom:678.599729px;}
.y6f{bottom:679.859728px;}
.y1a{bottom:682.739727px;}
.y103{bottom:686.159726px;}
.ye1{bottom:687.059725px;}
.y15a{bottom:687.239725px;}
.y6e{bottom:696.059722px;}
.y19{bottom:698.939720px;}
.y7f{bottom:699.299720px;}
.y102{bottom:702.539719px;}
.ye0{bottom:703.259719px;}
.y159{bottom:703.439719px;}
.y6d{bottom:712.259715px;}
.y18{bottom:715.139714px;}
.y7e{bottom:715.499714px;}
.y101{bottom:718.739713px;}
.ydf{bottom:719.459712px;}
.y158{bottom:719.819712px;}
.y1a2{bottom:728.459709px;}
.y6c{bottom:729.179708px;}
.y17{bottom:731.339707px;}
.y7d{bottom:731.699707px;}
.y100{bottom:734.939706px;}
.yde{bottom:735.659706px;}
.y157{bottom:736.019706px;}
.y1a1{bottom:744.659702px;}
.y18c{bottom:746.820000px;}
.y16{bottom:747.539701px;}
.y6b{bottom:747.899701px;}
.yff{bottom:751.139700px;}
.ydd{bottom:751.859699px;}
.y156{bottom:752.039699px;}
.y192{bottom:752.219699px;}
.y1a0{bottom:760.859696px;}
.y15{bottom:763.739695px;}
.y6a{bottom:764.099694px;}
.y191{bottom:766.979693px;}
.yfe{bottom:767.339693px;}
.ydc{bottom:768.059693px;}
.y155{bottom:768.239693px;}
.y18a{bottom:775.440000px;}
.y19e{bottom:777.239689px;}
.y19f{bottom:777.419689px;}
.y189{bottom:778.499689px;}
.y14{bottom:779.939688px;}
.y69{bottom:780.299688px;}
.y190{bottom:781.559687px;}
.yfd{bottom:783.539687px;}
.ydb{bottom:784.439686px;}
.y154{bottom:784.619686px;}
.y188{bottom:793.079683px;}
.y13{bottom:796.139682px;}
.y18f{bottom:796.319681px;}
.y68{bottom:796.499681px;}
.yfc{bottom:799.739680px;}
.yda{bottom:800.639680px;}
.y153{bottom:800.819680px;}
.y187{bottom:807.659677px;}
.y18e{bottom:810.899676px;}
.y12{bottom:812.519675px;}
.y67{bottom:812.879675px;}
.yfb{bottom:815.939674px;}
.yd9{bottom:816.659673px;}
.y152{bottom:817.019673px;}
.y11{bottom:828.719669px;}
.y66{bottom:829.079668px;}
.yfa{bottom:832.319667px;}
.yd8{bottom:833.039667px;}
.y10{bottom:844.739662px;}
.y65{bottom:845.099662px;}
.yf9{bottom:848.519661px;}
.yd7{bottom:852.479659px;}
.yf{bottom:861.299655px;}
.yf8{bottom:864.539654px;}
.yd6{bottom:868.679653px;}
.ye{bottom:877.679649px;}
.yf7{bottom:880.739648px;}
.yd5{bottom:884.879646px;}
.yd{bottom:893.879642px;}
.y7c{bottom:894.599642px;}
.yf6{bottom:897.119641px;}
.yd4{bottom:901.079640px;}
.yc{bottom:910.079636px;}
.y7b{bottom:913.319635px;}
.yd3{bottom:917.279633px;}
.yb{bottom:926.279629px;}
.y7a{bottom:929.519628px;}
.yd2{bottom:933.479627px;}
.ya{bottom:942.479623px;}
.y79{bottom:945.719622px;}
.yd1{bottom:949.679620px;}
.y9{bottom:958.679617px;}
.y78{bottom:961.919615px;}
.y8{bottom:965.159614px;}
.yd0{bottom:965.879614px;}
.y19d{bottom:974.879610px;}
.y6{bottom:975.059610px;}
.y64{bottom:975.239610px;}
.y77{bottom:978.119609px;}
.ycf{bottom:982.079607px;}
.y7{bottom:982.979607px;}
.y19c{bottom:991.079604px;}
.y150{bottom:993.779602px;}
.y63{bottom:994.319602px;}
.y5{bottom:995.039602px;}
.yce{bottom:998.459601px;}
.y19b{bottom:1007.459597px;}
.y62{bottom:1010.519596px;}
.ycd{bottom:1012.319595px;}
.ycc{bottom:1014.479594px;}
.y4{bottom:1016.459593px;}
.y19a{bottom:1023.659591px;}
.y61{bottom:1026.899589px;}
.ycb{bottom:1028.699589px;}
.yca{bottom:1030.679588px;}
.y199{bottom:1039.679584px;}
.y60{bottom:1043.099583px;}
.yc8{bottom:1044.899582px;}
.y3{bottom:1045.439582px;}
.yc7{bottom:1047.059581px;}
.yc9{bottom:1053.539579px;}
.y198{bottom:1055.879578px;}
.y11c{bottom:1057.859577px;}
.y5f{bottom:1059.119576px;}
.y11d{bottom:1061.999575px;}
.y11e{bottom:1062.899575px;}
.yc3{bottom:1063.079575px;}
.yc4{bottom:1065.959574px;}
.y11b{bottom:1069.559572px;}
.yc5{bottom:1070.099572px;}
.yc6{bottom:1070.999572px;}
.y197{bottom:1072.439571px;}
.y2{bottom:1072.799571px;}
.y5e{bottom:1075.319570px;}
.y1{bottom:1124.459550px;}
.h25{height:0.180000px;}
.h36{height:13.860000px;}
.h2c{height:14.400000px;}
.he{height:20.880000px;}
.h34{height:21.514491px;}
.h22{height:23.040000px;}
.h30{height:23.350722px;}
.h2f{height:23.521665px;}
.h1c{height:24.120000px;}
.h6{height:24.960744px;}
.ha{height:25.143473px;}
.h20{height:26.812220px;}
.h1e{height:27.008502px;}
.h14{height:27.161569px;}
.h19{height:27.244789px;}
.h10{height:27.331972px;}
.h15{height:28.700101px;}
.h1a{height:28.788141px;}
.hc{height:28.880095px;}
.h17{height:28.980000px;}
.h5{height:31.377648px;}
.h2b{height:34.922866px;}
.h35{height:36.881985px;}
.h33{height:37.151985px;}
.h29{height:38.311127px;}
.h7{height:38.367100px;}
.h28{height:38.533866px;}
.h27{height:38.599426px;}
.h1{height:38.647972px;}
.h9{height:38.872669px;}
.h12{height:39.367971px;}
.h8{height:39.592669px;}
.h31{height:40.030232px;}
.h2e{height:40.323279px;}
.h2a{height:41.191126px;}
.h24{height:45.966428px;}
.hb{height:46.225422px;}
.h1f{height:46.302932px;}
.h26{height:46.503965px;}
.hd{height:46.513511px;}
.h2{height:46.563821px;}
.h4{height:46.834541px;}
.hf{height:46.854020px;}
.h21{height:49.182931px;}
.h32{height:50.018535px;}
.h2d{height:54.288117px;}
.h16{height:57.204161px;}
.h23{height:61.478692px;}
.h1b{height:62.326775px;}
.h13{height:66.723813px;}
.h11{height:66.727961px;}
.h3{height:69.845732px;}
.h1d{height:74.157014px;}
.h18{height:82.342009px;}
.h0{height:1188.000000px;}
.w3{width:5.580000px;}
.w8{width:5.760000px;}
.w4{width:7.740000px;}
.w1{width:9.360000px;}
.w2{width:13.500000px;}
.w5{width:22.860000px;}
.w7{width:148.680000px;}
.w6{width:166.140000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3{left:140.399944px;}
.x15{left:141.479361px;}
.x74{left:143.279943px;}
.x4{left:145.079942px;}
.x1a{left:148.315591px;}
.x4b{left:150.300000px;}
.x7e{left:156.959942px;}
.x4c{left:160.379936px;}
.x73{left:167.399933px;}
.x82{left:168.839844px;}
.x5d{left:170.461370px;}
.x86{left:172.620366px;}
.xd{left:173.699333px;}
.x60{left:177.299929px;}
.x61{left:178.739928px;}
.x4f{left:183.781021px;}
.x51{left:185.220947px;}
.x7c{left:187.379975px;}
.x50{left:190.441021px;}
.xb{left:193.139923px;}
.xc{left:197.999921px;}
.x4d{left:199.259920px;}
.xf{left:211.139341px;}
.x17{left:240.479319px;}
.x18{left:247.855191px;}
.x8a{left:254.159898px;}
.x8b{left:259.559896px;}
.x85{left:261.180562px;}
.xe{left:262.619356px;}
.x8c{left:266.759893px;}
.x7b{left:268.019928px;}
.x79{left:274.139938px;}
.x7a{left:280.259933px;}
.x8d{left:285.659886px;}
.x1b{left:291.415664px;}
.x8e{left:292.859883px;}
.x88{left:294.120000px;}
.x80{left:297.539923px;}
.x81{left:299.159980px;}
.x7f{left:302.039921px;}
.x84{left:303.660502px;}
.x83{left:306.720499px;}
.x78{left:312.119865px;}
.x19{left:318.955167px;}
.x77{left:320.039868px;}
.x76{left:330.299868px;}
.x6{left:331.740247px;}
.x1c{left:335.879866px;}
.x4e{left:339.479864px;}
.x7d{left:341.819863px;}
.x1d{left:343.079863px;}
.x8f{left:344.519862px;}
.x75{left:349.739860px;}
.x90{left:351.719859px;}
.x87{left:356.939857px;}
.x52{left:363.059427px;}
.x1f{left:374.579850px;}
.x5a{left:381.419847px;}
.x57{left:385.379846px;}
.x58{left:390.059849px;}
.x59{left:392.939843px;}
.x89{left:398.519841px;}
.x5b{left:403.379839px;}
.x5c{left:408.059837px;}
.x54{left:413.099835px;}
.x55{left:414.539833px;}
.x5f{left:417.240000px;}
.x53{left:420.119832px;}
.x56{left:429.299828px;}
.x5{left:431.100123px;}
.x7{left:444.059822px;}
.x8{left:452.699819px;}
.x16{left:458.459094px;}
.x1e{left:472.864767px;}
.x62{left:483.481332px;}
.x67{left:485.999585px;}
.x68{left:492.479582px;}
.x33{left:498.243111px;}
.x12{left:499.679492px;}
.x10{left:502.919799px;}
.x11{left:507.599797px;}
.x6e{left:511.379809px;}
.x29{left:512.819127px;}
.x6d{left:516.239821px;}
.x71{left:518.040742px;}
.x14{left:520.739637px;}
.x5e{left:522.734848px;}
.x34{left:525.059677px;}
.x37{left:527.219674px;}
.x91{left:533.518731px;}
.x2d{left:535.500000px;}
.x26{left:537.120000px;}
.x45{left:548.640000px;}
.x25{left:550.620000px;}
.x47{left:564.839774px;}
.x1{left:572.219771px;}
.x9{left:579.419768px;}
.xa{left:585.179766px;}
.x13{left:588.239543px;}
.x2c{left:589.860000px;}
.x2b{left:602.099759px;}
.x3a{left:606.600000px;}
.x2a{left:609.119756px;}
.x24{left:612.540000px;}
.x70{left:617.040235px;}
.x2e{left:618.479753px;}
.x46{left:620.820000px;}
.x35{left:621.899751px;}
.x41{left:623.879750px;}
.x49{left:626.039750px;}
.x64{left:631.259724px;}
.x48{left:633.419747px;}
.x2f{left:637.379745px;}
.x20{left:639.719744px;}
.x30{left:641.519743px;}
.x4a{left:646.739741px;}
.x3d{left:648.719713px;}
.x27{left:652.319739px;}
.x38{left:655.199738px;}
.x43{left:657.719737px;}
.x36{left:659.339736px;}
.x6c{left:661.679699px;}
.x66{left:664.559674px;}
.x42{left:665.639734px;}
.x23{left:666.900000px;}
.x65{left:669.419731px;}
.x40{left:674.820000px;}
.x22{left:680.039728px;}
.x44{left:682.019727px;}
.x6f{left:684.900356px;}
.x39{left:686.159726px;}
.x21{left:690.659724px;}
.x28{left:700.199720px;}
.x3f{left:701.279719px;}
.x3e{left:710.819716px;}
.x6b{left:717.659713px;}
.x3b{left:720.540000px;}
.x69{left:727.559709px;}
.x3c{left:730.259708px;}
.x6a{left:732.599708px;}
.x63{left:741.239704px;}
.x72{left:750.059700px;}
.x31{left:772.559691px;}
.x32{left:776.519689px;}
.x2{left:780.299688px;}
@media print{
.v6{vertical-align:-31.359987pt;}
.v4{vertical-align:-26.879989pt;}
.v9{vertical-align:-23.679991pt;}
.v3{vertical-align:-17.919993pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:2.559999pt;}
.v2{vertical-align:17.919993pt;}
.v1{vertical-align:24.959990pt;}
.v5{vertical-align:26.879989pt;}
.v7{vertical-align:31.359987pt;}
.ls1{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.038502pt;}
.ls0{letter-spacing:0.041387pt;}
.ls4{letter-spacing:0.044218pt;}
.lsb{letter-spacing:0.219900pt;}
.ls2{letter-spacing:0.272717pt;}
.lsd{letter-spacing:0.341280pt;}
.ls6{letter-spacing:0.374767pt;}
.lsa{letter-spacing:0.861126pt;}
.ls3{letter-spacing:187.578592pt;}
.ls7{letter-spacing:279.546746pt;}
.ls8{letter-spacing:333.136400pt;}
.ls9{letter-spacing:392.402825pt;}
.ls5{letter-spacing:478.694742pt;}
.ws4{word-spacing:-15.133727pt;}
.ws11{word-spacing:-15.085594pt;}
.wsb{word-spacing:-15.039994pt;}
.ws16{word-spacing:-14.955727pt;}
.ws1b{word-spacing:-13.024315pt;}
.ws7{word-spacing:-12.527413pt;}
.ws0{word-spacing:-12.483195pt;}
.ws18{word-spacing:-12.374395pt;}
.ws1c{word-spacing:-11.999995pt;}
.ws3{word-spacing:-9.328196pt;}
.ws12{word-spacing:-9.298495pt;}
.wsc{word-spacing:-9.270058pt;}
.ws6{word-spacing:-8.828156pt;}
.wsf{word-spacing:-8.799996pt;}
.wsa{word-spacing:-8.773116pt;}
.ws15{word-spacing:-8.723677pt;}
.ws1{word-spacing:-8.121277pt;}
.ws2{word-spacing:0.000000pt;}
.ws8{word-spacing:0.611872pt;}
.ws1a{word-spacing:108.637788pt;}
.ws19{word-spacing:139.920076pt;}
.ws5{word-spacing:275.729090pt;}
.wsd{word-spacing:316.737580pt;}
.wse{word-spacing:322.037972pt;}
.ws10{word-spacing:394.442041pt;}
.ws9{word-spacing:428.534590pt;}
.ws14{word-spacing:467.936128pt;}
.ws17{word-spacing:468.264564pt;}
.ws13{word-spacing:517.920668pt;}
._52{margin-left:-560.468767pt;}
._5b{margin-left:-407.075438pt;}
._5a{margin-left:-301.709746pt;}
._4e{margin-left:-300.567666pt;}
._4f{margin-left:-275.935783pt;}
._67{margin-left:-268.401905pt;}
._32{margin-left:-264.770204pt;}
._46{margin-left:-256.269685pt;}
._3f{margin-left:-250.234247pt;}
._42{margin-left:-245.915208pt;}
._30{margin-left:-233.384174pt;}
._5c{margin-left:-231.625631pt;}
._2d{margin-left:-225.783026pt;}
._31{margin-left:-219.864516pt;}
._44{margin-left:-218.879189pt;}
._33{margin-left:-213.679887pt;}
._35{margin-left:-211.949569pt;}
._40{margin-left:-207.145689pt;}
._3d{margin-left:-204.784558pt;}
._56{margin-left:-198.457394pt;}
._2c{margin-left:-192.583083pt;}
._49{margin-left:-180.418168pt;}
._47{margin-left:-179.135502pt;}
._4d{margin-left:-178.226318pt;}
._53{margin-left:-176.932891pt;}
._2f{margin-left:-174.966764pt;}
._59{margin-left:-173.450470pt;}
._39{margin-left:-168.868677pt;}
._58{margin-left:-165.926026pt;}
._3b{margin-left:-160.408024pt;}
._4b{margin-left:-158.708310pt;}
._69{margin-left:-157.786574pt;}
._63{margin-left:-154.041568pt;}
._5d{margin-left:-150.829930pt;}
._54{margin-left:-149.676573pt;}
._55{margin-left:-146.354540pt;}
._64{margin-left:-143.265858pt;}
._75{margin-left:-140.810950pt;}
._37{margin-left:-137.023489pt;}
._4c{margin-left:-134.734375pt;}
._60{margin-left:-132.771593pt;}
._4a{margin-left:-128.915853pt;}
._48{margin-left:-127.196322pt;}
._57{margin-left:-124.361296pt;}
._68{margin-left:-121.978614pt;}
._2e{margin-left:-118.052415pt;}
._45{margin-left:-115.213748pt;}
._62{margin-left:-113.774576pt;}
._34{margin-left:-111.724195pt;}
._36{margin-left:-109.993876pt;}
._41{margin-left:-108.396395pt;}
._3e{margin-left:-107.317930pt;}
._3a{margin-left:-105.891435pt;}
._66{margin-left:-103.757680pt;}
._61{margin-left:-101.585875pt;}
._79{margin-left:-99.786200pt;}
._80{margin-left:-93.155056pt;}
._43{margin-left:-92.070470pt;}
._5f{margin-left:-87.888411pt;}
._7e{margin-left:-86.445299pt;}
._38{margin-left:-80.787081pt;}
._77{margin-left:-72.190748pt;}
._5e{margin-left:-68.711842pt;}
._76{margin-left:-67.702377pt;}
._7d{margin-left:-66.566853pt;}
._7c{margin-left:-62.078215pt;}
._7a{margin-left:-51.973013pt;}
._7f{margin-left:-48.045954pt;}
._78{margin-left:-39.149072pt;}
._51{margin-left:-36.836732pt;}
._74{margin-left:-29.052880pt;}
._6b{margin-left:-3.172255pt;}
._1c{margin-left:-2.262103pt;}
._1{margin-left:-1.085710pt;}
._0{width:1.450566pt;}
._6{width:2.622619pt;}
._7{width:3.754238pt;}
._1f{width:4.700653pt;}
._8{width:5.645342pt;}
._d{width:7.084635pt;}
._e{width:8.100285pt;}
._5{width:9.017893pt;}
._4{width:10.020777pt;}
._1e{width:11.358139pt;}
._1d{width:13.400348pt;}
._2{width:14.348921pt;}
._16{width:15.356435pt;}
._10{width:16.270379pt;}
._11{width:17.685644pt;}
._26{width:18.864366pt;}
._14{width:19.845020pt;}
._15{width:20.885901pt;}
._25{width:21.850095pt;}
._17{width:23.206933pt;}
._9{width:24.107990pt;}
._a{width:25.296609pt;}
._22{width:26.324365pt;}
._1a{width:27.334048pt;}
._1b{width:28.628336pt;}
._6e{width:29.753076pt;}
._2a{width:30.914405pt;}
._29{width:32.573154pt;}
._c{width:33.872957pt;}
._b{width:34.937127pt;}
._6d{width:36.640297pt;}
._24{width:38.086287pt;}
._23{width:39.385621pt;}
._3c{width:40.479877pt;}
._13{width:41.390117pt;}
._12{width:42.585984pt;}
._20{width:43.595827pt;}
._21{width:44.585582pt;}
._7b{width:47.791981pt;}
._19{width:56.708978pt;}
._18{width:58.198042pt;}
._84{width:81.138903pt;}
._28{width:89.406072pt;}
._27{width:90.574076pt;}
._6c{width:92.373136pt;}
._3{width:93.959962pt;}
._73{width:95.742202pt;}
._83{width:106.914312pt;}
._2b{width:115.775794pt;}
._82{width:119.144486pt;}
._f{width:139.178078pt;}
._71{width:210.428347pt;}
._81{width:226.052176pt;}
._50{width:237.594038pt;}
._65{width:252.342299pt;}
._70{width:263.421979pt;}
._6f{width:280.049861pt;}
._6a{width:378.022249pt;}
._72{width:447.559066pt;}
.fs19{font-size:27.999989pt;}
.fs17{font-size:30.389748pt;}
.fs4{font-size:32.485107pt;}
.fsf{font-size:34.894706pt;}
.fs8{font-size:35.092466pt;}
.fsb{font-size:35.199986pt;}
.fs7{font-size:35.312626pt;}
.fs9{font-size:37.080233pt;}
.fsd{font-size:37.193980pt;}
.fs5{font-size:37.312784pt;}
.fs3{font-size:40.305264pt;}
.fs15{font-size:45.119982pt;}
.fs18{font-size:47.999981pt;}
.fs14{font-size:49.497580pt;}
.fs13{font-size:49.870060pt;}
.fs0{font-size:49.932780pt;}
.fs16{font-size:52.097259pt;}
.fs10{font-size:59.822909pt;}
.fs12{font-size:60.082643pt;}
.fs1{font-size:60.159976pt;}
.fsc{font-size:60.342376pt;}
.fs6{font-size:60.534909pt;}
.fs11{font-size:79.429835pt;}
.fs2{font-size:90.239964pt;}
.fse{font-size:95.810095pt;}
.fsa{font-size:106.385024pt;}
.yb6{bottom:-13.280045pt;}
.y0{bottom:0.000000pt;}
.y18d{bottom:2.239734pt;}
.y18b{bottom:2.719723pt;}
.y119{bottom:2.719902pt;}
.y83{bottom:3.359759pt;}
.y89{bottom:3.359773pt;}
.yb2{bottom:4.319942pt;}
.yab{bottom:5.279926pt;}
.ya4{bottom:5.759911pt;}
.y127{bottom:95.039962pt;}
.y13e{bottom:97.919961pt;}
.y141{bottom:98.079961pt;}
.y3e{bottom:99.839960pt;}
.y179{bottom:100.319960pt;}
.y142{bottom:101.119960pt;}
.y149{bottom:101.279959pt;}
.y5d{bottom:102.719959pt;}
.y13a{bottom:108.959956pt;}
.y126{bottom:109.439956pt;}
.yf5{bottom:112.159955pt;}
.y3d{bottom:114.239954pt;}
.y178{bottom:114.559954pt;}
.y76{bottom:114.719954pt;}
.y5c{bottom:117.119953pt;}
.y146{bottom:117.599953pt;}
.y186{bottom:119.519952pt;}
.y143{bottom:120.639952pt;}
.y14a{bottom:120.799952pt;}
.y13b{bottom:121.439951pt;}
.y125{bottom:123.839950pt;}
.yb5{bottom:126.240000pt;}
.yf4{bottom:126.559949pt;}
.y3c{bottom:128.639949pt;}
.y177{bottom:128.959948pt;}
.y140{bottom:130.719948pt;}
.y5b{bottom:131.519947pt;}
.y13c{bottom:133.919946pt;}
.y14c{bottom:136.159946pt;}
.y147{bottom:137.119945pt;}
.y124{bottom:138.399945pt;}
.y144{bottom:140.159944pt;}
.y14b{bottom:140.319944pt;}
.yf3{bottom:140.959944pt;}
.yb1{bottom:141.920000pt;}
.yb4{bottom:142.399943pt;}
.y3b{bottom:143.199943pt;}
.yb9{bottom:143.359943pt;}
.y176{bottom:143.519943pt;}
.y5a{bottom:146.079942pt;}
.y13d{bottom:146.399941pt;}
.y185{bottom:148.479941pt;}
.yb3{bottom:152.799939pt;}
.yf2{bottom:155.359938pt;}
.y148{bottom:156.639937pt;}
.y3a{bottom:157.439937pt;}
.yb8{bottom:158.239937pt;}
.y13f{bottom:158.879936pt;}
.y145{bottom:159.839936pt;}
.y59{bottom:160.479936pt;}
.y184{bottom:162.879935pt;}
.y194{bottom:164.479934pt;}
.yb0{bottom:165.759934pt;}
.y123{bottom:167.199933pt;}
.yf1{bottom:169.759932pt;}
.y39{bottom:171.839931pt;}
.yb7{bottom:172.799931pt;}
.y58{bottom:174.719930pt;}
.y139{bottom:177.279929pt;}
.y193{bottom:177.439929pt;}
.yaa{bottom:179.200000pt;}
.yae{bottom:180.639928pt;}
.yf0{bottom:184.159926pt;}
.yaf{bottom:184.319926pt;}
.yad{bottom:184.479926pt;}
.y38{bottom:186.239926pt;}
.y57{bottom:189.119924pt;}
.yac{bottom:191.199924pt;}
.y138{bottom:191.679923pt;}
.yc2{bottom:195.679922pt;}
.yef{bottom:198.719921pt;}
.y37{bottom:200.799920pt;}
.y151{bottom:202.239919pt;}
.y56{bottom:203.679919pt;}
.ya9{bottom:203.839918pt;}
.y137{bottom:206.079918pt;}
.y1a4{bottom:206.559917pt;}
.yba{bottom:210.079916pt;}
.yee{bottom:213.119915pt;}
.y36{bottom:215.199914pt;}
.ya3{bottom:215.680000pt;}
.ya7{bottom:217.599913pt;}
.y55{bottom:218.079913pt;}
.y183{bottom:220.479912pt;}
.ya8{bottom:221.279911pt;}
.y136{bottom:221.439911pt;}
.yc1{bottom:224.319910pt;}
.ya6{bottom:229.119908pt;}
.y35{bottom:229.599908pt;}
.ya5{bottom:232.159907pt;}
.y11a{bottom:232.319907pt;}
.y54{bottom:232.479907pt;}
.y182{bottom:234.879906pt;}
.y135{bottom:235.999906pt;}
.ybe{bottom:241.279903pt;}
.y118{bottom:242.560000pt;}
.y34{bottom:243.839902pt;}
.ya2{bottom:244.639902pt;}
.y117{bottom:245.279902pt;}
.y53{bottom:246.879901pt;}
.y181{bottom:249.279900pt;}
.y134{bottom:250.399900pt;}
.y33{bottom:258.399897pt;}
.y52{bottom:261.279895pt;}
.ya1{bottom:262.079895pt;}
.y180{bottom:263.839894pt;}
.y133{bottom:264.639894pt;}
.ya0{bottom:268.799892pt;}
.y32{bottom:272.799891pt;}
.y51{bottom:275.679890pt;}
.y17f{bottom:278.239889pt;}
.y132{bottom:279.039888pt;}
.y9f{bottom:281.599887pt;}
.yc0{bottom:284.959886pt;}
.y31{bottom:287.199885pt;}
.y50{bottom:290.079884pt;}
.y17e{bottom:292.479883pt;}
.y131{bottom:293.599883pt;}
.y9c{bottom:295.359882pt;}
.ybf{bottom:298.559881pt;}
.y9e{bottom:299.039880pt;}
.y30{bottom:301.599879pt;}
.y4f{bottom:304.479878pt;}
.y9d{bottom:305.759878pt;}
.y17d{bottom:306.879877pt;}
.y130{bottom:307.999877pt;}
.y2f{bottom:316.159874pt;}
.y9b{bottom:318.719873pt;}
.y4e{bottom:319.039872pt;}
.y17c{bottom:321.439871pt;}
.y12f{bottom:322.399871pt;}
.y2e{bottom:330.399868pt;}
.y116{bottom:330.719868pt;}
.y9a{bottom:332.959867pt;}
.y4d{bottom:333.439867pt;}
.y17b{bottom:335.839866pt;}
.y1a3{bottom:336.159866pt;}
.y12e{bottom:336.799865pt;}
.ybc{bottom:339.679864pt;}
.y2d{bottom:344.799862pt;}
.y99{bottom:347.359861pt;}
.y4c{bottom:347.679861pt;}
.y115{bottom:347.999861pt;}
.ybd{bottom:350.079860pt;}
.y17a{bottom:350.239860pt;}
.y12d{bottom:351.199860pt;}
.ybb{bottom:354.559858pt;}
.y2c{bottom:359.199856pt;}
.y98{bottom:361.759855pt;}
.y4b{bottom:362.079855pt;}
.y114{bottom:364.959854pt;}
.y12c{bottom:365.599854pt;}
.y2b{bottom:373.759850pt;}
.y196{bottom:373.919850pt;}
.y97{bottom:376.319849pt;}
.y4a{bottom:376.639849pt;}
.y113{bottom:379.359848pt;}
.y12b{bottom:379.999848pt;}
.y195{bottom:387.039845pt;}
.y2a{bottom:388.159845pt;}
.y96{bottom:390.719844pt;}
.y49{bottom:391.039844pt;}
.y112{bottom:393.919842pt;}
.y12a{bottom:394.399842pt;}
.y175{bottom:394.879842pt;}
.y29{bottom:402.399839pt;}
.y95{bottom:405.119838pt;}
.y48{bottom:405.439838pt;}
.y111{bottom:408.319837pt;}
.y129{bottom:408.959836pt;}
.y174{bottom:409.279836pt;}
.y28{bottom:416.799833pt;}
.y94{bottom:419.359832pt;}
.y47{bottom:419.679832pt;}
.y110{bottom:422.719831pt;}
.y128{bottom:423.359831pt;}
.y173{bottom:423.679831pt;}
.y27{bottom:431.359827pt;}
.y93{bottom:433.919826pt;}
.y46{bottom:434.239826pt;}
.y10f{bottom:436.959825pt;}
.y122{bottom:437.599825pt;}
.yed{bottom:437.759825pt;}
.y172{bottom:438.079825pt;}
.y26{bottom:445.759822pt;}
.y92{bottom:448.319821pt;}
.y45{bottom:448.639821pt;}
.y10e{bottom:451.519819pt;}
.y121{bottom:451.999819pt;}
.yec{bottom:452.159819pt;}
.y171{bottom:452.479819pt;}
.y25{bottom:460.159816pt;}
.y91{bottom:462.719815pt;}
.y44{bottom:463.039815pt;}
.y10d{bottom:465.919814pt;}
.y120{bottom:466.559813pt;}
.yeb{bottom:466.719813pt;}
.y170{bottom:466.879813pt;}
.y23{bottom:474.559810pt;}
.y90{bottom:477.119809pt;}
.y43{bottom:477.439809pt;}
.y10c{bottom:480.319808pt;}
.y24{bottom:480.479808pt;}
.yea{bottom:480.959808pt;}
.y16f{bottom:481.439807pt;}
.y22{bottom:488.959804pt;}
.y8f{bottom:491.519803pt;}
.y42{bottom:491.999803pt;}
.y10b{bottom:494.719802pt;}
.ye9{bottom:495.359802pt;}
.y16e{bottom:495.679802pt;}
.y21{bottom:503.359799pt;}
.y8e{bottom:505.919798pt;}
.y41{bottom:506.239798pt;}
.y10a{bottom:509.279796pt;}
.ye8{bottom:509.759796pt;}
.y16d{bottom:510.079796pt;}
.y75{bottom:517.759793pt;}
.y20{bottom:517.919793pt;}
.y8d{bottom:520.159792pt;}
.y40{bottom:520.639792pt;}
.y109{bottom:523.519791pt;}
.y11f{bottom:524.159790pt;}
.ye7{bottom:524.319790pt;}
.y164{bottom:527.039789pt;}
.y74{bottom:532.159787pt;}
.y8c{bottom:533.759786pt;}
.y160{bottom:534.239786pt;}
.y1f{bottom:534.719786pt;}
.y3f{bottom:535.039786pt;}
.y8b{bottom:535.679786pt;}
.y108{bottom:537.919785pt;}
.ye6{bottom:538.719785pt;}
.y15d{bottom:542.079783pt;}
.y167{bottom:542.239783pt;}
.y165{bottom:545.119782pt;}
.y161{bottom:545.759782pt;}
.y73{bottom:546.719781pt;}
.y1e{bottom:549.279780pt;}
.y8a{bottom:550.079780pt;}
.y166{bottom:550.719780pt;}
.y15c{bottom:550.879780pt;}
.y107{bottom:552.319779pt;}
.ye5{bottom:553.119779pt;}
.y15f{bottom:554.239778pt;}
.y14f{bottom:555.679778pt;}
.y162{bottom:557.279777pt;}
.y168{bottom:560.159776pt;}
.y72{bottom:561.119776pt;}
.y15e{bottom:562.239775pt;}
.y16c{bottom:562.559775pt;}
.y16a{bottom:563.039775pt;}
.y169{bottom:563.199775pt;}
.y1d{bottom:563.679775pt;}
.y86{bottom:563.839774pt;}
.y88{bottom:564.160000pt;}
.y106{bottom:566.879773pt;}
.ye4{bottom:567.359773pt;}
.y87{bottom:567.519773pt;}
.y14e{bottom:568.639773pt;}
.y71{bottom:575.359770pt;}
.y1c{bottom:578.399769pt;}
.y163{bottom:580.159768pt;}
.y16b{bottom:581.119768pt;}
.y105{bottom:581.279767pt;}
.y14d{bottom:581.759767pt;}
.ye3{bottom:581.919767pt;}
.y85{bottom:585.919766pt;}
.y70{bottom:589.759764pt;}
.y1b{bottom:592.319763pt;}
.y104{bottom:595.679762pt;}
.ye2{bottom:596.319761pt;}
.y15b{bottom:596.479761pt;}
.y84{bottom:596.959761pt;}
.y80{bottom:599.519760pt;}
.y82{bottom:599.840000pt;}
.y81{bottom:603.199759pt;}
.y6f{bottom:604.319758pt;}
.y1a{bottom:606.879757pt;}
.y103{bottom:609.919756pt;}
.ye1{bottom:610.719756pt;}
.y15a{bottom:610.879756pt;}
.y6e{bottom:618.719753pt;}
.y19{bottom:621.279751pt;}
.y7f{bottom:621.599751pt;}
.y102{bottom:624.479750pt;}
.ye0{bottom:625.119750pt;}
.y159{bottom:625.279750pt;}
.y6d{bottom:633.119747pt;}
.y18{bottom:635.679746pt;}
.y7e{bottom:635.999746pt;}
.y101{bottom:638.879744pt;}
.ydf{bottom:639.519744pt;}
.y158{bottom:639.839744pt;}
.y1a2{bottom:647.519741pt;}
.y6c{bottom:648.159741pt;}
.y17{bottom:650.079740pt;}
.y7d{bottom:650.399740pt;}
.y100{bottom:653.279739pt;}
.yde{bottom:653.919738pt;}
.y157{bottom:654.239738pt;}
.y1a1{bottom:661.919735pt;}
.y18c{bottom:663.840000pt;}
.y16{bottom:664.479734pt;}
.y6b{bottom:664.799734pt;}
.yff{bottom:667.679733pt;}
.ydd{bottom:668.319733pt;}
.y156{bottom:668.479733pt;}
.y192{bottom:668.639733pt;}
.y1a0{bottom:676.319729pt;}
.y15{bottom:678.879728pt;}
.y6a{bottom:679.199728pt;}
.y191{bottom:681.759727pt;}
.yfe{bottom:682.079727pt;}
.ydc{bottom:682.719727pt;}
.y155{bottom:682.879727pt;}
.y18a{bottom:689.280000pt;}
.y19e{bottom:690.879724pt;}
.y19f{bottom:691.039724pt;}
.y189{bottom:691.999723pt;}
.y14{bottom:693.279723pt;}
.y69{bottom:693.599723pt;}
.y190{bottom:694.719722pt;}
.yfd{bottom:696.479721pt;}
.ydb{bottom:697.279721pt;}
.y154{bottom:697.439721pt;}
.y188{bottom:704.959718pt;}
.y13{bottom:707.679717pt;}
.y18f{bottom:707.839717pt;}
.y68{bottom:707.999717pt;}
.yfc{bottom:710.879716pt;}
.yda{bottom:711.679715pt;}
.y153{bottom:711.839715pt;}
.y187{bottom:717.919713pt;}
.y18e{bottom:720.799712pt;}
.y12{bottom:722.239711pt;}
.y67{bottom:722.559711pt;}
.yfb{bottom:725.279710pt;}
.yd9{bottom:725.919710pt;}
.y152{bottom:726.239710pt;}
.y11{bottom:736.639705pt;}
.y66{bottom:736.959705pt;}
.yfa{bottom:739.839704pt;}
.yd8{bottom:740.479704pt;}
.y10{bottom:750.879700pt;}
.y65{bottom:751.199700pt;}
.yf9{bottom:754.239698pt;}
.yd7{bottom:757.759697pt;}
.yf{bottom:765.599694pt;}
.yf8{bottom:768.479693pt;}
.yd6{bottom:772.159691pt;}
.ye{bottom:780.159688pt;}
.yf7{bottom:782.879687pt;}
.yd5{bottom:786.559685pt;}
.yd{bottom:794.559682pt;}
.y7c{bottom:795.199682pt;}
.yf6{bottom:797.439681pt;}
.yd4{bottom:800.959680pt;}
.yc{bottom:808.959676pt;}
.y7b{bottom:811.839675pt;}
.yd3{bottom:815.359674pt;}
.yb{bottom:823.359671pt;}
.y7a{bottom:826.239670pt;}
.yd2{bottom:829.759668pt;}
.ya{bottom:837.759665pt;}
.y79{bottom:840.639664pt;}
.yd1{bottom:844.159662pt;}
.y9{bottom:852.159659pt;}
.y78{bottom:855.039658pt;}
.y8{bottom:857.919657pt;}
.yd0{bottom:858.559657pt;}
.y19d{bottom:866.559653pt;}
.y6{bottom:866.719653pt;}
.y64{bottom:866.879653pt;}
.y77{bottom:869.439652pt;}
.ycf{bottom:872.959651pt;}
.y7{bottom:873.759650pt;}
.y19c{bottom:880.959648pt;}
.y150{bottom:883.359647pt;}
.y63{bottom:883.839646pt;}
.y5{bottom:884.479646pt;}
.yce{bottom:887.519645pt;}
.y19b{bottom:895.519642pt;}
.y62{bottom:898.239641pt;}
.ycd{bottom:899.839640pt;}
.ycc{bottom:901.759639pt;}
.y4{bottom:903.519639pt;}
.y19a{bottom:909.919636pt;}
.y61{bottom:912.799635pt;}
.ycb{bottom:914.399634pt;}
.yca{bottom:916.159634pt;}
.y199{bottom:924.159630pt;}
.y60{bottom:927.199629pt;}
.yc8{bottom:928.799628pt;}
.y3{bottom:929.279628pt;}
.yc7{bottom:930.719628pt;}
.yc9{bottom:936.479625pt;}
.y198{bottom:938.559625pt;}
.y11c{bottom:940.319624pt;}
.y5f{bottom:941.439623pt;}
.y11d{bottom:943.999622pt;}
.y11e{bottom:944.799622pt;}
.yc3{bottom:944.959622pt;}
.yc4{bottom:947.519621pt;}
.y11b{bottom:950.719620pt;}
.yc5{bottom:951.199620pt;}
.yc6{bottom:951.999619pt;}
.y197{bottom:953.279619pt;}
.y2{bottom:953.599619pt;}
.y5e{bottom:955.839618pt;}
.y1{bottom:999.519600pt;}
.h25{height:0.160000pt;}
.h36{height:12.320000pt;}
.h2c{height:12.800000pt;}
.he{height:18.560000pt;}
.h34{height:19.123992pt;}
.h22{height:20.480000pt;}
.h30{height:20.756198pt;}
.h2f{height:20.908147pt;}
.h1c{height:21.440000pt;}
.h6{height:22.187328pt;}
.ha{height:22.349754pt;}
.h20{height:23.833084pt;}
.h1e{height:24.007558pt;}
.h14{height:24.143617pt;}
.h19{height:24.217590pt;}
.h10{height:24.295087pt;}
.h15{height:25.511201pt;}
.h1a{height:25.589458pt;}
.hc{height:25.671196pt;}
.h17{height:25.760000pt;}
.h5{height:27.891243pt;}
.h2b{height:31.042548pt;}
.h35{height:32.783987pt;}
.h33{height:33.023987pt;}
.h29{height:34.054335pt;}
.h7{height:34.104089pt;}
.h28{height:34.252325pt;}
.h27{height:34.310601pt;}
.h1{height:34.353753pt;}
.h9{height:34.553484pt;}
.h12{height:34.993752pt;}
.h8{height:35.193484pt;}
.h31{height:35.582428pt;}
.h2e{height:35.842914pt;}
.h2a{height:36.614334pt;}
.h24{height:40.859047pt;}
.hb{height:41.089264pt;}
.h1f{height:41.158162pt;}
.h26{height:41.336858pt;}
.hd{height:41.345343pt;}
.h2{height:41.390063pt;}
.h4{height:41.630703pt;}
.hf{height:41.648017pt;}
.h21{height:43.718161pt;}
.h32{height:44.460920pt;}
.h2d{height:48.256104pt;}
.h16{height:50.848144pt;}
.h23{height:54.647726pt;}
.h1b{height:55.401578pt;}
.h13{height:59.310056pt;}
.h11{height:59.313743pt;}
.h3{height:62.085095pt;}
.h1d{height:65.917345pt;}
.h18{height:73.192897pt;}
.h0{height:1056.000000pt;}
.w3{width:4.960000pt;}
.w8{width:5.120000pt;}
.w4{width:6.880000pt;}
.w1{width:8.320000pt;}
.w2{width:12.000000pt;}
.w5{width:20.320000pt;}
.w7{width:132.160000pt;}
.w6{width:147.680000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3{left:124.799950pt;}
.x15{left:125.759432pt;}
.x74{left:127.359949pt;}
.x4{left:128.959948pt;}
.x1a{left:131.836081pt;}
.x4b{left:133.600000pt;}
.x7e{left:139.519948pt;}
.x4c{left:142.559943pt;}
.x73{left:148.799940pt;}
.x82{left:150.079861pt;}
.x5d{left:151.521217pt;}
.x86{left:153.440325pt;}
.xd{left:154.399408pt;}
.x60{left:157.599937pt;}
.x61{left:158.879936pt;}
.x4f{left:163.360908pt;}
.x51{left:164.640841pt;}
.x7c{left:166.559977pt;}
.x50{left:169.280907pt;}
.xb{left:171.679931pt;}
.xc{left:175.999930pt;}
.x4d{left:177.119929pt;}
.xf{left:187.679414pt;}
.x17{left:213.759395pt;}
.x18{left:220.315726pt;}
.x8a{left:225.919910pt;}
.x8b{left:230.719908pt;}
.x85{left:232.160499pt;}
.xe{left:233.439427pt;}
.x8c{left:237.119905pt;}
.x7b{left:238.239936pt;}
.x79{left:243.679945pt;}
.x7a{left:249.119940pt;}
.x8d{left:253.919898pt;}
.x1b{left:259.036146pt;}
.x8e{left:260.319896pt;}
.x88{left:261.440000pt;}
.x80{left:264.479932pt;}
.x81{left:265.919982pt;}
.x7f{left:268.479930pt;}
.x84{left:269.920446pt;}
.x83{left:272.640444pt;}
.x78{left:277.439880pt;}
.x19{left:283.515704pt;}
.x77{left:284.479883pt;}
.x76{left:293.599883pt;}
.x6{left:294.880220pt;}
.x1c{left:298.559881pt;}
.x4e{left:301.759879pt;}
.x7d{left:303.839878pt;}
.x1d{left:304.959878pt;}
.x8f{left:306.239878pt;}
.x75{left:310.879876pt;}
.x90{left:312.639875pt;}
.x87{left:317.279873pt;}
.x52{left:322.719491pt;}
.x1f{left:332.959867pt;}
.x5a{left:339.039864pt;}
.x57{left:342.559863pt;}
.x58{left:346.719866pt;}
.x59{left:349.279860pt;}
.x89{left:354.239858pt;}
.x5b{left:358.559857pt;}
.x5c{left:362.719855pt;}
.x54{left:367.199853pt;}
.x55{left:368.479852pt;}
.x5f{left:370.880000pt;}
.x53{left:373.439851pt;}
.x56{left:381.599847pt;}
.x5{left:383.200109pt;}
.x7{left:394.719842pt;}
.x8{left:402.399839pt;}
.x16{left:407.519194pt;}
.x1e{left:420.324238pt;}
.x62{left:429.761184pt;}
.x67{left:431.999632pt;}
.x68{left:437.759629pt;}
.x33{left:442.882766pt;}
.x12{left:444.159548pt;}
.x10{left:447.039821pt;}
.x11{left:451.199820pt;}
.x6e{left:454.559830pt;}
.x29{left:455.839224pt;}
.x6d{left:458.879841pt;}
.x71{left:460.480660pt;}
.x14{left:462.879677pt;}
.x5e{left:464.653199pt;}
.x34{left:466.719713pt;}
.x37{left:468.639711pt;}
.x91{left:474.238872pt;}
.x2d{left:476.000000pt;}
.x26{left:477.440000pt;}
.x45{left:487.680000pt;}
.x25{left:489.440000pt;}
.x47{left:502.079799pt;}
.x1{left:508.639797pt;}
.x9{left:515.039794pt;}
.xa{left:520.159792pt;}
.x13{left:522.879594pt;}
.x2c{left:524.320000pt;}
.x2b{left:535.199786pt;}
.x3a{left:539.200000pt;}
.x2a{left:541.439783pt;}
.x24{left:544.480000pt;}
.x70{left:548.480209pt;}
.x2e{left:549.759780pt;}
.x46{left:551.840000pt;}
.x35{left:552.799779pt;}
.x41{left:554.559778pt;}
.x49{left:556.479777pt;}
.x64{left:561.119755pt;}
.x48{left:563.039775pt;}
.x2f{left:566.559773pt;}
.x20{left:568.639773pt;}
.x30{left:570.239772pt;}
.x4a{left:574.879770pt;}
.x3d{left:576.639745pt;}
.x27{left:579.839768pt;}
.x38{left:582.399767pt;}
.x43{left:584.639766pt;}
.x36{left:586.079766pt;}
.x6c{left:588.159732pt;}
.x66{left:590.719710pt;}
.x42{left:591.679763pt;}
.x23{left:592.800000pt;}
.x65{left:595.039761pt;}
.x40{left:599.840000pt;}
.x22{left:604.479758pt;}
.x44{left:606.239758pt;}
.x6f{left:608.800316pt;}
.x39{left:609.919756pt;}
.x21{left:613.919754pt;}
.x28{left:622.399751pt;}
.x3f{left:623.359751pt;}
.x3e{left:631.839747pt;}
.x6b{left:637.919745pt;}
.x3b{left:640.480000pt;}
.x69{left:646.719741pt;}
.x3c{left:649.119740pt;}
.x6a{left:651.199740pt;}
.x63{left:658.879736pt;}
.x72{left:666.719733pt;}
.x31{left:686.719725pt;}
.x32{left:690.239724pt;}
.x2{left:693.599723pt;}
}




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