
    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_5eb200f3a753466f4f5a2f6c.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3794324b9f02ac09737ac468.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_7f2615f8c2e29aecedb06628.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.739746;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_a4b7695175b8c9996e75e2f5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.978027;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_def3f1beda8bf4a854c818cd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.142090;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_357b14092822d5e615e5db3c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941406;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_56230ef096856a0a38ccdfcd.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.160645;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_85d3fd52c2e41f59bcd41e7d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.010254;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;}
.ma{transform:matrix(0.000000,-0.249045,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249045,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249045,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.249123,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249123,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249123,0.250000,0.000000,0,0);}
.mf{transform:matrix(0.000000,-0.249447,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249447,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249447,0.250000,0.000000,0,0);}
.md{transform:matrix(0.000000,-0.249589,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249589,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249589,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);}
.m4{transform:matrix(0.238173,0.000000,-0.081460,0.236356,0,0);-ms-transform:matrix(0.238173,0.000000,-0.081460,0.236356,0,0);-webkit-transform:matrix(0.238173,0.000000,-0.081460,0.236356,0,0);}
.m5{transform:matrix(0.243337,0.000000,-0.083226,0.235740,0,0);-ms-transform:matrix(0.243337,0.000000,-0.083226,0.235740,0,0);-webkit-transform:matrix(0.243337,0.000000,-0.083226,0.235740,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);}
.m3{transform:matrix(0.249698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249698,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);}
.mc{transform:matrix(0.250411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250411,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250554,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250559,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250877,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250880,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250951,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250959,0.000000,0.000000,0.250000,0,0);}
.vc{vertical-align:-54.000000px;}
.vb{vertical-align:-44.639923px;}
.v9{vertical-align:-32.400059px;}
.v11{vertical-align:-26.639924px;}
.v2{vertical-align:-23.040117px;}
.ve{vertical-align:-9.359802px;}
.vd{vertical-align:-7.920045px;}
.v5{vertical-align:-5.759856px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:1.440036px;}
.va{vertical-align:2.880063px;}
.v6{vertical-align:5.759861px;}
.v10{vertical-align:9.360076px;}
.v8{vertical-align:10.799834px;}
.v4{vertical-align:13.680180px;}
.v1{vertical-align:23.040045px;}
.vf{vertical-align:26.640198px;}
.v12{vertical-align:29.519991px;}
.v3{vertical-align:55.440031px;}
.ls3{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.059406px;}
.ls1a{letter-spacing:0.124860px;}
.ls27{letter-spacing:0.155176px;}
.ls24{letter-spacing:0.155311px;}
.ls26{letter-spacing:0.161987px;}
.ls13{letter-spacing:0.204118px;}
.ls6{letter-spacing:0.238707px;}
.ls22{letter-spacing:0.282231px;}
.ls9{letter-spacing:0.282366px;}
.ls2{letter-spacing:0.282370px;}
.ls20{letter-spacing:0.282407px;}
.ls0{letter-spacing:0.282505px;}
.ls8{letter-spacing:0.282510px;}
.ls28{letter-spacing:0.441103px;}
.ls23{letter-spacing:0.449532px;}
.ls16{letter-spacing:0.449672px;}
.ls21{letter-spacing:0.449811px;}
.ls17{letter-spacing:0.520336px;}
.lsc{letter-spacing:0.520399px;}
.lsa{letter-spacing:0.520403px;}
.ls7{letter-spacing:0.633331px;}
.ls4{letter-spacing:0.747116px;}
.ls18{letter-spacing:0.747183px;}
.ls10{letter-spacing:0.817911px;}
.ls1d{letter-spacing:1.002384px;}
.ls1e{letter-spacing:1.002388px;}
.ls1f{letter-spacing:1.467129px;}
.ls29{letter-spacing:4.761067px;}
.ls25{letter-spacing:7.640991px;}
.lsd{letter-spacing:21.631941px;}
.ls1{letter-spacing:32.427116px;}
.ls14{letter-spacing:72.173068px;}
.ls11{letter-spacing:115.404291px;}
.ls1b{letter-spacing:142.895883px;}
.lse{letter-spacing:217.149343px;}
.ls5{letter-spacing:1135.715818px;}
.lsb{letter-spacing:1893.359295px;}
.ls19{letter-spacing:2050.319385px;}
.ls15{letter-spacing:2094.239358px;}
.lsf{letter-spacing:2269.919331px;}
.ls1c{letter-spacing:2304.479363px;}
.ls12{letter-spacing:2387.999354px;}
.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;}
}
.ws1f{word-spacing:-48.475350px;}
.ws12{word-spacing:-38.405237px;}
.ws7{word-spacing:-21.236783px;}
.ws10{word-spacing:-17.869838px;}
.ws2b{word-spacing:-17.580043px;}
.ws0{word-spacing:-17.520638px;}
.ws17{word-spacing:-17.235675px;}
.ws1d{word-spacing:-16.119000px;}
.ws22{word-spacing:-12.930400px;}
.ws25{word-spacing:-12.909161px;}
.ws28{word-spacing:-12.901808px;}
.ws20{word-spacing:-12.885062px;}
.ws8{word-spacing:-11.738813px;}
.ws1e{word-spacing:-10.161990px;}
.ws16{word-spacing:-10.054136px;}
.ws27{word-spacing:-9.681973px;}
.ws2a{word-spacing:-9.676254px;}
.ws23{word-spacing:-9.664001px;}
.wsf{word-spacing:-0.643314px;}
.ws1{word-spacing:0.000000px;}
.wsa{word-spacing:8.294724px;}
.ws1c{word-spacing:20.847826px;}
.ws11{word-spacing:22.336517px;}
.wse{word-spacing:37.234657px;}
.ws4{word-spacing:51.414883px;}
.ws5{word-spacing:53.924771px;}
.ws14{word-spacing:58.985361px;}
.ws18{word-spacing:59.083894px;}
.ws15{word-spacing:66.020964px;}
.ws1a{word-spacing:101.966253px;}
.wsd{word-spacing:118.912421px;}
.ws1b{word-spacing:120.236069px;}
.ws9{word-spacing:194.874172px;}
.ws21{word-spacing:201.276760px;}
.ws24{word-spacing:203.602584px;}
.ws3{word-spacing:203.831471px;}
.ws29{word-spacing:203.867204px;}
.ws26{word-spacing:203.983379px;}
.ws2{word-spacing:225.901613px;}
.ws13{word-spacing:248.591317px;}
.ws19{word-spacing:280.527846px;}
.wsb{word-spacing:391.860700px;}
.wsc{word-spacing:396.844941px;}
.ws6{word-spacing:644.668211px;}
._2b{margin-left:-1007.699004px;}
._2{margin-left:-2.299561px;}
._0{margin-left:-1.021436px;}
._1{width:1.065958px;}
._5{width:2.167845px;}
._4{width:3.250915px;}
._3{width:5.155398px;}
._a{width:6.871375px;}
._b{width:8.606739px;}
._12{width:9.929821px;}
._f{width:11.920431px;}
._e{width:12.954048px;}
._8{width:14.674081px;}
._9{width:16.123742px;}
._6{width:18.934060px;}
._7{width:19.950658px;}
._13{width:21.092320px;}
._14{width:22.538961px;}
._10{width:24.495767px;}
._11{width:25.992158px;}
._27{width:27.019194px;}
._29{width:28.079559px;}
._2a{width:30.359158px;}
._23{width:34.860379px;}
._d{width:38.336839px;}
._c{width:39.653856px;}
._1d{width:61.628310px;}
._3f{width:74.961118px;}
._1c{width:76.025114px;}
._20{width:85.918747px;}
._15{width:92.425337px;}
._37{width:96.339963px;}
._1a{width:97.716960px;}
._25{width:105.619486px;}
._17{width:113.477100px;}
._1e{width:125.061053px;}
._2d{width:137.653900px;}
._16{width:142.220854px;}
._28{width:150.874604px;}
._1f{width:158.373653px;}
._24{width:163.682554px;}
._2e{width:170.171108px;}
._2c{width:171.308581px;}
._35{width:180.256591px;}
._33{width:190.624536px;}
._1b{width:198.279371px;}
._22{width:211.002802px;}
._3d{width:218.255271px;}
._34{width:227.411031px;}
._3c{width:229.512257px;}
._3e{width:231.057917px;}
._3a{width:240.211045px;}
._3b{width:243.002033px;}
._18{width:263.302809px;}
._30{width:279.028915px;}
._39{width:302.366404px;}
._19{width:369.214650px;}
._26{width:401.049905px;}
._38{width:407.218708px;}
._36{width:413.245754px;}
._31{width:481.678025px;}
._2f{width:491.699829px;}
._32{width:503.673442px;}
._21{width:1372.558671px;}
.fc1{color:rgb(16,16,16);}
.fc0{color:rgb(0,0,0);}
.fs19{font-size:28.029910px;}
.fs1e{font-size:34.888089px;}
.fs23{font-size:34.932326px;}
.fs21{font-size:34.952969px;}
.fs7{font-size:38.729925px;}
.fs13{font-size:40.216545px;}
.fsb{font-size:40.321575px;}
.fs4{font-size:40.484160px;}
.fs16{font-size:40.647960px;}
.fs10{font-size:41.455620px;}
.fsd{font-size:41.696145px;}
.fs18{font-size:42.045603px;}
.fs15{font-size:42.503726px;}
.fs12{font-size:43.813269px;}
.fs1c{font-size:46.516469px;}
.fs22{font-size:46.576926px;}
.fs20{font-size:46.603468px;}
.fs1d{font-size:46.680145px;}
.fs1f{font-size:46.694891px;}
.fs2{font-size:46.955250px;}
.fs17{font-size:48.475350px;}
.fs25{font-size:58.168800px;}
.fs3{font-size:64.476000px;}
.fs8{font-size:66.394350px;}
.fs14{font-size:68.942700px;}
.fsa{font-size:69.122700px;}
.fs5{font-size:69.401250px;}
.fs0{font-size:70.082550px;}
.fs11{font-size:71.066700px;}
.fse{font-size:71.479350px;}
.fsf{font-size:71.591400px;}
.fsc{font-size:73.053822px;}
.fs6{font-size:73.348213px;}
.fs1b{font-size:77.688949px;}
.fs9{font-size:80.473536px;}
.fs1a{font-size:81.380943px;}
.fs1{font-size:81.996750px;}
.fs24{font-size:93.209855px;}
.y0{bottom:0.000000px;}
.y101{bottom:1.798522px;}
.y5d{bottom:2.159980px;}
.y64{bottom:2.160050px;}
.y59{bottom:2.339951px;}
.y9a{bottom:2.339985px;}
.y60{bottom:2.340019px;}
.y4c{bottom:2.519989px;}
.y117{bottom:2.879997px;}
.y115{bottom:2.879998px;}
.yf9{bottom:3.060246px;}
.y111{bottom:3.240006px;}
.y51{bottom:3.779983px;}
.y83{bottom:3.779984px;}
.y53{bottom:3.780052px;}
.y125{bottom:3.784991px;}
.yc5{bottom:3.959953px;}
.y62{bottom:3.960021px;}
.y5b{bottom:3.960022px;}
.y127{bottom:3.961556px;}
.y6d{bottom:4.139991px;}
.y4f{bottom:4.139992px;}
.y86{bottom:4.140009px;}
.ya0{bottom:4.140026px;}
.y7d{bottom:4.140060px;}
.y77{bottom:4.319962px;}
.y81{bottom:4.319997px;}
.y66{bottom:4.320030px;}
.y5{bottom:109.800110px;}
.y4{bottom:129.960091px;}
.y3{bottom:150.120072px;}
.yf5{bottom:166.500068px;}
.y123{bottom:168.300041px;}
.y2e{bottom:170.280052px;}
.yc3{bottom:171.900055px;}
.y198{bottom:172.980079px;}
.yc7{bottom:173.700096px;}
.yc4{bottom:174.600083px;}
.y7f{bottom:177.660049px;}
.yc6{bottom:178.560036px;}
.yf4{bottom:185.400055px;}
.yc2{bottom:185.940033px;}
.y122{bottom:187.380066px;}
.y197{bottom:189.720085px;}
.y2d{bottom:190.440033px;}
.ydc{bottom:196.200096px;}
.y7e{bottom:196.560036px;}
.yf3{bottom:204.300041px;}
.y121{bottom:206.460091px;}
.yc1{bottom:209.160049px;}
.ydb{bottom:215.100083px;}
.y2c{bottom:216.360077px;}
.y79{bottom:220.680039px;}
.y196{bottom:223.200096px;}
.yf2{bottom:223.380066px;}
.y120{bottom:225.360077px;}
.yc0{bottom:228.060036px;}
.y2b{bottom:230.760064px;}
.y75{bottom:234.000068px;}
.yda{bottom:234.180039px;}
.y78{bottom:238.500068px;}
.y7c{bottom:239.940033px;}
.yf1{bottom:242.280052px;}
.y11f{bottom:244.260064px;}
.y74{bottom:245.340088px;}
.y76{bottom:245.700096px;}
.y7b{bottom:246.600083px;}
.ybf{bottom:246.960091px;}
.y2a{bottom:250.920043px;}
.yd9{bottom:253.080093px;}
.y195{bottom:256.860077px;}
.y7a{bottom:257.940033px;}
.y11e{bottom:259.560036px;}
.yf0{bottom:259.740074px;}
.ybe{bottom:266.220085px;}
.y159{bottom:270.188335px;}
.y16d{bottom:270.192286px;}
.y29{bottom:271.080093px;}
.yd8{bottom:272.160049px;}
.y194{bottom:273.600083px;}
.y73{bottom:282.420043px;}
.ybd{bottom:285.120072px;}
.y16b{bottom:286.389268px;}
.y157{bottom:286.391075px;}
.y193{bottom:290.520058px;}
.y28{bottom:296.100083px;}
.y160{bottom:300.248065px;}
.y14e{bottom:300.250616px;}
.yd7{bottom:300.420043px;}
.ybc{bottom:304.020058px;}
.y192{bottom:307.080093px;}
.y72{bottom:310.140060px;}
.y161{bottom:314.106861px;}
.y27{bottom:315.000068px;}
.yd6{bottom:316.260064px;}
.y14f{bottom:317.534192px;}
.ybb{bottom:323.100083px;}
.y191{bottom:324.000068px;}
.y162{bottom:327.787980px;}
.y15f{bottom:328.324426px;}
.y71{bottom:329.220085px;}
.y26{bottom:334.080093px;}
.y150{bottom:334.810684px;}
.y15e{bottom:338.401843px;}
.y190{bottom:340.740074px;}
.y163{bottom:341.650316px;}
.yba{bottom:342.000068px;}
.y158{bottom:344.172508px;}
.y16c{bottom:344.709967px;}
.y15d{bottom:348.484678px;}
.y151{bottom:351.909398px;}
.y25{bottom:352.980079px;}
.y164{bottom:355.327896px;}
.y6b{bottom:356.220085px;}
.y18f{bottom:357.660049px;}
.y15c{bottom:358.562095px;}
.y6c{bottom:359.100083px;}
.y6e{bottom:359.460091px;}
.yb9{bottom:360.900055px;}
.y70{bottom:362.160049px;}
.y6a{bottom:363.240074px;}
.y15b{bottom:368.823578px;}
.y165{bottom:369.190232px;}
.y152{bottom:369.192973px;}
.y6f{bottom:370.980079px;}
.y24{bottom:371.880066px;}
.y18e{bottom:374.400055px;}
.y15a{bottom:378.900996px;}
.yb8{bottom:379.980079px;}
.y166{bottom:382.871351px;}
.y173{bottom:384.859944px;}
.y153{bottom:386.288146px;}
.y18d{bottom:391.140060px;}
.y172{bottom:394.398437px;}
.y69{bottom:394.560036px;}
.y167{bottom:396.548931px;}
.yb7{bottom:398.880066px;}
.y23{bottom:399.780052px;}
.y154{bottom:403.571721px;}
.y171{bottom:403.936930px;}
.y18c{bottom:407.880066px;}
.y168{bottom:410.407727px;}
.y170{bottom:413.656620px;}
.yef{bottom:417.240074px;}
.yb6{bottom:417.780052px;}
.y22{bottom:418.680039px;}
.y155{bottom:420.848213px;}
.y68{bottom:422.280052px;}
.y16f{bottom:423.195113px;}
.y169{bottom:424.085307px;}
.y18b{bottom:424.620072px;}
.y16e{bottom:432.738915px;}
.yee{bottom:437.220085px;}
.y21{bottom:437.580093px;}
.y16a{bottom:437.947643px;}
.y156{bottom:437.950469px;}
.y67{bottom:441.360077px;}
.y18a{bottom:441.540047px;}
.yb5{bottom:445.680039px;}
.y11d{bottom:452.160049px;}
.y5f{bottom:453.060036px;}
.y61{bottom:455.760064px;}
.y65{bottom:456.300041px;}
.y20{bottom:456.840088px;}
.yed{bottom:457.380066px;}
.y189{bottom:458.280052px;}
.y134{bottom:460.091951px;}
.y5e{bottom:460.260064px;}
.y148{bottom:463.144027px;}
.yb4{bottom:464.580093px;}
.y63{bottom:464.940033px;}
.y58{bottom:471.960091px;}
.y5a{bottom:474.660049px;}
.y188{bottom:475.200096px;}
.y1f{bottom:475.740074px;}
.y132{bottom:476.466705px;}
.yec{bottom:477.540047px;}
.y57{bottom:479.160049px;}
.y146{bottom:479.344869px;}
.yb3{bottom:483.480079px;}
.y5c{bottom:483.840088px;}
.y128{bottom:490.328792px;}
.y187{bottom:491.760064px;}
.y13c{bottom:493.206957px;}
.yeb{bottom:497.700096px;}
.y50{bottom:503.280052px;}
.y1e{bottom:503.640060px;}
.y129{bottom:505.805640px;}
.y13d{bottom:506.884527px;}
.y55{bottom:507.060036px;}
.y186{bottom:508.680039px;}
.y4b{bottom:513.720085px;}
.y4e{bottom:516.420043px;}
.yb0{bottom:517.680039px;}
.yea{bottom:517.860077px;}
.y56{bottom:520.200096px;}
.y49{bottom:520.560036px;}
.y13e{bottom:520.746615px;}
.y12a{bottom:521.467074px;}
.y54{bottom:521.640060px;}
.yaf{bottom:522.540047px;}
.y185{bottom:525.420043px;}
.y4a{bottom:527.220085px;}
.y147{bottom:527.223403px;}
.y52{bottom:527.940033px;}
.y48{bottom:528.480079px;}
.ya5{bottom:528.660049px;}
.yae{bottom:528.840088px;}
.y4d{bottom:531.720085px;}
.yad{bottom:533.340088px;}
.y13f{bottom:534.424185px;}
.y12b{bottom:536.947457px;}
.ye9{bottom:538.020058px;}
.yb2{bottom:541.080093px;}
.yac{bottom:541.260064px;}
.y1d{bottom:541.800041px;}
.ya8{bottom:542.160049px;}
.yab{bottom:545.400055px;}
.ya7{bottom:546.660049px;}
.yb1{bottom:547.200096px;}
.y140{bottom:548.108826px;}
.y12c{bottom:552.605287px;}
.y133{bottom:556.388496px;}
.yaa{bottom:557.100083px;}
.ya6{bottom:557.460091px;}
.ye8{bottom:558.180039px;}
.y14d{bottom:558.352116px;}
.y184{bottom:559.080093px;}
.y47{bottom:560.700096px;}
.y1c{bottom:561.960091px;}
.y141{bottom:561.963843px;}
.y13b{bottom:566.813830px;}
.y12d{bottom:568.266720px;}
.ya9{bottom:570.420043px;}
.y14c{bottom:572.571164px;}
.y142{bottom:575.648484px;}
.y183{bottom:575.820099px;}
.y13a{bottom:576.353500px;}
.ye7{bottom:578.340088px;}
.y46{bottom:579.600083px;}
.y1b{bottom:581.940033px;}
.y12e{bottom:583.747104px;}
.y139{bottom:586.071591px;}
.y14b{bottom:586.790263px;}
.y143{bottom:589.329590px;}
.y182{bottom:592.560036px;}
.y138{bottom:595.611261px;}
.ya4{bottom:597.780052px;}
.ye6{bottom:598.500068px;}
.y45{bottom:598.680039px;}
.y12f{bottom:599.408537px;}
.y14a{bottom:601.011962px;}
.y144{bottom:603.188142px;}
.y137{bottom:605.150984px;}
.y181{bottom:609.300041px;}
.y1a{bottom:610.200096px;}
.y136{bottom:614.874377px;}
.y130{bottom:614.885385px;}
.y149{bottom:615.231062px;}
.ya3{bottom:616.860077px;}
.y145{bottom:616.869248px;}
.y44{bottom:617.580093px;}
.yd5{bottom:617.940033px;}
.ye5{bottom:618.660049px;}
.y135{bottom:624.414100px;}
.y180{bottom:626.760064px;}
.y19{bottom:629.280052px;}
.y131{bottom:630.546819px;}
.ya2{bottom:635.760064px;}
.y43{bottom:636.480079px;}
.yd4{bottom:636.840088px;}
.ye4{bottom:638.820099px;}
.y18{bottom:648.180039px;}
.y11c{bottom:649.260064px;}
.ya1{bottom:654.660049px;}
.y17f{bottom:655.200096px;}
.y42{bottom:655.560036px;}
.yd3{bottom:655.740074px;}
.ye3{bottom:658.980079px;}
.y17{bottom:667.080093px;}
.y11b{bottom:669.420043px;}
.y41{bottom:674.460091px;}
.yd2{bottom:674.820099px;}
.ye2{bottom:679.140060px;}
.y16{bottom:686.340088px;}
.y9d{bottom:688.860077px;}
.y11a{bottom:689.580059px;}
.y94{bottom:692.820065px;}
.y17e{bottom:693.360077px;}
.y100{bottom:694.809866px;}
.ye1{bottom:694.980079px;}
.y98{bottom:697.320065px;}
.yff{bottom:699.117666px;}
.y40{bottom:702.540081px;}
.y9c{bottom:703.800076px;}
.y15{bottom:705.240074px;}
.y9f{bottom:707.400055px;}
.y119{bottom:709.740074px;}
.y9e{bottom:711.000068px;}
.y97{bottom:711.360077px;}
.y17d{bottom:713.340054px;}
.y93{bottom:718.020058px;}
.y9b{bottom:720.000068px;}
.yd1{bottom:721.440067px;}
.y96{bottom:722.520058px;}
.y95{bottom:722.700061px;}
.y14{bottom:724.140060px;}
.y1ae{bottom:732.600083px;}
.y99{bottom:733.500068px;}
.y3f{bottom:739.800076px;}
.yd0{bottom:740.520058px;}
.y13{bottom:743.220051px;}
.y116{bottom:749.520058px;}
.y1ad{bottom:752.400055px;}
.y17c{bottom:753.660049px;}
.y126{bottom:755.102482px;}
.y118{bottom:756.720051px;}
.y3e{bottom:759.060070px;}
.ycf{bottom:759.420078px;}
.y12{bottom:770.940067px;}
.y1ac{bottom:772.200061px;}
.y3d{bottom:777.960056px;}
.y92{bottom:778.320065px;}
.yce{bottom:778.500068px;}
.y103{bottom:781.379112px;}
.y17b{bottom:782.280052px;}
.y113{bottom:783.000068px;}
.y114{bottom:785.880066px;}
.y1ab{bottom:788.940067px;}
.y11{bottom:789.840054px;}
.y91{bottom:797.220051px;}
.y110{bottom:798.840054px;}
.y124{bottom:803.336933px;}
.y3c{bottom:805.500068px;}
.y1aa{bottom:805.680073px;}
.y112{bottom:806.220051px;}
.ycd{bottom:806.760064px;}
.y10{bottom:808.920078px;}
.yf6{bottom:820.257951px;}
.y17a{bottom:820.260064px;}
.y1a9{bottom:822.600083px;}
.y3b{bottom:824.760064px;}
.yf{bottom:827.820065px;}
.y10f{bottom:829.440067px;}
.y1a8{bottom:839.340054px;}
.y179{bottom:840.420078px;}
.y3a{bottom:843.660049px;}
.y90{bottom:844.020058px;}
.ycc{bottom:844.200061px;}
.yfe{bottom:845.997551px;}
.y10e{bottom:852.480079px;}
.yf8{bottom:855.717261px;}
.y1a7{bottom:856.080059px;}
.y102{bottom:856.621874px;}
.yf7{bottom:858.777507px;}
.y178{bottom:860.580059px;}
.ye{bottom:861.660049px;}
.y39{bottom:862.560070px;}
.y8f{bottom:871.560070px;}
.yfd{bottom:872.818163px;}
.y1a6{bottom:872.820065px;}
.y10d{bottom:875.700061px;}
.y177{bottom:880.740074px;}
.y38{bottom:881.640060px;}
.y1a5{bottom:889.740074px;}
.y8e{bottom:890.460056px;}
.y10c{bottom:898.920078px;}
.y37{bottom:900.540081px;}
.y176{bottom:900.900055px;}
.y1a4{bottom:906.480079px;}
.yfc{bottom:907.196430px;}
.y8d{bottom:909.720051px;}
.yd{bottom:917.100083px;}
.y36{bottom:919.440067px;}
.yfb{bottom:919.796760px;}
.y175{bottom:921.060070px;}
.y1a3{bottom:923.220051px;}
.y10b{bottom:925.920078px;}
.y8c{bottom:928.620072px;}
.yfa{bottom:932.217465px;}
.yc{bottom:937.260064px;}
.y35{bottom:938.520058px;}
.y1a2{bottom:940.140060px;}
.y10a{bottom:947.340054px;}
.y8b{bottom:947.520058px;}
.y174{bottom:949.500068px;}
.y1a1{bottom:956.700061px;}
.yb{bottom:957.420078px;}
.y8a{bottom:966.600083px;}
.y109{bottom:967.500068px;}
.ya{bottom:971.820065px;}
.y1a0{bottom:973.620072px;}
.ycb{bottom:976.320065px;}
.y34{bottom:985.140060px;}
.y89{bottom:985.500068px;}
.y108{bottom:987.660067px;}
.y19f{bottom:990.360060px;}
.y9{bottom:991.980063px;}
.yca{bottom:995.580059px;}
.ye0{bottom:1002.960074px;}
.y33{bottom:1004.220068px;}
.y88{bottom:1004.400072px;}
.y19e{bottom:1007.280069px;}
.y107{bottom:1007.820065px;}
.y8{bottom:1012.140060px;}
.yc9{bottom:1014.480063px;}
.ydf{bottom:1021.860060px;}
.y32{bottom:1023.120072px;}
.y87{bottom:1023.480063px;}
.y19d{bottom:1024.020058px;}
.y106{bottom:1027.980063px;}
.y19c{bottom:1040.940067px;}
.yde{bottom:1041.120072px;}
.yc8{bottom:1042.020058px;}
.y105{bottom:1048.140060px;}
.y31{bottom:1050.840070px;}
.y80{bottom:1055.700061px;}
.y82{bottom:1056.240074px;}
.y85{bottom:1056.600065px;}
.y19b{bottom:1057.500068px;}
.y84{bottom:1060.020058px;}
.y7{bottom:1061.820065px;}
.y104{bottom:1068.120072px;}
.y30{bottom:1069.920061px;}
.y19a{bottom:1074.420061px;}
.y6{bottom:1085.220068px;}
.ydd{bottom:1088.280069px;}
.y2f{bottom:1088.820065px;}
.y199{bottom:1091.160067px;}
.y2{bottom:1115.460074px;}
.y1{bottom:1135.620063px;}
.h51{height:8.098572px;}
.h15{height:10.979943px;}
.h1b{height:10.980011px;}
.hb{height:11.519989px;}
.h19{height:12.059966px;}
.h1d{height:12.060035px;}
.h44{height:12.240006px;}
.h3a{height:12.779984px;}
.h54{height:12.959988px;}
.h50{height:13.139239px;}
.h4b{height:15.659981px;}
.h56{height:15.660049px;}
.h59{height:16.201269px;}
.h55{height:18.540012px;}
.h1c{height:18.720016px;}
.h17{height:18.720017px;}
.h53{height:18.900020px;}
.he{height:19.259994px;}
.h22{height:19.620002px;}
.hd{height:19.620003px;}
.h13{height:19.799972px;}
.h48{height:19.799973px;}
.h35{height:19.800007px;}
.h2c{height:19.800040px;}
.h28{height:19.800042px;}
.h2a{height:20.159981px;}
.h32{height:20.159998px;}
.h30{height:20.159999px;}
.h10{height:20.160050px;}
.h52{height:20.406541px;}
.h5b{height:20.523232px;}
.h47{height:21.240005px;}
.h24{height:21.240006px;}
.h3e{height:21.599979px;}
.h3c{height:21.600015px;}
.h1e{height:21.780052px;}
.h5f{height:25.501694px;}
.h64{height:25.534029px;}
.h62{height:25.549119px;}
.h16{height:29.520221px;}
.h4f{height:30.610349px;}
.h42{height:30.653333px;}
.h21{height:30.733388px;}
.ha{height:30.857311px;}
.h29{height:31.781095px;}
.h5d{height:34.001540px;}
.h63{height:34.045731px;}
.h61{height:34.065132px;}
.h5e{height:34.121180px;}
.h60{height:34.131959px;}
.h1a{height:35.874349px;}
.h40{height:36.053504px;}
.h8{height:36.293417px;}
.h38{height:37.164316px;}
.h26{height:37.348646px;}
.h2d{height:38.621869px;}
.h45{height:39.369907px;}
.h3b{height:40.582897px;}
.h5{height:42.094648px;}
.h6{height:49.447893px;}
.h18{height:50.606240px;}
.h7{height:51.022013px;}
.h66{height:52.147420px;}
.h43{height:52.548611px;}
.h23{height:52.685808px;}
.h2e{height:52.747952px;}
.hc{height:52.898121px;}
.h39{height:54.167538px;}
.h2b{height:54.482063px;}
.h4c{height:57.801727px;}
.h3{height:57.854152px;}
.h41{height:61.806053px;}
.h20{height:61.967421px;}
.h9{height:62.217136px;}
.h2{height:62.827911px;}
.h57{height:63.080185px;}
.h4d{height:63.080459px;}
.h46{height:63.859522px;}
.h31{height:64.180571px;}
.h11{height:64.284263px;}
.h37{height:64.915331px;}
.h3f{height:64.987961px;}
.h14{height:65.134625px;}
.h36{height:65.134630px;}
.h4{height:65.134693px;}
.h2f{height:65.134900px;}
.h34{height:65.707974px;}
.h4a{height:65.707979px;}
.h65{height:65.765742px;}
.h3d{height:65.826919px;}
.h49{height:65.854504px;}
.h33{height:66.312933px;}
.h25{height:67.667529px;}
.hf{height:67.940215px;}
.h5c{height:71.960906px;}
.h1f{height:74.540185px;}
.h27{height:75.067781px;}
.h5a{height:75.380688px;}
.h58{height:86.601835px;}
.h4e{height:87.321718px;}
.h12{height:131.948123px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w1f{width:1.441749px;}
.w1e{width:5.939811px;}
.w21{width:6.120003px;}
.wc{width:7.920009px;}
.w6{width:7.920044px;}
.w22{width:8.819961px;}
.w1c{width:8.819996px;}
.w20{width:8.820012px;}
.w1d{width:8.820030px;}
.w9{width:9.000000px;}
.wa{width:9.360008px;}
.w7{width:10.439999px;}
.w13{width:10.979994px;}
.w24{width:12.239983px;}
.w23{width:13.316164px;}
.wd{width:13.860009px;}
.w15{width:17.280001px;}
.w1a{width:19.079991px;}
.w17{width:19.799990px;}
.w8{width:23.039977px;}
.wb{width:24.120002px;}
.w5{width:34.920001px;}
.w4{width:34.920009px;}
.w12{width:38.159998px;}
.w11{width:48.599997px;}
.w16{width:56.699993px;}
.w14{width:59.040003px;}
.w1b{width:66.060002px;}
.w19{width:68.759994px;}
.w18{width:96.479993px;}
.w10{width:138.060018px;}
.we{width:170.100013px;}
.wf{width:181.800015px;}
.w2{width:195.300007px;}
.w3{width:307.980011px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:105.120002px;}
.x21{left:106.379998px;}
.xa{left:108.000000px;}
.x2a{left:109.079999px;}
.x2b{left:112.500000px;}
.x28{left:117.719999px;}
.xd{left:120.239997px;}
.x1e{left:121.319996px;}
.x10{left:123.480002px;}
.x55{left:124.563967px;}
.x9{left:128.700002px;}
.xb{left:131.939999px;}
.x7{left:135.900003px;}
.x4d{left:138.781124px;}
.x35{left:142.560001px;}
.x2f{left:144.719999px;}
.xf{left:146.340002px;}
.x20{left:147.599997px;}
.x3{left:148.860008px;}
.x1d{left:152.099997px;}
.x31{left:154.439999px;}
.x24{left:155.520006px;}
.x22{left:158.039996px;}
.x1f{left:159.479994px;}
.x23{left:160.919992px;}
.x27{left:163.979994px;}
.x37{left:166.860008px;}
.x34{left:168.300007px;}
.x25{left:173.159998px;}
.x32{left:182.159998px;}
.x29{left:183.240006px;}
.x4e{left:186.304618px;}
.x1c{left:187.560001px;}
.xe{left:190.979994px;}
.x2e{left:192.599997px;}
.x38{left:196.740006px;}
.x17{left:202.500000px;}
.x49{left:203.580008px;}
.x26{left:206.099997px;}
.x2d{left:207.360008px;}
.x16{left:217.259994px;}
.x18{left:218.699993px;}
.x8{left:220.680005px;}
.x5{left:221.939999px;}
.x19{left:226.620002px;}
.x30{left:231.120002px;}
.x2c{left:239.939999px;}
.x43{left:241.374974px;}
.x33{left:250.919992px;}
.x6{left:266.759994px;}
.x44{left:281.696391px;}
.x4a{left:341.100014px;}
.x56{left:342.548269px;}
.x48{left:350.279983px;}
.xc{left:357.120002px;}
.x45{left:358.566282px;}
.x4{left:372.060001px;}
.x42{left:394.916517px;}
.x47{left:421.914735px;}
.x4b{left:426.600014px;}
.x4c{left:432.540012px;}
.x3a{left:436.680005px;}
.x2{left:442.439999px;}
.x39{left:446.759994px;}
.x52{left:473.218988px;}
.x57{left:475.384470px;}
.x50{left:480.960375px;}
.x4f{left:487.433513px;}
.x51{left:500.757403px;}
.x46{left:510.290868px;}
.x13{left:532.980011px;}
.x53{left:536.040754px;}
.x58{left:538.571373px;}
.x1a{left:543.779983px;}
.x12{left:545.579990px;}
.x14{left:547.019989px;}
.x15{left:555.839985px;}
.x1b{left:557.639992px;}
.x40{left:573.289881px;}
.x3f{left:577.970646px;}
.x41{left:582.471950px;}
.x3d{left:592.192154px;}
.x3c{left:593.271863px;}
.x3e{left:647.271491px;}
.x36{left:653.759994px;}
.x54{left:732.045635px;}
.x3b{left:786.059967px;}
.x11{left:788.399987px;}
@media print{
.vc{vertical-align:-48.000000pt;}
.vb{vertical-align:-39.679932pt;}
.v9{vertical-align:-28.800052pt;}
.v11{vertical-align:-23.679932pt;}
.v2{vertical-align:-20.480104pt;}
.ve{vertical-align:-8.319824pt;}
.vd{vertical-align:-7.040040pt;}
.v5{vertical-align:-5.119872pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:1.280032pt;}
.va{vertical-align:2.560056pt;}
.v6{vertical-align:5.119876pt;}
.v10{vertical-align:8.320068pt;}
.v8{vertical-align:9.599852pt;}
.v4{vertical-align:12.160160pt;}
.v1{vertical-align:20.480040pt;}
.vf{vertical-align:23.680176pt;}
.v12{vertical-align:26.239992pt;}
.v3{vertical-align:49.280028pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.052805pt;}
.ls1a{letter-spacing:0.110986pt;}
.ls27{letter-spacing:0.137934pt;}
.ls24{letter-spacing:0.138054pt;}
.ls26{letter-spacing:0.143988pt;}
.ls13{letter-spacing:0.181438pt;}
.ls6{letter-spacing:0.212184pt;}
.ls22{letter-spacing:0.250872pt;}
.ls9{letter-spacing:0.250992pt;}
.ls2{letter-spacing:0.250996pt;}
.ls20{letter-spacing:0.251028pt;}
.ls0{letter-spacing:0.251116pt;}
.ls8{letter-spacing:0.251120pt;}
.ls28{letter-spacing:0.392092pt;}
.ls23{letter-spacing:0.399584pt;}
.ls16{letter-spacing:0.399708pt;}
.ls21{letter-spacing:0.399832pt;}
.ls17{letter-spacing:0.462521pt;}
.lsc{letter-spacing:0.462577pt;}
.lsa{letter-spacing:0.462581pt;}
.ls7{letter-spacing:0.562961pt;}
.ls4{letter-spacing:0.664103pt;}
.ls18{letter-spacing:0.664163pt;}
.ls10{letter-spacing:0.727032pt;}
.ls1d{letter-spacing:0.891008pt;}
.ls1e{letter-spacing:0.891012pt;}
.ls1f{letter-spacing:1.304115pt;}
.ls29{letter-spacing:4.232060pt;}
.ls25{letter-spacing:6.791992pt;}
.lsd{letter-spacing:19.228392pt;}
.ls1{letter-spacing:28.824103pt;}
.ls14{letter-spacing:64.153838pt;}
.ls11{letter-spacing:102.581592pt;}
.ls1b{letter-spacing:127.018562pt;}
.lse{letter-spacing:193.021638pt;}
.ls5{letter-spacing:1009.525172pt;}
.lsb{letter-spacing:1682.986040pt;}
.ls19{letter-spacing:1822.506120pt;}
.ls15{letter-spacing:1861.546096pt;}
.lsf{letter-spacing:2017.706072pt;}
.ls1c{letter-spacing:2048.426100pt;}
.ls12{letter-spacing:2122.666092pt;}
.ws1f{word-spacing:-43.089200pt;}
.ws12{word-spacing:-34.137989pt;}
.ws7{word-spacing:-18.877140pt;}
.ws10{word-spacing:-15.884300pt;}
.ws2b{word-spacing:-15.626705pt;}
.ws0{word-spacing:-15.573900pt;}
.ws17{word-spacing:-15.320600pt;}
.ws1d{word-spacing:-14.328000pt;}
.ws22{word-spacing:-11.493689pt;}
.ws25{word-spacing:-11.474809pt;}
.ws28{word-spacing:-11.468274pt;}
.ws20{word-spacing:-11.453388pt;}
.ws8{word-spacing:-10.434500pt;}
.ws1e{word-spacing:-9.032880pt;}
.ws16{word-spacing:-8.937010pt;}
.ws27{word-spacing:-8.606198pt;}
.ws2a{word-spacing:-8.601115pt;}
.ws23{word-spacing:-8.590223pt;}
.wsf{word-spacing:-0.571835pt;}
.ws1{word-spacing:0.000000pt;}
.wsa{word-spacing:7.373088pt;}
.ws1c{word-spacing:18.531401pt;}
.ws11{word-spacing:19.854682pt;}
.wse{word-spacing:33.097473pt;}
.ws4{word-spacing:45.702118pt;}
.ws5{word-spacing:47.933130pt;}
.ws14{word-spacing:52.431432pt;}
.ws18{word-spacing:52.519017pt;}
.ws15{word-spacing:58.685302pt;}
.ws1a{word-spacing:90.636670pt;}
.wsd{word-spacing:105.699930pt;}
.ws1b{word-spacing:106.876506pt;}
.ws9{word-spacing:173.221486pt;}
.ws21{word-spacing:178.912676pt;}
.ws24{word-spacing:180.980074pt;}
.ws3{word-spacing:181.183530pt;}
.ws29{word-spacing:181.215292pt;}
.ws26{word-spacing:181.318559pt;}
.ws2{word-spacing:200.801434pt;}
.ws13{word-spacing:220.970059pt;}
.ws19{word-spacing:249.358086pt;}
.wsb{word-spacing:348.320623pt;}
.wsc{word-spacing:352.751059pt;}
.ws6{word-spacing:573.038410pt;}
._2b{margin-left:-895.732448pt;}
._2{margin-left:-2.044055pt;}
._0{margin-left:-0.907943pt;}
._1{width:0.947518pt;}
._5{width:1.926974pt;}
._4{width:2.889702pt;}
._3{width:4.582576pt;}
._a{width:6.107889pt;}
._b{width:7.650435pt;}
._12{width:8.826508pt;}
._f{width:10.595939pt;}
._e{width:11.514709pt;}
._8{width:13.043628pt;}
._9{width:14.332215pt;}
._6{width:16.830276pt;}
._7{width:17.733918pt;}
._13{width:18.748729pt;}
._14{width:20.034632pt;}
._10{width:21.774016pt;}
._11{width:23.104140pt;}
._27{width:24.017062pt;}
._29{width:24.959608pt;}
._2a{width:26.985919pt;}
._23{width:30.987003pt;}
._d{width:34.077190pt;}
._c{width:35.247872pt;}
._1d{width:54.780720pt;}
._3f{width:66.632105pt;}
._1c{width:67.577879pt;}
._20{width:76.372220pt;}
._15{width:82.155855pt;}
._37{width:85.635523pt;}
._1a{width:86.859520pt;}
._25{width:93.883987pt;}
._17{width:100.868534pt;}
._1e{width:111.165380pt;}
._2d{width:122.359022pt;}
._16{width:126.418537pt;}
._28{width:134.110759pt;}
._1f{width:140.776580pt;}
._24{width:145.495603pt;}
._2e{width:151.263207pt;}
._2c{width:152.274294pt;}
._35{width:160.228081pt;}
._33{width:169.444032pt;}
._1b{width:176.248330pt;}
._22{width:187.558046pt;}
._3d{width:194.004686pt;}
._34{width:202.143138pt;}
._3c{width:204.010895pt;}
._3e{width:205.384815pt;}
._3a{width:213.520929pt;}
._3b{width:216.001807pt;}
._18{width:234.046941pt;}
._30{width:248.025702pt;}
._39{width:268.770137pt;}
._19{width:328.190800pt;}
._26{width:356.488805pt;}
._38{width:361.972185pt;}
._36{width:367.329559pt;}
._31{width:428.158244pt;}
._2f{width:437.066515pt;}
._32{width:447.709726pt;}
._21{width:1220.052152pt;}
.fs19{font-size:24.915476pt;}
.fs1e{font-size:31.011635pt;}
.fs23{font-size:31.050956pt;}
.fs21{font-size:31.069306pt;}
.fs7{font-size:34.426600pt;}
.fs13{font-size:35.748040pt;}
.fsb{font-size:35.841400pt;}
.fs4{font-size:35.985920pt;}
.fs16{font-size:36.131520pt;}
.fs10{font-size:36.849440pt;}
.fsd{font-size:37.063240pt;}
.fs18{font-size:37.373869pt;}
.fs15{font-size:37.781090pt;}
.fs12{font-size:38.945128pt;}
.fs1c{font-size:41.347972pt;}
.fs22{font-size:41.401712pt;}
.fs20{font-size:41.425305pt;}
.fs1d{font-size:41.493462pt;}
.fs1f{font-size:41.506569pt;}
.fs2{font-size:41.738000pt;}
.fs17{font-size:43.089200pt;}
.fs25{font-size:51.705600pt;}
.fs3{font-size:57.312000pt;}
.fs8{font-size:59.017200pt;}
.fs14{font-size:61.282400pt;}
.fsa{font-size:61.442400pt;}
.fs5{font-size:61.690000pt;}
.fs0{font-size:62.295600pt;}
.fs11{font-size:63.170400pt;}
.fse{font-size:63.537200pt;}
.fsf{font-size:63.636800pt;}
.fsc{font-size:64.936731pt;}
.fs6{font-size:65.198412pt;}
.fs1b{font-size:69.056843pt;}
.fs9{font-size:71.532032pt;}
.fs1a{font-size:72.338616pt;}
.fs1{font-size:72.886000pt;}
.fs24{font-size:82.853204pt;}
.y0{bottom:0.000000pt;}
.y101{bottom:1.598687pt;}
.y5d{bottom:1.919982pt;}
.y64{bottom:1.920044pt;}
.y59{bottom:2.079956pt;}
.y9a{bottom:2.079987pt;}
.y60{bottom:2.080017pt;}
.y4c{bottom:2.239990pt;}
.y117{bottom:2.559997pt;}
.y115{bottom:2.559998pt;}
.yf9{bottom:2.720219pt;}
.y111{bottom:2.880005pt;}
.y51{bottom:3.359985pt;}
.y83{bottom:3.359986pt;}
.y53{bottom:3.360046pt;}
.y125{bottom:3.364436pt;}
.yc5{bottom:3.519958pt;}
.y62{bottom:3.520019pt;}
.y5b{bottom:3.520020pt;}
.y127{bottom:3.521383pt;}
.y6d{bottom:3.679992pt;}
.y4f{bottom:3.679993pt;}
.y86{bottom:3.680008pt;}
.ya0{bottom:3.680023pt;}
.y7d{bottom:3.680053pt;}
.y77{bottom:3.839966pt;}
.y81{bottom:3.839997pt;}
.y66{bottom:3.840027pt;}
.y5{bottom:97.600098pt;}
.y4{bottom:115.520081pt;}
.y3{bottom:133.440064pt;}
.yf5{bottom:148.000061pt;}
.y123{bottom:149.600037pt;}
.y2e{bottom:151.360047pt;}
.yc3{bottom:152.800049pt;}
.y198{bottom:153.760071pt;}
.yc7{bottom:154.400086pt;}
.yc4{bottom:155.200074pt;}
.y7f{bottom:157.920044pt;}
.yc6{bottom:158.720032pt;}
.yf4{bottom:164.800049pt;}
.yc2{bottom:165.280030pt;}
.y122{bottom:166.560059pt;}
.y197{bottom:168.640076pt;}
.y2d{bottom:169.280030pt;}
.ydc{bottom:174.400086pt;}
.y7e{bottom:174.720032pt;}
.yf3{bottom:181.600037pt;}
.y121{bottom:183.520081pt;}
.yc1{bottom:185.920044pt;}
.ydb{bottom:191.200074pt;}
.y2c{bottom:192.320069pt;}
.y79{bottom:196.160035pt;}
.y196{bottom:198.400086pt;}
.yf2{bottom:198.560059pt;}
.y120{bottom:200.320069pt;}
.yc0{bottom:202.720032pt;}
.y2b{bottom:205.120057pt;}
.y75{bottom:208.000061pt;}
.yda{bottom:208.160035pt;}
.y78{bottom:212.000061pt;}
.y7c{bottom:213.280030pt;}
.yf1{bottom:215.360047pt;}
.y11f{bottom:217.120057pt;}
.y74{bottom:218.080079pt;}
.y76{bottom:218.400086pt;}
.y7b{bottom:219.200074pt;}
.ybf{bottom:219.520081pt;}
.y2a{bottom:223.040039pt;}
.yd9{bottom:224.960083pt;}
.y195{bottom:228.320069pt;}
.y7a{bottom:229.280030pt;}
.y11e{bottom:230.720032pt;}
.yf0{bottom:230.880066pt;}
.ybe{bottom:236.640076pt;}
.y159{bottom:240.167409pt;}
.y16d{bottom:240.170921pt;}
.y29{bottom:240.960083pt;}
.yd8{bottom:241.920044pt;}
.y194{bottom:243.200074pt;}
.y73{bottom:251.040039pt;}
.ybd{bottom:253.440064pt;}
.y16b{bottom:254.568239pt;}
.y157{bottom:254.569845pt;}
.y193{bottom:258.240052pt;}
.y28{bottom:263.200074pt;}
.y160{bottom:266.887169pt;}
.y14e{bottom:266.889437pt;}
.yd7{bottom:267.040039pt;}
.ybc{bottom:270.240052pt;}
.y192{bottom:272.960083pt;}
.y72{bottom:275.680054pt;}
.y161{bottom:279.206099pt;}
.y27{bottom:280.000061pt;}
.yd6{bottom:281.120057pt;}
.y14f{bottom:282.252615pt;}
.ybb{bottom:287.200074pt;}
.y191{bottom:288.000061pt;}
.y162{bottom:291.367094pt;}
.y15f{bottom:291.843934pt;}
.y71{bottom:292.640076pt;}
.y26{bottom:296.960083pt;}
.y150{bottom:297.609497pt;}
.y15e{bottom:300.801639pt;}
.y190{bottom:302.880066pt;}
.y163{bottom:303.689170pt;}
.yba{bottom:304.000061pt;}
.y158{bottom:305.931118pt;}
.y16c{bottom:306.408860pt;}
.y15d{bottom:309.764158pt;}
.y151{bottom:312.808354pt;}
.y25{bottom:313.760071pt;}
.y164{bottom:315.847019pt;}
.y6b{bottom:316.640076pt;}
.y18f{bottom:317.920044pt;}
.y15c{bottom:318.721863pt;}
.y6c{bottom:319.200074pt;}
.y6e{bottom:319.520081pt;}
.yb9{bottom:320.800049pt;}
.y70{bottom:321.920044pt;}
.y6a{bottom:322.880066pt;}
.y15b{bottom:327.843180pt;}
.y165{bottom:328.169095pt;}
.y152{bottom:328.171532pt;}
.y6f{bottom:329.760071pt;}
.y24{bottom:330.560059pt;}
.y18e{bottom:332.800049pt;}
.y15a{bottom:336.800885pt;}
.yb8{bottom:337.760071pt;}
.y166{bottom:340.330090pt;}
.y173{bottom:342.097728pt;}
.y153{bottom:343.367241pt;}
.y18d{bottom:347.680054pt;}
.y172{bottom:350.576388pt;}
.y69{bottom:350.720032pt;}
.y167{bottom:352.487939pt;}
.yb7{bottom:354.560059pt;}
.y23{bottom:355.360047pt;}
.y154{bottom:358.730419pt;}
.y171{bottom:359.055049pt;}
.y18c{bottom:362.560059pt;}
.y168{bottom:364.806869pt;}
.y170{bottom:367.694773pt;}
.yef{bottom:370.880066pt;}
.yb6{bottom:371.360047pt;}
.y22{bottom:372.160035pt;}
.y155{bottom:374.087301pt;}
.y68{bottom:375.360047pt;}
.y16f{bottom:376.173433pt;}
.y169{bottom:376.964717pt;}
.y18b{bottom:377.440064pt;}
.y16e{bottom:384.656813pt;}
.yee{bottom:388.640076pt;}
.y21{bottom:388.960083pt;}
.y16a{bottom:389.286794pt;}
.y156{bottom:389.289306pt;}
.y67{bottom:392.320069pt;}
.y18a{bottom:392.480042pt;}
.yb5{bottom:396.160035pt;}
.y11d{bottom:401.920044pt;}
.y5f{bottom:402.720032pt;}
.y61{bottom:405.120057pt;}
.y65{bottom:405.600037pt;}
.y20{bottom:406.080079pt;}
.yed{bottom:406.560059pt;}
.y189{bottom:407.360047pt;}
.y134{bottom:408.970623pt;}
.y5e{bottom:409.120057pt;}
.y148{bottom:411.683579pt;}
.yb4{bottom:412.960083pt;}
.y63{bottom:413.280030pt;}
.y58{bottom:419.520081pt;}
.y5a{bottom:421.920044pt;}
.y188{bottom:422.400086pt;}
.y1f{bottom:422.880066pt;}
.y132{bottom:423.525960pt;}
.yec{bottom:424.480042pt;}
.y57{bottom:425.920044pt;}
.y146{bottom:426.084328pt;}
.yb3{bottom:429.760071pt;}
.y5c{bottom:430.080079pt;}
.y128{bottom:435.847815pt;}
.y187{bottom:437.120057pt;}
.y13c{bottom:438.406184pt;}
.yeb{bottom:442.400086pt;}
.y50{bottom:447.360047pt;}
.y1e{bottom:447.680054pt;}
.y129{bottom:449.605014pt;}
.y13d{bottom:450.564024pt;}
.y55{bottom:450.720032pt;}
.y186{bottom:452.160035pt;}
.y4b{bottom:456.640076pt;}
.y4e{bottom:459.040039pt;}
.yb0{bottom:460.160035pt;}
.yea{bottom:460.320069pt;}
.y56{bottom:462.400086pt;}
.y49{bottom:462.720032pt;}
.y13e{bottom:462.885880pt;}
.y12a{bottom:463.526288pt;}
.y54{bottom:463.680054pt;}
.yaf{bottom:464.480042pt;}
.y185{bottom:467.040039pt;}
.y4a{bottom:468.640076pt;}
.y147{bottom:468.643025pt;}
.y52{bottom:469.280030pt;}
.y48{bottom:469.760071pt;}
.ya5{bottom:469.920044pt;}
.yae{bottom:470.080079pt;}
.y4d{bottom:472.640076pt;}
.yad{bottom:474.080079pt;}
.y13f{bottom:475.043720pt;}
.y12b{bottom:477.286629pt;}
.ye9{bottom:478.240052pt;}
.yb2{bottom:480.960083pt;}
.yac{bottom:481.120057pt;}
.y1d{bottom:481.600037pt;}
.ya8{bottom:481.920044pt;}
.yab{bottom:484.800049pt;}
.ya7{bottom:485.920044pt;}
.yb1{bottom:486.400086pt;}
.y140{bottom:487.207846pt;}
.y12c{bottom:491.204699pt;}
.y133{bottom:494.567552pt;}
.yaa{bottom:495.200074pt;}
.ya6{bottom:495.520081pt;}
.ye8{bottom:496.160035pt;}
.y14d{bottom:496.312992pt;}
.y184{bottom:496.960083pt;}
.y47{bottom:498.400086pt;}
.y1c{bottom:499.520081pt;}
.y141{bottom:499.523416pt;}
.y13b{bottom:503.834515pt;}
.y12d{bottom:505.125974pt;}
.ya9{bottom:507.040039pt;}
.y14c{bottom:508.952145pt;}
.y142{bottom:511.687542pt;}
.y183{bottom:511.840088pt;}
.y13a{bottom:512.314222pt;}
.ye7{bottom:514.080079pt;}
.y46{bottom:515.200074pt;}
.y1b{bottom:517.280030pt;}
.y12e{bottom:518.886314pt;}
.y139{bottom:520.952525pt;}
.y14b{bottom:521.591345pt;}
.y143{bottom:523.848525pt;}
.y182{bottom:526.720032pt;}
.y138{bottom:529.432232pt;}
.ya4{bottom:531.360047pt;}
.ye6{bottom:532.000061pt;}
.y45{bottom:532.160035pt;}
.y12f{bottom:532.807589pt;}
.y14a{bottom:534.232855pt;}
.y144{bottom:536.167238pt;}
.y137{bottom:537.911985pt;}
.y181{bottom:541.600037pt;}
.y1a{bottom:542.400086pt;}
.y136{bottom:546.555002pt;}
.y130{bottom:546.564787pt;}
.y149{bottom:546.872055pt;}
.ya3{bottom:548.320069pt;}
.y145{bottom:548.328221pt;}
.y44{bottom:548.960083pt;}
.yd5{bottom:549.280030pt;}
.ye5{bottom:549.920044pt;}
.y135{bottom:555.034755pt;}
.y180{bottom:557.120057pt;}
.y19{bottom:559.360047pt;}
.y131{bottom:560.486061pt;}
.ya2{bottom:565.120057pt;}
.y43{bottom:565.760071pt;}
.yd4{bottom:566.080079pt;}
.ye4{bottom:567.840088pt;}
.y18{bottom:576.160035pt;}
.y11c{bottom:577.120057pt;}
.ya1{bottom:581.920044pt;}
.y17f{bottom:582.400086pt;}
.y42{bottom:582.720032pt;}
.yd3{bottom:582.880066pt;}
.ye3{bottom:585.760071pt;}
.y17{bottom:592.960083pt;}
.y11b{bottom:595.040039pt;}
.y41{bottom:599.520081pt;}
.yd2{bottom:599.840088pt;}
.ye2{bottom:603.680054pt;}
.y16{bottom:610.080079pt;}
.y9d{bottom:612.320069pt;}
.y11a{bottom:612.960053pt;}
.y94{bottom:615.840058pt;}
.y17e{bottom:616.320069pt;}
.y100{bottom:617.608770pt;}
.ye1{bottom:617.760071pt;}
.y98{bottom:619.840058pt;}
.yff{bottom:621.437925pt;}
.y40{bottom:624.480072pt;}
.y9c{bottom:625.600068pt;}
.y15{bottom:626.880066pt;}
.y9f{bottom:628.800049pt;}
.y119{bottom:630.880066pt;}
.y9e{bottom:632.000061pt;}
.y97{bottom:632.320069pt;}
.y17d{bottom:634.080048pt;}
.y93{bottom:638.240052pt;}
.y9b{bottom:640.000061pt;}
.yd1{bottom:641.280060pt;}
.y96{bottom:642.240052pt;}
.y95{bottom:642.400055pt;}
.y14{bottom:643.680054pt;}
.y1ae{bottom:651.200074pt;}
.y99{bottom:652.000061pt;}
.y3f{bottom:657.600068pt;}
.yd0{bottom:658.240052pt;}
.y13{bottom:660.640046pt;}
.y116{bottom:666.240052pt;}
.y1ad{bottom:668.800049pt;}
.y17c{bottom:669.920044pt;}
.y126{bottom:671.202206pt;}
.y118{bottom:672.640046pt;}
.y3e{bottom:674.720063pt;}
.ycf{bottom:675.040070pt;}
.y12{bottom:685.280060pt;}
.y1ac{bottom:686.400055pt;}
.y3d{bottom:691.520050pt;}
.y92{bottom:691.840058pt;}
.yce{bottom:692.000061pt;}
.y103{bottom:694.559210pt;}
.y17b{bottom:695.360047pt;}
.y113{bottom:696.000061pt;}
.y114{bottom:698.560059pt;}
.y1ab{bottom:701.280060pt;}
.y11{bottom:702.080048pt;}
.y91{bottom:708.640046pt;}
.y110{bottom:710.080048pt;}
.y124{bottom:714.077274pt;}
.y3c{bottom:716.000061pt;}
.y1aa{bottom:716.160065pt;}
.y112{bottom:716.640046pt;}
.ycd{bottom:717.120057pt;}
.y10{bottom:719.040070pt;}
.yf6{bottom:729.118178pt;}
.y17a{bottom:729.120057pt;}
.y1a9{bottom:731.200074pt;}
.y3b{bottom:733.120057pt;}
.yf{bottom:735.840058pt;}
.y10f{bottom:737.280060pt;}
.y1a8{bottom:746.080048pt;}
.y179{bottom:747.040070pt;}
.y3a{bottom:749.920044pt;}
.y90{bottom:750.240052pt;}
.ycc{bottom:750.400055pt;}
.yfe{bottom:751.997823pt;}
.y10e{bottom:757.760071pt;}
.yf8{bottom:760.637565pt;}
.y1a7{bottom:760.960053pt;}
.y102{bottom:761.441665pt;}
.yf7{bottom:763.357784pt;}
.y178{bottom:764.960053pt;}
.ye{bottom:765.920044pt;}
.y39{bottom:766.720063pt;}
.y8f{bottom:774.720063pt;}
.yfd{bottom:775.838367pt;}
.y1a6{bottom:775.840058pt;}
.y10d{bottom:778.400055pt;}
.y177{bottom:782.880066pt;}
.y38{bottom:783.680054pt;}
.y1a5{bottom:790.880066pt;}
.y8e{bottom:791.520050pt;}
.y10c{bottom:799.040070pt;}
.y37{bottom:800.480072pt;}
.y176{bottom:800.800049pt;}
.y1a4{bottom:805.760071pt;}
.yfc{bottom:806.396827pt;}
.y8d{bottom:808.640046pt;}
.yd{bottom:815.200074pt;}
.y36{bottom:817.280060pt;}
.yfb{bottom:817.597120pt;}
.y175{bottom:818.720063pt;}
.y1a3{bottom:820.640046pt;}
.y10b{bottom:823.040070pt;}
.y8c{bottom:825.440064pt;}
.yfa{bottom:828.637747pt;}
.yc{bottom:833.120057pt;}
.y35{bottom:834.240052pt;}
.y1a2{bottom:835.680054pt;}
.y10a{bottom:842.080048pt;}
.y8b{bottom:842.240052pt;}
.y174{bottom:844.000061pt;}
.y1a1{bottom:850.400055pt;}
.yb{bottom:851.040070pt;}
.y8a{bottom:859.200074pt;}
.y109{bottom:860.000061pt;}
.ya{bottom:863.840058pt;}
.y1a0{bottom:865.440064pt;}
.ycb{bottom:867.840058pt;}
.y34{bottom:875.680054pt;}
.y89{bottom:876.000061pt;}
.y108{bottom:877.920060pt;}
.y19f{bottom:880.320054pt;}
.y9{bottom:881.760056pt;}
.yca{bottom:884.960053pt;}
.ye0{bottom:891.520066pt;}
.y33{bottom:892.640061pt;}
.y88{bottom:892.800064pt;}
.y19e{bottom:895.360062pt;}
.y107{bottom:895.840058pt;}
.y8{bottom:899.680054pt;}
.yc9{bottom:901.760056pt;}
.ydf{bottom:908.320054pt;}
.y32{bottom:909.440064pt;}
.y87{bottom:909.760056pt;}
.y19d{bottom:910.240052pt;}
.y106{bottom:913.760056pt;}
.y19c{bottom:925.280060pt;}
.yde{bottom:925.440064pt;}
.yc8{bottom:926.240052pt;}
.y105{bottom:931.680054pt;}
.y31{bottom:934.080063pt;}
.y80{bottom:938.400055pt;}
.y82{bottom:938.880066pt;}
.y85{bottom:939.200058pt;}
.y19b{bottom:940.000061pt;}
.y84{bottom:942.240052pt;}
.y7{bottom:943.840058pt;}
.y104{bottom:949.440064pt;}
.y30{bottom:951.040055pt;}
.y19a{bottom:955.040055pt;}
.y6{bottom:964.640061pt;}
.ydd{bottom:967.360062pt;}
.y2f{bottom:967.840058pt;}
.y199{bottom:969.920060pt;}
.y2{bottom:991.520066pt;}
.y1{bottom:1009.440056pt;}
.h51{height:7.198731pt;}
.h15{height:9.759949pt;}
.h1b{height:9.760010pt;}
.hb{height:10.239990pt;}
.h19{height:10.719970pt;}
.h1d{height:10.720031pt;}
.h44{height:10.880005pt;}
.h3a{height:11.359986pt;}
.h54{height:11.519989pt;}
.h50{height:11.679323pt;}
.h4b{height:13.919983pt;}
.h56{height:13.920044pt;}
.h59{height:14.401128pt;}
.h55{height:16.480011pt;}
.h1c{height:16.640014pt;}
.h17{height:16.640015pt;}
.h53{height:16.800018pt;}
.he{height:17.119995pt;}
.h22{height:17.440002pt;}
.hd{height:17.440003pt;}
.h13{height:17.599975pt;}
.h48{height:17.599976pt;}
.h35{height:17.600006pt;}
.h2c{height:17.600036pt;}
.h28{height:17.600037pt;}
.h2a{height:17.919983pt;}
.h32{height:17.919998pt;}
.h30{height:17.919999pt;}
.h10{height:17.920044pt;}
.h52{height:18.139148pt;}
.h5b{height:18.242873pt;}
.h47{height:18.880004pt;}
.h24{height:18.880005pt;}
.h3e{height:19.199981pt;}
.h3c{height:19.200013pt;}
.h1e{height:19.360046pt;}
.h5f{height:22.668172pt;}
.h64{height:22.696915pt;}
.h62{height:22.710328pt;}
.h16{height:26.240197pt;}
.h4f{height:27.209199pt;}
.h42{height:27.247407pt;}
.h21{height:27.318567pt;}
.ha{height:27.428721pt;}
.h29{height:28.249862pt;}
.h5d{height:30.223591pt;}
.h63{height:30.262872pt;}
.h61{height:30.280118pt;}
.h5e{height:30.329938pt;}
.h60{height:30.339519pt;}
.h1a{height:31.888311pt;}
.h40{height:32.047559pt;}
.h8{height:32.260815pt;}
.h38{height:33.034947pt;}
.h26{height:33.198797pt;}
.h2d{height:34.330550pt;}
.h45{height:34.995472pt;}
.h3b{height:36.073686pt;}
.h5{height:37.417465pt;}
.h6{height:43.953683pt;}
.h18{height:44.983325pt;}
.h7{height:45.352900pt;}
.h66{height:46.353263pt;}
.h43{height:46.709876pt;}
.h23{height:46.831829pt;}
.h2e{height:46.887068pt;}
.hc{height:47.020552pt;}
.h39{height:48.148923pt;}
.h2b{height:48.428501pt;}
.h4c{height:51.379313pt;}
.h3{height:51.425913pt;}
.h41{height:54.938714pt;}
.h20{height:55.082152pt;}
.h9{height:55.304121pt;}
.h2{height:55.847032pt;}
.h57{height:56.071275pt;}
.h4d{height:56.071519pt;}
.h46{height:56.764020pt;}
.h31{height:57.049397pt;}
.h11{height:57.141567pt;}
.h37{height:57.702516pt;}
.h3f{height:57.767076pt;}
.h14{height:57.897445pt;}
.h36{height:57.897449pt;}
.h4{height:57.897505pt;}
.h2f{height:57.897689pt;}
.h34{height:58.407088pt;}
.h4a{height:58.407092pt;}
.h65{height:58.458437pt;}
.h3d{height:58.512817pt;}
.h49{height:58.537337pt;}
.h33{height:58.944829pt;}
.h25{height:60.148915pt;}
.hf{height:60.391302pt;}
.h5c{height:63.965250pt;}
.h1f{height:66.257942pt;}
.h27{height:66.726916pt;}
.h5a{height:67.005056pt;}
.h58{height:76.979408pt;}
.h4e{height:77.619305pt;}
.h12{height:117.287220pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w1f{width:1.281555pt;}
.w1e{width:5.279832pt;}
.w21{width:5.440003pt;}
.wc{width:7.040008pt;}
.w6{width:7.040039pt;}
.w22{width:7.839965pt;}
.w1c{width:7.839996pt;}
.w20{width:7.840011pt;}
.w1d{width:7.840027pt;}
.w9{width:8.000000pt;}
.wa{width:8.320007pt;}
.w7{width:9.279999pt;}
.w13{width:9.759995pt;}
.w24{width:10.879985pt;}
.w23{width:11.836591pt;}
.wd{width:12.320008pt;}
.w15{width:15.360001pt;}
.w1a{width:16.959992pt;}
.w17{width:17.599991pt;}
.w8{width:20.479980pt;}
.wb{width:21.440002pt;}
.w5{width:31.040001pt;}
.w4{width:31.040008pt;}
.w12{width:33.919998pt;}
.w11{width:43.199997pt;}
.w16{width:50.399994pt;}
.w14{width:52.480003pt;}
.w1b{width:58.720002pt;}
.w19{width:61.119995pt;}
.w18{width:85.759994pt;}
.w10{width:122.720016pt;}
.we{width:151.200012pt;}
.wf{width:161.600013pt;}
.w2{width:173.600006pt;}
.w3{width:273.760010pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:93.440002pt;}
.x21{left:94.559998pt;}
.xa{left:96.000000pt;}
.x2a{left:96.959999pt;}
.x2b{left:100.000000pt;}
.x28{left:104.639999pt;}
.xd{left:106.879997pt;}
.x1e{left:107.839996pt;}
.x10{left:109.760002pt;}
.x55{left:110.723526pt;}
.x9{left:114.400002pt;}
.xb{left:117.279999pt;}
.x7{left:120.800003pt;}
.x4d{left:123.360999pt;}
.x35{left:126.720001pt;}
.x2f{left:128.639999pt;}
.xf{left:130.080002pt;}
.x20{left:131.199997pt;}
.x3{left:132.320007pt;}
.x1d{left:135.199997pt;}
.x31{left:137.279999pt;}
.x24{left:138.240005pt;}
.x22{left:140.479996pt;}
.x1f{left:141.759995pt;}
.x23{left:143.039993pt;}
.x27{left:145.759995pt;}
.x37{left:148.320007pt;}
.x34{left:149.600006pt;}
.x25{left:153.919998pt;}
.x32{left:161.919998pt;}
.x29{left:162.880005pt;}
.x4e{left:165.604105pt;}
.x1c{left:166.720001pt;}
.xe{left:169.759995pt;}
.x2e{left:171.199997pt;}
.x38{left:174.880005pt;}
.x17{left:180.000000pt;}
.x49{left:180.960007pt;}
.x26{left:183.199997pt;}
.x2d{left:184.320007pt;}
.x16{left:193.119995pt;}
.x18{left:194.399994pt;}
.x8{left:196.160004pt;}
.x5{left:197.279999pt;}
.x19{left:201.440002pt;}
.x30{left:205.440002pt;}
.x2c{left:213.279999pt;}
.x43{left:214.555532pt;}
.x33{left:223.039993pt;}
.x6{left:237.119995pt;}
.x44{left:250.396792pt;}
.x4a{left:303.200012pt;}
.x56{left:304.487350pt;}
.x48{left:311.359985pt;}
.xc{left:317.440002pt;}
.x45{left:318.725584pt;}
.x4{left:330.720001pt;}
.x42{left:351.036904pt;}
.x47{left:375.035320pt;}
.x4b{left:379.200012pt;}
.x4c{left:384.480011pt;}
.x3a{left:388.160004pt;}
.x2{left:393.279999pt;}
.x39{left:397.119995pt;}
.x52{left:420.639101pt;}
.x57{left:422.563974pt;}
.x50{left:427.520334pt;}
.x4f{left:433.274234pt;}
.x51{left:445.117692pt;}
.x46{left:453.591883pt;}
.x13{left:473.760010pt;}
.x53{left:476.480670pt;}
.x58{left:478.730109pt;}
.x1a{left:483.359985pt;}
.x12{left:484.959991pt;}
.x14{left:486.239990pt;}
.x15{left:494.079987pt;}
.x1b{left:495.679993pt;}
.x40{left:509.591005pt;}
.x3f{left:513.751686pt;}
.x41{left:517.752845pt;}
.x3d{left:526.393025pt;}
.x3c{left:527.352767pt;}
.x3e{left:575.352436pt;}
.x36{left:581.119995pt;}
.x54{left:650.707231pt;}
.x3b{left:698.719971pt;}
.x11{left:700.799988pt;}
}




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