
    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_2f97dbe19ef757e7b9a3cf35.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958496;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_b0b3605c13a7f9e84b8ed850.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958496;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_d3e8768c2eef623d31b03542.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958496;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_001b8f11f698e415e9757fce.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.190918;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_ff089072068b7d805a70eb5c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.190918;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_794e5f5836442481d785fdf4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.722656;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_a362d4959a864a807d4364e0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.349000;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_9ad2cfa8be353b1827cc1560.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.384000;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_71672c4fd677baf1aece7931.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.362000;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_eccac0385f175a90419b6ee1.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_170a9727f22272f6078092e6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.724000;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_b298c0165a4bb6130f14aa1f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.258000;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_5f21aa38ca703ac9093898f7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-21.000000px;}
.v7{vertical-align:-17.849991px;}
.v5{vertical-align:-10.812022px;}
.v1{vertical-align:-1.488000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:8.100220px;}
.v6{vertical-align:10.800022px;}
.v4{vertical-align:18.768110px;}
.v2{vertical-align:21.000000px;}
.ls53{letter-spacing:-2.880000px;}
.ls36{letter-spacing:-2.160000px;}
.ls38{letter-spacing:-1.458000px;}
.ls6d{letter-spacing:-1.080000px;}
.ls6c{letter-spacing:-0.765000px;}
.ls33{letter-spacing:-0.756000px;}
.ls35{letter-spacing:-0.648000px;}
.ls6b{letter-spacing:-0.630000px;}
.ls45{letter-spacing:-0.596700px;}
.ls32{letter-spacing:-0.594000px;}
.ls54{letter-spacing:-0.495000px;}
.ls42{letter-spacing:-0.486000px;}
.ls69{letter-spacing:-0.450000px;}
.ls50{letter-spacing:-0.432000px;}
.ls23{letter-spacing:-0.421200px;}
.ls18{letter-spacing:-0.378000px;}
.ls43{letter-spacing:-0.324000px;}
.ls22{letter-spacing:-0.270000px;}
.ls51{letter-spacing:-0.225000px;}
.ls1b{letter-spacing:-0.216000px;}
.ls6a{letter-spacing:-0.180000px;}
.ls39{letter-spacing:-0.175500px;}
.ls16{letter-spacing:-0.162000px;}
.ls1c{letter-spacing:-0.140400px;}
.ls68{letter-spacing:-0.135000px;}
.ls11{letter-spacing:-0.108000px;}
.ls17{letter-spacing:-0.105300px;}
.ls57{letter-spacing:-0.090000px;}
.ls12{letter-spacing:-0.070200px;}
.ls21{letter-spacing:-0.054000px;}
.ls52{letter-spacing:-0.045000px;}
.ls10{letter-spacing:0.000000px;}
.ls30{letter-spacing:0.000083px;}
.ls3c{letter-spacing:0.009582px;}
.ls1{letter-spacing:0.013956px;}
.ls46{letter-spacing:0.026985px;}
.lsf{letter-spacing:0.026996px;}
.ls1e{letter-spacing:0.035100px;}
.ls31{letter-spacing:0.041068px;}
.ls67{letter-spacing:0.045000px;}
.ls1d{letter-spacing:0.054000px;}
.ls2e{letter-spacing:0.070200px;}
.ls5f{letter-spacing:0.090000px;}
.ls4f{letter-spacing:0.105300px;}
.lsd{letter-spacing:0.108000px;}
.ls24{letter-spacing:0.119978px;}
.ls4{letter-spacing:0.126476px;}
.ls4b{letter-spacing:0.135000px;}
.ls3a{letter-spacing:0.139897px;}
.ls15{letter-spacing:0.140400px;}
.ls3b{letter-spacing:0.151861px;}
.ls9{letter-spacing:0.157950px;}
.ls37{letter-spacing:0.159019px;}
.ls2f{letter-spacing:0.162000px;}
.ls3{letter-spacing:0.175500px;}
.ls4c{letter-spacing:0.180000px;}
.ls41{letter-spacing:0.181018px;}
.ls20{letter-spacing:0.186668px;}
.ls4a{letter-spacing:0.202500px;}
.ls3d{letter-spacing:0.210600px;}
.ls2{letter-spacing:0.216000px;}
.ls40{letter-spacing:0.221546px;}
.ls4d{letter-spacing:0.225000px;}
.ls2d{letter-spacing:0.245700px;}
.ls3e{letter-spacing:0.247834px;}
.ls2c{letter-spacing:0.249579px;}
.ls48{letter-spacing:0.264000px;}
.lsa{letter-spacing:0.270000px;}
.ls47{letter-spacing:0.280800px;}
.ls8{letter-spacing:0.286774px;}
.ls6{letter-spacing:0.306053px;}
.ls25{letter-spacing:0.314484px;}
.ls64{letter-spacing:0.315000px;}
.ls7{letter-spacing:0.315900px;}
.ls65{letter-spacing:0.319477px;}
.ls1f{letter-spacing:0.324000px;}
.ls5b{letter-spacing:0.337500px;}
.ls1a{letter-spacing:0.351000px;}
.ls59{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.378000px;}
.ls27{letter-spacing:0.386100px;}
.ls5c{letter-spacing:0.405000px;}
.ls14{letter-spacing:0.421200px;}
.lsb{letter-spacing:0.432000px;}
.ls5d{letter-spacing:0.450000px;}
.ls5{letter-spacing:0.486000px;}
.ls49{letter-spacing:0.495000px;}
.ls19{letter-spacing:0.540000px;}
.ls29{letter-spacing:0.545948px;}
.ls62{letter-spacing:0.585000px;}
.ls28{letter-spacing:0.594000px;}
.ls2b{letter-spacing:0.620999px;}
.ls26{letter-spacing:0.625593px;}
.ls58{letter-spacing:0.630000px;}
.ls13{letter-spacing:0.648000px;}
.ls55{letter-spacing:0.675000px;}
.ls2a{letter-spacing:0.680400px;}
.ls34{letter-spacing:0.702000px;}
.ls56{letter-spacing:0.720000px;}
.ls3f{letter-spacing:0.772158px;}
.ls44{letter-spacing:0.810000px;}
.ls66{letter-spacing:0.935982px;}
.ls5a{letter-spacing:0.949500px;}
.ls60{letter-spacing:1.125000px;}
.ls6f{letter-spacing:1.138427px;}
.ls71{letter-spacing:1.296000px;}
.ls6e{letter-spacing:1.543500px;}
.ls61{letter-spacing:1.579571px;}
.ls5e{letter-spacing:1.593000px;}
.ls70{letter-spacing:1.849479px;}
.ls4e{letter-spacing:2.560500px;}
.ls63{letter-spacing:2.574059px;}
.ls0{letter-spacing:3.000000px;}
.lse{letter-spacing:7.690800px;}
.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;}
}
.ws0{word-spacing:-48.000000px;}
.ws1{word-spacing:-15.000000px;}
.ws79{word-spacing:-13.860000px;}
.ws3d{word-spacing:-12.636000px;}
.ws25{word-spacing:-12.528000px;}
.ws70{word-spacing:-12.474000px;}
.ws27{word-spacing:-12.366000px;}
.ws2b{word-spacing:-12.312000px;}
.wsb{word-spacing:-12.258000px;}
.ws18{word-spacing:-12.150000px;}
.ws29{word-spacing:-11.988000px;}
.ws26{word-spacing:-11.718000px;}
.ws33{word-spacing:-11.610000px;}
.ws55{word-spacing:-10.800000px;}
.ws91{word-spacing:-10.755000px;}
.ws81{word-spacing:-10.440000px;}
.ws8f{word-spacing:-10.417500px;}
.wsa1{word-spacing:-10.395000px;}
.ws8e{word-spacing:-10.350000px;}
.ws7a{word-spacing:-10.215000px;}
.wsf{word-spacing:-10.200000px;}
.ws8d{word-spacing:-10.102500px;}
.ws4e{word-spacing:-10.098000px;}
.ws92{word-spacing:-9.855000px;}
.ws90{word-spacing:-9.765000px;}
.ws93{word-spacing:-9.675000px;}
.ws24{word-spacing:-9.600000px;}
.ws94{word-spacing:-9.540000px;}
.ws95{word-spacing:-9.225000px;}
.ws32{word-spacing:-8.424000px;}
.ws7{word-spacing:-8.388900px;}
.wsa{word-spacing:-8.318700px;}
.ws72{word-spacing:-8.283600px;}
.ws71{word-spacing:-8.248500px;}
.ws31{word-spacing:-8.213400px;}
.ws58{word-spacing:-8.178300px;}
.ws5{word-spacing:-8.143200px;}
.ws8{word-spacing:-8.108100px;}
.ws78{word-spacing:-8.073000px;}
.ws34{word-spacing:-8.037900px;}
.ws2{word-spacing:-8.034000px;}
.wsd{word-spacing:-8.002800px;}
.ws4{word-spacing:-7.967700px;}
.ws6{word-spacing:-7.897500px;}
.ws9{word-spacing:-7.862400px;}
.wsc{word-spacing:-7.827300px;}
.ws69{word-spacing:-7.792200px;}
.ws22{word-spacing:-7.690800px;}
.ws28{word-spacing:-7.616700px;}
.ws68{word-spacing:-7.441200px;}
.wse{word-spacing:-6.630000px;}
.wsa4{word-spacing:-6.120000px;}
.ws99{word-spacing:-6.030000px;}
.wsa0{word-spacing:-5.985000px;}
.ws9d{word-spacing:-5.895000px;}
.wsa5{word-spacing:-5.805000px;}
.wsa7{word-spacing:-5.715000px;}
.ws3a{word-spacing:-5.508000px;}
.ws6b{word-spacing:-2.484000px;}
.ws51{word-spacing:-2.322000px;}
.ws60{word-spacing:-1.944000px;}
.ws75{word-spacing:-1.836000px;}
.ws6d{word-spacing:-1.296000px;}
.ws12{word-spacing:-1.242000px;}
.ws20{word-spacing:-1.188000px;}
.ws3b{word-spacing:-1.134000px;}
.ws2d{word-spacing:-1.080000px;}
.ws82{word-spacing:-1.035000px;}
.ws1c{word-spacing:-1.026000px;}
.ws97{word-spacing:-0.990000px;}
.ws1e{word-spacing:-0.972000px;}
.ws4f{word-spacing:-0.918000px;}
.wsaa{word-spacing:-0.900000px;}
.ws61{word-spacing:-0.864000px;}
.wsa9{word-spacing:-0.855000px;}
.ws19{word-spacing:-0.810000px;}
.ws49{word-spacing:-0.756000px;}
.ws42{word-spacing:-0.702000px;}
.ws8b{word-spacing:-0.675000px;}
.ws1d{word-spacing:-0.648000px;}
.wsa3{word-spacing:-0.630000px;}
.ws39{word-spacing:-0.594000px;}
.ws9b{word-spacing:-0.585000px;}
.ws15{word-spacing:-0.540000px;}
.ws40{word-spacing:-0.486000px;}
.ws88{word-spacing:-0.450000px;}
.ws63{word-spacing:-0.432000px;}
.ws13{word-spacing:-0.378000px;}
.ws48{word-spacing:-0.324000px;}
.ws9a{word-spacing:-0.315000px;}
.ws37{word-spacing:-0.270000px;}
.ws7d{word-spacing:-0.264000px;}
.ws3e{word-spacing:-0.245700px;}
.ws8c{word-spacing:-0.225000px;}
.ws11{word-spacing:-0.216000px;}
.ws80{word-spacing:-0.180000px;}
.ws1a{word-spacing:-0.162000px;}
.ws43{word-spacing:-0.140400px;}
.ws83{word-spacing:-0.135000px;}
.ws66{word-spacing:-0.108000px;}
.ws7f{word-spacing:-0.090000px;}
.ws36{word-spacing:-0.082136px;}
.ws44{word-spacing:-0.070200px;}
.ws65{word-spacing:-0.054000px;}
.ws98{word-spacing:-0.045000px;}
.ws3{word-spacing:-0.039000px;}
.ws10{word-spacing:0.000000px;}
.ws87{word-spacing:0.045000px;}
.ws3c{word-spacing:0.054000px;}
.ws17{word-spacing:0.070200px;}
.wsa8{word-spacing:0.090000px;}
.ws1b{word-spacing:0.105300px;}
.ws3f{word-spacing:0.108000px;}
.ws9e{word-spacing:0.135000px;}
.ws1f{word-spacing:0.140400px;}
.ws59{word-spacing:0.162000px;}
.ws86{word-spacing:0.180000px;}
.ws56{word-spacing:0.216000px;}
.ws9f{word-spacing:0.225000px;}
.ws30{word-spacing:0.270000px;}
.ws45{word-spacing:0.378000px;}
.ws96{word-spacing:0.405000px;}
.ws74{word-spacing:0.432000px;}
.wsa6{word-spacing:0.450000px;}
.ws6c{word-spacing:0.486000px;}
.ws4b{word-spacing:0.540000px;}
.ws9c{word-spacing:0.585000px;}
.ws41{word-spacing:0.594000px;}
.ws77{word-spacing:0.648000px;}
.wsab{word-spacing:0.675000px;}
.ws7b{word-spacing:0.702000px;}
.ws73{word-spacing:0.756000px;}
.ws2e{word-spacing:0.810000px;}
.ws38{word-spacing:0.864000px;}
.ws50{word-spacing:0.918000px;}
.ws84{word-spacing:0.990000px;}
.ws2c{word-spacing:1.026000px;}
.ws7e{word-spacing:1.035000px;}
.ws57{word-spacing:1.080000px;}
.ws67{word-spacing:1.134000px;}
.ws14{word-spacing:1.188000px;}
.ws16{word-spacing:1.242000px;}
.ws62{word-spacing:1.296000px;}
.ws2a{word-spacing:1.350000px;}
.ws46{word-spacing:1.404000px;}
.wsa2{word-spacing:1.440000px;}
.wsb4{word-spacing:1.458000px;}
.ws52{word-spacing:1.512000px;}
.ws53{word-spacing:1.620000px;}
.wsad{word-spacing:1.674000px;}
.ws54{word-spacing:1.782000px;}
.ws47{word-spacing:1.836000px;}
.ws6e{word-spacing:1.890000px;}
.ws8a{word-spacing:1.935000px;}
.ws7c{word-spacing:1.944000px;}
.ws89{word-spacing:1.980000px;}
.ws6f{word-spacing:2.052000px;}
.ws64{word-spacing:2.322000px;}
.ws5e{word-spacing:2.430000px;}
.ws6a{word-spacing:2.484000px;}
.ws5b{word-spacing:2.592000px;}
.ws4c{word-spacing:2.808000px;}
.ws4d{word-spacing:3.024000px;}
.wsb0{word-spacing:3.132000px;}
.wsae{word-spacing:3.186000px;}
.wsaf{word-spacing:3.348000px;}
.ws5d{word-spacing:3.456000px;}
.ws5a{word-spacing:3.564000px;}
.ws76{word-spacing:3.672000px;}
.ws5c{word-spacing:4.158000px;}
.ws85{word-spacing:4.185000px;}
.wsac{word-spacing:4.590000px;}
.wsb3{word-spacing:5.670000px;}
.ws5f{word-spacing:5.778000px;}
.wsb5{word-spacing:6.264000px;}
.wsb1{word-spacing:6.480000px;}
.wsb2{word-spacing:6.750000px;}
.ws23{word-spacing:11.832000px;}
.ws21{word-spacing:13.005000px;}
.ws4a{word-spacing:13.338000px;}
.ws2f{word-spacing:15.282000px;}
.ws35{word-spacing:18.698509px;}
._13{margin-left:-20.952007px;}
._1b{margin-left:-17.778000px;}
._18{margin-left:-16.092613px;}
._5{margin-left:-14.917218px;}
._8{margin-left:-13.216800px;}
._4{margin-left:-11.149200px;}
._16{margin-left:-8.664000px;}
._15{margin-left:-6.773451px;}
._6{margin-left:-5.210451px;}
._a{margin-left:-4.074000px;}
._2{margin-left:-3.001901px;}
._0{margin-left:-1.876800px;}
._3{width:1.067400px;}
._9{width:2.373600px;}
._11{width:3.445500px;}
._10{width:4.590000px;}
._14{width:6.064968px;}
._12{width:7.701019px;}
._1c{width:9.791570px;}
._7{width:11.218800px;}
._e{width:12.432353px;}
._d{width:13.495810px;}
._f{width:15.422400px;}
._1d{width:17.055000px;}
._1e{width:18.450000px;}
._c{width:28.789674px;}
._b{width:30.722224px;}
._19{width:36.342000px;}
._1a{width:41.202000px;}
._17{width:47.461243px;}
._1{width:319.924800px;}
.fc4{color:rgb(245,130,31);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(205,221,228);}
.fs7{font-size:33.150000px;}
.fs5{font-size:35.100000px;}
.fs3{font-size:39.000000px;}
.fsb{font-size:41.068199px;}
.fsc{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fsa{font-size:54.037199px;}
.fs1{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs6{font-size:108.000000px;}
.fs2{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y90{bottom:0.059326px;}
.y91{bottom:3.199200px;}
.y38{bottom:3.199350px;}
.yae{bottom:3.199950px;}
.y2{bottom:3.200100px;}
.y8c{bottom:11.684235px;}
.y8e{bottom:21.147583px;}
.y37{bottom:27.430500px;}
.y1{bottom:27.430650px;}
.y92{bottom:27.555599px;}
.y3{bottom:27.555750px;}
.y36{bottom:68.037452px;}
.yda{bottom:69.621152px;}
.y1c2{bottom:69.915784px;}
.ya7{bottom:70.538250px;}
.y89{bottom:70.589244px;}
.y12a{bottom:75.633152px;}
.yf8{bottom:76.062150px;}
.y116{bottom:80.127152px;}
.y1c1{bottom:82.662034px;}
.y35{bottom:83.031452px;}
.y34{bottom:83.037452px;}
.y171{bottom:83.790148px;}
.yd9{bottom:84.625652px;}
.ya6{bottom:85.536750px;}
.y88{bottom:85.587744px;}
.y42{bottom:86.565299px;}
.y129{bottom:90.631652px;}
.yf7{bottom:91.060650px;}
.y115{bottom:95.125652px;}
.y1c0{bottom:95.408284px;}
.y170{bottom:96.536398px;}
.y33{bottom:98.043452px;}
.yd8{bottom:99.624152px;}
.ya5{bottom:100.535250px;}
.y87{bottom:100.586244px;}
.y41{bottom:101.563799px;}
.y128{bottom:105.630152px;}
.yf6{bottom:106.060650px;}
.y1bf{bottom:108.154534px;}
.y16f{bottom:109.282648px;}
.y114{bottom:110.124152px;}
.y32{bottom:113.037452px;}
.yd7{bottom:114.622652px;}
.ya4{bottom:115.533750px;}
.y86{bottom:115.584744px;}
.y40{bottom:116.562299px;}
.y127{bottom:120.628652px;}
.y1be{bottom:120.900784px;}
.yf5{bottom:121.078650px;}
.y16e{bottom:122.028898px;}
.y113{bottom:125.122652px;}
.y31{bottom:128.037452px;}
.yd6{bottom:129.621152px;}
.ya3{bottom:130.532250px;}
.y85{bottom:130.583244px;}
.y3f{bottom:131.560799px;}
.y1bd{bottom:133.647034px;}
.y16d{bottom:134.775148px;}
.y126{bottom:135.627152px;}
.yf4{bottom:136.077150px;}
.y112{bottom:140.121152px;}
.yd5{bottom:144.628652px;}
.ya2{bottom:145.530750px;}
.y1bc{bottom:146.393284px;}
.y3e{bottom:146.560799px;}
.y30{bottom:147.493950px;}
.y16c{bottom:147.521398px;}
.y125{bottom:150.625652px;}
.yf3{bottom:151.075650px;}
.y111{bottom:155.122652px;}
.y1bb{bottom:159.139534px;}
.yd4{bottom:159.627152px;}
.y16b{bottom:160.267648px;}
.ya1{bottom:160.532250px;}
.y3d{bottom:161.563811px;}
.y84{bottom:163.595244px;}
.y124{bottom:165.624152px;}
.yf2{bottom:166.074150px;}
.y110{bottom:170.121152px;}
.y1ba{bottom:171.885784px;}
.y16a{bottom:173.013898px;}
.yd3{bottom:174.625652px;}
.ya0{bottom:175.530750px;}
.y3c{bottom:176.562311px;}
.y83{bottom:178.593744px;}
.y123{bottom:180.622652px;}
.yf1{bottom:181.072650px;}
.y1b9{bottom:184.632034px;}
.y10f{bottom:185.122652px;}
.y169{bottom:185.760148px;}
.yd2{bottom:189.624152px;}
.y9f{bottom:190.532250px;}
.y3b{bottom:191.560811px;}
.y2e{bottom:192.073805px;}
.y82{bottom:193.592244px;}
.y122{bottom:195.621152px;}
.yf0{bottom:196.071150px;}
.y1b8{bottom:197.378284px;}
.y168{bottom:198.506398px;}
.y10e{bottom:200.121152px;}
.yd1{bottom:204.622652px;}
.y9e{bottom:205.530750px;}
.y3a{bottom:206.559311px;}
.y2d{bottom:207.072305px;}
.y81{bottom:208.590744px;}
.y1b7{bottom:210.124534px;}
.y121{bottom:210.621152px;}
.yef{bottom:211.069650px;}
.y167{bottom:211.252648px;}
.y1e0{bottom:214.412244px;}
.y10d{bottom:215.119652px;}
.yd0{bottom:219.621152px;}
.y9d{bottom:220.530750px;}
.y2c{bottom:222.070805px;}
.y1b6{bottom:222.870784px;}
.y80{bottom:223.589244px;}
.y166{bottom:223.998898px;}
.y120{bottom:225.619652px;}
.yee{bottom:226.068150px;}
.ycf{bottom:234.622652px;}
.y9c{bottom:235.541091px;}
.y1b5{bottom:235.617034px;}
.y165{bottom:236.745148px;}
.y2b{bottom:237.070805px;}
.y7f{bottom:238.587744px;}
.yed{bottom:241.066650px;}
.y1df{bottom:244.409243px;}
.y10c{bottom:248.127152px;}
.y1b4{bottom:248.363284px;}
.y164{bottom:249.491398px;}
.yce{bottom:249.621152px;}
.y9b{bottom:250.539591px;}
.y2a{bottom:252.073805px;}
.y7e{bottom:253.586244px;}
.yec{bottom:256.065150px;}
.y1de{bottom:259.407743px;}
.y1b3{bottom:261.109534px;}
.y163{bottom:262.237648px;}
.y10b{bottom:263.125652px;}
.ycd{bottom:264.627152px;}
.y9a{bottom:265.538091px;}
.y29{bottom:267.072305px;}
.y7d{bottom:268.584744px;}
.y49{bottom:270.672456px;}
.yeb{bottom:271.063650px;}
.y1b2{bottom:273.855784px;}
.y1dd{bottom:274.406243px;}
.y162{bottom:274.983898px;}
.y10a{bottom:278.124152px;}
.ycc{bottom:279.625652px;}
.y99{bottom:280.536591px;}
.y28{bottom:282.070805px;}
.y7c{bottom:283.584744px;}
.y48{bottom:285.670956px;}
.yea{bottom:286.062150px;}
.y1b1{bottom:286.602034px;}
.y161{bottom:287.730148px;}
.y130{bottom:287.859139px;}
.y1dc{bottom:289.404743px;}
.y109{bottom:293.122652px;}
.ycb{bottom:294.624152px;}
.y98{bottom:295.535091px;}
.y27{bottom:297.072305px;}
.y7b{bottom:298.587744px;}
.y1b0{bottom:299.348284px;}
.y160{bottom:300.480148px;}
.y47{bottom:300.670956px;}
.ye9{bottom:301.060650px;}
.y12f{bottom:302.857639px;}
.y1db{bottom:304.403243px;}
.y108{bottom:308.121152px;}
.yca{bottom:309.622652px;}
.y97{bottom:310.533591px;}
.y26{bottom:312.070805px;}
.y1af{bottom:312.094534px;}
.y7a{bottom:313.586244px;}
.y46{bottom:315.669456px;}
.ye8{bottom:316.059150px;}
.y12e{bottom:317.856139px;}
.y1da{bottom:319.401743px;}
.y107{bottom:323.124152px;}
.yc9{bottom:324.621152px;}
.y1ae{bottom:324.840784px;}
.y96{bottom:325.532091px;}
.y25{bottom:327.070805px;}
.y79{bottom:328.584744px;}
.y12d{bottom:332.854639px;}
.y1d9{bottom:334.400243px;}
.y1ad{bottom:337.587034px;}
.y106{bottom:338.122652px;}
.yc8{bottom:339.624129px;}
.y95{bottom:340.530591px;}
.y24{bottom:342.070805px;}
.y78{bottom:343.584744px;}
.y12c{bottom:347.853139px;}
.ye7{bottom:349.068128px;}
.y1d8{bottom:349.398743px;}
.y15f{bottom:349.980148px;}
.y1ac{bottom:350.333284px;}
.y105{bottom:353.121152px;}
.yc7{bottom:354.622629px;}
.y94{bottom:355.529091px;}
.y23{bottom:357.073805px;}
.y77{bottom:358.584744px;}
.y12b{bottom:362.851639px;}
.y1ab{bottom:363.079534px;}
.ye6{bottom:364.066628px;}
.y104{bottom:368.124129px;}
.yc6{bottom:369.621129px;}
.y1d7{bottom:371.888243px;}
.y22{bottom:372.072305px;}
.y76{bottom:373.583244px;}
.y1aa{bottom:375.825784px;}
.ye5{bottom:379.065128px;}
.y15e{bottom:379.981648px;}
.y103{bottom:383.122629px;}
.yc5{bottom:384.619629px;}
.y1d6{bottom:386.886743px;}
.y21{bottom:387.070805px;}
.y1a9{bottom:388.572034px;}
.y75{bottom:388.583267px;}
.ye4{bottom:394.063628px;}
.y15d{bottom:394.980148px;}
.y102{bottom:398.121129px;}
.yc4{bottom:399.619629px;}
.y1a8{bottom:401.318284px;}
.y20{bottom:402.075305px;}
.ye3{bottom:409.062128px;}
.yad{bottom:409.354639px;}
.y1d5{bottom:409.391243px;}
.y15c{bottom:409.980148px;}
.y101{bottom:413.119629px;}
.y1a7{bottom:414.064534px;}
.y1f{bottom:417.073805px;}
.y74{bottom:421.602767px;}
.ye2{bottom:424.060628px;}
.yac{bottom:424.353139px;}
.y1a6{bottom:426.810784px;}
.y1d4{bottom:431.895743px;}
.y1e{bottom:432.072305px;}
.yc3{bottom:432.627129px;}
.y73{bottom:436.601267px;}
.ye1{bottom:439.062128px;}
.yab{bottom:439.356139px;}
.y1a5{bottom:439.557034px;}
.y15b{bottom:439.981648px;}
.y1d{bottom:447.070805px;}
.yc2{bottom:447.625629px;}
.y72{bottom:451.599767px;}
.y1a4{bottom:452.303284px;}
.ye0{bottom:454.060628px;}
.yaa{bottom:454.354639px;}
.y1d3{bottom:454.400243px;}
.y15a{bottom:454.981648px;}
.y1c{bottom:462.070805px;}
.yc1{bottom:462.624129px;}
.y1a3{bottom:465.049534px;}
.y71{bottom:466.598267px;}
.ydf{bottom:469.059128px;}
.ya9{bottom:469.353139px;}
.y1d2{bottom:469.398743px;}
.y159{bottom:470.029694px;}
.y11f{bottom:473.983481px;}
.y1b{bottom:477.070805px;}
.yc0{bottom:477.622629px;}
.y1a2{bottom:477.795784px;}
.y70{bottom:481.596767px;}
.ya8{bottom:484.351639px;}
.y1d1{bottom:484.398743px;}
.y158{bottom:485.028194px;}
.y11e{bottom:488.981981px;}
.y1a1{bottom:490.542034px;}
.y1a{bottom:492.072305px;}
.ybf{bottom:492.621129px;}
.y6f{bottom:496.595267px;}
.y157{bottom:500.026694px;}
.y1a0{bottom:503.288284px;}
.y11d{bottom:503.980481px;}
.y19{bottom:507.070805px;}
.ybe{bottom:507.630129px;}
.y6e{bottom:511.593767px;}
.y100{bottom:513.502522px;}
.y1d0{bottom:514.398743px;}
.y156{bottom:515.025194px;}
.y19f{bottom:516.034534px;}
.y11c{bottom:518.978981px;}
.y18{bottom:522.070805px;}
.ybd{bottom:522.628629px;}
.y6d{bottom:526.592267px;}
.yff{bottom:528.504022px;}
.y19e{bottom:528.780784px;}
.y1cf{bottom:529.398743px;}
.y155{bottom:530.023694px;}
.y11b{bottom:533.977481px;}
.y17{bottom:537.072305px;}
.ybc{bottom:537.627129px;}
.y19d{bottom:541.527034px;}
.y6c{bottom:541.590767px;}
.yfe{bottom:543.502522px;}
.y154{bottom:545.022194px;}
.y11a{bottom:548.975981px;}
.y16{bottom:552.070805px;}
.ybb{bottom:552.625629px;}
.y19c{bottom:554.273284px;}
.y6b{bottom:556.589267px;}
.yfd{bottom:558.501022px;}
.y153{bottom:560.020694px;}
.y1ce{bottom:560.868738px;}
.y119{bottom:563.974481px;}
.y19b{bottom:567.019534px;}
.y15{bottom:567.070805px;}
.yba{bottom:567.624129px;}
.y6a{bottom:571.587767px;}
.y152{bottom:575.019194px;}
.y1cd{bottom:575.867238px;}
.y118{bottom:578.972981px;}
.y19a{bottom:579.765784px;}
.y14{bottom:582.102269px;}
.yb9{bottom:582.622629px;}
.y69{bottom:586.586267px;}
.y151{bottom:590.017694px;}
.y1cc{bottom:590.865738px;}
.y199{bottom:592.512034px;}
.y117{bottom:593.971481px;}
.yb8{bottom:597.621129px;}
.y68{bottom:601.584767px;}
.y150{bottom:605.016194px;}
.y198{bottom:605.258284px;}
.y1cb{bottom:605.865738px;}
.yb7{bottom:612.619629px;}
.y67{bottom:616.590767px;}
.y197{bottom:618.004534px;}
.y14f{bottom:620.014694px;}
.y13{bottom:627.246269px;}
.y196{bottom:630.750784px;}
.y66{bottom:631.589267px;}
.y14e{bottom:635.013194px;}
.y1ca{bottom:635.874738px;}
.y195{bottom:643.497034px;}
.y12{bottom:643.743269px;}
.yb6{bottom:645.621129px;}
.y65{bottom:646.587767px;}
.y14d{bottom:650.011694px;}
.y1c9{bottom:650.873238px;}
.y45{bottom:653.254648px;}
.y194{bottom:656.243284px;}
.y11{bottom:660.240269px;}
.yb5{bottom:660.621129px;}
.y64{bottom:661.586267px;}
.y14c{bottom:665.010194px;}
.y1c8{bottom:665.871738px;}
.y44{bottom:668.253148px;}
.y193{bottom:668.989534px;}
.yb4{bottom:675.622629px;}
.y63{bottom:676.584767px;}
.y10{bottom:676.737269px;}
.y14b{bottom:680.008694px;}
.y1c7{bottom:680.870238px;}
.y192{bottom:681.735784px;}
.y43{bottom:683.251648px;}
.yb3{bottom:690.621129px;}
.y62{bottom:691.586267px;}
.yf{bottom:693.234269px;}
.y191{bottom:694.482034px;}
.y14a{bottom:695.007194px;}
.y1c6{bottom:695.868738px;}
.yb2{bottom:705.622629px;}
.y61{bottom:706.584767px;}
.y190{bottom:707.228284px;}
.ye{bottom:709.731269px;}
.y149{bottom:710.005694px;}
.y1c5{bottom:710.867238px;}
.y18f{bottom:719.974534px;}
.y60{bottom:721.586267px;}
.y148{bottom:725.004194px;}
.y1c4{bottom:725.865738px;}
.yd{bottom:726.228269px;}
.y18e{bottom:732.720784px;}
.y5f{bottom:736.584767px;}
.yb1{bottom:739.372629px;}
.y147{bottom:740.002694px;}
.y1c3{bottom:740.865738px;}
.yc{bottom:742.725269px;}
.y18d{bottom:745.467034px;}
.y5e{bottom:751.584767px;}
.yb0{bottom:754.371129px;}
.y146{bottom:755.001194px;}
.y18c{bottom:758.213284px;}
.yb{bottom:759.222269px;}
.y5d{bottom:766.584721px;}
.yfc{bottom:766.594644px;}
.yaf{bottom:769.369629px;}
.y145{bottom:769.999694px;}
.y18b{bottom:770.959534px;}
.ya{bottom:775.719269px;}
.y5c{bottom:781.586221px;}
.yfb{bottom:781.593144px;}
.y18a{bottom:783.705784px;}
.y144{bottom:784.998194px;}
.y189{bottom:796.452034px;}
.y5b{bottom:796.584721px;}
.yfa{bottom:796.593144px;}
.y143{bottom:799.996694px;}
.y9{bottom:805.719269px;}
.y188{bottom:809.198284px;}
.y5a{bottom:811.584721px;}
.yf9{bottom:811.591644px;}
.y142{bottom:814.995194px;}
.y187{bottom:821.944534px;}
.y8{bottom:823.719269px;}
.y59{bottom:826.586221px;}
.y141{bottom:829.993694px;}
.yde{bottom:833.016188px;}
.y186{bottom:834.690784px;}
.y58{bottom:841.584721px;}
.y140{bottom:844.992194px;}
.y185{bottom:847.437034px;}
.ydd{bottom:848.014688px;}
.y57{bottom:856.584721px;}
.y7{bottom:856.707269px;}
.y13f{bottom:859.990694px;}
.y184{bottom:860.183284px;}
.ydc{bottom:863.013188px;}
.y56{bottom:871.586221px;}
.y183{bottom:872.929534px;}
.y13e{bottom:874.989194px;}
.ydb{bottom:878.011688px;}
.y182{bottom:885.675784px;}
.y55{bottom:886.584721px;}
.y13d{bottom:889.987694px;}
.y181{bottom:898.422034px;}
.y54{bottom:901.584721px;}
.y6{bottom:901.713269px;}
.y13c{bottom:904.986194px;}
.y180{bottom:911.168284px;}
.y53{bottom:916.589221px;}
.y13b{bottom:919.984694px;}
.y17f{bottom:923.914534px;}
.y52{bottom:931.587721px;}
.y13a{bottom:934.983194px;}
.y17e{bottom:936.660784px;}
.y51{bottom:946.586221px;}
.y5{bottom:946.719269px;}
.y17d{bottom:949.407034px;}
.y139{bottom:949.981694px;}
.y2f{bottom:954.366760px;}
.y50{bottom:961.584721px;}
.y17c{bottom:962.153284px;}
.y138{bottom:964.980194px;}
.y17b{bottom:974.899534px;}
.y4f{bottom:976.584721px;}
.y137{bottom:979.980194px;}
.y17a{bottom:987.645784px;}
.y4e{bottom:991.584721px;}
.y179{bottom:1000.392034px;}
.y4d{bottom:1006.584721px;}
.y136{bottom:1012.987694px;}
.y178{bottom:1013.138284px;}
.y177{bottom:1025.884534px;}
.y135{bottom:1027.986194px;}
.y8b{bottom:1029.084045px;}
.y8f{bottom:1031.168427px;}
.y176{bottom:1038.630784px;}
.y8d{bottom:1038.743225px;}
.y8a{bottom:1039.187259px;}
.y134{bottom:1042.984694px;}
.y175{bottom:1051.377034px;}
.y133{bottom:1057.983194px;}
.y174{bottom:1064.123284px;}
.y132{bottom:1072.981694px;}
.y4c{bottom:1074.084721px;}
.y173{bottom:1076.869534px;}
.y131{bottom:1087.980194px;}
.y4b{bottom:1089.083221px;}
.y172{bottom:1089.615784px;}
.y4a{bottom:1140.640320px;}
.y93{bottom:1140.746521px;}
.y39{bottom:1140.746704px;}
.y4{bottom:1141.922516px;}
.h10{height:23.842749px;}
.h26{height:29.240558px;}
.h24{height:30.000000px;}
.h2{height:34.523438px;}
.h32{height:35.411133px;}
.h12{height:36.681152px;}
.h25{height:38.474486px;}
.h7{height:38.838867px;}
.h13{height:41.644740px;}
.h14{height:41.668740px;}
.h35{height:44.505000px;}
.h33{height:45.090000px;}
.h3{height:45.679688px;}
.h34{height:46.080000px;}
.h20{height:47.469727px;}
.h11{height:48.510668px;}
.h16{height:48.534668px;}
.h6{height:49.183594px;}
.h15{height:49.397525px;}
.h36{height:50.439000px;}
.ha{height:53.406000px;}
.h31{height:53.415680px;}
.h8{height:53.482010px;}
.h23{height:53.565909px;}
.h27{height:53.566504px;}
.h2c{height:53.571314px;}
.h2a{height:53.577891px;}
.h2d{height:53.577909px;}
.h1f{height:53.583863px;}
.hc{height:53.589863px;}
.h2e{height:53.589886px;}
.h1a{height:53.590779px;}
.h30{height:53.595406px;}
.hd{height:53.595863px;}
.h22{height:53.595955px;}
.he{height:53.596504px;}
.h2b{height:53.601314px;}
.hb{height:53.601863px;}
.h29{height:53.601868px;}
.h1c{height:53.602779px;}
.h9{height:53.607863px;}
.h28{height:53.607868px;}
.h2f{height:53.607886px;}
.h17{height:53.607909px;}
.h21{height:53.607955px;}
.h1e{height:53.608046px;}
.h1b{height:53.608779px;}
.h1d{height:54.102000px;}
.h19{height:54.108000px;}
.h18{height:55.296000px;}
.h4{height:57.099609px;}
.hf{height:77.677734px;}
.h5{height:112.201172px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w2{width:57.330002px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:7.228350px;}
.xe{left:43.622269px;}
.x10{left:45.525467px;}
.x3{left:61.653603px;}
.x7{left:141.395702px;}
.x5{left:233.858253px;}
.x6{left:251.853390px;}
.x11{left:254.108093px;}
.x8{left:274.786491px;}
.x13{left:302.498703px;}
.xc{left:503.894989px;}
.xd{left:510.310822px;}
.xf{left:541.941605px;}
.x4{left:586.814117px;}
.xa{left:797.390808px;}
.x2{left:798.901611px;}
.xb{left:815.434823px;}
.x12{left:818.848755px;}
.x1{left:825.001190px;}
@media print{
.v3{vertical-align:-18.666667pt;}
.v7{vertical-align:-15.866659pt;}
.v5{vertical-align:-9.610686pt;}
.v1{vertical-align:-1.322667pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:7.200195pt;}
.v6{vertical-align:9.600019pt;}
.v4{vertical-align:16.682764pt;}
.v2{vertical-align:18.666667pt;}
.ls53{letter-spacing:-2.560000pt;}
.ls36{letter-spacing:-1.920000pt;}
.ls38{letter-spacing:-1.296000pt;}
.ls6d{letter-spacing:-0.960000pt;}
.ls6c{letter-spacing:-0.680000pt;}
.ls33{letter-spacing:-0.672000pt;}
.ls35{letter-spacing:-0.576000pt;}
.ls6b{letter-spacing:-0.560000pt;}
.ls45{letter-spacing:-0.530400pt;}
.ls32{letter-spacing:-0.528000pt;}
.ls54{letter-spacing:-0.440000pt;}
.ls42{letter-spacing:-0.432000pt;}
.ls69{letter-spacing:-0.400000pt;}
.ls50{letter-spacing:-0.384000pt;}
.ls23{letter-spacing:-0.374400pt;}
.ls18{letter-spacing:-0.336000pt;}
.ls43{letter-spacing:-0.288000pt;}
.ls22{letter-spacing:-0.240000pt;}
.ls51{letter-spacing:-0.200000pt;}
.ls1b{letter-spacing:-0.192000pt;}
.ls6a{letter-spacing:-0.160000pt;}
.ls39{letter-spacing:-0.156000pt;}
.ls16{letter-spacing:-0.144000pt;}
.ls1c{letter-spacing:-0.124800pt;}
.ls68{letter-spacing:-0.120000pt;}
.ls11{letter-spacing:-0.096000pt;}
.ls17{letter-spacing:-0.093600pt;}
.ls57{letter-spacing:-0.080000pt;}
.ls12{letter-spacing:-0.062400pt;}
.ls21{letter-spacing:-0.048000pt;}
.ls52{letter-spacing:-0.040000pt;}
.ls10{letter-spacing:0.000000pt;}
.ls30{letter-spacing:0.000074pt;}
.ls3c{letter-spacing:0.008517pt;}
.ls1{letter-spacing:0.012405pt;}
.ls46{letter-spacing:0.023987pt;}
.lsf{letter-spacing:0.023997pt;}
.ls1e{letter-spacing:0.031200pt;}
.ls31{letter-spacing:0.036505pt;}
.ls67{letter-spacing:0.040000pt;}
.ls1d{letter-spacing:0.048000pt;}
.ls2e{letter-spacing:0.062400pt;}
.ls5f{letter-spacing:0.080000pt;}
.ls4f{letter-spacing:0.093600pt;}
.lsd{letter-spacing:0.096000pt;}
.ls24{letter-spacing:0.106647pt;}
.ls4{letter-spacing:0.112423pt;}
.ls4b{letter-spacing:0.120000pt;}
.ls3a{letter-spacing:0.124353pt;}
.ls15{letter-spacing:0.124800pt;}
.ls3b{letter-spacing:0.134988pt;}
.ls9{letter-spacing:0.140400pt;}
.ls37{letter-spacing:0.141350pt;}
.ls2f{letter-spacing:0.144000pt;}
.ls3{letter-spacing:0.156000pt;}
.ls4c{letter-spacing:0.160000pt;}
.ls41{letter-spacing:0.160905pt;}
.ls20{letter-spacing:0.165927pt;}
.ls4a{letter-spacing:0.180000pt;}
.ls3d{letter-spacing:0.187200pt;}
.ls2{letter-spacing:0.192000pt;}
.ls40{letter-spacing:0.196930pt;}
.ls4d{letter-spacing:0.200000pt;}
.ls2d{letter-spacing:0.218400pt;}
.ls3e{letter-spacing:0.220297pt;}
.ls2c{letter-spacing:0.221848pt;}
.ls48{letter-spacing:0.234667pt;}
.lsa{letter-spacing:0.240000pt;}
.ls47{letter-spacing:0.249600pt;}
.ls8{letter-spacing:0.254910pt;}
.ls6{letter-spacing:0.272047pt;}
.ls25{letter-spacing:0.279541pt;}
.ls64{letter-spacing:0.280000pt;}
.ls7{letter-spacing:0.280800pt;}
.ls65{letter-spacing:0.283979pt;}
.ls1f{letter-spacing:0.288000pt;}
.ls5b{letter-spacing:0.300000pt;}
.ls1a{letter-spacing:0.312000pt;}
.ls59{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.336000pt;}
.ls27{letter-spacing:0.343200pt;}
.ls5c{letter-spacing:0.360000pt;}
.ls14{letter-spacing:0.374400pt;}
.lsb{letter-spacing:0.384000pt;}
.ls5d{letter-spacing:0.400000pt;}
.ls5{letter-spacing:0.432000pt;}
.ls49{letter-spacing:0.440000pt;}
.ls19{letter-spacing:0.480000pt;}
.ls29{letter-spacing:0.485287pt;}
.ls62{letter-spacing:0.520000pt;}
.ls28{letter-spacing:0.528000pt;}
.ls2b{letter-spacing:0.551999pt;}
.ls26{letter-spacing:0.556082pt;}
.ls58{letter-spacing:0.560000pt;}
.ls13{letter-spacing:0.576000pt;}
.ls55{letter-spacing:0.600000pt;}
.ls2a{letter-spacing:0.604800pt;}
.ls34{letter-spacing:0.624000pt;}
.ls56{letter-spacing:0.640000pt;}
.ls3f{letter-spacing:0.686362pt;}
.ls44{letter-spacing:0.720000pt;}
.ls66{letter-spacing:0.831984pt;}
.ls5a{letter-spacing:0.844000pt;}
.ls60{letter-spacing:1.000000pt;}
.ls6f{letter-spacing:1.011935pt;}
.ls71{letter-spacing:1.152000pt;}
.ls6e{letter-spacing:1.372000pt;}
.ls61{letter-spacing:1.404063pt;}
.ls5e{letter-spacing:1.416000pt;}
.ls70{letter-spacing:1.643982pt;}
.ls4e{letter-spacing:2.276000pt;}
.ls63{letter-spacing:2.288052pt;}
.ls0{letter-spacing:2.666667pt;}
.lse{letter-spacing:6.836267pt;}
.ws0{word-spacing:-42.666667pt;}
.ws1{word-spacing:-13.333333pt;}
.ws79{word-spacing:-12.320000pt;}
.ws3d{word-spacing:-11.232000pt;}
.ws25{word-spacing:-11.136000pt;}
.ws70{word-spacing:-11.088000pt;}
.ws27{word-spacing:-10.992000pt;}
.ws2b{word-spacing:-10.944000pt;}
.wsb{word-spacing:-10.896000pt;}
.ws18{word-spacing:-10.800000pt;}
.ws29{word-spacing:-10.656000pt;}
.ws26{word-spacing:-10.416000pt;}
.ws33{word-spacing:-10.320000pt;}
.ws55{word-spacing:-9.600000pt;}
.ws91{word-spacing:-9.560000pt;}
.ws81{word-spacing:-9.280000pt;}
.ws8f{word-spacing:-9.260000pt;}
.wsa1{word-spacing:-9.240000pt;}
.ws8e{word-spacing:-9.200000pt;}
.ws7a{word-spacing:-9.080000pt;}
.wsf{word-spacing:-9.066667pt;}
.ws8d{word-spacing:-8.980000pt;}
.ws4e{word-spacing:-8.976000pt;}
.ws92{word-spacing:-8.760000pt;}
.ws90{word-spacing:-8.680000pt;}
.ws93{word-spacing:-8.600000pt;}
.ws24{word-spacing:-8.533333pt;}
.ws94{word-spacing:-8.480000pt;}
.ws95{word-spacing:-8.200000pt;}
.ws32{word-spacing:-7.488000pt;}
.ws7{word-spacing:-7.456800pt;}
.wsa{word-spacing:-7.394400pt;}
.ws72{word-spacing:-7.363200pt;}
.ws71{word-spacing:-7.332000pt;}
.ws31{word-spacing:-7.300800pt;}
.ws58{word-spacing:-7.269600pt;}
.ws5{word-spacing:-7.238400pt;}
.ws8{word-spacing:-7.207200pt;}
.ws78{word-spacing:-7.176000pt;}
.ws34{word-spacing:-7.144800pt;}
.ws2{word-spacing:-7.141333pt;}
.wsd{word-spacing:-7.113600pt;}
.ws4{word-spacing:-7.082400pt;}
.ws6{word-spacing:-7.020000pt;}
.ws9{word-spacing:-6.988800pt;}
.wsc{word-spacing:-6.957600pt;}
.ws69{word-spacing:-6.926400pt;}
.ws22{word-spacing:-6.836267pt;}
.ws28{word-spacing:-6.770400pt;}
.ws68{word-spacing:-6.614400pt;}
.wse{word-spacing:-5.893333pt;}
.wsa4{word-spacing:-5.440000pt;}
.ws99{word-spacing:-5.360000pt;}
.wsa0{word-spacing:-5.320000pt;}
.ws9d{word-spacing:-5.240000pt;}
.wsa5{word-spacing:-5.160000pt;}
.wsa7{word-spacing:-5.080000pt;}
.ws3a{word-spacing:-4.896000pt;}
.ws6b{word-spacing:-2.208000pt;}
.ws51{word-spacing:-2.064000pt;}
.ws60{word-spacing:-1.728000pt;}
.ws75{word-spacing:-1.632000pt;}
.ws6d{word-spacing:-1.152000pt;}
.ws12{word-spacing:-1.104000pt;}
.ws20{word-spacing:-1.056000pt;}
.ws3b{word-spacing:-1.008000pt;}
.ws2d{word-spacing:-0.960000pt;}
.ws82{word-spacing:-0.920000pt;}
.ws1c{word-spacing:-0.912000pt;}
.ws97{word-spacing:-0.880000pt;}
.ws1e{word-spacing:-0.864000pt;}
.ws4f{word-spacing:-0.816000pt;}
.wsaa{word-spacing:-0.800000pt;}
.ws61{word-spacing:-0.768000pt;}
.wsa9{word-spacing:-0.760000pt;}
.ws19{word-spacing:-0.720000pt;}
.ws49{word-spacing:-0.672000pt;}
.ws42{word-spacing:-0.624000pt;}
.ws8b{word-spacing:-0.600000pt;}
.ws1d{word-spacing:-0.576000pt;}
.wsa3{word-spacing:-0.560000pt;}
.ws39{word-spacing:-0.528000pt;}
.ws9b{word-spacing:-0.520000pt;}
.ws15{word-spacing:-0.480000pt;}
.ws40{word-spacing:-0.432000pt;}
.ws88{word-spacing:-0.400000pt;}
.ws63{word-spacing:-0.384000pt;}
.ws13{word-spacing:-0.336000pt;}
.ws48{word-spacing:-0.288000pt;}
.ws9a{word-spacing:-0.280000pt;}
.ws37{word-spacing:-0.240000pt;}
.ws7d{word-spacing:-0.234667pt;}
.ws3e{word-spacing:-0.218400pt;}
.ws8c{word-spacing:-0.200000pt;}
.ws11{word-spacing:-0.192000pt;}
.ws80{word-spacing:-0.160000pt;}
.ws1a{word-spacing:-0.144000pt;}
.ws43{word-spacing:-0.124800pt;}
.ws83{word-spacing:-0.120000pt;}
.ws66{word-spacing:-0.096000pt;}
.ws7f{word-spacing:-0.080000pt;}
.ws36{word-spacing:-0.073010pt;}
.ws44{word-spacing:-0.062400pt;}
.ws65{word-spacing:-0.048000pt;}
.ws98{word-spacing:-0.040000pt;}
.ws3{word-spacing:-0.034667pt;}
.ws10{word-spacing:0.000000pt;}
.ws87{word-spacing:0.040000pt;}
.ws3c{word-spacing:0.048000pt;}
.ws17{word-spacing:0.062400pt;}
.wsa8{word-spacing:0.080000pt;}
.ws1b{word-spacing:0.093600pt;}
.ws3f{word-spacing:0.096000pt;}
.ws9e{word-spacing:0.120000pt;}
.ws1f{word-spacing:0.124800pt;}
.ws59{word-spacing:0.144000pt;}
.ws86{word-spacing:0.160000pt;}
.ws56{word-spacing:0.192000pt;}
.ws9f{word-spacing:0.200000pt;}
.ws30{word-spacing:0.240000pt;}
.ws45{word-spacing:0.336000pt;}
.ws96{word-spacing:0.360000pt;}
.ws74{word-spacing:0.384000pt;}
.wsa6{word-spacing:0.400000pt;}
.ws6c{word-spacing:0.432000pt;}
.ws4b{word-spacing:0.480000pt;}
.ws9c{word-spacing:0.520000pt;}
.ws41{word-spacing:0.528000pt;}
.ws77{word-spacing:0.576000pt;}
.wsab{word-spacing:0.600000pt;}
.ws7b{word-spacing:0.624000pt;}
.ws73{word-spacing:0.672000pt;}
.ws2e{word-spacing:0.720000pt;}
.ws38{word-spacing:0.768000pt;}
.ws50{word-spacing:0.816000pt;}
.ws84{word-spacing:0.880000pt;}
.ws2c{word-spacing:0.912000pt;}
.ws7e{word-spacing:0.920000pt;}
.ws57{word-spacing:0.960000pt;}
.ws67{word-spacing:1.008000pt;}
.ws14{word-spacing:1.056000pt;}
.ws16{word-spacing:1.104000pt;}
.ws62{word-spacing:1.152000pt;}
.ws2a{word-spacing:1.200000pt;}
.ws46{word-spacing:1.248000pt;}
.wsa2{word-spacing:1.280000pt;}
.wsb4{word-spacing:1.296000pt;}
.ws52{word-spacing:1.344000pt;}
.ws53{word-spacing:1.440000pt;}
.wsad{word-spacing:1.488000pt;}
.ws54{word-spacing:1.584000pt;}
.ws47{word-spacing:1.632000pt;}
.ws6e{word-spacing:1.680000pt;}
.ws8a{word-spacing:1.720000pt;}
.ws7c{word-spacing:1.728000pt;}
.ws89{word-spacing:1.760000pt;}
.ws6f{word-spacing:1.824000pt;}
.ws64{word-spacing:2.064000pt;}
.ws5e{word-spacing:2.160000pt;}
.ws6a{word-spacing:2.208000pt;}
.ws5b{word-spacing:2.304000pt;}
.ws4c{word-spacing:2.496000pt;}
.ws4d{word-spacing:2.688000pt;}
.wsb0{word-spacing:2.784000pt;}
.wsae{word-spacing:2.832000pt;}
.wsaf{word-spacing:2.976000pt;}
.ws5d{word-spacing:3.072000pt;}
.ws5a{word-spacing:3.168000pt;}
.ws76{word-spacing:3.264000pt;}
.ws5c{word-spacing:3.696000pt;}
.ws85{word-spacing:3.720000pt;}
.wsac{word-spacing:4.080000pt;}
.wsb3{word-spacing:5.040000pt;}
.ws5f{word-spacing:5.136000pt;}
.wsb5{word-spacing:5.568000pt;}
.wsb1{word-spacing:5.760000pt;}
.wsb2{word-spacing:6.000000pt;}
.ws23{word-spacing:10.517333pt;}
.ws21{word-spacing:11.560000pt;}
.ws4a{word-spacing:11.856000pt;}
.ws2f{word-spacing:13.584000pt;}
.ws35{word-spacing:16.620897pt;}
._13{margin-left:-18.624006pt;}
._1b{margin-left:-15.802667pt;}
._18{margin-left:-14.304545pt;}
._5{margin-left:-13.259749pt;}
._8{margin-left:-11.748267pt;}
._4{margin-left:-9.910400pt;}
._16{margin-left:-7.701333pt;}
._15{margin-left:-6.020845pt;}
._6{margin-left:-4.631512pt;}
._a{margin-left:-3.621334pt;}
._2{margin-left:-2.668357pt;}
._0{margin-left:-1.668267pt;}
._3{width:0.948800pt;}
._9{width:2.109867pt;}
._11{width:3.062667pt;}
._10{width:4.080000pt;}
._14{width:5.391083pt;}
._12{width:6.845351pt;}
._1c{width:8.703618pt;}
._7{width:9.972267pt;}
._e{width:11.050980pt;}
._d{width:11.996275pt;}
._f{width:13.708800pt;}
._1d{width:15.160000pt;}
._1e{width:16.400000pt;}
._c{width:25.590822pt;}
._b{width:27.308643pt;}
._19{width:32.304000pt;}
._1a{width:36.624000pt;}
._17{width:42.187771pt;}
._1{width:284.377600pt;}
.fs7{font-size:29.466667pt;}
.fs5{font-size:31.200000pt;}
.fs3{font-size:34.666667pt;}
.fsb{font-size:36.505066pt;}
.fsc{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fsa{font-size:48.033066pt;}
.fs1{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs6{font-size:96.000000pt;}
.fs2{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y90{bottom:0.052734pt;}
.y91{bottom:2.843733pt;}
.y38{bottom:2.843867pt;}
.yae{bottom:2.844400pt;}
.y2{bottom:2.844533pt;}
.y8c{bottom:10.385986pt;}
.y8e{bottom:18.797852pt;}
.y37{bottom:24.382667pt;}
.y1{bottom:24.382800pt;}
.y92{bottom:24.493866pt;}
.y3{bottom:24.494000pt;}
.y36{bottom:60.477735pt;}
.yda{bottom:61.885468pt;}
.y1c2{bottom:62.147363pt;}
.ya7{bottom:62.700667pt;}
.y89{bottom:62.745995pt;}
.y12a{bottom:67.229468pt;}
.yf8{bottom:67.610800pt;}
.y116{bottom:71.224135pt;}
.y1c1{bottom:73.477363pt;}
.y35{bottom:73.805735pt;}
.y34{bottom:73.811069pt;}
.y171{bottom:74.480132pt;}
.yd9{bottom:75.222802pt;}
.ya6{bottom:76.032667pt;}
.y88{bottom:76.077995pt;}
.y42{bottom:76.946933pt;}
.y129{bottom:80.561468pt;}
.yf7{bottom:80.942800pt;}
.y115{bottom:84.556135pt;}
.y1c0{bottom:84.807363pt;}
.y170{bottom:85.810132pt;}
.y33{bottom:87.149735pt;}
.yd8{bottom:88.554802pt;}
.ya5{bottom:89.364667pt;}
.y87{bottom:89.409995pt;}
.y41{bottom:90.278933pt;}
.y128{bottom:93.893468pt;}
.yf6{bottom:94.276133pt;}
.y1bf{bottom:96.137363pt;}
.y16f{bottom:97.140132pt;}
.y114{bottom:97.888135pt;}
.y32{bottom:100.477735pt;}
.yd7{bottom:101.886802pt;}
.ya4{bottom:102.696667pt;}
.y86{bottom:102.741995pt;}
.y40{bottom:103.610933pt;}
.y127{bottom:107.225468pt;}
.y1be{bottom:107.467363pt;}
.yf5{bottom:107.625467pt;}
.y16e{bottom:108.470132pt;}
.y113{bottom:111.220135pt;}
.y31{bottom:113.811069pt;}
.yd6{bottom:115.218802pt;}
.ya3{bottom:116.028667pt;}
.y85{bottom:116.073995pt;}
.y3f{bottom:116.942933pt;}
.y1bd{bottom:118.797363pt;}
.y16d{bottom:119.800132pt;}
.y126{bottom:120.557468pt;}
.yf4{bottom:120.957467pt;}
.y112{bottom:124.552135pt;}
.yd5{bottom:128.558802pt;}
.ya2{bottom:129.360667pt;}
.y1bc{bottom:130.127363pt;}
.y3e{bottom:130.276266pt;}
.y30{bottom:131.105733pt;}
.y16c{bottom:131.130132pt;}
.y125{bottom:133.889468pt;}
.yf3{bottom:134.289467pt;}
.y111{bottom:137.886802pt;}
.y1bb{bottom:141.457363pt;}
.yd4{bottom:141.890802pt;}
.y16b{bottom:142.460132pt;}
.ya1{bottom:142.695333pt;}
.y3d{bottom:143.612276pt;}
.y84{bottom:145.417995pt;}
.y124{bottom:147.221468pt;}
.yf2{bottom:147.621467pt;}
.y110{bottom:151.218802pt;}
.y1ba{bottom:152.787363pt;}
.y16a{bottom:153.790132pt;}
.yd3{bottom:155.222802pt;}
.ya0{bottom:156.027333pt;}
.y3c{bottom:156.944276pt;}
.y83{bottom:158.749995pt;}
.y123{bottom:160.553468pt;}
.yf1{bottom:160.953467pt;}
.y1b9{bottom:164.117363pt;}
.y10f{bottom:164.553468pt;}
.y169{bottom:165.120132pt;}
.yd2{bottom:168.554802pt;}
.y9f{bottom:169.362000pt;}
.y3b{bottom:170.276276pt;}
.y2e{bottom:170.732271pt;}
.y82{bottom:172.081995pt;}
.y122{bottom:173.885468pt;}
.yf0{bottom:174.285467pt;}
.y1b8{bottom:175.447363pt;}
.y168{bottom:176.450132pt;}
.y10e{bottom:177.885468pt;}
.yd1{bottom:181.886802pt;}
.y9e{bottom:182.694000pt;}
.y3a{bottom:183.608276pt;}
.y2d{bottom:184.064271pt;}
.y81{bottom:185.413995pt;}
.y1b7{bottom:186.777363pt;}
.y121{bottom:187.218802pt;}
.yef{bottom:187.617467pt;}
.y167{bottom:187.780132pt;}
.y1e0{bottom:190.588662pt;}
.y10d{bottom:191.217468pt;}
.yd0{bottom:195.218802pt;}
.y9d{bottom:196.027333pt;}
.y2c{bottom:197.396271pt;}
.y1b6{bottom:198.107363pt;}
.y80{bottom:198.745995pt;}
.y166{bottom:199.110132pt;}
.y120{bottom:200.550802pt;}
.yee{bottom:200.949467pt;}
.ycf{bottom:208.553468pt;}
.y9c{bottom:209.369859pt;}
.y1b5{bottom:209.437363pt;}
.y165{bottom:210.440132pt;}
.y2b{bottom:210.729605pt;}
.y7f{bottom:212.077995pt;}
.yed{bottom:214.281467pt;}
.y1df{bottom:217.252660pt;}
.y10c{bottom:220.557468pt;}
.y1b4{bottom:220.767363pt;}
.y164{bottom:221.770132pt;}
.yce{bottom:221.885468pt;}
.y9b{bottom:222.701859pt;}
.y2a{bottom:224.065605pt;}
.y7e{bottom:225.409995pt;}
.yec{bottom:227.613467pt;}
.y1de{bottom:230.584660pt;}
.y1b3{bottom:232.097363pt;}
.y163{bottom:233.100132pt;}
.y10b{bottom:233.889468pt;}
.ycd{bottom:235.224135pt;}
.y9a{bottom:236.033859pt;}
.y29{bottom:237.397605pt;}
.y7d{bottom:238.741995pt;}
.y49{bottom:240.597739pt;}
.yeb{bottom:240.945467pt;}
.y1b2{bottom:243.427363pt;}
.y1dd{bottom:243.916660pt;}
.y162{bottom:244.430132pt;}
.y10a{bottom:247.221468pt;}
.ycc{bottom:248.556135pt;}
.y99{bottom:249.365859pt;}
.y28{bottom:250.729605pt;}
.y7c{bottom:252.075328pt;}
.y48{bottom:253.929739pt;}
.yea{bottom:254.277467pt;}
.y1b1{bottom:254.757363pt;}
.y161{bottom:255.760132pt;}
.y130{bottom:255.874790pt;}
.y1dc{bottom:257.248660pt;}
.y109{bottom:260.553468pt;}
.ycb{bottom:261.888135pt;}
.y98{bottom:262.697859pt;}
.y27{bottom:264.064271pt;}
.y7b{bottom:265.411328pt;}
.y1b0{bottom:266.087363pt;}
.y160{bottom:267.093465pt;}
.y47{bottom:267.263072pt;}
.ye9{bottom:267.609467pt;}
.y12f{bottom:269.206790pt;}
.y1db{bottom:270.580660pt;}
.y108{bottom:273.885468pt;}
.yca{bottom:275.220135pt;}
.y97{bottom:276.029859pt;}
.y26{bottom:277.396271pt;}
.y1af{bottom:277.417363pt;}
.y7a{bottom:278.743328pt;}
.y46{bottom:280.595072pt;}
.ye8{bottom:280.941467pt;}
.y12e{bottom:282.538790pt;}
.y1da{bottom:283.912660pt;}
.y107{bottom:287.221468pt;}
.yc9{bottom:288.552135pt;}
.y1ae{bottom:288.747363pt;}
.y96{bottom:289.361859pt;}
.y25{bottom:290.729605pt;}
.y79{bottom:292.075328pt;}
.y12d{bottom:295.870790pt;}
.y1d9{bottom:297.244660pt;}
.y1ad{bottom:300.077363pt;}
.y106{bottom:300.553468pt;}
.yc8{bottom:301.888115pt;}
.y95{bottom:302.693859pt;}
.y24{bottom:304.062938pt;}
.y78{bottom:305.408662pt;}
.y12c{bottom:309.202790pt;}
.ye7{bottom:310.282780pt;}
.y1d8{bottom:310.576660pt;}
.y15f{bottom:311.093465pt;}
.y1ac{bottom:311.407363pt;}
.y105{bottom:313.885468pt;}
.yc7{bottom:315.220115pt;}
.y94{bottom:316.025859pt;}
.y23{bottom:317.398938pt;}
.y77{bottom:318.741995pt;}
.y12b{bottom:322.534790pt;}
.y1ab{bottom:322.737363pt;}
.ye6{bottom:323.614780pt;}
.y104{bottom:327.221448pt;}
.yc6{bottom:328.552115pt;}
.y1d7{bottom:330.567327pt;}
.y22{bottom:330.730938pt;}
.y76{bottom:332.073995pt;}
.y1aa{bottom:334.067363pt;}
.ye5{bottom:336.946780pt;}
.y15e{bottom:337.761465pt;}
.y103{bottom:340.553448pt;}
.yc5{bottom:341.884115pt;}
.y1d6{bottom:343.899327pt;}
.y21{bottom:344.062938pt;}
.y1a9{bottom:345.397363pt;}
.y75{bottom:345.407349pt;}
.ye4{bottom:350.278780pt;}
.y15d{bottom:351.093465pt;}
.y102{bottom:353.885448pt;}
.yc4{bottom:355.217448pt;}
.y1a8{bottom:356.727363pt;}
.y20{bottom:357.400271pt;}
.ye3{bottom:363.610780pt;}
.yad{bottom:363.870790pt;}
.y1d5{bottom:363.903327pt;}
.y15c{bottom:364.426799pt;}
.y101{bottom:367.217448pt;}
.y1a7{bottom:368.057363pt;}
.y1f{bottom:370.732271pt;}
.y74{bottom:374.758015pt;}
.ye2{bottom:376.942780pt;}
.yac{bottom:377.202790pt;}
.y1a6{bottom:379.387363pt;}
.y1d4{bottom:383.907327pt;}
.y1e{bottom:384.064271pt;}
.yc3{bottom:384.557448pt;}
.y73{bottom:388.090015pt;}
.ye1{bottom:390.277447pt;}
.yab{bottom:390.538790pt;}
.y1a5{bottom:390.717363pt;}
.y15b{bottom:391.094799pt;}
.y1d{bottom:397.396271pt;}
.yc2{bottom:397.889448pt;}
.y72{bottom:401.422015pt;}
.y1a4{bottom:402.047363pt;}
.ye0{bottom:403.609447pt;}
.yaa{bottom:403.870790pt;}
.y1d3{bottom:403.911327pt;}
.y15a{bottom:404.428132pt;}
.y1c{bottom:410.729605pt;}
.yc1{bottom:411.221448pt;}
.y1a3{bottom:413.377363pt;}
.y71{bottom:414.754015pt;}
.ydf{bottom:416.941447pt;}
.ya9{bottom:417.202790pt;}
.y1d2{bottom:417.243327pt;}
.y159{bottom:417.804173pt;}
.y11f{bottom:421.318650pt;}
.y1b{bottom:424.062938pt;}
.yc0{bottom:424.553448pt;}
.y1a2{bottom:424.707363pt;}
.y70{bottom:428.086015pt;}
.ya8{bottom:430.534790pt;}
.y1d1{bottom:430.576660pt;}
.y158{bottom:431.136173pt;}
.y11e{bottom:434.650650pt;}
.y1a1{bottom:436.037363pt;}
.y1a{bottom:437.397605pt;}
.ybf{bottom:437.885448pt;}
.y6f{bottom:441.418015pt;}
.y157{bottom:444.468173pt;}
.y1a0{bottom:447.367363pt;}
.y11d{bottom:447.982650pt;}
.y19{bottom:450.729605pt;}
.ybe{bottom:451.226781pt;}
.y6e{bottom:454.750015pt;}
.y100{bottom:456.446687pt;}
.y1d0{bottom:457.243327pt;}
.y156{bottom:457.800173pt;}
.y19f{bottom:458.697363pt;}
.y11c{bottom:461.314650pt;}
.y18{bottom:464.062938pt;}
.ybd{bottom:464.558781pt;}
.y6d{bottom:468.082015pt;}
.yff{bottom:469.781353pt;}
.y19e{bottom:470.027363pt;}
.y1cf{bottom:470.576660pt;}
.y155{bottom:471.132173pt;}
.y11b{bottom:474.646650pt;}
.y17{bottom:477.397605pt;}
.ybc{bottom:477.890781pt;}
.y19d{bottom:481.357363pt;}
.y6c{bottom:481.414015pt;}
.yfe{bottom:483.113353pt;}
.y154{bottom:484.464173pt;}
.y11a{bottom:487.978650pt;}
.y16{bottom:490.729605pt;}
.ybb{bottom:491.222781pt;}
.y19c{bottom:492.687363pt;}
.y6b{bottom:494.746015pt;}
.yfd{bottom:496.445353pt;}
.y153{bottom:497.796173pt;}
.y1ce{bottom:498.549989pt;}
.y119{bottom:501.310650pt;}
.y19b{bottom:504.017363pt;}
.y15{bottom:504.062938pt;}
.yba{bottom:504.554781pt;}
.y6a{bottom:508.078015pt;}
.y152{bottom:511.128173pt;}
.y1cd{bottom:511.881989pt;}
.y118{bottom:514.642650pt;}
.y19a{bottom:515.347363pt;}
.y14{bottom:517.424239pt;}
.yb9{bottom:517.886781pt;}
.y69{bottom:521.410015pt;}
.y151{bottom:524.460173pt;}
.y1cc{bottom:525.213989pt;}
.y199{bottom:526.677363pt;}
.y117{bottom:527.974650pt;}
.yb8{bottom:531.218781pt;}
.y68{bottom:534.742015pt;}
.y150{bottom:537.792173pt;}
.y198{bottom:538.007363pt;}
.y1cb{bottom:538.547323pt;}
.yb7{bottom:544.550781pt;}
.y67{bottom:548.080682pt;}
.y197{bottom:549.337363pt;}
.y14f{bottom:551.124173pt;}
.y13{bottom:557.552239pt;}
.y196{bottom:560.667363pt;}
.y66{bottom:561.412682pt;}
.y14e{bottom:564.456173pt;}
.y1ca{bottom:565.221989pt;}
.y195{bottom:571.997363pt;}
.y12{bottom:572.216239pt;}
.yb6{bottom:573.885448pt;}
.y65{bottom:574.744682pt;}
.y14d{bottom:577.788173pt;}
.y1c9{bottom:578.553989pt;}
.y45{bottom:580.670798pt;}
.y194{bottom:583.327363pt;}
.y11{bottom:586.880239pt;}
.yb5{bottom:587.218781pt;}
.y64{bottom:588.076682pt;}
.y14c{bottom:591.120173pt;}
.y1c8{bottom:591.885989pt;}
.y44{bottom:594.002798pt;}
.y193{bottom:594.657363pt;}
.yb4{bottom:600.553448pt;}
.y63{bottom:601.408682pt;}
.y10{bottom:601.544239pt;}
.y14b{bottom:604.452173pt;}
.y1c7{bottom:605.217989pt;}
.y192{bottom:605.987363pt;}
.y43{bottom:607.334798pt;}
.yb3{bottom:613.885448pt;}
.y62{bottom:614.743349pt;}
.yf{bottom:616.208239pt;}
.y191{bottom:617.317363pt;}
.y14a{bottom:617.784173pt;}
.y1c6{bottom:618.549989pt;}
.yb2{bottom:627.220115pt;}
.y61{bottom:628.075349pt;}
.y190{bottom:628.647363pt;}
.ye{bottom:630.872239pt;}
.y149{bottom:631.116173pt;}
.y1c5{bottom:631.881989pt;}
.y18f{bottom:639.977363pt;}
.y60{bottom:641.410015pt;}
.y148{bottom:644.448173pt;}
.y1c4{bottom:645.213989pt;}
.yd{bottom:645.536239pt;}
.y18e{bottom:651.307363pt;}
.y5f{bottom:654.742015pt;}
.yb1{bottom:657.220115pt;}
.y147{bottom:657.780173pt;}
.y1c3{bottom:658.547323pt;}
.yc{bottom:660.200239pt;}
.y18d{bottom:662.637363pt;}
.y5e{bottom:668.075349pt;}
.yb0{bottom:670.552115pt;}
.y146{bottom:671.112173pt;}
.y18c{bottom:673.967363pt;}
.yb{bottom:674.864239pt;}
.y5d{bottom:681.408641pt;}
.yfc{bottom:681.417462pt;}
.yaf{bottom:683.884115pt;}
.y145{bottom:684.444173pt;}
.y18b{bottom:685.297363pt;}
.ya{bottom:689.528239pt;}
.y5c{bottom:694.743308pt;}
.yfb{bottom:694.749462pt;}
.y18a{bottom:696.627363pt;}
.y144{bottom:697.776173pt;}
.y189{bottom:707.957363pt;}
.y5b{bottom:708.075308pt;}
.yfa{bottom:708.082795pt;}
.y143{bottom:711.108173pt;}
.y9{bottom:716.194906pt;}
.y188{bottom:719.287363pt;}
.y5a{bottom:721.408641pt;}
.yf9{bottom:721.414795pt;}
.y142{bottom:724.440173pt;}
.y187{bottom:730.617363pt;}
.y8{bottom:732.194906pt;}
.y59{bottom:734.743308pt;}
.y141{bottom:737.772173pt;}
.yde{bottom:740.458834pt;}
.y186{bottom:741.947363pt;}
.y58{bottom:748.075308pt;}
.y140{bottom:751.104173pt;}
.y185{bottom:753.277363pt;}
.ydd{bottom:753.790834pt;}
.y57{bottom:761.408641pt;}
.y7{bottom:761.517572pt;}
.y13f{bottom:764.436173pt;}
.y184{bottom:764.607363pt;}
.ydc{bottom:767.122834pt;}
.y56{bottom:774.743308pt;}
.y183{bottom:775.937363pt;}
.y13e{bottom:777.768173pt;}
.ydb{bottom:780.454834pt;}
.y182{bottom:787.267363pt;}
.y55{bottom:788.075308pt;}
.y13d{bottom:791.100173pt;}
.y181{bottom:798.597363pt;}
.y54{bottom:801.408641pt;}
.y6{bottom:801.522906pt;}
.y13c{bottom:804.432173pt;}
.y180{bottom:809.927363pt;}
.y53{bottom:814.745975pt;}
.y13b{bottom:817.764173pt;}
.y17f{bottom:821.257363pt;}
.y52{bottom:828.077975pt;}
.y13a{bottom:831.096173pt;}
.y17e{bottom:832.587363pt;}
.y51{bottom:841.409975pt;}
.y5{bottom:841.528239pt;}
.y17d{bottom:843.917363pt;}
.y139{bottom:844.428173pt;}
.y2f{bottom:848.326009pt;}
.y50{bottom:854.741975pt;}
.y17c{bottom:855.247363pt;}
.y138{bottom:857.760173pt;}
.y17b{bottom:866.577363pt;}
.y4f{bottom:868.075308pt;}
.y137{bottom:871.093506pt;}
.y17a{bottom:877.907363pt;}
.y4e{bottom:881.408641pt;}
.y179{bottom:889.237363pt;}
.y4d{bottom:894.741975pt;}
.y136{bottom:900.433506pt;}
.y178{bottom:900.567363pt;}
.y177{bottom:911.897363pt;}
.y135{bottom:913.765506pt;}
.y8b{bottom:914.741374pt;}
.y8f{bottom:916.594157pt;}
.y176{bottom:923.227363pt;}
.y8d{bottom:923.327311pt;}
.y8a{bottom:923.722008pt;}
.y134{bottom:927.097506pt;}
.y175{bottom:934.557363pt;}
.y133{bottom:940.429506pt;}
.y174{bottom:945.887363pt;}
.y132{bottom:953.761506pt;}
.y4c{bottom:954.741975pt;}
.y173{bottom:957.217363pt;}
.y131{bottom:967.093506pt;}
.y4b{bottom:968.073975pt;}
.y172{bottom:968.547363pt;}
.y4a{bottom:1013.902507pt;}
.y93{bottom:1013.996908pt;}
.y39{bottom:1013.997070pt;}
.y4{bottom:1015.042236pt;}
.h10{height:21.193555pt;}
.h26{height:25.991607pt;}
.h24{height:26.666667pt;}
.h2{height:30.687500pt;}
.h32{height:31.476562pt;}
.h12{height:32.605469pt;}
.h25{height:34.199543pt;}
.h7{height:34.523438pt;}
.h13{height:37.017547pt;}
.h14{height:37.038880pt;}
.h35{height:39.560000pt;}
.h33{height:40.080000pt;}
.h3{height:40.604167pt;}
.h34{height:40.960000pt;}
.h20{height:42.195312pt;}
.h11{height:43.120594pt;}
.h16{height:43.141927pt;}
.h6{height:43.718750pt;}
.h15{height:43.908912pt;}
.h36{height:44.834667pt;}
.ha{height:47.472000pt;}
.h31{height:47.480605pt;}
.h8{height:47.539564pt;}
.h23{height:47.614141pt;}
.h27{height:47.614670pt;}
.h2c{height:47.618946pt;}
.h2a{height:47.624792pt;}
.h2d{height:47.624808pt;}
.h1f{height:47.630101pt;}
.hc{height:47.635434pt;}
.h2e{height:47.635454pt;}
.h1a{height:47.636248pt;}
.h30{height:47.640361pt;}
.hd{height:47.640767pt;}
.h22{height:47.640849pt;}
.he{height:47.641337pt;}
.h2b{height:47.645613pt;}
.hb{height:47.646101pt;}
.h29{height:47.646105pt;}
.h1c{height:47.646915pt;}
.h9{height:47.651434pt;}
.h28{height:47.651438pt;}
.h2f{height:47.651454pt;}
.h17{height:47.651475pt;}
.h21{height:47.651515pt;}
.h1e{height:47.651597pt;}
.h1b{height:47.652248pt;}
.h1d{height:48.090667pt;}
.h19{height:48.096000pt;}
.h18{height:49.152000pt;}
.h4{height:50.755208pt;}
.hf{height:69.046875pt;}
.h5{height:99.734375pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w2{width:50.960002pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:6.425200pt;}
.xe{left:38.775350pt;}
.x10{left:40.467082pt;}
.x3{left:54.803202pt;}
.x7{left:125.685069pt;}
.x5{left:207.874003pt;}
.x6{left:223.869680pt;}
.x11{left:225.873861pt;}
.x8{left:244.254659pt;}
.x13{left:268.887736pt;}
.xc{left:447.906657pt;}
.xd{left:453.609619pt;}
.xf{left:481.725871pt;}
.x4{left:521.612549pt;}
.xa{left:708.791829pt;}
.x2{left:710.134766pt;}
.xb{left:724.830954pt;}
.x12{left:727.865560pt;}
.x1{left:733.334391pt;}
}




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