
    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_b728234542750e8de92c99b9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910000;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_04ca0097f84e1c5dfbafa011.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910000;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_9a2621441f60f6d7002bca9f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.960000;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_0aa8c5821fb3b4bd8ba8aeb8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_42bc0df7f4e9b2b53260d7e4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.926758;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_ae2006e7ad507cc047e067b5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_70ee7c4eedb8e625ff1c307c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970000;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_c8a8e0d7b494ffbeb5de7d96.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.945000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f37c102720563ebf2fb5e0fe.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.839000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d2fcb2cb7916f58ea4e1ab33.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.936000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_91531d8a9795de99cba28689.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.970000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_5fa1aa8e2b2f5a8467dfef9d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_97a3c2ca5966f0c4e9481c6f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.709473;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_929912ca1496a446cbd4d3bc.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.960000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_4b70bc2f8695f5f96f6dcd6a.woff2')format("woff");}.fff{font-family:fff;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_6205737c658e4cc53b902d77.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_bd2e947ea749b80b0553111b.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.722000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_7724745335526e7c662e8ed6.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.677246;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:ff13;src:url('chunks/assets/font_9374dbf340fadefabb21fa20.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.947000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.vc{vertical-align:-35.642160px;}
.v8{vertical-align:-27.720000px;}
.vd{vertical-align:-23.760000px;}
.vb{vertical-align:-21.780000px;}
.v5{vertical-align:-18.198000px;}
.v1{vertical-align:-15.840000px;}
.v6{vertical-align:-13.860000px;}
.vf{vertical-align:-11.760000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:8.542200px;}
.v7{vertical-align:13.860000px;}
.v3{vertical-align:15.840600px;}
.v4{vertical-align:17.819400px;}
.v2{vertical-align:19.800000px;}
.ve{vertical-align:23.760000px;}
.v9{vertical-align:30.322200px;}
.ls11{letter-spacing:-2.700000px;}
.ls12{letter-spacing:-2.100000px;}
.lse{letter-spacing:-1.620000px;}
.ls1d{letter-spacing:-1.344000px;}
.ls1f{letter-spacing:-1.260000px;}
.ls13{letter-spacing:-1.218000px;}
.ls1e{letter-spacing:-1.134000px;}
.lsa{letter-spacing:-1.080000px;}
.ls5{letter-spacing:-0.960000px;}
.lsf{letter-spacing:-0.939600px;}
.ls14{letter-spacing:-0.840000px;}
.lsd{letter-spacing:-0.810000px;}
.ls20{letter-spacing:-0.730800px;}
.ls5a{letter-spacing:-0.626400px;}
.ls4b{letter-spacing:-0.584640px;}
.ls4{letter-spacing:-0.540000px;}
.ls15{letter-spacing:-0.487200px;}
.ls10{letter-spacing:-0.469800px;}
.lsb{letter-spacing:-0.313200px;}
.ls1c{letter-spacing:-0.162000px;}
.ls3{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.000120px;}
.ls2{letter-spacing:0.001800px;}
.ls2b{letter-spacing:0.002400px;}
.ls29{letter-spacing:0.003600px;}
.ls37{letter-spacing:0.004080px;}
.ls16{letter-spacing:0.004680px;}
.ls18{letter-spacing:0.005280px;}
.ls24{letter-spacing:0.006000px;}
.ls28{letter-spacing:0.009360px;}
.ls36{letter-spacing:0.010200px;}
.ls41{letter-spacing:0.019200px;}
.ls2a{letter-spacing:0.023400px;}
.ls26{letter-spacing:0.025200px;}
.ls9{letter-spacing:0.026400px;}
.ls0{letter-spacing:0.027000px;}
.ls17{letter-spacing:0.030600px;}
.ls1a{letter-spacing:0.034800px;}
.ls3e{letter-spacing:0.040200px;}
.ls25{letter-spacing:0.048000px;}
.ls7{letter-spacing:0.050400px;}
.ls22{letter-spacing:0.060600px;}
.ls21{letter-spacing:0.064200px;}
.ls27{letter-spacing:0.084600px;}
.ls23{letter-spacing:0.089400px;}
.ls8{letter-spacing:0.094200px;}
.ls35{letter-spacing:0.153600px;}
.ls34{letter-spacing:0.313200px;}
.ls2f{letter-spacing:0.317880px;}
.ls30{letter-spacing:0.318480px;}
.ls2c{letter-spacing:0.540000px;}
.ls2e{letter-spacing:0.571800px;}
.ls32{letter-spacing:0.607200px;}
.ls2d{letter-spacing:0.627600px;}
.ls33{letter-spacing:0.761400px;}
.ls48{letter-spacing:1.080000px;}
.ls1{letter-spacing:1.296000px;}
.lsc{letter-spacing:1.782000px;}
.ls6{letter-spacing:3.360000px;}
.ls1b{letter-spacing:4.266000px;}
.ls58{letter-spacing:4.482240px;}
.ls4a{letter-spacing:4.945080px;}
.ls59{letter-spacing:7.728000px;}
.ls4c{letter-spacing:8.526000px;}
.ls49{letter-spacing:9.936000px;}
.ls31{letter-spacing:17.604000px;}
.ls42{letter-spacing:181.672920px;}
.ls3f{letter-spacing:182.491320px;}
.ls43{letter-spacing:182.806320px;}
.ls40{letter-spacing:183.625320px;}
.ls3c{letter-spacing:185.274720px;}
.ls3d{letter-spacing:186.408720px;}
.ls3a{letter-spacing:211.227000px;}
.ls38{letter-spacing:214.038360px;}
.ls39{letter-spacing:253.430640px;}
.ls3b{letter-spacing:255.131640px;}
.ls47{letter-spacing:284.853720px;}
.ls46{letter-spacing:285.672720px;}
.ls45{letter-spacing:288.456120px;}
.ls57{letter-spacing:289.883280px;}
.ls54{letter-spacing:294.479520px;}
.ls51{letter-spacing:296.212320px;}
.ls52{letter-spacing:297.262920px;}
.ls53{letter-spacing:299.132520px;}
.ls50{letter-spacing:312.792120px;}
.ls4f{letter-spacing:313.611120px;}
.ls4e{letter-spacing:316.394520px;}
.ls44{letter-spacing:339.398880px;}
.ls56{letter-spacing:397.394160px;}
.ls55{letter-spacing:403.836960px;}
.ls4d{letter-spacing:542.260200px;}
.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;}
}
.ws1c{word-spacing:-54.000000px;}
.ws3{word-spacing:-38.532000px;}
.ws2d{word-spacing:-19.710000px;}
.ws14{word-spacing:-19.500000px;}
.ws18{word-spacing:-18.000000px;}
.ws4{word-spacing:-16.560000px;}
.ws1e{word-spacing:-15.552000px;}
.ws20{word-spacing:-15.330000px;}
.ws0{word-spacing:-15.012000px;}
.ws11{word-spacing:-14.850000px;}
.ws9{word-spacing:-14.472000px;}
.ws15{word-spacing:-13.972200px;}
.ws7{word-spacing:-13.932000px;}
.wsc{word-spacing:-13.500000px;}
.ws5{word-spacing:-11.952000px;}
.ws2{word-spacing:-11.762400px;}
.ws12{word-spacing:-10.500000px;}
.ws1d{word-spacing:-9.020160px;}
.ws19{word-spacing:-8.904000px;}
.ws16{word-spacing:-8.891400px;}
.ws8{word-spacing:-8.706960px;}
.wsa{word-spacing:-8.393760px;}
.wse{word-spacing:-8.237160px;}
.ws2c{word-spacing:-8.080560px;}
.wsd{word-spacing:-7.767360px;}
.ws1b{word-spacing:-7.644000px;}
.ws1{word-spacing:-6.932160px;}
.wsf{word-spacing:-6.804000px;}
.wsb{word-spacing:-5.164320px;}
.ws10{word-spacing:-4.677120px;}
.ws23{word-spacing:-4.579680px;}
.ws1a{word-spacing:-4.433520px;}
.ws25{word-spacing:-0.042000px;}
.ws17{word-spacing:-0.038280px;}
.ws26{word-spacing:-0.024360px;}
.ws6{word-spacing:0.000000px;}
.ws1f{word-spacing:155.358000px;}
.ws21{word-spacing:156.492000px;}
.ws24{word-spacing:272.664000px;}
.ws13{word-spacing:284.292000px;}
.ws27{word-spacing:296.478000px;}
.ws2b{word-spacing:417.900000px;}
.ws2a{word-spacing:508.056960px;}
.ws29{word-spacing:558.348000px;}
.ws22{word-spacing:1078.838400px;}
.ws28{word-spacing:3043.959000px;}
._1a{margin-left:-479.184000px;}
._2c{margin-left:-16.606800px;}
._2d{margin-left:-15.174000px;}
._22{margin-left:-13.878000px;}
._1b{margin-left:-12.744120px;}
._28{margin-left:-11.641200px;}
._27{margin-left:-9.582000px;}
._10{margin-left:-8.532000px;}
._24{margin-left:-6.600000px;}
._1d{margin-left:-5.583000px;}
._e{margin-left:-4.320000px;}
._1c{margin-left:-3.300000px;}
._1{margin-left:-2.268000px;}
._0{margin-left:-1.080000px;}
._2{width:1.134000px;}
._4{width:2.808000px;}
._1e{width:4.122000px;}
._23{width:5.274000px;}
._b{width:6.426000px;}
._f{width:7.884000px;}
._a{width:9.234000px;}
._d{width:10.368000px;}
._3{width:11.826000px;}
._6{width:13.716000px;}
._26{width:15.420720px;}
._18{width:16.632000px;}
._19{width:17.928000px;}
._c{width:19.116000px;}
._1f{width:20.196000px;}
._9{width:21.600000px;}
._8{width:22.626000px;}
._7{width:24.624000px;}
._5{width:26.568000px;}
._25{width:27.756000px;}
._21{width:28.890000px;}
._15{width:30.402000px;}
._14{width:31.644000px;}
._17{width:34.398000px;}
._13{width:35.802000px;}
._12{width:38.988000px;}
._11{width:40.122000px;}
._40{width:41.580000px;}
._3e{width:42.930000px;}
._3d{width:44.010000px;}
._3f{width:56.430000px;}
._16{width:63.450000px;}
._20{width:73.494000px;}
._2f{width:167.496000px;}
._33{width:176.400000px;}
._2e{width:202.692000px;}
._32{width:203.826000px;}
._30{width:223.734000px;}
._34{width:225.414000px;}
._36{width:230.915520px;}
._35{width:233.760000px;}
._31{width:251.118000px;}
._3b{width:295.164000px;}
._29{width:298.845000px;}
._2b{width:305.210400px;}
._3c{width:307.352400px;}
._2a{width:320.124000px;}
._3a{width:333.181200px;}
._39{width:465.381120px;}
._37{width:466.564800px;}
._38{width:512.862000px;}
.fc3{color:rgb(101,98,99);}
.fc1{color:rgb(238,111,23);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fsb{font-size:24.360000px;}
.fs5{font-size:27.840000px;}
.fs9{font-size:31.320000px;}
.fs7{font-size:34.800000px;}
.fsd{font-size:38.280000px;}
.fse{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fsa{font-size:72.000000px;}
.fsc{font-size:78.000000px;}
.fs1{font-size:90.000000px;}
.fs8{font-size:114.000000px;}
.y0{bottom:0.000000px;}
.y169{bottom:65.287800px;}
.y8c{bottom:65.287950px;}
.y44{bottom:68.051700px;}
.y168{bottom:68.230200px;}
.y8e{bottom:68.230500px;}
.y26{bottom:77.125950px;}
.y8b{bottom:93.543300px;}
.ybf{bottom:97.763550px;}
.y166{bottom:97.795200px;}
.yeb{bottom:98.090850px;}
.y13f{bottom:105.265650px;}
.y25{bottom:106.115700px;}
.y8a{bottom:106.143300px;}
.yc3{bottom:110.023050px;}
.ybe{bottom:110.363550px;}
.y165{bottom:110.395200px;}
.yea{bottom:115.103250px;}
.y129{bottom:115.800000px;}
.y12{bottom:115.862700px;}
.y89{bottom:118.747200px;}
.yc2{bottom:122.623050px;}
.ybd{bottom:122.963550px;}
.y24{bottom:124.111200px;}
.y13e{bottom:126.525450px;}
.y128{bottom:133.800000px;}
.y11{bottom:133.858200px;}
.yc1{bottom:135.223050px;}
.ybc{bottom:135.563550px;}
.y23{bottom:142.106700px;}
.ye6{bottom:142.118700px;}
.ye9{bottom:142.638750px;}
.y13d{bottom:147.782100px;}
.yc0{bottom:147.823050px;}
.ybb{bottom:148.181850px;}
.y127{bottom:151.804500px;}
.y10{bottom:151.853700px;}
.y1ae{bottom:151.871700px;}
.y1c0{bottom:151.952700px;}
.ye5{bottom:155.643150px;}
.y22{bottom:160.102200px;}
.ye7{bottom:163.223700px;}
.ye8{bottom:163.743750px;}
.y13c{bottom:169.044600px;}
.y126{bottom:169.800000px;}
.yf{bottom:169.849200px;}
.y1ad{bottom:169.867200px;}
.y1bf{bottom:169.948200px;}
.y21{bottom:178.097700px;}
.y125{bottom:187.804500px;}
.ye{bottom:187.844700px;}
.y1ac{bottom:187.862700px;}
.y1be{bottom:187.943700px;}
.y13b{bottom:194.706600px;}
.y20{bottom:196.093200px;}
.ye4{bottom:201.664650px;}
.y124{bottom:205.800000px;}
.yd{bottom:205.840200px;}
.y1ab{bottom:205.858200px;}
.y1bd{bottom:205.939200px;}
.y1f{bottom:214.088700px;}
.ye3{bottom:214.264650px;}
.y123{bottom:223.804500px;}
.yc{bottom:223.835700px;}
.y1aa{bottom:223.853700px;}
.y1bc{bottom:223.934700px;}
.y13a{bottom:224.466300px;}
.ye2{bottom:226.864650px;}
.y1e{bottom:232.084200px;}
.y122{bottom:241.800000px;}
.yb{bottom:241.831200px;}
.y1a9{bottom:241.849200px;}
.y1bb{bottom:241.930200px;}
.yef{bottom:248.248650px;}
.y1d{bottom:250.079700px;}
.ye1{bottom:259.797600px;}
.y121{bottom:259.804500px;}
.ya{bottom:259.826700px;}
.y1a8{bottom:259.844700px;}
.y1ba{bottom:259.925700px;}
.yee{bottom:260.848650px;}
.y139{bottom:261.142800px;}
.y1c{bottom:268.075200px;}
.ye0{bottom:272.397600px;}
.yed{bottom:273.448650px;}
.y138{bottom:273.742800px;}
.y120{bottom:277.800000px;}
.y9{bottom:277.822200px;}
.y1a7{bottom:277.840200px;}
.y1b9{bottom:277.921200px;}
.ydf{bottom:285.031350px;}
.yec{bottom:286.048650px;}
.y1b{bottom:286.070700px;}
.y137{bottom:286.342800px;}
.y11f{bottom:295.800000px;}
.y8{bottom:295.817700px;}
.y1a6{bottom:295.835700px;}
.y1b8{bottom:295.916700px;}
.y1a{bottom:304.066200px;}
.y10c{bottom:313.800000px;}
.y7{bottom:313.813200px;}
.y11e{bottom:313.813500px;}
.y1a5{bottom:313.831200px;}
.y1b7{bottom:313.912200px;}
.y19{bottom:322.061700px;}
.y6{bottom:331.808700px;}
.y11d{bottom:331.809000px;}
.y10b{bottom:331.813500px;}
.y1a4{bottom:331.826700px;}
.y1b6{bottom:331.907700px;}
.y18{bottom:340.057200px;}
.y5{bottom:349.804200px;}
.y11c{bottom:349.804500px;}
.y10a{bottom:349.809000px;}
.y1a3{bottom:349.822200px;}
.y1b5{bottom:349.903200px;}
.y17{bottom:358.052700px;}
.y161{bottom:366.264450px;}
.y4{bottom:367.799700px;}
.y11b{bottom:367.800000px;}
.y109{bottom:367.804500px;}
.y1a2{bottom:367.817700px;}
.y1b4{bottom:367.898700px;}
.y16{bottom:376.048200px;}
.y3{bottom:385.795200px;}
.y11a{bottom:385.795500px;}
.y108{bottom:385.800000px;}
.y67{bottom:385.804200px;}
.y1a1{bottom:385.813200px;}
.y1b3{bottom:385.894200px;}
.y160{bottom:387.524250px;}
.y15{bottom:394.043700px;}
.y66{bottom:403.799700px;}
.y107{bottom:403.804500px;}
.y1a0{bottom:403.808700px;}
.y1b2{bottom:403.889700px;}
.y119{bottom:406.009950px;}
.y15f{bottom:408.784200px;}
.y14{bottom:412.039200px;}
.y65{bottom:421.795200px;}
.y88{bottom:421.799700px;}
.y106{bottom:421.800000px;}
.y19f{bottom:421.804200px;}
.y1b1{bottom:421.885200px;}
.y2{bottom:422.875350px;}
.y118{bottom:427.015950px;}
.y13{bottom:430.034700px;}
.y15e{bottom:430.044000px;}
.y19e{bottom:439.799700px;}
.y105{bottom:439.800000px;}
.y87{bottom:439.817700px;}
.y1b0{bottom:439.880700px;}
.y64{bottom:443.285400px;}
.y15d{bottom:451.303800px;}
.y19d{bottom:457.795200px;}
.y104{bottom:457.800000px;}
.y86{bottom:457.813200px;}
.y1af{bottom:457.876200px;}
.y63{bottom:464.291400px;}
.y15c{bottom:472.563600px;}
.y41{bottom:473.140500px;}
.y103{bottom:475.800000px;}
.y117{bottom:475.804500px;}
.y85{bottom:475.808700px;}
.y35{bottom:492.154200px;}
.y62{bottom:493.795200px;}
.y116{bottom:493.800000px;}
.y84{bottom:493.804200px;}
.y101{bottom:493.809000px;}
.y15b{bottom:493.826100px;}
.y102{bottom:498.251040px;}
.y19c{bottom:506.165550px;}
.y83{bottom:511.799700px;}
.y115{bottom:511.800000px;}
.y100{bottom:511.804500px;}
.y40{bottom:514.771200px;}
.y15a{bottom:521.611050px;}
.y3f{bottom:529.771200px;}
.yff{bottom:529.800000px;}
.y82{bottom:529.804200px;}
.y61{bottom:530.034450px;}
.y158{bottom:536.492850px;}
.y3e{bottom:544.771200px;}
.y19b{bottom:547.799550px;}
.y81{bottom:547.799700px;}
.yfe{bottom:547.800000px;}
.y181{bottom:547.808700px;}
.y60{bottom:548.056950px;}
.y159{bottom:553.502850px;}
.y3d{bottom:559.771200px;}
.y114{bottom:561.340500px;}
.y19a{bottom:565.795050px;}
.y80{bottom:565.799700px;}
.yfd{bottom:565.800000px;}
.y180{bottom:565.804200px;}
.yde{bottom:565.831350px;}
.y5f{bottom:566.052450px;}
.y3c{bottom:574.771200px;}
.y17f{bottom:583.799700px;}
.yfc{bottom:583.800000px;}
.y7f{bottom:583.817700px;}
.ydd{bottom:583.826850px;}
.y5e{bottom:584.047950px;}
.y164{bottom:584.766900px;}
.y3b{bottom:589.771200px;}
.y163{bottom:597.366900px;}
.y199{bottom:601.795050px;}
.yfb{bottom:601.800000px;}
.y17e{bottom:601.804200px;}
.y113{bottom:601.804500px;}
.y7e{bottom:601.813200px;}
.ydc{bottom:601.822350px;}
.y5d{bottom:602.043450px;}
.y3a{bottom:604.771200px;}
.y162{bottom:609.966900px;}
.y39{bottom:619.774200px;}
.y17d{bottom:619.799700px;}
.yfa{bottom:619.800000px;}
.y7d{bottom:619.808700px;}
.ydb{bottom:619.817850px;}
.y5c{bottom:620.038950px;}
.y38{bottom:634.774200px;}
.y112{bottom:637.800000px;}
.y7c{bottom:637.804200px;}
.yf9{bottom:637.809000px;}
.yba{bottom:637.813350px;}
.ya4{bottom:637.826850px;}
.y198{bottom:637.907700px;}
.y5b{bottom:638.034450px;}
.y157{bottom:641.730000px;}
.y37{bottom:649.774200px;}
.y155{bottom:654.330000px;}
.y7b{bottom:655.799700px;}
.yf8{bottom:655.804500px;}
.yb9{bottom:655.808850px;}
.ya3{bottom:655.822350px;}
.y197{bottom:655.903200px;}
.y5a{bottom:656.124450px;}
.y156{bottom:657.795000px;}
.y36{bottom:664.774200px;}
.y17c{bottom:673.795200px;}
.yf7{bottom:673.800000px;}
.yb8{bottom:673.804350px;}
.y7a{bottom:673.808700px;}
.ya2{bottom:673.817850px;}
.y196{bottom:673.898700px;}
.y59{bottom:674.119950px;}
.y154{bottom:679.894500px;}
.yb7{bottom:691.799850px;}
.y79{bottom:691.804200px;}
.y17b{bottom:691.808700px;}
.ya1{bottom:691.813350px;}
.yf6{bottom:691.813500px;}
.y111{bottom:691.822500px;}
.y195{bottom:691.894200px;}
.y58{bottom:692.115450px;}
.y153{bottom:696.902400px;}
.y28{bottom:702.211650px;}
.y78{bottom:709.799700px;}
.yda{bottom:709.799850px;}
.y17a{bottom:709.804200px;}
.yb6{bottom:709.804350px;}
.ya0{bottom:709.808850px;}
.yf5{bottom:709.809000px;}
.y110{bottom:709.818000px;}
.y194{bottom:709.889700px;}
.y57{bottom:710.110950px;}
.y152{bottom:713.910150px;}
.y30{bottom:716.095350px;}
.y77{bottom:727.795200px;}
.y179{bottom:727.799700px;}
.yb5{bottom:727.799850px;}
.y9f{bottom:727.804350px;}
.yf4{bottom:727.804500px;}
.y10f{bottom:727.813500px;}
.y193{bottom:727.885200px;}
.y56{bottom:728.106450px;}
.y151{bottom:730.918050px;}
.y2f{bottom:734.455350px;}
.y2e{bottom:744.895350px;}
.y76{bottom:745.795200px;}
.yb4{bottom:745.795350px;}
.y178{bottom:745.799700px;}
.y9e{bottom:745.799850px;}
.yf3{bottom:745.800000px;}
.y10e{bottom:745.809000px;}
.y192{bottom:745.880700px;}
.y55{bottom:746.101950px;}
.y150{bottom:747.925950px;}
.y2d{bottom:763.255350px;}
.yd9{bottom:763.795350px;}
.y9d{bottom:763.804350px;}
.yf2{bottom:763.804500px;}
.y177{bottom:763.808700px;}
.y191{bottom:763.876200px;}
.y54{bottom:764.097450px;}
.yb3{bottom:764.787450px;}
.y14f{bottom:764.933700px;}
.y2c{bottom:773.695350px;}
.y75{bottom:781.795200px;}
.y9c{bottom:781.799850px;}
.yf1{bottom:781.800000px;}
.y176{bottom:781.804200px;}
.ycb{bottom:781.804350px;}
.y190{bottom:781.871700px;}
.y14e{bottom:781.941600px;}
.y53{bottom:782.092950px;}
.yd8{bottom:784.039500px;}
.y2b{bottom:792.055350px;}
.y14d{bottom:798.949500px;}
.y9b{bottom:799.795350px;}
.yf0{bottom:799.795500px;}
.y175{bottom:799.799700px;}
.yb2{bottom:799.799850px;}
.y10d{bottom:799.800000px;}
.y18f{bottom:799.867200px;}
.y52{bottom:800.088450px;}
.y2a{bottom:802.495200px;}
.yd7{bottom:814.789500px;}
.y14c{bottom:815.957250px;}
.y9a{bottom:817.795350px;}
.y174{bottom:817.799700px;}
.yca{bottom:817.799850px;}
.yb1{bottom:817.808850px;}
.y18e{bottom:817.862700px;}
.y74{bottom:818.047950px;}
.y51{bottom:818.083950px;}
.y29{bottom:820.855200px;}
.y14b{bottom:832.965150px;}
.yd6{bottom:835.795500px;}
.yc9{bottom:835.799850px;}
.yb0{bottom:835.804350px;}
.y173{bottom:835.813200px;}
.y18d{bottom:835.858200px;}
.y73{bottom:836.043450px;}
.y50{bottom:836.079450px;}
.y31{bottom:836.299950px;}
.y134{bottom:840.131100px;}
.y14a{bottom:849.973050px;}
.y132{bottom:852.731100px;}
.yaf{bottom:853.799850px;}
.y172{bottom:853.808700px;}
.y99{bottom:853.840350px;}
.y18c{bottom:853.853700px;}
.y72{bottom:854.038950px;}
.y4f{bottom:854.074950px;}
.y133{bottom:856.196100px;}
.y149{bottom:866.980950px;}
.y131{bottom:868.796100px;}
.yd5{bottom:871.319550px;}
.y27{bottom:871.461150px;}
.yc8{bottom:871.795350px;}
.yae{bottom:871.799850px;}
.y171{bottom:871.804200px;}
.y98{bottom:871.835850px;}
.y18b{bottom:871.849200px;}
.y71{bottom:872.034450px;}
.y4e{bottom:872.070450px;}
.y148{bottom:883.988850px;}
.y130{bottom:889.095300px;}
.yd4{bottom:889.315050px;}
.yc7{bottom:889.795350px;}
.y170{bottom:889.799700px;}
.yad{bottom:889.826850px;}
.y97{bottom:889.831350px;}
.y18a{bottom:889.844700px;}
.y4d{bottom:890.065950px;}
.y70{bottom:890.069700px;}
.y147{bottom:900.996750px;}
.y34{bottom:904.424100px;}
.y12f{bottom:906.103200px;}
.yd3{bottom:907.310550px;}
.y16f{bottom:907.813200px;}
.yac{bottom:907.822350px;}
.y96{bottom:907.826850px;}
.y189{bottom:907.840200px;}
.y4c{bottom:908.061450px;}
.y6f{bottom:908.065200px;}
.y146{bottom:918.004500px;}
.y12e{bottom:923.111100px;}
.yd2{bottom:925.306050px;}
.yc6{bottom:925.799850px;}
.y16e{bottom:925.808700px;}
.yab{bottom:925.817850px;}
.y95{bottom:925.822350px;}
.y188{bottom:925.835700px;}
.y4b{bottom:926.056950px;}
.y6e{bottom:926.060700px;}
.y145{bottom:935.012400px;}
.y33{bottom:938.624100px;}
.y12d{bottom:940.121100px;}
.yd1{bottom:943.331850px;}
.yc5{bottom:943.799850px;}
.y16d{bottom:943.804200px;}
.yaa{bottom:943.813350px;}
.y94{bottom:943.817850px;}
.y187{bottom:943.831200px;}
.y4a{bottom:944.052450px;}
.y6d{bottom:944.056200px;}
.y144{bottom:952.020300px;}
.y12c{bottom:959.401950px;}
.yd0{bottom:961.327350px;}
.y16c{bottom:961.799700px;}
.ya9{bottom:961.808850px;}
.y93{bottom:961.813350px;}
.y186{bottom:961.826700px;}
.y49{bottom:962.047950px;}
.y6c{bottom:962.051700px;}
.y143{bottom:969.030300px;}
.y32{bottom:972.824100px;}
.ycf{bottom:979.322850px;}
.y16b{bottom:979.795200px;}
.ya8{bottom:979.804350px;}
.y92{bottom:979.808850px;}
.y185{bottom:979.822200px;}
.y48{bottom:980.043450px;}
.y6b{bottom:980.047200px;}
.y12a{bottom:982.787850px;}
.y12b{bottom:986.253270px;}
.y142{bottom:990.440400px;}
.yce{bottom:997.318350px;}
.ya7{bottom:997.799850px;}
.y91{bottom:997.804350px;}
.y184{bottom:997.817700px;}
.y47{bottom:998.038950px;}
.y6a{bottom:998.042700px;}
.y136{bottom:1008.829950px;}
.ycd{bottom:1015.313850px;}
.y16a{bottom:1015.795200px;}
.y90{bottom:1015.799850px;}
.y183{bottom:1015.813200px;}
.ya6{bottom:1015.826850px;}
.y46{bottom:1016.034450px;}
.y69{bottom:1016.038200px;}
.y141{bottom:1020.701400px;}
.y135{bottom:1021.429950px;}
.y140{bottom:1033.301400px;}
.ycc{bottom:1033.309350px;}
.y8f{bottom:1033.795350px;}
.y182{bottom:1033.808700px;}
.ya5{bottom:1033.822350px;}
.y45{bottom:1034.029950px;}
.y68{bottom:1034.033700px;}
.y1{bottom:1060.389900px;}
.y1c1{bottom:1103.561700px;}
.y43{bottom:1103.561850px;}
.yc4{bottom:1103.562000px;}
.y167{bottom:1116.161700px;}
.y42{bottom:1116.161850px;}
.y8d{bottom:1116.162000px;}
.h1f{height:17.563560px;}
.h1c{height:18.050760px;}
.h8{height:21.464640px;}
.h11{height:30.282000px;}
.h1e{height:30.290400px;}
.h23{height:30.292200px;}
.h22{height:30.292800px;}
.h21{height:30.305400px;}
.h1a{height:30.429793px;}
.h6{height:30.912000px;}
.h7{height:31.122000px;}
.h20{height:31.138800px;}
.h18{height:31.413960px;}
.h13{height:31.423560px;}
.h19{height:31.431960px;}
.h25{height:31.432560px;}
.h27{height:31.433760px;}
.h26{height:31.434360px;}
.h24{height:31.898160px;}
.h1d{height:31.910760px;}
.h15{height:31.914960px;}
.hc{height:36.960000px;}
.hd{height:36.996000px;}
.h5{height:37.008000px;}
.he{height:37.277400px;}
.h10{height:40.014000px;}
.hb{height:41.634000px;}
.h12{height:43.260000px;}
.h9{height:45.412800px;}
.h4{height:48.251953px;}
.h2{height:48.576000px;}
.h17{height:49.992188px;}
.h16{height:54.158203px;}
.hf{height:55.440000px;}
.h1b{height:66.071953px;}
.h28{height:68.130000px;}
.h3{height:69.300000px;}
.ha{height:83.904000px;}
.h14{height:84.480403px;}
.h1{height:1177.500000px;}
.h0{height:1177.795500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:21.259800px;}
.x20{left:32.274150px;}
.x1b{left:51.849750px;}
.x13{left:104.445300px;}
.x2{left:106.299150px;}
.x19{left:107.571900px;}
.x1c{left:109.381800px;}
.x10{left:121.229250px;}
.x33{left:123.276450px;}
.x6{left:127.125750px;}
.x3e{left:129.419550px;}
.x3d{left:134.463450px;}
.x37{left:135.818550px;}
.x11{left:136.818750px;}
.x43{left:139.705650px;}
.x2c{left:141.178800px;}
.x2d{left:142.753350px;}
.x44{left:144.107850px;}
.xf{left:145.984200px;}
.x24{left:149.347200px;}
.x40{left:151.612500px;}
.x3a{left:153.875250px;}
.x2f{left:164.419980px;}
.x23{left:174.271500px;}
.x3b{left:176.606700px;}
.x22{left:178.302900px;}
.x1a{left:179.582250px;}
.x14{left:180.982050px;}
.x3c{left:185.797200px;}
.x30{left:216.125130px;}
.x36{left:240.043350px;}
.x34{left:245.576160px;}
.x39{left:257.814750px;}
.x25{left:269.556300px;}
.x42{left:301.824150px;}
.x31{left:304.814280px;}
.x1{left:352.223400px;}
.x27{left:405.616650px;}
.x26{left:411.222300px;}
.x4{left:454.221150px;}
.x21{left:456.000000px;}
.xd{left:457.079700px;}
.x7{left:471.672750px;}
.x3{left:475.483650px;}
.x18{left:477.357900px;}
.x45{left:483.175350px;}
.x8{left:493.198950px;}
.x12{left:497.030250px;}
.x41{left:503.677500px;}
.x1e{left:519.650850px;}
.x2e{left:528.958200px;}
.x29{left:541.678650px;}
.xb{left:543.861900px;}
.xc{left:545.515950px;}
.x28{left:547.317750px;}
.x15{left:549.495000px;}
.x32{left:558.636450px;}
.xa{left:571.413600px;}
.x35{left:585.733560px;}
.x16{left:601.102500px;}
.x9{left:652.305000px;}
.xe{left:658.197600px;}
.x5{left:675.100500px;}
.x2b{left:677.745300px;}
.x2a{left:683.051550px;}
.x38{left:718.215900px;}
.x3f{left:784.836600px;}
.x1f{left:828.141750px;}
.x1d{left:832.233300px;}
@media print{
.vc{vertical-align:-31.681920pt;}
.v8{vertical-align:-24.640000pt;}
.vd{vertical-align:-21.120000pt;}
.vb{vertical-align:-19.360000pt;}
.v5{vertical-align:-16.176000pt;}
.v1{vertical-align:-14.080000pt;}
.v6{vertical-align:-12.320000pt;}
.vf{vertical-align:-10.453333pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:7.593067pt;}
.v7{vertical-align:12.320000pt;}
.v3{vertical-align:14.080533pt;}
.v4{vertical-align:15.839467pt;}
.v2{vertical-align:17.600000pt;}
.ve{vertical-align:21.120000pt;}
.v9{vertical-align:26.953067pt;}
.ls11{letter-spacing:-2.400000pt;}
.ls12{letter-spacing:-1.866667pt;}
.lse{letter-spacing:-1.440000pt;}
.ls1d{letter-spacing:-1.194667pt;}
.ls1f{letter-spacing:-1.120000pt;}
.ls13{letter-spacing:-1.082667pt;}
.ls1e{letter-spacing:-1.008000pt;}
.lsa{letter-spacing:-0.960000pt;}
.ls5{letter-spacing:-0.853333pt;}
.lsf{letter-spacing:-0.835200pt;}
.ls14{letter-spacing:-0.746667pt;}
.lsd{letter-spacing:-0.720000pt;}
.ls20{letter-spacing:-0.649600pt;}
.ls5a{letter-spacing:-0.556800pt;}
.ls4b{letter-spacing:-0.519680pt;}
.ls4{letter-spacing:-0.480000pt;}
.ls15{letter-spacing:-0.433067pt;}
.ls10{letter-spacing:-0.417600pt;}
.lsb{letter-spacing:-0.278400pt;}
.ls1c{letter-spacing:-0.144000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.000107pt;}
.ls2{letter-spacing:0.001600pt;}
.ls2b{letter-spacing:0.002133pt;}
.ls29{letter-spacing:0.003200pt;}
.ls37{letter-spacing:0.003627pt;}
.ls16{letter-spacing:0.004160pt;}
.ls18{letter-spacing:0.004693pt;}
.ls24{letter-spacing:0.005333pt;}
.ls28{letter-spacing:0.008320pt;}
.ls36{letter-spacing:0.009067pt;}
.ls41{letter-spacing:0.017067pt;}
.ls2a{letter-spacing:0.020800pt;}
.ls26{letter-spacing:0.022400pt;}
.ls9{letter-spacing:0.023467pt;}
.ls0{letter-spacing:0.024000pt;}
.ls17{letter-spacing:0.027200pt;}
.ls1a{letter-spacing:0.030933pt;}
.ls3e{letter-spacing:0.035733pt;}
.ls25{letter-spacing:0.042667pt;}
.ls7{letter-spacing:0.044800pt;}
.ls22{letter-spacing:0.053867pt;}
.ls21{letter-spacing:0.057067pt;}
.ls27{letter-spacing:0.075200pt;}
.ls23{letter-spacing:0.079467pt;}
.ls8{letter-spacing:0.083733pt;}
.ls35{letter-spacing:0.136533pt;}
.ls34{letter-spacing:0.278400pt;}
.ls2f{letter-spacing:0.282560pt;}
.ls30{letter-spacing:0.283093pt;}
.ls2c{letter-spacing:0.480000pt;}
.ls2e{letter-spacing:0.508267pt;}
.ls32{letter-spacing:0.539733pt;}
.ls2d{letter-spacing:0.557867pt;}
.ls33{letter-spacing:0.676800pt;}
.ls48{letter-spacing:0.960000pt;}
.ls1{letter-spacing:1.152000pt;}
.lsc{letter-spacing:1.584000pt;}
.ls6{letter-spacing:2.986667pt;}
.ls1b{letter-spacing:3.792000pt;}
.ls58{letter-spacing:3.984213pt;}
.ls4a{letter-spacing:4.395627pt;}
.ls59{letter-spacing:6.869333pt;}
.ls4c{letter-spacing:7.578667pt;}
.ls49{letter-spacing:8.832000pt;}
.ls31{letter-spacing:15.648000pt;}
.ls42{letter-spacing:161.487040pt;}
.ls3f{letter-spacing:162.214507pt;}
.ls43{letter-spacing:162.494507pt;}
.ls40{letter-spacing:163.222507pt;}
.ls3c{letter-spacing:164.688640pt;}
.ls3d{letter-spacing:165.696640pt;}
.ls3a{letter-spacing:187.757333pt;}
.ls38{letter-spacing:190.256320pt;}
.ls39{letter-spacing:225.271680pt;}
.ls3b{letter-spacing:226.783680pt;}
.ls47{letter-spacing:253.203307pt;}
.ls46{letter-spacing:253.931307pt;}
.ls45{letter-spacing:256.405440pt;}
.ls57{letter-spacing:257.674027pt;}
.ls54{letter-spacing:261.759573pt;}
.ls51{letter-spacing:263.299840pt;}
.ls52{letter-spacing:264.233707pt;}
.ls53{letter-spacing:265.895573pt;}
.ls50{letter-spacing:278.037440pt;}
.ls4f{letter-spacing:278.765440pt;}
.ls4e{letter-spacing:281.239573pt;}
.ls44{letter-spacing:301.687893pt;}
.ls56{letter-spacing:353.239253pt;}
.ls55{letter-spacing:358.966187pt;}
.ls4d{letter-spacing:482.009067pt;}
.ws1c{word-spacing:-48.000000pt;}
.ws3{word-spacing:-34.250667pt;}
.ws2d{word-spacing:-17.520000pt;}
.ws14{word-spacing:-17.333333pt;}
.ws18{word-spacing:-16.000000pt;}
.ws4{word-spacing:-14.720000pt;}
.ws1e{word-spacing:-13.824000pt;}
.ws20{word-spacing:-13.626667pt;}
.ws0{word-spacing:-13.344000pt;}
.ws11{word-spacing:-13.200000pt;}
.ws9{word-spacing:-12.864000pt;}
.ws15{word-spacing:-12.419733pt;}
.ws7{word-spacing:-12.384000pt;}
.wsc{word-spacing:-12.000000pt;}
.ws5{word-spacing:-10.624000pt;}
.ws2{word-spacing:-10.455467pt;}
.ws12{word-spacing:-9.333333pt;}
.ws1d{word-spacing:-8.017920pt;}
.ws19{word-spacing:-7.914667pt;}
.ws16{word-spacing:-7.903467pt;}
.ws8{word-spacing:-7.739520pt;}
.wsa{word-spacing:-7.461120pt;}
.wse{word-spacing:-7.321920pt;}
.ws2c{word-spacing:-7.182720pt;}
.wsd{word-spacing:-6.904320pt;}
.ws1b{word-spacing:-6.794667pt;}
.ws1{word-spacing:-6.161920pt;}
.wsf{word-spacing:-6.048000pt;}
.wsb{word-spacing:-4.590507pt;}
.ws10{word-spacing:-4.157440pt;}
.ws23{word-spacing:-4.070827pt;}
.ws1a{word-spacing:-3.940907pt;}
.ws25{word-spacing:-0.037333pt;}
.ws17{word-spacing:-0.034027pt;}
.ws26{word-spacing:-0.021653pt;}
.ws6{word-spacing:0.000000pt;}
.ws1f{word-spacing:138.096000pt;}
.ws21{word-spacing:139.104000pt;}
.ws24{word-spacing:242.368000pt;}
.ws13{word-spacing:252.704000pt;}
.ws27{word-spacing:263.536000pt;}
.ws2b{word-spacing:371.466667pt;}
.ws2a{word-spacing:451.606187pt;}
.ws29{word-spacing:496.309333pt;}
.ws22{word-spacing:958.967467pt;}
.ws28{word-spacing:2705.741333pt;}
._1a{margin-left:-425.941333pt;}
._2c{margin-left:-14.761600pt;}
._2d{margin-left:-13.488000pt;}
._22{margin-left:-12.336000pt;}
._1b{margin-left:-11.328107pt;}
._28{margin-left:-10.347733pt;}
._27{margin-left:-8.517333pt;}
._10{margin-left:-7.584000pt;}
._24{margin-left:-5.866667pt;}
._1d{margin-left:-4.962667pt;}
._e{margin-left:-3.840000pt;}
._1c{margin-left:-2.933333pt;}
._1{margin-left:-2.016000pt;}
._0{margin-left:-0.960000pt;}
._2{width:1.008000pt;}
._4{width:2.496000pt;}
._1e{width:3.664000pt;}
._23{width:4.688000pt;}
._b{width:5.712000pt;}
._f{width:7.008000pt;}
._a{width:8.208000pt;}
._d{width:9.216000pt;}
._3{width:10.512000pt;}
._6{width:12.192000pt;}
._26{width:13.707307pt;}
._18{width:14.784000pt;}
._19{width:15.936000pt;}
._c{width:16.992000pt;}
._1f{width:17.952000pt;}
._9{width:19.200000pt;}
._8{width:20.112000pt;}
._7{width:21.888000pt;}
._5{width:23.616000pt;}
._25{width:24.672000pt;}
._21{width:25.680000pt;}
._15{width:27.024000pt;}
._14{width:28.128000pt;}
._17{width:30.576000pt;}
._13{width:31.824000pt;}
._12{width:34.656000pt;}
._11{width:35.664000pt;}
._40{width:36.960000pt;}
._3e{width:38.160000pt;}
._3d{width:39.120000pt;}
._3f{width:50.160000pt;}
._16{width:56.400000pt;}
._20{width:65.328000pt;}
._2f{width:148.885333pt;}
._33{width:156.800000pt;}
._2e{width:180.170667pt;}
._32{width:181.178667pt;}
._30{width:198.874667pt;}
._34{width:200.368000pt;}
._36{width:205.258240pt;}
._35{width:207.786667pt;}
._31{width:223.216000pt;}
._3b{width:262.368000pt;}
._29{width:265.640000pt;}
._2b{width:271.298133pt;}
._3c{width:273.202133pt;}
._2a{width:284.554667pt;}
._3a{width:296.161067pt;}
._39{width:413.672107pt;}
._37{width:414.724267pt;}
._38{width:455.877333pt;}
.fsb{font-size:21.653333pt;}
.fs5{font-size:24.746667pt;}
.fs9{font-size:27.840000pt;}
.fs7{font-size:30.933333pt;}
.fsd{font-size:34.026667pt;}
.fse{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fsa{font-size:64.000000pt;}
.fsc{font-size:69.333333pt;}
.fs1{font-size:80.000000pt;}
.fs8{font-size:101.333333pt;}
.y0{bottom:0.000000pt;}
.y169{bottom:58.033600pt;}
.y8c{bottom:58.033733pt;}
.y44{bottom:60.490400pt;}
.y168{bottom:60.649067pt;}
.y8e{bottom:60.649333pt;}
.y26{bottom:68.556400pt;}
.y8b{bottom:83.149600pt;}
.ybf{bottom:86.900933pt;}
.y166{bottom:86.929067pt;}
.yeb{bottom:87.191867pt;}
.y13f{bottom:93.569467pt;}
.y25{bottom:94.325067pt;}
.y8a{bottom:94.349600pt;}
.yc3{bottom:97.798267pt;}
.ybe{bottom:98.100933pt;}
.y165{bottom:98.129067pt;}
.yea{bottom:102.314000pt;}
.y129{bottom:102.933333pt;}
.y12{bottom:102.989067pt;}
.y89{bottom:105.553067pt;}
.yc2{bottom:108.998267pt;}
.ybd{bottom:109.300933pt;}
.y24{bottom:110.321067pt;}
.y13e{bottom:112.467067pt;}
.y128{bottom:118.933333pt;}
.y11{bottom:118.985067pt;}
.yc1{bottom:120.198267pt;}
.ybc{bottom:120.500933pt;}
.y23{bottom:126.317067pt;}
.ye6{bottom:126.327733pt;}
.ye9{bottom:126.790000pt;}
.y13d{bottom:131.361867pt;}
.yc0{bottom:131.398267pt;}
.ybb{bottom:131.717200pt;}
.y127{bottom:134.937333pt;}
.y10{bottom:134.981067pt;}
.y1ae{bottom:134.997067pt;}
.y1c0{bottom:135.069067pt;}
.ye5{bottom:138.349467pt;}
.y22{bottom:142.313067pt;}
.ye7{bottom:145.087733pt;}
.ye8{bottom:145.550000pt;}
.y13c{bottom:150.261867pt;}
.y126{bottom:150.933333pt;}
.yf{bottom:150.977067pt;}
.y1ad{bottom:150.993067pt;}
.y1bf{bottom:151.065067pt;}
.y21{bottom:158.309067pt;}
.y125{bottom:166.937333pt;}
.ye{bottom:166.973067pt;}
.y1ac{bottom:166.989067pt;}
.y1be{bottom:167.061067pt;}
.y13b{bottom:173.072533pt;}
.y20{bottom:174.305067pt;}
.ye4{bottom:179.257467pt;}
.y124{bottom:182.933333pt;}
.yd{bottom:182.969067pt;}
.y1ab{bottom:182.985067pt;}
.y1bd{bottom:183.057067pt;}
.y1f{bottom:190.301067pt;}
.ye3{bottom:190.457467pt;}
.y123{bottom:198.937333pt;}
.yc{bottom:198.965067pt;}
.y1aa{bottom:198.981067pt;}
.y1bc{bottom:199.053067pt;}
.y13a{bottom:199.525600pt;}
.ye2{bottom:201.657467pt;}
.y1e{bottom:206.297067pt;}
.y122{bottom:214.933333pt;}
.yb{bottom:214.961067pt;}
.y1a9{bottom:214.977067pt;}
.y1bb{bottom:215.049067pt;}
.yef{bottom:220.665467pt;}
.y1d{bottom:222.293067pt;}
.ye1{bottom:230.931200pt;}
.y121{bottom:230.937333pt;}
.ya{bottom:230.957067pt;}
.y1a8{bottom:230.973067pt;}
.y1ba{bottom:231.045067pt;}
.yee{bottom:231.865467pt;}
.y139{bottom:232.126933pt;}
.y1c{bottom:238.289067pt;}
.ye0{bottom:242.131200pt;}
.yed{bottom:243.065467pt;}
.y138{bottom:243.326933pt;}
.y120{bottom:246.933333pt;}
.y9{bottom:246.953067pt;}
.y1a7{bottom:246.969067pt;}
.y1b9{bottom:247.041067pt;}
.ydf{bottom:253.361200pt;}
.yec{bottom:254.265467pt;}
.y1b{bottom:254.285067pt;}
.y137{bottom:254.526933pt;}
.y11f{bottom:262.933333pt;}
.y8{bottom:262.949067pt;}
.y1a6{bottom:262.965067pt;}
.y1b8{bottom:263.037067pt;}
.y1a{bottom:270.281067pt;}
.y10c{bottom:278.933333pt;}
.y7{bottom:278.945067pt;}
.y11e{bottom:278.945333pt;}
.y1a5{bottom:278.961067pt;}
.y1b7{bottom:279.033067pt;}
.y19{bottom:286.277067pt;}
.y6{bottom:294.941067pt;}
.y11d{bottom:294.941333pt;}
.y10b{bottom:294.945333pt;}
.y1a4{bottom:294.957067pt;}
.y1b6{bottom:295.029067pt;}
.y18{bottom:302.273067pt;}
.y5{bottom:310.937067pt;}
.y11c{bottom:310.937333pt;}
.y10a{bottom:310.941333pt;}
.y1a3{bottom:310.953067pt;}
.y1b5{bottom:311.025067pt;}
.y17{bottom:318.269067pt;}
.y161{bottom:325.568400pt;}
.y4{bottom:326.933067pt;}
.y11b{bottom:326.933333pt;}
.y109{bottom:326.937333pt;}
.y1a2{bottom:326.949067pt;}
.y1b4{bottom:327.021067pt;}
.y16{bottom:334.265067pt;}
.y3{bottom:342.929067pt;}
.y11a{bottom:342.929333pt;}
.y108{bottom:342.933333pt;}
.y67{bottom:342.937067pt;}
.y1a1{bottom:342.945067pt;}
.y1b3{bottom:343.017067pt;}
.y160{bottom:344.466000pt;}
.y15{bottom:350.261067pt;}
.y66{bottom:358.933067pt;}
.y107{bottom:358.937333pt;}
.y1a0{bottom:358.941067pt;}
.y1b2{bottom:359.013067pt;}
.y119{bottom:360.897733pt;}
.y15f{bottom:363.363733pt;}
.y14{bottom:366.257067pt;}
.y65{bottom:374.929067pt;}
.y88{bottom:374.933067pt;}
.y106{bottom:374.933333pt;}
.y19f{bottom:374.937067pt;}
.y1b1{bottom:375.009067pt;}
.y2{bottom:375.889200pt;}
.y118{bottom:379.569733pt;}
.y13{bottom:382.253067pt;}
.y15e{bottom:382.261333pt;}
.y19e{bottom:390.933067pt;}
.y105{bottom:390.933333pt;}
.y87{bottom:390.949067pt;}
.y1b0{bottom:391.005067pt;}
.y64{bottom:394.031467pt;}
.y15d{bottom:401.158933pt;}
.y19d{bottom:406.929067pt;}
.y104{bottom:406.933333pt;}
.y86{bottom:406.945067pt;}
.y1af{bottom:407.001067pt;}
.y63{bottom:412.703467pt;}
.y15c{bottom:420.056533pt;}
.y41{bottom:420.569333pt;}
.y103{bottom:422.933333pt;}
.y117{bottom:422.937333pt;}
.y85{bottom:422.941067pt;}
.y35{bottom:437.470400pt;}
.y62{bottom:438.929067pt;}
.y116{bottom:438.933333pt;}
.y84{bottom:438.937067pt;}
.y101{bottom:438.941333pt;}
.y15b{bottom:438.956533pt;}
.y102{bottom:442.889813pt;}
.y19c{bottom:449.924933pt;}
.y83{bottom:454.933067pt;}
.y115{bottom:454.933333pt;}
.y100{bottom:454.937333pt;}
.y40{bottom:457.574400pt;}
.y15a{bottom:463.654267pt;}
.y3f{bottom:470.907733pt;}
.yff{bottom:470.933333pt;}
.y82{bottom:470.937067pt;}
.y61{bottom:471.141733pt;}
.y158{bottom:476.882533pt;}
.y3e{bottom:484.241067pt;}
.y19b{bottom:486.932933pt;}
.y81{bottom:486.933067pt;}
.yfe{bottom:486.933333pt;}
.y181{bottom:486.941067pt;}
.y60{bottom:487.161733pt;}
.y159{bottom:492.002533pt;}
.y3d{bottom:497.574400pt;}
.y114{bottom:498.969333pt;}
.y19a{bottom:502.928933pt;}
.y80{bottom:502.933067pt;}
.yfd{bottom:502.933333pt;}
.y180{bottom:502.937067pt;}
.yde{bottom:502.961200pt;}
.y5f{bottom:503.157733pt;}
.y3c{bottom:510.907733pt;}
.y17f{bottom:518.933067pt;}
.yfc{bottom:518.933333pt;}
.y7f{bottom:518.949067pt;}
.ydd{bottom:518.957200pt;}
.y5e{bottom:519.153733pt;}
.y164{bottom:519.792800pt;}
.y3b{bottom:524.241067pt;}
.y163{bottom:530.992800pt;}
.y199{bottom:534.928933pt;}
.yfb{bottom:534.933333pt;}
.y17e{bottom:534.937067pt;}
.y113{bottom:534.937333pt;}
.y7e{bottom:534.945067pt;}
.ydc{bottom:534.953200pt;}
.y5d{bottom:535.149733pt;}
.y3a{bottom:537.574400pt;}
.y162{bottom:542.192800pt;}
.y39{bottom:550.910400pt;}
.y17d{bottom:550.933067pt;}
.yfa{bottom:550.933333pt;}
.y7d{bottom:550.941067pt;}
.ydb{bottom:550.949200pt;}
.y5c{bottom:551.145733pt;}
.y38{bottom:564.243733pt;}
.y112{bottom:566.933333pt;}
.y7c{bottom:566.937067pt;}
.yf9{bottom:566.941333pt;}
.yba{bottom:566.945200pt;}
.ya4{bottom:566.957200pt;}
.y198{bottom:567.029067pt;}
.y5b{bottom:567.141733pt;}
.y157{bottom:570.426667pt;}
.y37{bottom:577.577067pt;}
.y155{bottom:581.626667pt;}
.y7b{bottom:582.933067pt;}
.yf8{bottom:582.937333pt;}
.yb9{bottom:582.941200pt;}
.ya3{bottom:582.953200pt;}
.y197{bottom:583.025067pt;}
.y5a{bottom:583.221733pt;}
.y156{bottom:584.706667pt;}
.y36{bottom:590.910400pt;}
.y17c{bottom:598.929067pt;}
.yf7{bottom:598.933333pt;}
.yb8{bottom:598.937200pt;}
.y7a{bottom:598.941067pt;}
.ya2{bottom:598.949200pt;}
.y196{bottom:599.021067pt;}
.y59{bottom:599.217733pt;}
.y154{bottom:604.350667pt;}
.yb7{bottom:614.933200pt;}
.y79{bottom:614.937067pt;}
.y17b{bottom:614.941067pt;}
.ya1{bottom:614.945200pt;}
.yf6{bottom:614.945333pt;}
.y111{bottom:614.953333pt;}
.y195{bottom:615.017067pt;}
.y58{bottom:615.213733pt;}
.y153{bottom:619.468800pt;}
.y28{bottom:624.188133pt;}
.y78{bottom:630.933067pt;}
.yda{bottom:630.933200pt;}
.y17a{bottom:630.937067pt;}
.yb6{bottom:630.937200pt;}
.ya0{bottom:630.941200pt;}
.yf5{bottom:630.941333pt;}
.y110{bottom:630.949333pt;}
.y194{bottom:631.013067pt;}
.y57{bottom:631.209733pt;}
.y152{bottom:634.586800pt;}
.y30{bottom:636.529200pt;}
.y77{bottom:646.929067pt;}
.y179{bottom:646.933067pt;}
.yb5{bottom:646.933200pt;}
.y9f{bottom:646.937200pt;}
.yf4{bottom:646.937333pt;}
.y10f{bottom:646.945333pt;}
.y193{bottom:647.009067pt;}
.y56{bottom:647.205733pt;}
.y151{bottom:649.704933pt;}
.y2f{bottom:652.849200pt;}
.y2e{bottom:662.129200pt;}
.y76{bottom:662.929067pt;}
.yb4{bottom:662.929200pt;}
.y178{bottom:662.933067pt;}
.y9e{bottom:662.933200pt;}
.yf3{bottom:662.933333pt;}
.y10e{bottom:662.941333pt;}
.y192{bottom:663.005067pt;}
.y55{bottom:663.201733pt;}
.y150{bottom:664.823067pt;}
.y2d{bottom:678.449200pt;}
.yd9{bottom:678.929200pt;}
.y9d{bottom:678.937200pt;}
.yf2{bottom:678.937333pt;}
.y177{bottom:678.941067pt;}
.y191{bottom:679.001067pt;}
.y54{bottom:679.197733pt;}
.yb3{bottom:679.811067pt;}
.y14f{bottom:679.941067pt;}
.y2c{bottom:687.729200pt;}
.y75{bottom:694.929067pt;}
.y9c{bottom:694.933200pt;}
.yf1{bottom:694.933333pt;}
.y176{bottom:694.937067pt;}
.ycb{bottom:694.937200pt;}
.y190{bottom:694.997067pt;}
.y14e{bottom:695.059200pt;}
.y53{bottom:695.193733pt;}
.yd8{bottom:696.924000pt;}
.y2b{bottom:704.049200pt;}
.y14d{bottom:710.177333pt;}
.y9b{bottom:710.929200pt;}
.yf0{bottom:710.929333pt;}
.y175{bottom:710.933067pt;}
.yb2{bottom:710.933200pt;}
.y10d{bottom:710.933333pt;}
.y18f{bottom:710.993067pt;}
.y52{bottom:711.189733pt;}
.y2a{bottom:713.329067pt;}
.yd7{bottom:724.257333pt;}
.y14c{bottom:725.295333pt;}
.y9a{bottom:726.929200pt;}
.y174{bottom:726.933067pt;}
.yca{bottom:726.933200pt;}
.yb1{bottom:726.941200pt;}
.y18e{bottom:726.989067pt;}
.y74{bottom:727.153733pt;}
.y51{bottom:727.185733pt;}
.y29{bottom:729.649067pt;}
.y14b{bottom:740.413467pt;}
.yd6{bottom:742.929333pt;}
.yc9{bottom:742.933200pt;}
.yb0{bottom:742.937200pt;}
.y173{bottom:742.945067pt;}
.y18d{bottom:742.985067pt;}
.y73{bottom:743.149733pt;}
.y50{bottom:743.181733pt;}
.y31{bottom:743.377733pt;}
.y134{bottom:746.783200pt;}
.y14a{bottom:755.531600pt;}
.y132{bottom:757.983200pt;}
.yaf{bottom:758.933200pt;}
.y172{bottom:758.941067pt;}
.y99{bottom:758.969200pt;}
.y18c{bottom:758.981067pt;}
.y72{bottom:759.145733pt;}
.y4f{bottom:759.177733pt;}
.y133{bottom:761.063200pt;}
.y149{bottom:770.649733pt;}
.y131{bottom:772.263200pt;}
.yd5{bottom:774.506267pt;}
.y27{bottom:774.632133pt;}
.yc8{bottom:774.929200pt;}
.yae{bottom:774.933200pt;}
.y171{bottom:774.937067pt;}
.y98{bottom:774.965200pt;}
.y18b{bottom:774.977067pt;}
.y71{bottom:775.141733pt;}
.y4e{bottom:775.173733pt;}
.y148{bottom:785.767867pt;}
.y130{bottom:790.306933pt;}
.yd4{bottom:790.502267pt;}
.yc7{bottom:790.929200pt;}
.y170{bottom:790.933067pt;}
.yad{bottom:790.957200pt;}
.y97{bottom:790.961200pt;}
.y18a{bottom:790.973067pt;}
.y4d{bottom:791.169733pt;}
.y70{bottom:791.173067pt;}
.y147{bottom:800.886000pt;}
.y34{bottom:803.932533pt;}
.y12f{bottom:805.425067pt;}
.yd3{bottom:806.498267pt;}
.y16f{bottom:806.945067pt;}
.yac{bottom:806.953200pt;}
.y96{bottom:806.957200pt;}
.y189{bottom:806.969067pt;}
.y4c{bottom:807.165733pt;}
.y6f{bottom:807.169067pt;}
.y146{bottom:816.004000pt;}
.y12e{bottom:820.543200pt;}
.yd2{bottom:822.494267pt;}
.yc6{bottom:822.933200pt;}
.y16e{bottom:822.941067pt;}
.yab{bottom:822.949200pt;}
.y95{bottom:822.953200pt;}
.y188{bottom:822.965067pt;}
.y4b{bottom:823.161733pt;}
.y6e{bottom:823.165067pt;}
.y145{bottom:831.122133pt;}
.y33{bottom:834.332533pt;}
.y12d{bottom:835.663200pt;}
.yd1{bottom:838.517200pt;}
.yc5{bottom:838.933200pt;}
.y16d{bottom:838.937067pt;}
.yaa{bottom:838.945200pt;}
.y94{bottom:838.949200pt;}
.y187{bottom:838.961067pt;}
.y4a{bottom:839.157733pt;}
.y6d{bottom:839.161067pt;}
.y144{bottom:846.240267pt;}
.y12c{bottom:852.801733pt;}
.yd0{bottom:854.513200pt;}
.y16c{bottom:854.933067pt;}
.ya9{bottom:854.941200pt;}
.y93{bottom:854.945200pt;}
.y186{bottom:854.957067pt;}
.y49{bottom:855.153733pt;}
.y6c{bottom:855.157067pt;}
.y143{bottom:861.360267pt;}
.y32{bottom:864.732533pt;}
.ycf{bottom:870.509200pt;}
.y16b{bottom:870.929067pt;}
.ya8{bottom:870.937200pt;}
.y92{bottom:870.941200pt;}
.y185{bottom:870.953067pt;}
.y48{bottom:871.149733pt;}
.y6b{bottom:871.153067pt;}
.y12a{bottom:873.589200pt;}
.y12b{bottom:876.669573pt;}
.y142{bottom:880.391467pt;}
.yce{bottom:886.505200pt;}
.ya7{bottom:886.933200pt;}
.y91{bottom:886.937200pt;}
.y184{bottom:886.949067pt;}
.y47{bottom:887.145733pt;}
.y6a{bottom:887.149067pt;}
.y136{bottom:896.737733pt;}
.ycd{bottom:902.501200pt;}
.y16a{bottom:902.929067pt;}
.y90{bottom:902.933200pt;}
.y183{bottom:902.945067pt;}
.ya6{bottom:902.957200pt;}
.y46{bottom:903.141733pt;}
.y69{bottom:903.145067pt;}
.y141{bottom:907.290133pt;}
.y135{bottom:907.937733pt;}
.y140{bottom:918.490133pt;}
.ycc{bottom:918.497200pt;}
.y8f{bottom:918.929200pt;}
.y182{bottom:918.941067pt;}
.ya5{bottom:918.953200pt;}
.y45{bottom:919.137733pt;}
.y68{bottom:919.141067pt;}
.y1{bottom:942.568800pt;}
.y1c1{bottom:980.943733pt;}
.y43{bottom:980.943867pt;}
.yc4{bottom:980.944000pt;}
.y167{bottom:992.143733pt;}
.y42{bottom:992.143867pt;}
.y8d{bottom:992.144000pt;}
.h1f{height:15.612053pt;}
.h1c{height:16.045120pt;}
.h8{height:19.079680pt;}
.h11{height:26.917333pt;}
.h1e{height:26.924800pt;}
.h23{height:26.926400pt;}
.h22{height:26.926933pt;}
.h21{height:26.938133pt;}
.h1a{height:27.048705pt;}
.h6{height:27.477333pt;}
.h7{height:27.664000pt;}
.h20{height:27.678933pt;}
.h18{height:27.923520pt;}
.h13{height:27.932053pt;}
.h19{height:27.939520pt;}
.h25{height:27.940053pt;}
.h27{height:27.941120pt;}
.h26{height:27.941653pt;}
.h24{height:28.353920pt;}
.h1d{height:28.365120pt;}
.h15{height:28.368853pt;}
.hc{height:32.853333pt;}
.hd{height:32.885333pt;}
.h5{height:32.896000pt;}
.he{height:33.135467pt;}
.h10{height:35.568000pt;}
.hb{height:37.008000pt;}
.h12{height:38.453333pt;}
.h9{height:40.366933pt;}
.h4{height:42.890625pt;}
.h2{height:43.178667pt;}
.h17{height:44.437500pt;}
.h16{height:48.140625pt;}
.hf{height:49.280000pt;}
.h1b{height:58.730625pt;}
.h28{height:60.560000pt;}
.h3{height:61.600000pt;}
.ha{height:74.581333pt;}
.h14{height:75.093692pt;}
.h1{height:1046.666667pt;}
.h0{height:1046.929333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:18.897600pt;}
.x20{left:28.688133pt;}
.x1b{left:46.088667pt;}
.x13{left:92.840267pt;}
.x2{left:94.488133pt;}
.x19{left:95.619467pt;}
.x1c{left:97.228267pt;}
.x10{left:107.759333pt;}
.x33{left:109.579067pt;}
.x6{left:113.000667pt;}
.x3e{left:115.039600pt;}
.x3d{left:119.523067pt;}
.x37{left:120.727600pt;}
.x11{left:121.616667pt;}
.x43{left:124.182800pt;}
.x2c{left:125.492267pt;}
.x2d{left:126.891867pt;}
.x44{left:128.095867pt;}
.xf{left:129.763733pt;}
.x24{left:132.753067pt;}
.x40{left:134.766667pt;}
.x3a{left:136.778000pt;}
.x2f{left:146.151093pt;}
.x23{left:154.908000pt;}
.x3b{left:156.983733pt;}
.x22{left:158.491467pt;}
.x1a{left:159.628667pt;}
.x14{left:160.872933pt;}
.x3c{left:165.153067pt;}
.x30{left:192.111227pt;}
.x36{left:213.371867pt;}
.x34{left:218.289920pt;}
.x39{left:229.168667pt;}
.x25{left:239.605600pt;}
.x42{left:268.288133pt;}
.x31{left:270.946027pt;}
.x1{left:313.087467pt;}
.x27{left:360.548133pt;}
.x26{left:365.530933pt;}
.x4{left:403.752133pt;}
.x21{left:405.333333pt;}
.xd{left:406.293067pt;}
.x7{left:419.264667pt;}
.x3{left:422.652133pt;}
.x18{left:424.318133pt;}
.x45{left:429.489200pt;}
.x8{left:438.399067pt;}
.x12{left:441.804667pt;}
.x41{left:447.713333pt;}
.x1e{left:461.911867pt;}
.x2e{left:470.185067pt;}
.x29{left:481.492133pt;}
.xb{left:483.432800pt;}
.xc{left:484.903067pt;}
.x28{left:486.504667pt;}
.x15{left:488.440000pt;}
.x32{left:496.565733pt;}
.xa{left:507.923200pt;}
.x35{left:520.652053pt;}
.x16{left:534.313333pt;}
.x9{left:579.826667pt;}
.xe{left:585.064533pt;}
.x5{left:600.089333pt;}
.x2b{left:602.440267pt;}
.x2a{left:607.156933pt;}
.x38{left:638.414133pt;}
.x3f{left:697.632533pt;}
.x1f{left:736.126000pt;}
.x1d{left:739.762933pt;}
}




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