
    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_c9487b9e0b894e90ba9d5dc9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_4315c860c5b2ed0e1e5440d1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.091309;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_038574069f9991005f65ac3a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.862793;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_5a90a6c36db21d4befced3e4.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_45957e62e3f6c50b62990ec6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8a0676d1dd475582abc88968.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.692871;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_f956665f60d62d1ad1f8b2e8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_0f9629b638d251c381d402a7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_e56339c3d3f5e7b1a59c5776.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.861816;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_e7895eb6695a8685ad98f14f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.825195;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_f040e7d0a052eb15598a8bc2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.762207;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_f9b5d8a22fd101e2bd419935.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.893555;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_870b1d91309afe5a3f01b99a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910645;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_5db285133e73fa8d1fea0add.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.893555;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_dcca23705c71c737320c36fe.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_13c6d610441371d08b7fea1e.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_15ca5ff6624e3a877694f41e.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.910156;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);}
.v1{vertical-align:-46.080000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.160000px;}
.ls34{letter-spacing:-2.309184px;}
.ls35{letter-spacing:-2.008224px;}
.ls33{letter-spacing:-1.767456px;}
.ls36{letter-spacing:-1.712736px;}
.ls3b{letter-spacing:-1.679904px;}
.ls26{letter-spacing:-1.674432px;}
.ls2a{letter-spacing:-1.647072px;}
.ls25{letter-spacing:-1.630656px;}
.ls15{letter-spacing:-1.624320px;}
.ls52{letter-spacing:-1.614816px;}
.ls1f{letter-spacing:-1.601280px;}
.ls16{letter-spacing:-1.578240px;}
.ls2b{letter-spacing:-1.559520px;}
.ls1e{letter-spacing:-1.536192px;}
.ls38{letter-spacing:-1.526688px;}
.ls53{letter-spacing:-1.518048px;}
.ls22{letter-spacing:-1.499904px;}
.ls3d{letter-spacing:-1.493856px;}
.lsc{letter-spacing:-1.476144px;}
.ls39{letter-spacing:-1.471968px;}
.ls51{letter-spacing:-1.469664px;}
.ls27{letter-spacing:-1.457568px;}
.lsb{letter-spacing:-1.456848px;}
.ls17{letter-spacing:-1.439424px;}
.ls3a{letter-spacing:-1.439136px;}
.lsa{letter-spacing:-1.437552px;}
.ls54{letter-spacing:-1.437408px;}
.ls1a{letter-spacing:-1.421280px;}
.ls8{letter-spacing:-1.408608px;}
.ls37{letter-spacing:-1.406304px;}
.ls50{letter-spacing:-1.404288px;}
.ls4a{letter-spacing:-1.397664px;}
.ls20{letter-spacing:-1.378944px;}
.ls41{letter-spacing:-1.364544px;}
.ls14{letter-spacing:-1.360800px;}
.ls3f{letter-spacing:-1.357920px;}
.ls1c{letter-spacing:-1.342656px;}
.ls44{letter-spacing:-1.324800px;}
.ls23{letter-spacing:-1.318464px;}
.ls3e{letter-spacing:-1.318176px;}
.ls43{letter-spacing:-1.285056px;}
.ls40{letter-spacing:-1.278432px;}
.ls9{letter-spacing:-1.263888px;}
.ls42{letter-spacing:-1.258560px;}
.ls7{letter-spacing:-1.040688px;}
.ls6{letter-spacing:-0.959904px;}
.ls58{letter-spacing:-0.941184px;}
.ls5{letter-spacing:-0.926640px;}
.ls57{letter-spacing:-0.629280px;}
.ls2e{letter-spacing:-0.569088px;}
.ls28{letter-spacing:-0.508896px;}
.ls32{letter-spacing:-0.481536px;}
.ls2c{letter-spacing:-0.448704px;}
.ls18{letter-spacing:-0.447552px;}
.lsd{letter-spacing:-0.426240px;}
.ls10{letter-spacing:-0.417312px;}
.ls56{letter-spacing:-0.383040px;}
.ls2f{letter-spacing:-0.361152px;}
.lse{letter-spacing:-0.338688px;}
.ls30{letter-spacing:-0.328320px;}
.ls19{letter-spacing:-0.322560px;}
.lsf{letter-spacing:-0.320544px;}
.ls1b{letter-spacing:-0.302400px;}
.ls31{letter-spacing:-0.273600px;}
.ls13{letter-spacing:-0.241920px;}
.ls2d{letter-spacing:-0.240768px;}
.ls21{letter-spacing:-0.223776px;}
.ls29{letter-spacing:-0.207936px;}
.ls1d{letter-spacing:-0.175392px;}
.ls12{letter-spacing:-0.157248px;}
.ls11{letter-spacing:-0.120960px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.010944px;}
.ls1{letter-spacing:0.012096px;}
.ls2{letter-spacing:0.012240px;}
.ls6f{letter-spacing:0.106560px;}
.ls64{letter-spacing:0.629280px;}
.ls59{letter-spacing:0.685440px;}
.ls62{letter-spacing:0.733248px;}
.ls61{letter-spacing:0.804384px;}
.ls5f{letter-spacing:0.815328px;}
.ls63{letter-spacing:0.842688px;}
.ls5c{letter-spacing:0.853632px;}
.ls5d{letter-spacing:0.859104px;}
.ls5e{letter-spacing:0.875520px;}
.ls60{letter-spacing:0.913824px;}
.ls66{letter-spacing:1.700784px;}
.ls24{letter-spacing:2.252160px;}
.ls65{letter-spacing:3.729600px;}
.ls6e{letter-spacing:4.233600px;}
.ls48{letter-spacing:5.025600px;}
.ls6b{letter-spacing:7.394544px;}
.ls45{letter-spacing:7.508160px;}
.ls68{letter-spacing:7.639344px;}
.ls55{letter-spacing:7.659792px;}
.ls46{letter-spacing:8.616240px;}
.ls47{letter-spacing:8.616960px;}
.ls6d{letter-spacing:10.502928px;}
.ls69{letter-spacing:11.071296px;}
.ls6c{letter-spacing:18.705600px;}
.ls4c{letter-spacing:19.305360px;}
.ls6a{letter-spacing:19.899360px;}
.ls4b{letter-spacing:22.674384px;}
.ls5a{letter-spacing:24.003360px;}
.ls49{letter-spacing:31.568832px;}
.ls67{letter-spacing:35.283600px;}
.ls4e{letter-spacing:43.605648px;}
.ls4d{letter-spacing:46.974672px;}
.ls4f{letter-spacing:53.625168px;}
.ls5b{letter-spacing:286.887960px;}
.ls0{letter-spacing:1030.699152px;}
.ls3c{letter-spacing:1236.210624px;}
.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;}
}
.ws31{word-spacing:-299.254680px;}
.ws3{word-spacing:-21.804480px;}
.ws2{word-spacing:-20.366928px;}
.ws4{word-spacing:-20.347632px;}
.wsb{word-spacing:-18.000000px;}
.ws21{word-spacing:-16.560000px;}
.ws17{word-spacing:-15.355872px;}
.ws23{word-spacing:-15.281568px;}
.ws24{word-spacing:-15.274944px;}
.ws20{word-spacing:-15.241824px;}
.ws26{word-spacing:-15.235200px;}
.ws25{word-spacing:-15.202080px;}
.ws2c{word-spacing:-15.195456px;}
.ws34{word-spacing:-15.162336px;}
.wsa{word-spacing:-15.120000px;}
.ws7{word-spacing:-14.962752px;}
.ws14{word-spacing:-14.896224px;}
.ws8{word-spacing:-14.878080px;}
.ws12{word-spacing:-14.799456px;}
.ws6{word-spacing:-14.702688px;}
.wse{word-spacing:-14.672448px;}
.ws32{word-spacing:-14.555520px;}
.ws33{word-spacing:-14.309280px;}
.wsf{word-spacing:-14.077440px;}
.ws5{word-spacing:-13.973760px;}
.ws11{word-spacing:-13.777344px;}
.ws9{word-spacing:-13.759200px;}
.ws13{word-spacing:-13.741056px;}
.ws10{word-spacing:-13.698720px;}
.wsd{word-spacing:-13.680576px;}
.ws19{word-spacing:-13.680000px;}
.ws2a{word-spacing:-13.650336px;}
.ws29{word-spacing:-13.601952px;}
.ws27{word-spacing:-13.583808px;}
.ws28{word-spacing:-13.505184px;}
.ws1b{word-spacing:-13.318848px;}
.ws1a{word-spacing:-13.198464px;}
.ws18{word-spacing:-13.171104px;}
.ws2d{word-spacing:-13.050720px;}
.wsc{word-spacing:-12.821760px;}
.ws2e{word-spacing:-12.738816px;}
.ws2b{word-spacing:-12.208032px;}
.ws1d{word-spacing:-12.153312px;}
.ws1e{word-spacing:-12.000096px;}
.ws22{word-spacing:-11.967264px;}
.ws1f{word-spacing:-11.912544px;}
.ws0{word-spacing:-11.880000px;}
.ws1c{word-spacing:-11.370816px;}
.ws1{word-spacing:-10.920096px;}
.ws16{word-spacing:-10.692288px;}
.ws15{word-spacing:0.000000px;}
.ws30{word-spacing:247.927320px;}
.ws2f{word-spacing:247.927620px;}
._1a{margin-left:-5.401584px;}
._14{margin-left:-4.124448px;}
._3{margin-left:-2.632032px;}
._0{margin-left:-1.601568px;}
._2{width:1.061280px;}
._b{width:2.108160px;}
._5{width:3.144960px;}
._a{width:4.665312px;}
._1{width:6.560640px;}
._9{width:8.340624px;}
._8{width:9.401760px;}
._10{width:10.460160px;}
._e{width:12.257280px;}
._13{width:13.380480px;}
._f{width:14.522688px;}
._c{width:15.923520px;}
._d{width:16.963200px;}
._12{width:18.276480px;}
._18{width:19.564128px;}
._11{width:20.672640px;}
._4{width:21.954240px;}
._16{width:23.316480px;}
._7{width:24.642720px;}
._1c{width:25.895520px;}
._17{width:27.025920px;}
._1e{width:28.549440px;}
._1b{width:30.139200px;}
._20{width:31.662720px;}
._19{width:33.384960px;}
._30{width:35.504640px;}
._31{width:36.573264px;}
._15{width:38.352960px;}
._22{width:39.876480px;}
._23{width:41.099328px;}
._26{width:43.983360px;}
._27{width:49.017600px;}
._24{width:62.331840px;}
._25{width:63.370368px;}
._2c{width:69.569856px;}
._2b{width:70.611840px;}
._2f{width:77.964480px;}
._2e{width:86.376960px;}
._2d{width:87.580944px;}
._21{width:90.285120px;}
._32{width:91.941120px;}
._2a{width:103.640256px;}
._29{width:104.817024px;}
._33{width:107.706240px;}
._1d{width:113.043720px;}
._1f{width:115.409208px;}
._35{width:252.419904px;}
._34{width:253.500480px;}
._6{width:260.819712px;}
._28{width:279.002880px;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(0,0,255);}
.fc6{color:rgb(127,127,127);}
.fc5{color:rgb(89,89,89);}
.fc4{color:rgb(64,64,64);}
.fc3{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:47.520000px;}
.fs0{font-size:54.720000px;}
.fs5{font-size:57.600000px;}
.fs6{font-size:60.480000px;}
.fs7{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:83.520000px;}
.fs2{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.ye5{bottom:3.420000px;}
.yc4{bottom:3.540000px;}
.yd7{bottom:3.600000px;}
.yb5{bottom:3.780000px;}
.ydf{bottom:3.900000px;}
.yb1{bottom:4.020000px;}
.yb3{bottom:4.080000px;}
.yc8{bottom:4.260000px;}
.ydb{bottom:4.320000px;}
.y29{bottom:4.560000px;}
.yb9{bottom:4.680000px;}
.yd0{bottom:4.860000px;}
.yb7{bottom:4.980000px;}
.y31{bottom:5.160000px;}
.y2c{bottom:7.980000px;}
.y127{bottom:16.920000px;}
.y147{bottom:16.920060px;}
.ye4{bottom:20.340000px;}
.yc3{bottom:20.820000px;}
.yd6{bottom:20.880000px;}
.yde{bottom:21.180000px;}
.yc7{bottom:21.540000px;}
.yda{bottom:21.600000px;}
.y28{bottom:21.840000px;}
.ycf{bottom:22.140000px;}
.y30{bottom:27.840000px;}
.ye3{bottom:37.620000px;}
.yd5{bottom:37.800000px;}
.yc2{bottom:38.100000px;}
.ydd{bottom:38.460000px;}
.yc6{bottom:38.820000px;}
.yd9{bottom:38.880000px;}
.y27{bottom:39.120000px;}
.yce{bottom:39.420000px;}
.y3{bottom:45.000000px;}
.y146{bottom:45.000060px;}
.y2f{bottom:45.120000px;}
.y126{bottom:45.360000px;}
.ye2{bottom:54.900000px;}
.yc1{bottom:55.020000px;}
.yd4{bottom:55.080000px;}
.y26{bottom:56.400000px;}
.ycd{bottom:56.700000px;}
.y2{bottom:59.040000px;}
.y125{bottom:60.120000px;}
.y145{bottom:60.120060px;}
.y2e{bottom:62.400000px;}
.ye1{bottom:72.180000px;}
.yc0{bottom:72.300000px;}
.yd3{bottom:72.360000px;}
.y25{bottom:73.680000px;}
.ycc{bottom:73.980000px;}
.y124{bottom:75.240000px;}
.y144{bottom:75.240060px;}
.ybf{bottom:89.580000px;}
.yd2{bottom:89.640000px;}
.y123{bottom:90.000000px;}
.y24{bottom:90.960000px;}
.ycb{bottom:91.260000px;}
.y1a5{bottom:97.920000px;}
.yd8{bottom:99.000000px;}
.y1bb{bottom:100.800000px;}
.yb{bottom:102.000000px;}
.y5f{bottom:104.760000px;}
.y122{bottom:105.120000px;}
.y182{bottom:108.000000px;}
.y23{bottom:108.240000px;}
.yaf{bottom:108.360000px;}
.yca{bottom:108.540000px;}
.y16d{bottom:108.720000px;}
.y86{bottom:109.440000px;}
.y11a{bottom:121.320000px;}
.y134{bottom:122.040000px;}
.y22{bottom:125.520000px;}
.yae{bottom:127.080000px;}
.y16c{bottom:127.800000px;}
.y85{bottom:128.160000px;}
.y5e{bottom:129.600000px;}
.y110{bottom:131.760000px;}
.y199{bottom:133.920000px;}
.y1a4{bottom:135.000000px;}
.y142{bottom:135.360000px;}
.y1ba{bottom:137.880000px;}
.y13c{bottom:140.400000px;}
.y133{bottom:141.120000px;}
.y21{bottom:142.800000px;}
.y5d{bottom:145.440000px;}
.yad{bottom:146.160000px;}
.y16b{bottom:146.520000px;}
.y84{bottom:147.240000px;}
.y119{bottom:149.400000px;}
.y10f{bottom:150.480000px;}
.y11b{bottom:150.840000px;}
.y139{bottom:152.280000px;}
.yd1{bottom:153.000000px;}
.y1a3{bottom:154.080000px;}
.y1b9{bottom:156.960000px;}
.y20{bottom:159.720000px;}
.y132{bottom:160.200000px;}
.y5c{bottom:160.920000px;}
.y181{bottom:163.800000px;}
.y141{bottom:164.160000px;}
.yac{bottom:165.240000px;}
.y16a{bottom:165.600000px;}
.y83{bottom:166.320000px;}
.y10e{bottom:169.560000px;}
.y198{bottom:172.080000px;}
.y1a2{bottom:172.800000px;}
.y13a{bottom:175.680000px;}
.y5b{bottom:176.400000px;}
.y1f{bottom:178.080000px;}
.y114{bottom:178.560000px;}
.y131{bottom:178.920000px;}
.y11c{bottom:180.360000px;}
.y180{bottom:182.880000px;}
.yab{bottom:183.960000px;}
.y169{bottom:184.680000px;}
.y82{bottom:185.400000px;}
.y10d{bottom:188.640000px;}
.y197{bottom:190.800000px;}
.y5a{bottom:191.880000px;}
.y116{bottom:193.320000px;}
.y1b8{bottom:193.680000px;}
.y130{bottom:198.000000px;}
.y140{bottom:199.080000px;}
.y17f{bottom:201.960000px;}
.yaa{bottom:203.040000px;}
.y168{bottom:203.400000px;}
.y81{bottom:204.120000px;}
.y1e{bottom:206.880000px;}
.y59{bottom:207.720000px;}
.y115{bottom:208.080000px;}
.y11d{bottom:209.520000px;}
.y196{bottom:209.880000px;}
.y13f{bottom:210.960000px;}
.y1b7{bottom:212.760000px;}
.y12f{bottom:217.080000px;}
.ya9{bottom:222.120000px;}
.y167{bottom:222.480000px;}
.y118{bottom:222.840000px;}
.y58{bottom:223.200000px;}
.y1d{bottom:224.160000px;}
.y10c{bottom:226.440000px;}
.y1a1{bottom:228.960000px;}
.y1b6{bottom:231.840000px;}
.y13e{bottom:234.360000px;}
.y12e{bottom:236.160000px;}
.y117{bottom:237.600000px;}
.y57{bottom:238.680000px;}
.y11e{bottom:239.040000px;}
.ya8{bottom:241.200000px;}
.y1c{bottom:241.440000px;}
.y166{bottom:241.560000px;}
.y80{bottom:242.280000px;}
.y10b{bottom:245.520000px;}
.y13b{bottom:246.240000px;}
.y195{bottom:246.960000px;}
.y1a0{bottom:247.680000px;}
.y1b5{bottom:250.920000px;}
.y56{bottom:254.160000px;}
.y12d{bottom:254.880000px;}
.yc9{bottom:256.500000px;}
.y13d{bottom:258.120000px;}
.y1b{bottom:259.440000px;}
.ya7{bottom:259.920000px;}
.y165{bottom:260.280000px;}
.y7f{bottom:261.000000px;}
.y10a{bottom:264.600000px;}
.y194{bottom:265.680000px;}
.y113{bottom:266.760000px;}
.y11f{bottom:268.200000px;}
.y55{bottom:269.640000px;}
.y12c{bottom:273.960000px;}
.y17e{bottom:275.760000px;}
.ya6{bottom:279.000000px;}
.y164{bottom:279.360000px;}
.y7e{bottom:280.080000px;}
.y138{bottom:281.520000px;}
.y109{bottom:283.320000px;}
.y193{bottom:284.760000px;}
.y54{bottom:285.120000px;}
.y1b4{bottom:287.640000px;}
.y1a{bottom:288.240000px;}
.y136{bottom:291.960000px;}
.y12b{bottom:293.040000px;}
.y17d{bottom:294.840000px;}
.y112{bottom:296.280000px;}
.y120{bottom:297.720000px;}
.ya5{bottom:298.080000px;}
.y163{bottom:298.440000px;}
.yfb{bottom:298.800000px;}
.y7d{bottom:299.160000px;}
.y53{bottom:300.600000px;}
.y108{bottom:302.400000px;}
.y192{bottom:303.840000px;}
.y19{bottom:305.520000px;}
.y135{bottom:306.000000px;}
.y1b3{bottom:306.720000px;}
.y137{bottom:307.800000px;}
.y12a{bottom:311.760000px;}
.y17c{bottom:313.920000px;}
.y52{bottom:316.080000px;}
.ya4{bottom:316.800000px;}
.yfa{bottom:317.520000px;}
.y7c{bottom:317.880000px;}
.y107{bottom:321.480000px;}
.y18{bottom:322.800000px;}
.y191{bottom:322.920000px;}
.y1b2{bottom:325.800000px;}
.y143{bottom:326.880000px;}
.y121{bottom:327.240000px;}
.y51{bottom:331.920000px;}
.y17b{bottom:332.640000px;}
.ya3{bottom:335.880000px;}
.yf9{bottom:336.600000px;}
.y7b{bottom:336.960000px;}
.y106{bottom:340.200000px;}
.y17{bottom:340.800000px;}
.y19f{bottom:341.640000px;}
.y129{bottom:344.160000px;}
.y1b1{bottom:344.520000px;}
.y50{bottom:347.400000px;}
.y162{bottom:349.560000px;}
.ya2{bottom:354.960000px;}
.yf8{bottom:355.680000px;}
.y7a{bottom:356.040000px;}
.y105{bottom:359.280000px;}
.y190{bottom:359.640000px;}
.y19e{bottom:360.720000px;}
.y4f{bottom:362.880000px;}
.y128{bottom:364.680000px;}
.y16{bottom:369.600000px;}
.y17a{bottom:369.720000px;}
.ya1{bottom:373.680000px;}
.yf7{bottom:374.760000px;}
.y79{bottom:375.120000px;}
.y161{bottom:377.640000px;}
.y4e{bottom:378.360000px;}
.y18f{bottom:378.720000px;}
.yc5{bottom:379.500000px;}
.y1b0{bottom:381.600000px;}
.y15{bottom:386.880000px;}
.y179{bottom:388.800000px;}
.ya0{bottom:392.760000px;}
.yf6{bottom:393.480000px;}
.y4d{bottom:393.840000px;}
.y160{bottom:396.720000px;}
.y104{bottom:397.440000px;}
.y18e{bottom:397.800000px;}
.y1af{bottom:400.680000px;}
.y14{bottom:405.240000px;}
.y4c{bottom:409.320000px;}
.y9f{bottom:411.840000px;}
.yf5{bottom:412.560000px;}
.y78{bottom:412.920000px;}
.y15f{bottom:415.800000px;}
.y103{bottom:416.160000px;}
.y18d{bottom:416.520000px;}
.y4b{bottom:424.800000px;}
.y178{bottom:425.520000px;}
.y9e{bottom:430.920000px;}
.yf4{bottom:431.640000px;}
.y77{bottom:432.000000px;}
.ybe{bottom:433.500000px;}
.y13{bottom:434.040000px;}
.y15e{bottom:434.880000px;}
.y102{bottom:435.240000px;}
.y1ae{bottom:437.400000px;}
.y4a{bottom:440.280000px;}
.y177{bottom:444.600000px;}
.y9d{bottom:449.640000px;}
.yf3{bottom:450.360000px;}
.y76{bottom:450.720000px;}
.y12{bottom:451.320000px;}
.y15d{bottom:453.600000px;}
.y101{bottom:454.320000px;}
.y49{bottom:456.120000px;}
.y1ad{bottom:456.480000px;}
.y176{bottom:463.680000px;}
.y11{bottom:468.600000px;}
.y9c{bottom:468.720000px;}
.yf2{bottom:469.440000px;}
.y75{bottom:469.800000px;}
.y48{bottom:471.600000px;}
.y15c{bottom:472.680000px;}
.y100{bottom:473.040000px;}
.y175{bottom:482.400000px;}
.y10{bottom:486.600000px;}
.y47{bottom:487.080000px;}
.y9b{bottom:487.800000px;}
.yf1{bottom:488.520000px;}
.y74{bottom:488.880000px;}
.y18c{bottom:491.400000px;}
.y15b{bottom:491.760000px;}
.yff{bottom:492.120000px;}
.y1ac{bottom:493.560000px;}
.y46{bottom:502.560000px;}
.y9a{bottom:506.520000px;}
.yf0{bottom:507.240000px;}
.y73{bottom:507.960000px;}
.y15a{bottom:510.480000px;}
.yfe{bottom:511.200000px;}
.yf{bottom:515.400000px;}
.y45{bottom:518.040000px;}
.y174{bottom:519.480000px;}
.y99{bottom:525.600000px;}
.yef{bottom:526.320000px;}
.y72{bottom:526.680000px;}
.y18b{bottom:528.480000px;}
.y159{bottom:529.560000px;}
.y1ab{bottom:530.640000px;}
.ye{bottom:532.680000px;}
.y44{bottom:533.520000px;}
.ybd{bottom:538.500000px;}
.y173{bottom:538.560000px;}
.yfd{bottom:538.920000px;}
.y98{bottom:544.680000px;}
.yee{bottom:545.400000px;}
.y71{bottom:545.760000px;}
.y18a{bottom:547.560000px;}
.y158{bottom:548.640000px;}
.y43{bottom:549.000000px;}
.yd{bottom:549.960000px;}
.yfc{bottom:552.600000px;}
.y111{bottom:554.400000px;}
.y172{bottom:557.640000px;}
.ybc{bottom:562.680000px;}
.y97{bottom:563.400000px;}
.y42{bottom:564.480000px;}
.y70{bottom:564.840000px;}
.y189{bottom:566.640000px;}
.y1aa{bottom:567.360000px;}
.y157{bottom:567.720000px;}
.yc{bottom:567.960000px;}
.y41{bottom:580.320000px;}
.ybb{bottom:581.040000px;}
.y96{bottom:582.480000px;}
.yed{bottom:583.200000px;}
.y6f{bottom:583.560000px;}
.y188{bottom:585.360000px;}
.y156{bottom:586.440000px;}
.y171{bottom:594.360000px;}
.y40{bottom:595.800000px;}
.yba{bottom:598.320000px;}
.y95{bottom:601.560000px;}
.yec{bottom:602.280000px;}
.y6e{bottom:602.640000px;}
.y19d{bottom:604.440000px;}
.y155{bottom:605.520000px;}
.y3f{bottom:611.280000px;}
.yb8{bottom:612.000000px;}
.y94{bottom:620.640000px;}
.yeb{bottom:621.360000px;}
.y6d{bottom:621.720000px;}
.y187{bottom:622.440000px;}
.y154{bottom:624.600000px;}
.y3e{bottom:626.760000px;}
.y170{bottom:631.440000px;}
.yb6{bottom:631.500000px;}
.y93{bottom:639.360000px;}
.y6c{bottom:640.440000px;}
.y186{bottom:641.520000px;}
.y3d{bottom:642.240000px;}
.y153{bottom:643.320000px;}
.y16f{bottom:650.520000px;}
.yb4{bottom:652.500000px;}
.yea{bottom:653.760000px;}
.y3c{bottom:657.720000px;}
.y92{bottom:658.440000px;}
.y6b{bottom:659.520000px;}
.y185{bottom:660.240000px;}
.y1a9{bottom:661.320000px;}
.y152{bottom:662.400000px;}
.yb2{bottom:672.000000px;}
.y3b{bottom:673.200000px;}
.ye9{bottom:673.920000px;}
.y91{bottom:677.520000px;}
.y16e{bottom:678.240000px;}
.y6a{bottom:678.600000px;}
.y184{bottom:679.320000px;}
.y1a8{bottom:680.400000px;}
.y151{bottom:681.480000px;}
.y3a{bottom:688.680000px;}
.yb0{bottom:691.500000px;}
.y90{bottom:696.240000px;}
.y69{bottom:697.680000px;}
.y19c{bottom:698.400000px;}
.y150{bottom:700.200000px;}
.y39{bottom:704.520000px;}
.ya{bottom:706.320000px;}
.ye8{bottom:706.680000px;}
.y8f{bottom:715.320000px;}
.y68{bottom:716.400000px;}
.y19b{bottom:717.480000px;}
.y14f{bottom:719.280000px;}
.y38{bottom:720.000000px;}
.ye7{bottom:725.760000px;}
.y9{bottom:732.240000px;}
.y8e{bottom:734.400000px;}
.y37{bottom:735.480000px;}
.y1a7{bottom:736.200000px;}
.y14e{bottom:738.360000px;}
.ye6{bottom:744.120000px;}
.y36{bottom:750.960000px;}
.y8d{bottom:753.480000px;}
.y183{bottom:754.200000px;}
.y67{bottom:754.560000px;}
.y1a6{bottom:755.280000px;}
.y14d{bottom:757.440000px;}
.ye0{bottom:760.500000px;}
.y8{bottom:761.760000px;}
.y35{bottom:766.440000px;}
.y8c{bottom:772.200000px;}
.y66{bottom:773.280000px;}
.y14c{bottom:776.160000px;}
.y34{bottom:781.920000px;}
.y7{bottom:790.920000px;}
.y8b{bottom:791.280000px;}
.y65{bottom:792.360000px;}
.y14b{bottom:795.240000px;}
.y33{bottom:797.400000px;}
.y8a{bottom:810.360000px;}
.y19a{bottom:811.080000px;}
.y64{bottom:811.440000px;}
.y32{bottom:812.880000px;}
.y14a{bottom:814.320000px;}
.y6{bottom:820.080000px;}
.y2d{bottom:825.000000px;}
.y89{bottom:829.080000px;}
.y63{bottom:830.160000px;}
.y149{bottom:833.040000px;}
.ydc{bottom:847.500000px;}
.y88{bottom:848.160000px;}
.y62{bottom:849.240000px;}
.y5{bottom:849.600000px;}
.y148{bottom:865.440000px;}
.y87{bottom:867.240000px;}
.y4{bottom:878.760000px;}
.y61{bottom:885.960000px;}
.y2b{bottom:925.500000px;}
.y60{bottom:938.160000px;}
.y2a{bottom:939.600000px;}
.y1{bottom:939.960000px;}
.h12{height:18.000000px;}
.h10{height:19.500000px;}
.h11{height:21.000000px;}
.ha{height:27.000000px;}
.hd{height:37.406250px;}
.h2{height:37.994063px;}
.h9{height:41.343750px;}
.h3{height:41.696016px;}
.h8{height:42.022969px;}
.hf{height:44.893125px;}
.hb{height:45.360000px;}
.h1b{height:45.992813px;}
.he{height:46.025156px;}
.h7{height:48.761719px;}
.h17{height:52.500000px;}
.h14{height:54.000000px;}
.h5{height:55.666406px;}
.h1a{height:57.566250px;}
.h4{height:66.047344px;}
.hc{height:76.500000px;}
.h18{height:87.000000px;}
.h13{height:103.500000px;}
.h16{height:105.000000px;}
.h15{height:123.000000px;}
.h19{height:347.040000px;}
.h6{height:594.000000px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w7{width:49.500000px;}
.w3{width:60.000000px;}
.w4{width:64.500000px;}
.wa{width:73.500000px;}
.w9{width:82.500000px;}
.w6{width:177.000000px;}
.w5{width:291.000000px;}
.w8{width:319.500000px;}
.wc{width:525.240000px;}
.wb{width:528.840000px;}
.w2{width:534.000000px;}
.w0{width:722.925000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x20{left:8.159928px;}
.x5{left:9.180180px;}
.xa{left:13.455324px;}
.x36{left:16.800120px;}
.x1f{left:18.885156px;}
.x10{left:19.969500px;}
.x15{left:27.689952px;}
.x21{left:29.084856px;}
.x1e{left:30.419880px;}
.x17{left:31.665144px;}
.x24{left:32.917200px;}
.x9{left:34.709880px;}
.x23{left:37.424880px;}
.x1c{left:38.677320px;}
.x22{left:41.025240px;}
.x53{left:43.902690px;}
.x27{left:49.511580px;}
.x47{left:51.465825px;}
.x37{left:58.234200px;}
.x12{left:63.694344px;}
.x4b{left:69.342600px;}
.x2c{left:75.945450px;}
.x16{left:80.332560px;}
.x14{left:84.307320px;}
.x50{left:87.219450px;}
.x4{left:94.500000px;}
.x2{left:95.760144px;}
.x1a{left:97.500000px;}
.xb{left:100.035288px;}
.x31{left:105.799350px;}
.x5e{left:107.722350px;}
.x45{left:112.484700px;}
.x55{left:117.989250px;}
.x6{left:122.760144px;}
.x54{left:125.189250px;}
.xd{left:127.710216px;}
.x5f{left:131.760144px;}
.x38{left:134.053650px;}
.xe{left:138.285288px;}
.x39{left:141.733650px;}
.x28{left:145.014750px;}
.x1b{left:147.000000px;}
.xc{left:148.935060px;}
.x25{left:154.410264px;}
.x11{left:159.000000px;}
.x51{left:165.877050px;}
.x2d{left:174.868650px;}
.x19{left:196.796988px;}
.x32{left:197.882700px;}
.x56{left:201.900750px;}
.x48{left:212.201400px;}
.x4c{left:230.078100px;}
.x3c{left:232.740750px;}
.x3a{left:234.240750px;}
.x3b{left:238.935600px;}
.x3d{left:241.928100px;}
.x29{left:243.938100px;}
.x52{left:247.954800px;}
.x18{left:249.638880px;}
.xf{left:254.195424px;}
.x2e{left:270.371850px;}
.x59{left:277.400850px;}
.x57{left:281.413350px;}
.x58{left:284.218350px;}
.x49{left:287.439000px;}
.x33{left:296.805900px;}
.x4d{left:305.315700px;}
.x3f{left:323.935200px;}
.x40{left:332.188800px;}
.x2a{left:339.441300px;}
.x3e{left:350.548950px;}
.x7{left:356.404932px;}
.x2f{left:362.455200px;}
.x5b{left:364.207350px;}
.x5c{left:365.287350px;}
.x5d{left:373.574850px;}
.x5a{left:378.584850px;}
.x4e{left:383.973450px;}
.x34{left:392.309100px;}
.x42{left:427.497150px;}
.x44{left:432.563400px;}
.x2b{left:434.944500px;}
.x43{left:440.247150px;}
.x4a{left:444.754500px;}
.x41{left:446.052150px;}
.x13{left:450.000000px;}
.x30{left:461.378550px;}
.x4f{left:462.631200px;}
.x1{left:467.010000px;}
.x35{left:487.812450px;}
.x3{left:547.444080px;}
.x1d{left:552.000000px;}
.x8{left:568.500000px;}
.x46{left:622.080000px;}
.x26{left:624.240360px;}
@media print{
.v1{vertical-align:-40.960000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.920000pt;}
.ls34{letter-spacing:-2.052608pt;}
.ls35{letter-spacing:-1.785088pt;}
.ls33{letter-spacing:-1.571072pt;}
.ls36{letter-spacing:-1.522432pt;}
.ls3b{letter-spacing:-1.493248pt;}
.ls26{letter-spacing:-1.488384pt;}
.ls2a{letter-spacing:-1.464064pt;}
.ls25{letter-spacing:-1.449472pt;}
.ls15{letter-spacing:-1.443840pt;}
.ls52{letter-spacing:-1.435392pt;}
.ls1f{letter-spacing:-1.423360pt;}
.ls16{letter-spacing:-1.402880pt;}
.ls2b{letter-spacing:-1.386240pt;}
.ls1e{letter-spacing:-1.365504pt;}
.ls38{letter-spacing:-1.357056pt;}
.ls53{letter-spacing:-1.349376pt;}
.ls22{letter-spacing:-1.333248pt;}
.ls3d{letter-spacing:-1.327872pt;}
.lsc{letter-spacing:-1.312128pt;}
.ls39{letter-spacing:-1.308416pt;}
.ls51{letter-spacing:-1.306368pt;}
.ls27{letter-spacing:-1.295616pt;}
.lsb{letter-spacing:-1.294976pt;}
.ls17{letter-spacing:-1.279488pt;}
.ls3a{letter-spacing:-1.279232pt;}
.lsa{letter-spacing:-1.277824pt;}
.ls54{letter-spacing:-1.277696pt;}
.ls1a{letter-spacing:-1.263360pt;}
.ls8{letter-spacing:-1.252096pt;}
.ls37{letter-spacing:-1.250048pt;}
.ls50{letter-spacing:-1.248256pt;}
.ls4a{letter-spacing:-1.242368pt;}
.ls20{letter-spacing:-1.225728pt;}
.ls41{letter-spacing:-1.212928pt;}
.ls14{letter-spacing:-1.209600pt;}
.ls3f{letter-spacing:-1.207040pt;}
.ls1c{letter-spacing:-1.193472pt;}
.ls44{letter-spacing:-1.177600pt;}
.ls23{letter-spacing:-1.171968pt;}
.ls3e{letter-spacing:-1.171712pt;}
.ls43{letter-spacing:-1.142272pt;}
.ls40{letter-spacing:-1.136384pt;}
.ls9{letter-spacing:-1.123456pt;}
.ls42{letter-spacing:-1.118720pt;}
.ls7{letter-spacing:-0.925056pt;}
.ls6{letter-spacing:-0.853248pt;}
.ls58{letter-spacing:-0.836608pt;}
.ls5{letter-spacing:-0.823680pt;}
.ls57{letter-spacing:-0.559360pt;}
.ls2e{letter-spacing:-0.505856pt;}
.ls28{letter-spacing:-0.452352pt;}
.ls32{letter-spacing:-0.428032pt;}
.ls2c{letter-spacing:-0.398848pt;}
.ls18{letter-spacing:-0.397824pt;}
.lsd{letter-spacing:-0.378880pt;}
.ls10{letter-spacing:-0.370944pt;}
.ls56{letter-spacing:-0.340480pt;}
.ls2f{letter-spacing:-0.321024pt;}
.lse{letter-spacing:-0.301056pt;}
.ls30{letter-spacing:-0.291840pt;}
.ls19{letter-spacing:-0.286720pt;}
.lsf{letter-spacing:-0.284928pt;}
.ls1b{letter-spacing:-0.268800pt;}
.ls31{letter-spacing:-0.243200pt;}
.ls13{letter-spacing:-0.215040pt;}
.ls2d{letter-spacing:-0.214016pt;}
.ls21{letter-spacing:-0.198912pt;}
.ls29{letter-spacing:-0.184832pt;}
.ls1d{letter-spacing:-0.155904pt;}
.ls12{letter-spacing:-0.139776pt;}
.ls11{letter-spacing:-0.107520pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.009728pt;}
.ls1{letter-spacing:0.010752pt;}
.ls2{letter-spacing:0.010880pt;}
.ls6f{letter-spacing:0.094720pt;}
.ls64{letter-spacing:0.559360pt;}
.ls59{letter-spacing:0.609280pt;}
.ls62{letter-spacing:0.651776pt;}
.ls61{letter-spacing:0.715008pt;}
.ls5f{letter-spacing:0.724736pt;}
.ls63{letter-spacing:0.749056pt;}
.ls5c{letter-spacing:0.758784pt;}
.ls5d{letter-spacing:0.763648pt;}
.ls5e{letter-spacing:0.778240pt;}
.ls60{letter-spacing:0.812288pt;}
.ls66{letter-spacing:1.511808pt;}
.ls24{letter-spacing:2.001920pt;}
.ls65{letter-spacing:3.315200pt;}
.ls6e{letter-spacing:3.763200pt;}
.ls48{letter-spacing:4.467200pt;}
.ls6b{letter-spacing:6.572928pt;}
.ls45{letter-spacing:6.673920pt;}
.ls68{letter-spacing:6.790528pt;}
.ls55{letter-spacing:6.808704pt;}
.ls46{letter-spacing:7.658880pt;}
.ls47{letter-spacing:7.659520pt;}
.ls6d{letter-spacing:9.335936pt;}
.ls69{letter-spacing:9.841152pt;}
.ls6c{letter-spacing:16.627200pt;}
.ls4c{letter-spacing:17.160320pt;}
.ls6a{letter-spacing:17.688320pt;}
.ls4b{letter-spacing:20.155008pt;}
.ls5a{letter-spacing:21.336320pt;}
.ls49{letter-spacing:28.061184pt;}
.ls67{letter-spacing:31.363200pt;}
.ls4e{letter-spacing:38.760576pt;}
.ls4d{letter-spacing:41.755264pt;}
.ls4f{letter-spacing:47.666816pt;}
.ls5b{letter-spacing:255.011520pt;}
.ls0{letter-spacing:916.177024pt;}
.ls3c{letter-spacing:1098.853888pt;}
.ws31{word-spacing:-266.004160pt;}
.ws3{word-spacing:-19.381760pt;}
.ws2{word-spacing:-18.103936pt;}
.ws4{word-spacing:-18.086784pt;}
.wsb{word-spacing:-16.000000pt;}
.ws21{word-spacing:-14.720000pt;}
.ws17{word-spacing:-13.649664pt;}
.ws23{word-spacing:-13.583616pt;}
.ws24{word-spacing:-13.577728pt;}
.ws20{word-spacing:-13.548288pt;}
.ws26{word-spacing:-13.542400pt;}
.ws25{word-spacing:-13.512960pt;}
.ws2c{word-spacing:-13.507072pt;}
.ws34{word-spacing:-13.477632pt;}
.wsa{word-spacing:-13.440000pt;}
.ws7{word-spacing:-13.300224pt;}
.ws14{word-spacing:-13.241088pt;}
.ws8{word-spacing:-13.224960pt;}
.ws12{word-spacing:-13.155072pt;}
.ws6{word-spacing:-13.069056pt;}
.wse{word-spacing:-13.042176pt;}
.ws32{word-spacing:-12.938240pt;}
.ws33{word-spacing:-12.719360pt;}
.wsf{word-spacing:-12.513280pt;}
.ws5{word-spacing:-12.421120pt;}
.ws11{word-spacing:-12.246528pt;}
.ws9{word-spacing:-12.230400pt;}
.ws13{word-spacing:-12.214272pt;}
.ws10{word-spacing:-12.176640pt;}
.wsd{word-spacing:-12.160512pt;}
.ws19{word-spacing:-12.160000pt;}
.ws2a{word-spacing:-12.133632pt;}
.ws29{word-spacing:-12.090624pt;}
.ws27{word-spacing:-12.074496pt;}
.ws28{word-spacing:-12.004608pt;}
.ws1b{word-spacing:-11.838976pt;}
.ws1a{word-spacing:-11.731968pt;}
.ws18{word-spacing:-11.707648pt;}
.ws2d{word-spacing:-11.600640pt;}
.wsc{word-spacing:-11.397120pt;}
.ws2e{word-spacing:-11.323392pt;}
.ws2b{word-spacing:-10.851584pt;}
.ws1d{word-spacing:-10.802944pt;}
.ws1e{word-spacing:-10.666752pt;}
.ws22{word-spacing:-10.637568pt;}
.ws1f{word-spacing:-10.588928pt;}
.ws0{word-spacing:-10.560000pt;}
.ws1c{word-spacing:-10.107392pt;}
.ws1{word-spacing:-9.706752pt;}
.ws16{word-spacing:-9.504256pt;}
.ws15{word-spacing:0.000000pt;}
.ws30{word-spacing:220.379840pt;}
.ws2f{word-spacing:220.380107pt;}
._1a{margin-left:-4.801408pt;}
._14{margin-left:-3.666176pt;}
._3{margin-left:-2.339584pt;}
._0{margin-left:-1.423616pt;}
._2{width:0.943360pt;}
._b{width:1.873920pt;}
._5{width:2.795520pt;}
._a{width:4.146944pt;}
._1{width:5.831680pt;}
._9{width:7.413888pt;}
._8{width:8.357120pt;}
._10{width:9.297920pt;}
._e{width:10.895360pt;}
._13{width:11.893760pt;}
._f{width:12.909056pt;}
._c{width:14.154240pt;}
._d{width:15.078400pt;}
._12{width:16.245760pt;}
._18{width:17.390336pt;}
._11{width:18.375680pt;}
._4{width:19.514880pt;}
._16{width:20.725760pt;}
._7{width:21.904640pt;}
._1c{width:23.018240pt;}
._17{width:24.023040pt;}
._1e{width:25.377280pt;}
._1b{width:26.790400pt;}
._20{width:28.144640pt;}
._19{width:29.675520pt;}
._30{width:31.559680pt;}
._31{width:32.509568pt;}
._15{width:34.091520pt;}
._22{width:35.445760pt;}
._23{width:36.532736pt;}
._26{width:39.096320pt;}
._27{width:43.571200pt;}
._24{width:55.406080pt;}
._25{width:56.329216pt;}
._2c{width:61.839872pt;}
._2b{width:62.766080pt;}
._2f{width:69.301760pt;}
._2e{width:76.779520pt;}
._2d{width:77.849728pt;}
._21{width:80.253440pt;}
._32{width:81.725440pt;}
._2a{width:92.124672pt;}
._29{width:93.170688pt;}
._33{width:95.738880pt;}
._1d{width:100.483307pt;}
._1f{width:102.585963pt;}
._35{width:224.373248pt;}
._34{width:225.333760pt;}
._6{width:231.839744pt;}
._28{width:248.002560pt;}
.fs1{font-size:42.240000pt;}
.fs0{font-size:48.640000pt;}
.fs5{font-size:51.200000pt;}
.fs6{font-size:53.760000pt;}
.fs7{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.240000pt;}
.fs2{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.ye5{bottom:3.040000pt;}
.yc4{bottom:3.146667pt;}
.yd7{bottom:3.200000pt;}
.yb5{bottom:3.360000pt;}
.ydf{bottom:3.466667pt;}
.yb1{bottom:3.573333pt;}
.yb3{bottom:3.626667pt;}
.yc8{bottom:3.786667pt;}
.ydb{bottom:3.840000pt;}
.y29{bottom:4.053333pt;}
.yb9{bottom:4.160000pt;}
.yd0{bottom:4.320000pt;}
.yb7{bottom:4.426667pt;}
.y31{bottom:4.586667pt;}
.y2c{bottom:7.093333pt;}
.y127{bottom:15.040000pt;}
.y147{bottom:15.040053pt;}
.ye4{bottom:18.080000pt;}
.yc3{bottom:18.506667pt;}
.yd6{bottom:18.560000pt;}
.yde{bottom:18.826667pt;}
.yc7{bottom:19.146667pt;}
.yda{bottom:19.200000pt;}
.y28{bottom:19.413333pt;}
.ycf{bottom:19.680000pt;}
.y30{bottom:24.746667pt;}
.ye3{bottom:33.440000pt;}
.yd5{bottom:33.600000pt;}
.yc2{bottom:33.866667pt;}
.ydd{bottom:34.186667pt;}
.yc6{bottom:34.506667pt;}
.yd9{bottom:34.560000pt;}
.y27{bottom:34.773333pt;}
.yce{bottom:35.040000pt;}
.y3{bottom:40.000000pt;}
.y146{bottom:40.000053pt;}
.y2f{bottom:40.106667pt;}
.y126{bottom:40.320000pt;}
.ye2{bottom:48.800000pt;}
.yc1{bottom:48.906667pt;}
.yd4{bottom:48.960000pt;}
.y26{bottom:50.133333pt;}
.ycd{bottom:50.400000pt;}
.y2{bottom:52.480000pt;}
.y125{bottom:53.440000pt;}
.y145{bottom:53.440053pt;}
.y2e{bottom:55.466667pt;}
.ye1{bottom:64.160000pt;}
.yc0{bottom:64.266667pt;}
.yd3{bottom:64.320000pt;}
.y25{bottom:65.493333pt;}
.ycc{bottom:65.760000pt;}
.y124{bottom:66.880000pt;}
.y144{bottom:66.880053pt;}
.ybf{bottom:79.626667pt;}
.yd2{bottom:79.680000pt;}
.y123{bottom:80.000000pt;}
.y24{bottom:80.853333pt;}
.ycb{bottom:81.120000pt;}
.y1a5{bottom:87.040000pt;}
.yd8{bottom:88.000000pt;}
.y1bb{bottom:89.600000pt;}
.yb{bottom:90.666667pt;}
.y5f{bottom:93.120000pt;}
.y122{bottom:93.440000pt;}
.y182{bottom:96.000000pt;}
.y23{bottom:96.213333pt;}
.yaf{bottom:96.320000pt;}
.yca{bottom:96.480000pt;}
.y16d{bottom:96.640000pt;}
.y86{bottom:97.280000pt;}
.y11a{bottom:107.840000pt;}
.y134{bottom:108.480000pt;}
.y22{bottom:111.573333pt;}
.yae{bottom:112.960000pt;}
.y16c{bottom:113.600000pt;}
.y85{bottom:113.920000pt;}
.y5e{bottom:115.200000pt;}
.y110{bottom:117.120000pt;}
.y199{bottom:119.040000pt;}
.y1a4{bottom:120.000000pt;}
.y142{bottom:120.320000pt;}
.y1ba{bottom:122.560000pt;}
.y13c{bottom:124.800000pt;}
.y133{bottom:125.440000pt;}
.y21{bottom:126.933333pt;}
.y5d{bottom:129.280000pt;}
.yad{bottom:129.920000pt;}
.y16b{bottom:130.240000pt;}
.y84{bottom:130.880000pt;}
.y119{bottom:132.800000pt;}
.y10f{bottom:133.760000pt;}
.y11b{bottom:134.080000pt;}
.y139{bottom:135.360000pt;}
.yd1{bottom:136.000000pt;}
.y1a3{bottom:136.960000pt;}
.y1b9{bottom:139.520000pt;}
.y20{bottom:141.973333pt;}
.y132{bottom:142.400000pt;}
.y5c{bottom:143.040000pt;}
.y181{bottom:145.600000pt;}
.y141{bottom:145.920000pt;}
.yac{bottom:146.880000pt;}
.y16a{bottom:147.200000pt;}
.y83{bottom:147.840000pt;}
.y10e{bottom:150.720000pt;}
.y198{bottom:152.960000pt;}
.y1a2{bottom:153.600000pt;}
.y13a{bottom:156.160000pt;}
.y5b{bottom:156.800000pt;}
.y1f{bottom:158.293333pt;}
.y114{bottom:158.720000pt;}
.y131{bottom:159.040000pt;}
.y11c{bottom:160.320000pt;}
.y180{bottom:162.560000pt;}
.yab{bottom:163.520000pt;}
.y169{bottom:164.160000pt;}
.y82{bottom:164.800000pt;}
.y10d{bottom:167.680000pt;}
.y197{bottom:169.600000pt;}
.y5a{bottom:170.560000pt;}
.y116{bottom:171.840000pt;}
.y1b8{bottom:172.160000pt;}
.y130{bottom:176.000000pt;}
.y140{bottom:176.960000pt;}
.y17f{bottom:179.520000pt;}
.yaa{bottom:180.480000pt;}
.y168{bottom:180.800000pt;}
.y81{bottom:181.440000pt;}
.y1e{bottom:183.893333pt;}
.y59{bottom:184.640000pt;}
.y115{bottom:184.960000pt;}
.y11d{bottom:186.240000pt;}
.y196{bottom:186.560000pt;}
.y13f{bottom:187.520000pt;}
.y1b7{bottom:189.120000pt;}
.y12f{bottom:192.960000pt;}
.ya9{bottom:197.440000pt;}
.y167{bottom:197.760000pt;}
.y118{bottom:198.080000pt;}
.y58{bottom:198.400000pt;}
.y1d{bottom:199.253333pt;}
.y10c{bottom:201.280000pt;}
.y1a1{bottom:203.520000pt;}
.y1b6{bottom:206.080000pt;}
.y13e{bottom:208.320000pt;}
.y12e{bottom:209.920000pt;}
.y117{bottom:211.200000pt;}
.y57{bottom:212.160000pt;}
.y11e{bottom:212.480000pt;}
.ya8{bottom:214.400000pt;}
.y1c{bottom:214.613333pt;}
.y166{bottom:214.720000pt;}
.y80{bottom:215.360000pt;}
.y10b{bottom:218.240000pt;}
.y13b{bottom:218.880000pt;}
.y195{bottom:219.520000pt;}
.y1a0{bottom:220.160000pt;}
.y1b5{bottom:223.040000pt;}
.y56{bottom:225.920000pt;}
.y12d{bottom:226.560000pt;}
.yc9{bottom:228.000000pt;}
.y13d{bottom:229.440000pt;}
.y1b{bottom:230.613333pt;}
.ya7{bottom:231.040000pt;}
.y165{bottom:231.360000pt;}
.y7f{bottom:232.000000pt;}
.y10a{bottom:235.200000pt;}
.y194{bottom:236.160000pt;}
.y113{bottom:237.120000pt;}
.y11f{bottom:238.400000pt;}
.y55{bottom:239.680000pt;}
.y12c{bottom:243.520000pt;}
.y17e{bottom:245.120000pt;}
.ya6{bottom:248.000000pt;}
.y164{bottom:248.320000pt;}
.y7e{bottom:248.960000pt;}
.y138{bottom:250.240000pt;}
.y109{bottom:251.840000pt;}
.y193{bottom:253.120000pt;}
.y54{bottom:253.440000pt;}
.y1b4{bottom:255.680000pt;}
.y1a{bottom:256.213333pt;}
.y136{bottom:259.520000pt;}
.y12b{bottom:260.480000pt;}
.y17d{bottom:262.080000pt;}
.y112{bottom:263.360000pt;}
.y120{bottom:264.640000pt;}
.ya5{bottom:264.960000pt;}
.y163{bottom:265.280000pt;}
.yfb{bottom:265.600000pt;}
.y7d{bottom:265.920000pt;}
.y53{bottom:267.200000pt;}
.y108{bottom:268.800000pt;}
.y192{bottom:270.080000pt;}
.y19{bottom:271.573333pt;}
.y135{bottom:272.000000pt;}
.y1b3{bottom:272.640000pt;}
.y137{bottom:273.600000pt;}
.y12a{bottom:277.120000pt;}
.y17c{bottom:279.040000pt;}
.y52{bottom:280.960000pt;}
.ya4{bottom:281.600000pt;}
.yfa{bottom:282.240000pt;}
.y7c{bottom:282.560000pt;}
.y107{bottom:285.760000pt;}
.y18{bottom:286.933333pt;}
.y191{bottom:287.040000pt;}
.y1b2{bottom:289.600000pt;}
.y143{bottom:290.560000pt;}
.y121{bottom:290.880000pt;}
.y51{bottom:295.040000pt;}
.y17b{bottom:295.680000pt;}
.ya3{bottom:298.560000pt;}
.yf9{bottom:299.200000pt;}
.y7b{bottom:299.520000pt;}
.y106{bottom:302.400000pt;}
.y17{bottom:302.933333pt;}
.y19f{bottom:303.680000pt;}
.y129{bottom:305.920000pt;}
.y1b1{bottom:306.240000pt;}
.y50{bottom:308.800000pt;}
.y162{bottom:310.720000pt;}
.ya2{bottom:315.520000pt;}
.yf8{bottom:316.160000pt;}
.y7a{bottom:316.480000pt;}
.y105{bottom:319.360000pt;}
.y190{bottom:319.680000pt;}
.y19e{bottom:320.640000pt;}
.y4f{bottom:322.560000pt;}
.y128{bottom:324.160000pt;}
.y16{bottom:328.533333pt;}
.y17a{bottom:328.640000pt;}
.ya1{bottom:332.160000pt;}
.yf7{bottom:333.120000pt;}
.y79{bottom:333.440000pt;}
.y161{bottom:335.680000pt;}
.y4e{bottom:336.320000pt;}
.y18f{bottom:336.640000pt;}
.yc5{bottom:337.333333pt;}
.y1b0{bottom:339.200000pt;}
.y15{bottom:343.893333pt;}
.y179{bottom:345.600000pt;}
.ya0{bottom:349.120000pt;}
.yf6{bottom:349.760000pt;}
.y4d{bottom:350.080000pt;}
.y160{bottom:352.640000pt;}
.y104{bottom:353.280000pt;}
.y18e{bottom:353.600000pt;}
.y1af{bottom:356.160000pt;}
.y14{bottom:360.213333pt;}
.y4c{bottom:363.840000pt;}
.y9f{bottom:366.080000pt;}
.yf5{bottom:366.720000pt;}
.y78{bottom:367.040000pt;}
.y15f{bottom:369.600000pt;}
.y103{bottom:369.920000pt;}
.y18d{bottom:370.240000pt;}
.y4b{bottom:377.600000pt;}
.y178{bottom:378.240000pt;}
.y9e{bottom:383.040000pt;}
.yf4{bottom:383.680000pt;}
.y77{bottom:384.000000pt;}
.ybe{bottom:385.333333pt;}
.y13{bottom:385.813333pt;}
.y15e{bottom:386.560000pt;}
.y102{bottom:386.880000pt;}
.y1ae{bottom:388.800000pt;}
.y4a{bottom:391.360000pt;}
.y177{bottom:395.200000pt;}
.y9d{bottom:399.680000pt;}
.yf3{bottom:400.320000pt;}
.y76{bottom:400.640000pt;}
.y12{bottom:401.173333pt;}
.y15d{bottom:403.200000pt;}
.y101{bottom:403.840000pt;}
.y49{bottom:405.440000pt;}
.y1ad{bottom:405.760000pt;}
.y176{bottom:412.160000pt;}
.y11{bottom:416.533333pt;}
.y9c{bottom:416.640000pt;}
.yf2{bottom:417.280000pt;}
.y75{bottom:417.600000pt;}
.y48{bottom:419.200000pt;}
.y15c{bottom:420.160000pt;}
.y100{bottom:420.480000pt;}
.y175{bottom:428.800000pt;}
.y10{bottom:432.533333pt;}
.y47{bottom:432.960000pt;}
.y9b{bottom:433.600000pt;}
.yf1{bottom:434.240000pt;}
.y74{bottom:434.560000pt;}
.y18c{bottom:436.800000pt;}
.y15b{bottom:437.120000pt;}
.yff{bottom:437.440000pt;}
.y1ac{bottom:438.720000pt;}
.y46{bottom:446.720000pt;}
.y9a{bottom:450.240000pt;}
.yf0{bottom:450.880000pt;}
.y73{bottom:451.520000pt;}
.y15a{bottom:453.760000pt;}
.yfe{bottom:454.400000pt;}
.yf{bottom:458.133333pt;}
.y45{bottom:460.480000pt;}
.y174{bottom:461.760000pt;}
.y99{bottom:467.200000pt;}
.yef{bottom:467.840000pt;}
.y72{bottom:468.160000pt;}
.y18b{bottom:469.760000pt;}
.y159{bottom:470.720000pt;}
.y1ab{bottom:471.680000pt;}
.ye{bottom:473.493333pt;}
.y44{bottom:474.240000pt;}
.ybd{bottom:478.666667pt;}
.y173{bottom:478.720000pt;}
.yfd{bottom:479.040000pt;}
.y98{bottom:484.160000pt;}
.yee{bottom:484.800000pt;}
.y71{bottom:485.120000pt;}
.y18a{bottom:486.720000pt;}
.y158{bottom:487.680000pt;}
.y43{bottom:488.000000pt;}
.yd{bottom:488.853333pt;}
.yfc{bottom:491.200000pt;}
.y111{bottom:492.800000pt;}
.y172{bottom:495.680000pt;}
.ybc{bottom:500.160000pt;}
.y97{bottom:500.800000pt;}
.y42{bottom:501.760000pt;}
.y70{bottom:502.080000pt;}
.y189{bottom:503.680000pt;}
.y1aa{bottom:504.320000pt;}
.y157{bottom:504.640000pt;}
.yc{bottom:504.853333pt;}
.y41{bottom:515.840000pt;}
.ybb{bottom:516.480000pt;}
.y96{bottom:517.760000pt;}
.yed{bottom:518.400000pt;}
.y6f{bottom:518.720000pt;}
.y188{bottom:520.320000pt;}
.y156{bottom:521.280000pt;}
.y171{bottom:528.320000pt;}
.y40{bottom:529.600000pt;}
.yba{bottom:531.840000pt;}
.y95{bottom:534.720000pt;}
.yec{bottom:535.360000pt;}
.y6e{bottom:535.680000pt;}
.y19d{bottom:537.280000pt;}
.y155{bottom:538.240000pt;}
.y3f{bottom:543.360000pt;}
.yb8{bottom:544.000000pt;}
.y94{bottom:551.680000pt;}
.yeb{bottom:552.320000pt;}
.y6d{bottom:552.640000pt;}
.y187{bottom:553.280000pt;}
.y154{bottom:555.200000pt;}
.y3e{bottom:557.120000pt;}
.y170{bottom:561.280000pt;}
.yb6{bottom:561.333333pt;}
.y93{bottom:568.320000pt;}
.y6c{bottom:569.280000pt;}
.y186{bottom:570.240000pt;}
.y3d{bottom:570.880000pt;}
.y153{bottom:571.840000pt;}
.y16f{bottom:578.240000pt;}
.yb4{bottom:580.000000pt;}
.yea{bottom:581.120000pt;}
.y3c{bottom:584.640000pt;}
.y92{bottom:585.280000pt;}
.y6b{bottom:586.240000pt;}
.y185{bottom:586.880000pt;}
.y1a9{bottom:587.840000pt;}
.y152{bottom:588.800000pt;}
.yb2{bottom:597.333333pt;}
.y3b{bottom:598.400000pt;}
.ye9{bottom:599.040000pt;}
.y91{bottom:602.240000pt;}
.y16e{bottom:602.880000pt;}
.y6a{bottom:603.200000pt;}
.y184{bottom:603.840000pt;}
.y1a8{bottom:604.800000pt;}
.y151{bottom:605.760000pt;}
.y3a{bottom:612.160000pt;}
.yb0{bottom:614.666667pt;}
.y90{bottom:618.880000pt;}
.y69{bottom:620.160000pt;}
.y19c{bottom:620.800000pt;}
.y150{bottom:622.400000pt;}
.y39{bottom:626.240000pt;}
.ya{bottom:627.840000pt;}
.ye8{bottom:628.160000pt;}
.y8f{bottom:635.840000pt;}
.y68{bottom:636.800000pt;}
.y19b{bottom:637.760000pt;}
.y14f{bottom:639.360000pt;}
.y38{bottom:640.000000pt;}
.ye7{bottom:645.120000pt;}
.y9{bottom:650.880000pt;}
.y8e{bottom:652.800000pt;}
.y37{bottom:653.760000pt;}
.y1a7{bottom:654.400000pt;}
.y14e{bottom:656.320000pt;}
.ye6{bottom:661.440000pt;}
.y36{bottom:667.520000pt;}
.y8d{bottom:669.760000pt;}
.y183{bottom:670.400000pt;}
.y67{bottom:670.720000pt;}
.y1a6{bottom:671.360000pt;}
.y14d{bottom:673.280000pt;}
.ye0{bottom:676.000000pt;}
.y8{bottom:677.120000pt;}
.y35{bottom:681.280000pt;}
.y8c{bottom:686.400000pt;}
.y66{bottom:687.360000pt;}
.y14c{bottom:689.920000pt;}
.y34{bottom:695.040000pt;}
.y7{bottom:703.040000pt;}
.y8b{bottom:703.360000pt;}
.y65{bottom:704.320000pt;}
.y14b{bottom:706.880000pt;}
.y33{bottom:708.800000pt;}
.y8a{bottom:720.320000pt;}
.y19a{bottom:720.960000pt;}
.y64{bottom:721.280000pt;}
.y32{bottom:722.560000pt;}
.y14a{bottom:723.840000pt;}
.y6{bottom:728.960000pt;}
.y2d{bottom:733.333333pt;}
.y89{bottom:736.960000pt;}
.y63{bottom:737.920000pt;}
.y149{bottom:740.480000pt;}
.ydc{bottom:753.333333pt;}
.y88{bottom:753.920000pt;}
.y62{bottom:754.880000pt;}
.y5{bottom:755.200000pt;}
.y148{bottom:769.280000pt;}
.y87{bottom:770.880000pt;}
.y4{bottom:781.120000pt;}
.y61{bottom:787.520000pt;}
.y2b{bottom:822.666667pt;}
.y60{bottom:833.920000pt;}
.y2a{bottom:835.200000pt;}
.y1{bottom:835.520000pt;}
.h12{height:16.000000pt;}
.h10{height:17.333333pt;}
.h11{height:18.666667pt;}
.ha{height:24.000000pt;}
.hd{height:33.250000pt;}
.h2{height:33.772500pt;}
.h9{height:36.750000pt;}
.h3{height:37.063125pt;}
.h8{height:37.353750pt;}
.hf{height:39.905000pt;}
.hb{height:40.320000pt;}
.h1b{height:40.882500pt;}
.he{height:40.911250pt;}
.h7{height:43.343750pt;}
.h17{height:46.666667pt;}
.h14{height:48.000000pt;}
.h5{height:49.481250pt;}
.h1a{height:51.170000pt;}
.h4{height:58.708750pt;}
.hc{height:68.000000pt;}
.h18{height:77.333333pt;}
.h13{height:92.000000pt;}
.h16{height:93.333333pt;}
.h15{height:109.333333pt;}
.h19{height:308.480000pt;}
.h6{height:528.000000pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w7{width:44.000000pt;}
.w3{width:53.333333pt;}
.w4{width:57.333333pt;}
.wa{width:65.333333pt;}
.w9{width:73.333333pt;}
.w6{width:157.333333pt;}
.w5{width:258.666667pt;}
.w8{width:284.000000pt;}
.wc{width:466.880000pt;}
.wb{width:470.080000pt;}
.w2{width:474.666667pt;}
.w0{width:642.600000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x20{left:7.253269pt;}
.x5{left:8.160160pt;}
.xa{left:11.960288pt;}
.x36{left:14.933440pt;}
.x1f{left:16.786805pt;}
.x10{left:17.750667pt;}
.x15{left:24.613291pt;}
.x21{left:25.853205pt;}
.x1e{left:27.039893pt;}
.x17{left:28.146795pt;}
.x24{left:29.259733pt;}
.x9{left:30.853227pt;}
.x23{left:33.266560pt;}
.x1c{left:34.379840pt;}
.x22{left:36.466880pt;}
.x53{left:39.024613pt;}
.x27{left:44.010293pt;}
.x47{left:45.747400pt;}
.x37{left:51.763733pt;}
.x12{left:56.617195pt;}
.x4b{left:61.637867pt;}
.x2c{left:67.507067pt;}
.x16{left:71.406720pt;}
.x14{left:74.939840pt;}
.x50{left:77.528400pt;}
.x4{left:84.000000pt;}
.x2{left:85.120128pt;}
.x1a{left:86.666667pt;}
.xb{left:88.920256pt;}
.x31{left:94.043867pt;}
.x5e{left:95.753200pt;}
.x45{left:99.986400pt;}
.x55{left:104.879333pt;}
.x6{left:109.120128pt;}
.x54{left:111.279333pt;}
.xd{left:113.520192pt;}
.x5f{left:117.120128pt;}
.x38{left:119.158800pt;}
.xe{left:122.920256pt;}
.x39{left:125.985467pt;}
.x28{left:128.902000pt;}
.x1b{left:130.666667pt;}
.xc{left:132.386720pt;}
.x25{left:137.253568pt;}
.x11{left:141.333333pt;}
.x51{left:147.446267pt;}
.x2d{left:155.438800pt;}
.x19{left:174.930656pt;}
.x32{left:175.895733pt;}
.x56{left:179.467333pt;}
.x48{left:188.623467pt;}
.x4c{left:204.513867pt;}
.x3c{left:206.880667pt;}
.x3a{left:208.214000pt;}
.x3b{left:212.387200pt;}
.x3d{left:215.047200pt;}
.x29{left:216.833867pt;}
.x52{left:220.404267pt;}
.x18{left:221.901227pt;}
.xf{left:225.951488pt;}
.x2e{left:240.330533pt;}
.x59{left:246.578533pt;}
.x57{left:250.145200pt;}
.x58{left:252.638533pt;}
.x49{left:255.501333pt;}
.x33{left:263.827467pt;}
.x4d{left:271.391733pt;}
.x3f{left:287.942400pt;}
.x40{left:295.278933pt;}
.x2a{left:301.725600pt;}
.x3e{left:311.599067pt;}
.x7{left:316.804384pt;}
.x2f{left:322.182400pt;}
.x5b{left:323.739867pt;}
.x5c{left:324.699867pt;}
.x5d{left:332.066533pt;}
.x5a{left:336.519867pt;}
.x4e{left:341.309733pt;}
.x34{left:348.719200pt;}
.x42{left:379.997467pt;}
.x44{left:384.500800pt;}
.x2b{left:386.617333pt;}
.x43{left:391.330800pt;}
.x4a{left:395.337333pt;}
.x41{left:396.490800pt;}
.x13{left:400.000000pt;}
.x30{left:410.114267pt;}
.x4f{left:411.227733pt;}
.x1{left:415.120000pt;}
.x35{left:433.611067pt;}
.x3{left:486.616960pt;}
.x1d{left:490.666667pt;}
.x8{left:505.333333pt;}
.x46{left:552.960000pt;}
.x26{left:554.880320pt;}
}




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