
    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_4e668937a9ff339e426f791b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.225586;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_abdf1b4cff42700ae54f5be6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.014160;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_fa87814dd273f7423d2e02b9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.212891;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_cc4b3cf5aa7ff23e8f8dd42d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_f2a652f937cb92f74d0cd76c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.225586;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_89728941476134b93c011e4d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.706543;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_a07a6b0e6d2fe005395e837f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_9796b3acd0e3e2ea8c82a7a3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_8c38f6a109d6c2079241879d.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_0bb725ea1c53fd2f9bae89ae.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_a38fc7ec50deb9c982255699.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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;}
.m13{transform:matrix(0.000000,-0.249978,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249978,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249978,0.250000,0.000000,0,0);}
.m10{transform:matrix(0.000000,-0.281641,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.281641,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.281641,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.267034,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.267034,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.267034,0.250000,0.000000,0,0);}
.ma{transform:matrix(0.168232,-0.188581,0.166425,0.186555,0,0);-ms-transform:matrix(0.168232,-0.188581,0.166425,0.186555,0,0);-webkit-transform:matrix(0.168232,-0.188581,0.166425,0.186555,0,0);}
.mb{transform:matrix(0.170012,-0.190576,0.166425,0.186555,0,0);-ms-transform:matrix(0.170012,-0.190576,0.166425,0.186555,0,0);-webkit-transform:matrix(0.170012,-0.190576,0.166425,0.186555,0,0);}
.m2{transform:matrix(0.173174,-0.184053,0.171314,0.182076,0,0);-ms-transform:matrix(0.173174,-0.184053,0.171314,0.182076,0,0);-webkit-transform:matrix(0.173174,-0.184053,0.171314,0.182076,0,0);}
.m3{transform:matrix(0.175006,-0.186000,0.171314,0.182076,0,0);-ms-transform:matrix(0.175006,-0.186000,0.171314,0.182076,0,0);-webkit-transform:matrix(0.175006,-0.186000,0.171314,0.182076,0,0);}
.m12{transform:matrix(0.176784,-0.176769,0.176784,0.176769,0,0);-ms-transform:matrix(0.176784,-0.176769,0.176784,0.176769,0,0);-webkit-transform:matrix(0.176784,-0.176769,0.176784,0.176769,0,0);}
.me{transform:matrix(0.221712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221712,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.221996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221996,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.224919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224919,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.225455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225455,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.225901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225901,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.233840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233840,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.234138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234138,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.237222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237222,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.237787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237787,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.238257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238257,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);}
.m14{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);}
.v5{vertical-align:-56.685727px;}
.v3{vertical-align:-46.585883px;}
.v6{vertical-align:-37.331187px;}
.v9{vertical-align:-20.880000px;}
.v2{vertical-align:-15.120000px;}
.v4{vertical-align:-2.410894px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:3.011555px;}
.v1{vertical-align:15.120000px;}
.v8{vertical-align:16.910761px;}
.va{vertical-align:20.880000px;}
.ls19{letter-spacing:-16.920000px;}
.ls31{letter-spacing:-1.761538px;}
.ls2e{letter-spacing:-1.607315px;}
.ls2f{letter-spacing:-1.512259px;}
.ls30{letter-spacing:-1.465599px;}
.ls2c{letter-spacing:-1.284889px;}
.ls2d{letter-spacing:-1.122551px;}
.ls15{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.288000px;}
.ls37{letter-spacing:-0.234000px;}
.ls10{letter-spacing:-0.216000px;}
.ls14{letter-spacing:-0.171600px;}
.lsa{letter-spacing:-0.094800px;}
.ls1d{letter-spacing:-0.040320px;}
.ls34{letter-spacing:-0.018000px;}
.ls7{letter-spacing:0.000000px;}
.lse{letter-spacing:0.018000px;}
.ls3{letter-spacing:0.019440px;}
.ls1{letter-spacing:0.036000px;}
.ls16{letter-spacing:0.053280px;}
.ls4{letter-spacing:0.079680px;}
.ls1e{letter-spacing:0.106800px;}
.ls13{letter-spacing:0.110400px;}
.ls2{letter-spacing:0.120000px;}
.ls2b{letter-spacing:0.126000px;}
.ls38{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.180000px;}
.ls18{letter-spacing:0.206400px;}
.lsc{letter-spacing:0.259800px;}
.ls5{letter-spacing:0.259920px;}
.ls12{letter-spacing:0.298800px;}
.ls1c{letter-spacing:0.306600px;}
.ls17{letter-spacing:0.316800px;}
.lsf{letter-spacing:0.324000px;}
.ls2a{letter-spacing:0.326640px;}
.lsd{letter-spacing:0.336000px;}
.ls0{letter-spacing:0.360000px;}
.ls27{letter-spacing:0.480000px;}
.ls21{letter-spacing:0.524368px;}
.ls25{letter-spacing:0.527980px;}
.ls20{letter-spacing:0.534598px;}
.lsb{letter-spacing:0.624000px;}
.ls22{letter-spacing:0.626668px;}
.ls26{letter-spacing:0.655951px;}
.ls1a{letter-spacing:0.720000px;}
.ls1b{letter-spacing:0.738000px;}
.ls24{letter-spacing:0.771125px;}
.ls6{letter-spacing:0.900000px;}
.ls29{letter-spacing:1.041085px;}
.ls36{letter-spacing:3.780000px;}
.ls33{letter-spacing:5.220000px;}
.ls1f{letter-spacing:8.680678px;}
.ls23{letter-spacing:10.756603px;}
.ls28{letter-spacing:12.242133px;}
.ls35{letter-spacing:44.748000px;}
.ls32{letter-spacing:72.108000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1a{word-spacing:-59.760000px;}
.ws3{word-spacing:-27.000000px;}
.ws4{word-spacing:-26.640000px;}
.ws2{word-spacing:-16.560000px;}
.wsa{word-spacing:-15.564000px;}
.wsd{word-spacing:-15.300000px;}
.ws16{word-spacing:-15.256800px;}
.ws1b{word-spacing:-15.246600px;}
.wsc{word-spacing:-15.199800px;}
.ws17{word-spacing:-15.146400px;}
.ws28{word-spacing:-15.090251px;}
.ws14{word-spacing:-15.050400px;}
.ws1d{word-spacing:-15.046800px;}
.ws19{word-spacing:-14.959440px;}
.ws8{word-spacing:-14.940000px;}
.ws1c{word-spacing:-14.899680px;}
.ws9{word-spacing:-14.845200px;}
.ws15{word-spacing:-14.768400px;}
.ws2b{word-spacing:-14.262273px;}
.ws2d{word-spacing:-14.261587px;}
.ws12{word-spacing:-13.860000px;}
.ws11{word-spacing:-13.824000px;}
.ws30{word-spacing:-13.680000px;}
.ws31{word-spacing:-13.626000px;}
.wsf{word-spacing:-13.536000px;}
.ws10{word-spacing:-13.518000px;}
.ws7{word-spacing:-13.500000px;}
.ws2f{word-spacing:-13.482000px;}
.wse{word-spacing:-13.284000px;}
.ws32{word-spacing:-13.266000px;}
.ws13{word-spacing:-13.212000px;}
.ws33{word-spacing:-13.140000px;}
.ws2a{word-spacing:-13.032646px;}
.ws2e{word-spacing:-12.420000px;}
.ws27{word-spacing:-12.349590px;}
.ws0{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.700000px;}
.ws24{word-spacing:-10.764676px;}
.ws23{word-spacing:-10.418308px;}
.ws1f{word-spacing:-10.115135px;}
.ws5{word-spacing:-9.000000px;}
.ws6{word-spacing:-8.280000px;}
.wsb{word-spacing:0.000000px;}
.ws18{word-spacing:18.868320px;}
.ws21{word-spacing:59.315203px;}
.ws20{word-spacing:59.362119px;}
.ws1e{word-spacing:59.385577px;}
.ws25{word-spacing:72.234762px;}
.ws26{word-spacing:72.320681px;}
.ws29{word-spacing:255.953785px;}
.ws22{word-spacing:257.082267px;}
.ws2c{word-spacing:366.303453px;}
._2{margin-left:-53.688000px;}
._1f{margin-left:-20.571120px;}
._d{margin-left:-16.757520px;}
._1a{margin-left:-14.583600px;}
._20{margin-left:-9.643560px;}
._17{margin-left:-7.529760px;}
._24{margin-left:-5.766000px;}
._6{margin-left:-3.363600px;}
._0{margin-left:-1.389840px;}
._3{width:1.135440px;}
._7{width:2.264640px;}
._12{width:3.421680px;}
._e{width:4.900320px;}
._f{width:5.916240px;}
._10{width:6.932160px;}
._11{width:7.948080px;}
._a{width:9.630720px;}
._9{width:10.899840px;}
._5{width:12.106800px;}
._b{width:13.325760px;}
._29{width:14.598000px;}
._19{width:16.015680px;}
._18{width:17.091360px;}
._1c{width:18.387120px;}
._21{width:19.661040px;}
._1b{width:21.198000px;}
._8{width:22.284000px;}
._c{width:24.062160px;}
._1e{width:25.074720px;}
._16{width:26.354160px;}
._1d{width:27.907920px;}
._4{width:29.700000px;}
._28{width:35.124240px;}
._22{width:39.582000px;}
._15{width:53.142000px;}
._14{width:54.142560px;}
._26{width:65.016000px;}
._25{width:66.045840px;}
._2a{width:85.212000px;}
._27{width:109.098000px;}
._1{width:1191.825600px;}
._23{width:2171.611920px;}
._13{width:2195.371920px;}
.fc2{color:rgb(0,0,10);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:33.120000px;}
.fsb{font-size:34.138325px;}
.fs5{font-size:36.000000px;}
.fs9{font-size:36.385379px;}
.fsa{font-size:37.475928px;}
.fsc{font-size:38.721857px;}
.fs10{font-size:42.704891px;}
.fse{font-size:44.422986px;}
.fs11{font-size:45.926470px;}
.fs15{font-size:46.791607px;}
.fsf{font-size:46.880021px;}
.fs8{font-size:47.741223px;}
.fs1{font-size:48.240000px;}
.fs14{font-size:51.300674px;}
.fs13{font-size:51.303141px;}
.fs7{font-size:54.000000px;}
.fs16{font-size:56.378812px;}
.fsd{font-size:59.721258px;}
.fs2{font-size:59.760000px;}
.fs12{font-size:65.392975px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:108.000000px;}
.y15b{bottom:-0.015000px;}
.y0{bottom:0.000000px;}
.y170{bottom:0.165000px;}
.y8b{bottom:3.945000px;}
.y77{bottom:3.960000px;}
.y8e{bottom:4.125000px;}
.y75{bottom:4.140000px;}
.y99{bottom:4.320000px;}
.y172{bottom:4.485000px;}
.y9c{bottom:4.500000px;}
.y15e{bottom:4.680000px;}
.y101{bottom:6.465000px;}
.yfd{bottom:6.645000px;}
.yfb{bottom:6.660000px;}
.y61{bottom:6.840000px;}
.y60{bottom:7.020000px;}
.y6f{bottom:7.185000px;}
.y67{bottom:7.200000px;}
.y1c2{bottom:7.560000px;}
.y143{bottom:11.401662px;}
.y7d{bottom:13.140000px;}
.yc9{bottom:13.320000px;}
.y16d{bottom:14.273152px;}
.y159{bottom:14.316770px;}
.ya8{bottom:14.580000px;}
.y1bf{bottom:15.300000px;}
.y65{bottom:19.260000px;}
.y12f{bottom:19.440000px;}
.y6d{bottom:19.485000px;}
.y7e{bottom:22.140000px;}
.ya7{bottom:24.660000px;}
.y130{bottom:25.020000px;}
.y146{bottom:30.045000px;}
.y66{bottom:31.500000px;}
.y6c{bottom:31.725000px;}
.y1c1{bottom:31.890000px;}
.y2{bottom:39.990000px;}
.y158{bottom:40.206639px;}
.y141{bottom:41.820199px;}
.y16c{bottom:43.898692px;}
.y136{bottom:54.232158px;}
.y1c0{bottom:56.370000px;}
.y14a{bottom:58.381829px;}
.y135{bottom:66.257267px;}
.y4{bottom:67.320000px;}
.y134{bottom:67.914325px;}
.y163{bottom:69.268358px;}
.y149{bottom:73.410441px;}
.y148{bottom:75.480075px;}
.y13a{bottom:77.335981px;}
.y139{bottom:81.079256px;}
.y162{bottom:85.616601px;}
.y14e{bottom:87.256250px;}
.y161{bottom:87.872544px;}
.y14d{bottom:91.934530px;}
.y138{bottom:91.945548px;}
.y2f{bottom:95.760000px;}
.y137{bottom:96.478926px;}
.y167{bottom:100.584974px;}
.y14c{bottom:105.511373px;}
.y166{bottom:105.800300px;}
.y97{bottom:106.920000px;}
.y5d{bottom:108.720000px;}
.y105{bottom:110.880000px;}
.y14b{bottom:111.183424px;}
.y13b{bottom:111.883778px;}
.yef{bottom:115.200000px;}
.y140{bottom:115.760896px;}
.y2e{bottom:115.920000px;}
.y173{bottom:116.820000px;}
.yc7{bottom:120.600000px;}
.y165{bottom:121.581328px;}
.y164{bottom:126.654557px;}
.y5c{bottom:128.736000px;}
.y14f{bottom:130.432317px;}
.y191{bottom:131.796000px;}
.y1b5{bottom:132.156000px;}
.y155{bottom:134.094144px;}
.yee{bottom:135.576000px;}
.y2d{bottom:136.296000px;}
.yc6{bottom:140.796000px;}
.y157{bottom:141.860673px;}
.y96{bottom:144.576000px;}
.y13f{bottom:146.821013px;}
.y168{bottom:147.546393px;}
.y5b{bottom:149.076000px;}
.y144{bottom:149.938251px;}
.y16b{bottom:152.196853px;}
.yed{bottom:155.730000px;}
.y2c{bottom:156.450000px;}
.y1b4{bottom:156.630000px;}
.y171{bottom:160.785000px;}
.yc5{bottom:160.950000px;}
.y150{bottom:161.455225px;}
.y13c{bottom:168.287639px;}
.y5a{bottom:169.230000px;}
.y15a{bottom:176.005315px;}
.yec{bottom:176.070000px;}
.y2b{bottom:176.790000px;}
.y190{bottom:180.750000px;}
.y16f{bottom:180.945000px;}
.y15f{bottom:181.140000px;}
.yc4{bottom:181.290000px;}
.y95{bottom:182.010000px;}
.y104{bottom:187.410000px;}
.y59{bottom:189.570000px;}
.y151{bottom:192.510539px;}
.yeb{bottom:196.230000px;}
.y2a{bottom:196.950000px;}
.y16e{bottom:197.022114px;}
.y13e{bottom:200.237163px;}
.yc3{bottom:201.450000px;}
.y18f{bottom:205.230000px;}
.y1b3{bottom:205.590000px;}
.y142{bottom:207.697808px;}
.y58{bottom:209.730000px;}
.yea{bottom:216.570000px;}
.y94{bottom:216.945000px;}
.yc2{bottom:221.790000px;}
.y103{bottom:222.705000px;}
.y152{bottom:223.533447px;}
.y169{bottom:224.384665px;}
.y13d{bottom:224.734676px;}
.y29{bottom:226.290000px;}
.y57{bottom:229.890000px;}
.y93{bottom:235.125000px;}
.y11d{bottom:235.290000px;}
.ye9{bottom:236.730000px;}
.yc1{bottom:241.950000px;}
.y102{bottom:247.185000px;}
.y56{bottom:250.230000px;}
.y92{bottom:253.485000px;}
.y133{bottom:253.670582px;}
.y18e{bottom:254.190000px;}
.y1b2{bottom:254.550000px;}
.y153{bottom:254.588761px;}
.y11c{bottom:255.450000px;}
.ye8{bottom:256.890000px;}
.yc0{bottom:262.290000px;}
.y156{bottom:264.483254px;}
.y55{bottom:270.390000px;}
.y91{bottom:271.665000px;}
.y11b{bottom:275.790000px;}
.ye7{bottom:277.230000px;}
.y18d{bottom:278.490000px;}
.y1b1{bottom:278.850000px;}
.ybf{bottom:282.450000px;}
.y28{bottom:284.790000px;}
.y154{bottom:285.665678px;}
.y90{bottom:289.845000px;}
.y54{bottom:290.730000px;}
.y11a{bottom:295.950000px;}
.y100{bottom:295.965000px;}
.ye6{bottom:297.390000px;}
.y16a{bottom:301.222937px;}
.ybe{bottom:302.610000px;}
.y18c{bottom:303.150000px;}
.y1b0{bottom:303.330000px;}
.y27{bottom:305.310000px;}
.y147{bottom:307.982297px;}
.y8f{bottom:308.025000px;}
.y53{bottom:310.890000px;}
.y119{bottom:316.290000px;}
.ye5{bottom:317.730000px;}
.yff{bottom:320.445000px;}
.ybd{bottom:322.950000px;}
.y26{bottom:325.650000px;}
.y8d{bottom:326.205000px;}
.y18b{bottom:327.450000px;}
.y1af{bottom:327.810000px;}
.y52{bottom:331.230000px;}
.y118{bottom:336.450000px;}
.ye4{bottom:337.890000px;}
.y160{bottom:340.857534px;}
.ybc{bottom:343.110000px;}
.y8c{bottom:344.565000px;}
.yfe{bottom:344.925000px;}
.y51{bottom:351.390000px;}
.y18a{bottom:352.110000px;}
.y117{bottom:356.790000px;}
.ye3{bottom:358.230000px;}
.y8a{bottom:362.745000px;}
.ybb{bottom:363.450000px;}
.y25{bottom:363.810000px;}
.yfc{bottom:369.405000px;}
.y50{bottom:371.550000px;}
.y189{bottom:376.410000px;}
.y1ae{bottom:376.590000px;}
.y116{bottom:376.950000px;}
.ye2{bottom:378.390000px;}
.y89{bottom:380.955000px;}
.yba{bottom:383.655000px;}
.y24{bottom:384.015000px;}
.y4f{bottom:391.935000px;}
.yfa{bottom:394.635000px;}
.y115{bottom:397.155000px;}
.ye1{bottom:398.595000px;}
.y88{bottom:399.135000px;}
.y188{bottom:400.935000px;}
.y1ad{bottom:401.295000px;}
.yb9{bottom:403.815000px;}
.y23{bottom:404.355000px;}
.y131{bottom:405.435000px;}
.y4e{bottom:412.095000px;}
.y87{bottom:417.315000px;}
.y114{bottom:417.495000px;}
.ye0{bottom:418.935000px;}
.yb8{bottom:424.155000px;}
.y22{bottom:424.515000px;}
.y187{bottom:425.415000px;}
.y1ac{bottom:425.595000px;}
.y12e{bottom:429.915000px;}
.y4d{bottom:432.435000px;}
.yf9{bottom:433.515000px;}
.y86{bottom:435.495000px;}
.ydf{bottom:439.095000px;}
.y21{bottom:444.675000px;}
.y113{bottom:446.655000px;}
.y186{bottom:449.715000px;}
.y1ab{bottom:450.255000px;}
.y4c{bottom:452.595000px;}
.yb7{bottom:453.315000px;}
.y85{bottom:453.855000px;}
.y20{bottom:465.015000px;}
.yde{bottom:468.435000px;}
.yf8{bottom:471.135000px;}
.y84{bottom:472.035000px;}
.y4b{bottom:472.935000px;}
.y185{bottom:474.195000px;}
.y1aa{bottom:474.735000px;}
.y12d{bottom:475.995000px;}
.y112{bottom:484.635000px;}
.y1f{bottom:485.175000px;}
.y83{bottom:490.215000px;}
.yf7{bottom:490.575000px;}
.yb6{bottom:491.655000px;}
.y4a{bottom:493.095000px;}
.y184{bottom:498.855000px;}
.y12c{bottom:500.475000px;}
.y1e{bottom:505.515000px;}
.ydd{bottom:506.775000px;}
.y82{bottom:508.395000px;}
.y49{bottom:513.255000px;}
.y111{bottom:520.095000px;}
.y12b{bottom:520.815000px;}
.y183{bottom:523.155000px;}
.y1a9{bottom:523.515000px;}
.yf6{bottom:524.055000px;}
.y1d{bottom:525.675000px;}
.y81{bottom:526.575000px;}
.yb5{bottom:529.815000px;}
.y48{bottom:533.595000px;}
.y12a{bottom:540.975000px;}
.y80{bottom:544.935000px;}
.y1c{bottom:546.015000px;}
.y182{bottom:547.815000px;}
.y15d{bottom:548.895000px;}
.yb4{bottom:550.155000px;}
.y47{bottom:553.755000px;}
.y129{bottom:561.315000px;}
.y7f{bottom:563.115000px;}
.ydc{bottom:565.095000px;}
.y1b{bottom:566.175000px;}
.y1c4{bottom:567.615000px;}
.y15c{bottom:569.235000px;}
.yb3{bottom:570.315000px;}
.y181{bottom:572.115000px;}
.y1a8{bottom:572.295000px;}
.y46{bottom:574.095000px;}
.y7c{bottom:581.295000px;}
.y128{bottom:581.475000px;}
.ydb{bottom:585.255000px;}
.y1a{bottom:586.335000px;}
.yb2{bottom:590.475000px;}
.y1c3{bottom:593.175000px;}
.y1a7{bottom:596.955000px;}
.y127{bottom:601.815000px;}
.y180{bottom:603.075000px;}
.y45{bottom:603.255000px;}
.yda{bottom:605.595000px;}
.y19{bottom:606.675000px;}
.y1be{bottom:614.235000px;}
.y7b{bottom:617.655000px;}
.yb1{bottom:619.455000px;}
.y1a6{bottom:621.255000px;}
.y126{bottom:621.975000px;}
.yd9{bottom:625.755000px;}
.y18{bottom:627.015000px;}
.y7a{bottom:635.865000px;}
.yb0{bottom:636.405000px;}
.y17f{bottom:640.905000px;}
.y44{bottom:641.625000px;}
.y125{bottom:642.165000px;}
.y1a5{bottom:645.765000px;}
.yd8{bottom:646.125000px;}
.y79{bottom:654.225000px;}
.yaf{bottom:656.745000px;}
.y124{bottom:662.505000px;}
.y17{bottom:665.205000px;}
.yd7{bottom:666.285000px;}
.y1a4{bottom:670.245000px;}
.y17e{bottom:670.965000px;}
.y78{bottom:672.405000px;}
.yae{bottom:676.905000px;}
.y43{bottom:679.785000px;}
.y123{bottom:682.665000px;}
.y16{bottom:685.365000px;}
.yd6{bottom:686.625000px;}
.y17d{bottom:689.145000px;}
.y76{bottom:690.585000px;}
.y1a3{bottom:694.545000px;}
.y1bd{bottom:694.725000px;}
.y42{bottom:699.945000px;}
.y122{bottom:703.005000px;}
.yd5{bottom:706.785000px;}
.y17c{bottom:707.325000px;}
.y74{bottom:709.485000px;}
.yad{bottom:717.405000px;}
.y1bc{bottom:719.025000px;}
.y1a2{bottom:719.205000px;}
.y41{bottom:720.285000px;}
.y15{bottom:723.165000px;}
.y17b{bottom:725.685000px;}
.yd4{bottom:726.945000px;}
.yf5{bottom:732.705000px;}
.yac{bottom:737.565000px;}
.y40{bottom:740.445000px;}
.y14{bottom:741.345000px;}
.y73{bottom:742.245000px;}
.y1a1{bottom:743.505000px;}
.yd3{bottom:747.285000px;}
.yf4{bottom:752.145000px;}
.y121{bottom:752.505000px;}
.y17a{bottom:756.285000px;}
.y3f{bottom:760.785000px;}
.y72{bottom:761.865000px;}
.y13{bottom:763.485000px;}
.yd2{bottom:767.445000px;}
.y1bb{bottom:767.985000px;}
.y1a0{bottom:768.165000px;}
.y12{bottom:777.885000px;}
.yab{bottom:778.065000px;}
.yf3{bottom:778.605000px;}
.y3e{bottom:780.945000px;}
.yd1{bottom:787.785000px;}
.y179{bottom:788.505000px;}
.y120{bottom:790.305000px;}
.y19f{bottom:792.285000px;}
.y71{bottom:796.800000px;}
.yaa{bottom:798.405000px;}
.y11{bottom:799.845000px;}
.yd0{bottom:807.945000px;}
.y11f{bottom:809.745000px;}
.y3d{bottom:810.285000px;}
.y10{bottom:814.245000px;}
.y19e{bottom:816.945000px;}
.ya9{bottom:818.565000px;}
.y145{bottom:818.940000px;}
.y70{bottom:821.985000px;}
.y178{bottom:827.385000px;}
.ycf{bottom:828.285000px;}
.yf{bottom:836.205000px;}
.y11e{bottom:836.565000px;}
.ya6{bottom:838.725000px;}
.y19d{bottom:841.245000px;}
.y177{bottom:847.005000px;}
.y6e{bottom:847.200000px;}
.y3c{bottom:848.445000px;}
.y132{bottom:848.940000px;}
.ye{bottom:850.785000px;}
.y1ba{bottom:865.725000px;}
.y19c{bottom:865.905000px;}
.y176{bottom:866.445000px;}
.y3b{bottom:868.605000px;}
.yd{bottom:868.965000px;}
.yf2{bottom:872.025000px;}
.y6b{bottom:872.385000px;}
.ya5{bottom:879.225000px;}
.y175{bottom:886.830000px;}
.yc{bottom:887.190000px;}
.y3a{bottom:888.990000px;}
.y19b{bottom:890.250000px;}
.yf1{bottom:891.690000px;}
.y1b9{bottom:892.770000px;}
.ya4{bottom:899.610000px;}
.y110{bottom:904.650000px;}
.yb{bottom:909.150000px;}
.y19a{bottom:914.730000px;}
.y1b8{bottom:914.910000px;}
.ya3{bottom:919.770000px;}
.y6a{bottom:922.110000px;}
.yf0{bottom:922.830000px;}
.y10f{bottom:924.990000px;}
.y39{bottom:929.490000px;}
.ya{bottom:933.270000px;}
.y199{bottom:939.030000px;}
.ya2{bottom:940.110000px;}
.y10e{bottom:945.150000px;}
.y69{bottom:947.310000px;}
.yce{bottom:949.650000px;}
.y9{bottom:953.430000px;}
.y38{bottom:958.650000px;}
.ya1{bottom:960.270000px;}
.y198{bottom:963.690000px;}
.y10d{bottom:965.490000px;}
.y68{bottom:972.510000px;}
.ycd{bottom:978.810000px;}
.ya0{bottom:980.430000px;}
.y10c{bottom:985.650000px;}
.y197{bottom:987.990000px;}
.y8{bottom:995.190000px;}
.y37{bottom:996.990000px;}
.y64{bottom:997.710000px;}
.y9f{bottom:1000.770000px;}
.y10b{bottom:1005.810000px;}
.y196{bottom:1012.650000px;}
.ycc{bottom:1017.150000px;}
.y9e{bottom:1020.930000px;}
.y10a{bottom:1026.150000px;}
.y7{bottom:1031.730000px;}
.y36{bottom:1035.150000px;}
.y195{bottom:1036.950000px;}
.ycb{bottom:1037.310000px;}
.y1b7{bottom:1039.470000px;}
.y9d{bottom:1041.270000px;}
.y109{bottom:1046.310000px;}
.y63{bottom:1047.390000px;}
.y35{bottom:1055.310000px;}
.yca{bottom:1057.650000px;}
.y9b{bottom:1061.430000px;}
.y1b6{bottom:1061.610000px;}
.y108{bottom:1066.650000px;}
.y6{bottom:1068.090000px;}
.y62{bottom:1072.590000px;}
.yc8{bottom:1073.490000px;}
.y34{bottom:1075.650000px;}
.y9a{bottom:1081.770000px;}
.y194{bottom:1085.730000px;}
.y107{bottom:1086.810000px;}
.y33{bottom:1095.810000px;}
.y5f{bottom:1097.790000px;}
.y5{bottom:1100.670000px;}
.y98{bottom:1101.930000px;}
.y1{bottom:1103.190000px;}
.y106{bottom:1107.150000px;}
.y193{bottom:1110.390000px;}
.y32{bottom:1116.150000px;}
.y3{bottom:1134.690000px;}
.y192{bottom:1134.870000px;}
.y31{bottom:1136.310000px;}
.y174{bottom:1136.490000px;}
.y5e{bottom:1136.700000px;}
.y30{bottom:1173.960000px;}
.h17{height:18.165000px;}
.h14{height:18.180000px;}
.h19{height:18.201000px;}
.h15{height:18.210000px;}
.h18{height:18.345000px;}
.h13{height:18.360000px;}
.h1a{height:20.145000px;}
.h1e{height:20.160000px;}
.h1b{height:20.325000px;}
.h1f{height:20.340000px;}
.h1c{height:20.362500px;}
.he{height:24.285000px;}
.h10{height:24.465000px;}
.h12{height:24.480000px;}
.h22{height:24.501000px;}
.h27{height:25.263676px;}
.h2f{height:30.844475px;}
.h9{height:35.320430px;}
.h29{height:35.605206px;}
.h38{height:35.621615px;}
.h16{height:36.345000px;}
.h26{height:37.948813px;}
.h20{height:38.145000px;}
.h28{height:39.086221px;}
.h2a{height:40.385687px;}
.h1d{height:40.500000px;}
.h6{height:43.798711px;}
.h32{height:44.539867px;}
.hd{height:45.460547px;}
.h23{height:46.065000px;}
.h2e{height:46.331786px;}
.h33{height:47.899873px;}
.hf{height:48.765000px;}
.h3b{height:48.802184px;}
.h30{height:48.894397px;}
.h11{height:48.982500px;}
.h25{height:49.792604px;}
.ha{height:50.440430px;}
.hb{height:50.888672px;}
.h31{height:51.905952px;}
.h4{height:52.769531px;}
.h41{height:52.998047px;}
.h39{height:53.504999px;}
.h37{height:53.507573px;}
.hc{height:55.820742px;}
.h8{height:56.316797px;}
.h3f{height:56.320312px;}
.h3e{height:58.651172px;}
.h3c{height:58.801340px;}
.h2d{height:62.287406px;}
.h3{height:67.253906px;}
.h21{height:67.851562px;}
.h36{height:68.202829px;}
.h3a{height:70.415761px;}
.h5{height:70.664062px;}
.h40{height:73.290000px;}
.h2{height:82.650000px;}
.h7{height:101.777344px;}
.h34{height:249.690000px;}
.h24{height:273.591542px;}
.h2c{height:333.150603px;}
.h2b{height:333.240000px;}
.h3d{height:367.935000px;}
.h35{height:367.949983px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wf{width:48.405000px;}
.w2{width:65.145000px;}
.w5{width:70.581000px;}
.w8{width:85.845000px;}
.w6{width:85.860000px;}
.wb{width:86.220000px;}
.wd{width:86.241000px;}
.w7{width:92.736000px;}
.w11{width:97.020000px;}
.w9{width:105.141000px;}
.w12{width:105.156000px;}
.w13{width:111.765000px;}
.wa{width:119.901000px;}
.wc{width:124.956000px;}
.w1f{width:127.791000px;}
.w14{width:133.941000px;}
.w10{width:145.642500px;}
.w19{width:226.115822px;}
.w1a{width:242.490000px;}
.w15{width:245.721000px;}
.w17{width:266.781000px;}
.w18{width:266.835000px;}
.w1b{width:267.830528px;}
.w1c{width:284.100000px;}
.w3{width:285.861000px;}
.w16{width:287.895000px;}
.w1e{width:321.907939px;}
.w4{width:377.535000px;}
.w1d{width:526.410000px;}
.w20{width:535.590000px;}
.we{width:616.410000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7c{left:1.785000px;}
.x18{left:7.371000px;}
.x10{left:8.640000px;}
.x39{left:10.065000px;}
.x2b{left:11.505000px;}
.x3a{left:12.810000px;}
.x2a{left:14.760000px;}
.x3c{left:16.410000px;}
.x28{left:17.625000px;}
.x2f{left:19.425000px;}
.x26{left:20.505000px;}
.x2d{left:21.600000px;}
.x27{left:23.385000px;}
.x2e{left:24.465000px;}
.x2c{left:26.265000px;}
.x29{left:27.705000px;}
.x33{left:29.505000px;}
.x19{left:31.311000px;}
.x5b{left:32.905454px;}
.x70{left:34.194424px;}
.x1f{left:35.265000px;}
.x36{left:36.930000px;}
.x21{left:39.600000px;}
.x23{left:42.480000px;}
.x45{left:45.705000px;}
.x3b{left:48.090000px;}
.xf{left:50.925000px;}
.x9{left:52.545000px;}
.x5d{left:58.223341px;}
.x5e{left:59.390847px;}
.x38{left:62.490000px;}
.x2{left:65.160000px;}
.x71{left:68.163351px;}
.x69{left:69.462099px;}
.x12{left:71.265000px;}
.x6a{left:72.589069px;}
.x11{left:77.070000px;}
.x1b{left:79.365000px;}
.xb{left:82.650000px;}
.x16{left:87.105000px;}
.x1c{left:93.225000px;}
.xe{left:96.285000px;}
.x50{left:98.973912px;}
.x14{left:102.225000px;}
.x52{left:106.099189px;}
.x51{left:110.551471px;}
.x54{left:111.916404px;}
.x4{left:114.876000px;}
.x7a{left:120.945000px;}
.x53{left:121.999036px;}
.x5{left:123.336000px;}
.xc{left:124.545000px;}
.x1a{left:127.470000px;}
.x62{left:131.814557px;}
.x4d{left:133.905000px;}
.x6f{left:136.296167px;}
.x6{left:138.276000px;}
.x1d{left:142.050000px;}
.x17{left:143.130000px;}
.x63{left:145.372791px;}
.x7{left:146.736000px;}
.x64{left:148.119128px;}
.x44{left:149.805000px;}
.x56{left:159.640321px;}
.x15{left:164.550000px;}
.x13{left:166.710000px;}
.x55{left:169.722954px;}
.xd{left:173.370000px;}
.x58{left:175.556418px;}
.x5f{left:183.285000px;}
.x57{left:185.622801px;}
.x5a{left:187.954562px;}
.x66{left:189.959819px;}
.x4f{left:191.415000px;}
.x74{left:196.792638px;}
.x59{left:201.538898px;}
.x5c{left:204.016902px;}
.x65{left:207.170199px;}
.x8{left:208.650000px;}
.x73{left:212.436455px;}
.x43{left:214.950000px;}
.x72{left:217.791996px;}
.x67{left:220.728433px;}
.x3d{left:224.130000px;}
.x1e{left:226.485000px;}
.x3{left:229.530000px;}
.x75{left:233.024752px;}
.x60{left:234.210000px;}
.x32{left:237.825000px;}
.x68{left:239.557708px;}
.x3e{left:241.590000px;}
.x31{left:248.610000px;}
.x7b{left:250.785000px;}
.x79{left:253.650000px;}
.x4a{left:254.730000px;}
.x77{left:264.194939px;}
.x6c{left:276.015000px;}
.x6e{left:285.540000px;}
.x76{left:290.267967px;}
.x46{left:295.455000px;}
.x20{left:297.075000px;}
.x34{left:357.735000px;}
.x4c{left:368.715000px;}
.x22{left:382.935000px;}
.x4e{left:389.775000px;}
.x47{left:392.475000px;}
.xa{left:400.755000px;}
.x78{left:424.140000px;}
.x6b{left:425.775000px;}
.x61{left:433.890000px;}
.x35{left:443.955000px;}
.x30{left:446.505000px;}
.x24{left:475.680000px;}
.x48{left:497.640000px;}
.x6d{left:508.425000px;}
.x42{left:544.425000px;}
.x25{left:561.540000px;}
.x37{left:568.920000px;}
.x40{left:602.925000px;}
.x49{left:609.420000px;}
.x4b{left:691.890000px;}
.x41{left:705.390000px;}
.x1{left:712.950000px;}
.x3f{left:739.590000px;}
@media print{
.v5{vertical-align:-50.387313pt;}
.v3{vertical-align:-41.409674pt;}
.v6{vertical-align:-33.183278pt;}
.v9{vertical-align:-18.560000pt;}
.v2{vertical-align:-13.440000pt;}
.v4{vertical-align:-2.143017pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:2.676938pt;}
.v1{vertical-align:13.440000pt;}
.v8{vertical-align:15.031788pt;}
.va{vertical-align:18.560000pt;}
.ls19{letter-spacing:-15.040000pt;}
.ls31{letter-spacing:-1.565811pt;}
.ls2e{letter-spacing:-1.428724pt;}
.ls2f{letter-spacing:-1.344230pt;}
.ls30{letter-spacing:-1.302755pt;}
.ls2c{letter-spacing:-1.142124pt;}
.ls2d{letter-spacing:-0.997823pt;}
.ls15{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls37{letter-spacing:-0.208000pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls14{letter-spacing:-0.152533pt;}
.lsa{letter-spacing:-0.084267pt;}
.ls1d{letter-spacing:-0.035840pt;}
.ls34{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.016000pt;}
.ls3{letter-spacing:0.017280pt;}
.ls1{letter-spacing:0.032000pt;}
.ls16{letter-spacing:0.047360pt;}
.ls4{letter-spacing:0.070827pt;}
.ls1e{letter-spacing:0.094933pt;}
.ls13{letter-spacing:0.098133pt;}
.ls2{letter-spacing:0.106667pt;}
.ls2b{letter-spacing:0.112000pt;}
.ls38{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.160000pt;}
.ls18{letter-spacing:0.183467pt;}
.lsc{letter-spacing:0.230933pt;}
.ls5{letter-spacing:0.231040pt;}
.ls12{letter-spacing:0.265600pt;}
.ls1c{letter-spacing:0.272533pt;}
.ls17{letter-spacing:0.281600pt;}
.lsf{letter-spacing:0.288000pt;}
.ls2a{letter-spacing:0.290347pt;}
.lsd{letter-spacing:0.298667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls27{letter-spacing:0.426667pt;}
.ls21{letter-spacing:0.466105pt;}
.ls25{letter-spacing:0.469315pt;}
.ls20{letter-spacing:0.475198pt;}
.lsb{letter-spacing:0.554667pt;}
.ls22{letter-spacing:0.557038pt;}
.ls26{letter-spacing:0.583068pt;}
.ls1a{letter-spacing:0.640000pt;}
.ls1b{letter-spacing:0.656000pt;}
.ls24{letter-spacing:0.685445pt;}
.ls6{letter-spacing:0.800000pt;}
.ls29{letter-spacing:0.925409pt;}
.ls36{letter-spacing:3.360000pt;}
.ls33{letter-spacing:4.640000pt;}
.ls1f{letter-spacing:7.716158pt;}
.ls23{letter-spacing:9.561425pt;}
.ls28{letter-spacing:10.881896pt;}
.ls35{letter-spacing:39.776000pt;}
.ls32{letter-spacing:64.096000pt;}
.ws1a{word-spacing:-53.120000pt;}
.ws3{word-spacing:-24.000000pt;}
.ws4{word-spacing:-23.680000pt;}
.ws2{word-spacing:-14.720000pt;}
.wsa{word-spacing:-13.834667pt;}
.wsd{word-spacing:-13.600000pt;}
.ws16{word-spacing:-13.561600pt;}
.ws1b{word-spacing:-13.552533pt;}
.wsc{word-spacing:-13.510933pt;}
.ws17{word-spacing:-13.463467pt;}
.ws28{word-spacing:-13.413557pt;}
.ws14{word-spacing:-13.378133pt;}
.ws1d{word-spacing:-13.374933pt;}
.ws19{word-spacing:-13.297280pt;}
.ws8{word-spacing:-13.280000pt;}
.ws1c{word-spacing:-13.244160pt;}
.ws9{word-spacing:-13.195733pt;}
.ws15{word-spacing:-13.127467pt;}
.ws2b{word-spacing:-12.677576pt;}
.ws2d{word-spacing:-12.676966pt;}
.ws12{word-spacing:-12.320000pt;}
.ws11{word-spacing:-12.288000pt;}
.ws30{word-spacing:-12.160000pt;}
.ws31{word-spacing:-12.112000pt;}
.wsf{word-spacing:-12.032000pt;}
.ws10{word-spacing:-12.016000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws2f{word-spacing:-11.984000pt;}
.wse{word-spacing:-11.808000pt;}
.ws32{word-spacing:-11.792000pt;}
.ws13{word-spacing:-11.744000pt;}
.ws33{word-spacing:-11.680000pt;}
.ws2a{word-spacing:-11.584574pt;}
.ws2e{word-spacing:-11.040000pt;}
.ws27{word-spacing:-10.977413pt;}
.ws0{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.400000pt;}
.ws24{word-spacing:-9.568601pt;}
.ws23{word-spacing:-9.260718pt;}
.ws1f{word-spacing:-8.991231pt;}
.ws5{word-spacing:-8.000000pt;}
.ws6{word-spacing:-7.360000pt;}
.wsb{word-spacing:0.000000pt;}
.ws18{word-spacing:16.771840pt;}
.ws21{word-spacing:52.724625pt;}
.ws20{word-spacing:52.766328pt;}
.ws1e{word-spacing:52.787179pt;}
.ws25{word-spacing:64.208677pt;}
.ws26{word-spacing:64.285050pt;}
.ws29{word-spacing:227.514476pt;}
.ws22{word-spacing:228.517571pt;}
.ws2c{word-spacing:325.603069pt;}
._2{margin-left:-47.722667pt;}
._1f{margin-left:-18.285440pt;}
._d{margin-left:-14.895573pt;}
._1a{margin-left:-12.963200pt;}
._20{margin-left:-8.572053pt;}
._17{margin-left:-6.693120pt;}
._24{margin-left:-5.125333pt;}
._6{margin-left:-2.989867pt;}
._0{margin-left:-1.235413pt;}
._3{width:1.009280pt;}
._7{width:2.013013pt;}
._12{width:3.041493pt;}
._e{width:4.355840pt;}
._f{width:5.258880pt;}
._10{width:6.161920pt;}
._11{width:7.064960pt;}
._a{width:8.560640pt;}
._9{width:9.688747pt;}
._5{width:10.761600pt;}
._b{width:11.845120pt;}
._29{width:12.976000pt;}
._19{width:14.236160pt;}
._18{width:15.192320pt;}
._1c{width:16.344107pt;}
._21{width:17.476480pt;}
._1b{width:18.842667pt;}
._8{width:19.808000pt;}
._c{width:21.388587pt;}
._1e{width:22.288640pt;}
._16{width:23.425920pt;}
._1d{width:24.807040pt;}
._4{width:26.400000pt;}
._28{width:31.221547pt;}
._22{width:35.184000pt;}
._15{width:47.237333pt;}
._14{width:48.126720pt;}
._26{width:57.792000pt;}
._25{width:58.707413pt;}
._2a{width:75.744000pt;}
._27{width:96.976000pt;}
._1{width:1059.400533pt;}
._23{width:1930.321707pt;}
._13{width:1951.441707pt;}
.fs6{font-size:29.440000pt;}
.fsb{font-size:30.345178pt;}
.fs5{font-size:32.000000pt;}
.fs9{font-size:32.342559pt;}
.fsa{font-size:33.311936pt;}
.fsc{font-size:34.419429pt;}
.fs10{font-size:37.959903pt;}
.fse{font-size:39.487098pt;}
.fs11{font-size:40.823529pt;}
.fs15{font-size:41.592540pt;}
.fsf{font-size:41.671130pt;}
.fs8{font-size:42.436643pt;}
.fs1{font-size:42.880000pt;}
.fs14{font-size:45.600599pt;}
.fs13{font-size:45.602792pt;}
.fs7{font-size:48.000000pt;}
.fs16{font-size:50.114500pt;}
.fsd{font-size:53.085563pt;}
.fs2{font-size:53.120000pt;}
.fs12{font-size:58.127089pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:96.000000pt;}
.y15b{bottom:-0.013333pt;}
.y0{bottom:0.000000pt;}
.y170{bottom:0.146667pt;}
.y8b{bottom:3.506667pt;}
.y77{bottom:3.520000pt;}
.y8e{bottom:3.666667pt;}
.y75{bottom:3.680000pt;}
.y99{bottom:3.840000pt;}
.y172{bottom:3.986667pt;}
.y9c{bottom:4.000000pt;}
.y15e{bottom:4.160000pt;}
.y101{bottom:5.746667pt;}
.yfd{bottom:5.906667pt;}
.yfb{bottom:5.920000pt;}
.y61{bottom:6.080000pt;}
.y60{bottom:6.240000pt;}
.y6f{bottom:6.386667pt;}
.y67{bottom:6.400000pt;}
.y1c2{bottom:6.720000pt;}
.y143{bottom:10.134811pt;}
.y7d{bottom:11.680000pt;}
.yc9{bottom:11.840000pt;}
.y16d{bottom:12.687247pt;}
.y159{bottom:12.726017pt;}
.ya8{bottom:12.960000pt;}
.y1bf{bottom:13.600000pt;}
.y65{bottom:17.120000pt;}
.y12f{bottom:17.280000pt;}
.y6d{bottom:17.320000pt;}
.y7e{bottom:19.680000pt;}
.ya7{bottom:21.920000pt;}
.y130{bottom:22.240000pt;}
.y146{bottom:26.706667pt;}
.y66{bottom:28.000000pt;}
.y6c{bottom:28.200000pt;}
.y1c1{bottom:28.346667pt;}
.y2{bottom:35.546667pt;}
.y158{bottom:35.739235pt;}
.y141{bottom:37.173511pt;}
.y16c{bottom:39.021060pt;}
.y136{bottom:48.206362pt;}
.y1c0{bottom:50.106667pt;}
.y14a{bottom:51.894959pt;}
.y135{bottom:58.895349pt;}
.y4{bottom:59.840000pt;}
.y134{bottom:60.368289pt;}
.y163{bottom:61.571873pt;}
.y149{bottom:65.253725pt;}
.y148{bottom:67.093400pt;}
.y13a{bottom:68.743094pt;}
.y139{bottom:72.070450pt;}
.y162{bottom:76.103646pt;}
.y14e{bottom:77.561111pt;}
.y161{bottom:78.108928pt;}
.y14d{bottom:81.719582pt;}
.y138{bottom:81.729376pt;}
.y2f{bottom:85.120000pt;}
.y137{bottom:85.759046pt;}
.y167{bottom:89.408866pt;}
.y14c{bottom:93.787887pt;}
.y166{bottom:94.044711pt;}
.y97{bottom:95.040000pt;}
.y5d{bottom:96.640000pt;}
.y105{bottom:98.560000pt;}
.y14b{bottom:98.829710pt;}
.y13b{bottom:99.452247pt;}
.yef{bottom:102.400000pt;}
.y140{bottom:102.898574pt;}
.y2e{bottom:103.040000pt;}
.y173{bottom:103.840000pt;}
.yc7{bottom:107.200000pt;}
.y165{bottom:108.072292pt;}
.y164{bottom:112.581828pt;}
.y5c{bottom:114.432000pt;}
.y14f{bottom:115.939838pt;}
.y191{bottom:117.152000pt;}
.y1b5{bottom:117.472000pt;}
.y155{bottom:119.194795pt;}
.yee{bottom:120.512000pt;}
.y2d{bottom:121.152000pt;}
.yc6{bottom:125.152000pt;}
.y157{bottom:126.098376pt;}
.y96{bottom:128.512000pt;}
.y13f{bottom:130.507568pt;}
.y168{bottom:131.152349pt;}
.y5b{bottom:132.512000pt;}
.y144{bottom:133.278445pt;}
.y16b{bottom:135.286091pt;}
.yed{bottom:138.426667pt;}
.y2c{bottom:139.066667pt;}
.y1b4{bottom:139.226667pt;}
.y171{bottom:142.920000pt;}
.yc5{bottom:143.066667pt;}
.y150{bottom:143.515756pt;}
.y13c{bottom:149.589013pt;}
.y5a{bottom:150.426667pt;}
.y15a{bottom:156.449169pt;}
.yec{bottom:156.506667pt;}
.y2b{bottom:157.146667pt;}
.y190{bottom:160.666667pt;}
.y16f{bottom:160.840000pt;}
.y15f{bottom:161.013333pt;}
.yc4{bottom:161.146667pt;}
.y95{bottom:161.786667pt;}
.y104{bottom:166.586667pt;}
.y59{bottom:168.506667pt;}
.y151{bottom:171.120479pt;}
.yeb{bottom:174.426667pt;}
.y2a{bottom:175.066667pt;}
.y16e{bottom:175.130768pt;}
.y13e{bottom:177.988589pt;}
.yc3{bottom:179.066667pt;}
.y18f{bottom:182.426667pt;}
.y1b3{bottom:182.746667pt;}
.y142{bottom:184.620274pt;}
.y58{bottom:186.426667pt;}
.yea{bottom:192.506667pt;}
.y94{bottom:192.840000pt;}
.yc2{bottom:197.146667pt;}
.y103{bottom:197.960000pt;}
.y152{bottom:198.696397pt;}
.y169{bottom:199.453036pt;}
.y13d{bottom:199.764156pt;}
.y29{bottom:201.146667pt;}
.y57{bottom:204.346667pt;}
.y93{bottom:209.000000pt;}
.y11d{bottom:209.146667pt;}
.ye9{bottom:210.426667pt;}
.yc1{bottom:215.066667pt;}
.y102{bottom:219.720000pt;}
.y56{bottom:222.426667pt;}
.y92{bottom:225.320000pt;}
.y133{bottom:225.484962pt;}
.y18e{bottom:225.946667pt;}
.y1b2{bottom:226.266667pt;}
.y153{bottom:226.301121pt;}
.y11c{bottom:227.066667pt;}
.ye8{bottom:228.346667pt;}
.yc0{bottom:233.146667pt;}
.y156{bottom:235.096226pt;}
.y55{bottom:240.346667pt;}
.y91{bottom:241.480000pt;}
.y11b{bottom:245.146667pt;}
.ye7{bottom:246.426667pt;}
.y18d{bottom:247.546667pt;}
.y1b1{bottom:247.866667pt;}
.ybf{bottom:251.066667pt;}
.y28{bottom:253.146667pt;}
.y154{bottom:253.925047pt;}
.y90{bottom:257.640000pt;}
.y54{bottom:258.426667pt;}
.y11a{bottom:263.066667pt;}
.y100{bottom:263.080000pt;}
.ye6{bottom:264.346667pt;}
.y16a{bottom:267.753722pt;}
.ybe{bottom:268.986667pt;}
.y18c{bottom:269.466667pt;}
.y1b0{bottom:269.626667pt;}
.y27{bottom:271.386667pt;}
.y147{bottom:273.762041pt;}
.y8f{bottom:273.800000pt;}
.y53{bottom:276.346667pt;}
.y119{bottom:281.146667pt;}
.ye5{bottom:282.426667pt;}
.yff{bottom:284.840000pt;}
.ybd{bottom:287.066667pt;}
.y26{bottom:289.466667pt;}
.y8d{bottom:289.960000pt;}
.y18b{bottom:291.066667pt;}
.y1af{bottom:291.386667pt;}
.y52{bottom:294.426667pt;}
.y118{bottom:299.066667pt;}
.ye4{bottom:300.346667pt;}
.y160{bottom:302.984475pt;}
.ybc{bottom:304.986667pt;}
.y8c{bottom:306.280000pt;}
.yfe{bottom:306.600000pt;}
.y51{bottom:312.346667pt;}
.y18a{bottom:312.986667pt;}
.y117{bottom:317.146667pt;}
.ye3{bottom:318.426667pt;}
.y8a{bottom:322.440000pt;}
.ybb{bottom:323.066667pt;}
.y25{bottom:323.386667pt;}
.yfc{bottom:328.360000pt;}
.y50{bottom:330.266667pt;}
.y189{bottom:334.586667pt;}
.y1ae{bottom:334.746667pt;}
.y116{bottom:335.066667pt;}
.ye2{bottom:336.346667pt;}
.y89{bottom:338.626667pt;}
.yba{bottom:341.026667pt;}
.y24{bottom:341.346667pt;}
.y4f{bottom:348.386667pt;}
.yfa{bottom:350.786667pt;}
.y115{bottom:353.026667pt;}
.ye1{bottom:354.306667pt;}
.y88{bottom:354.786667pt;}
.y188{bottom:356.386667pt;}
.y1ad{bottom:356.706667pt;}
.yb9{bottom:358.946667pt;}
.y23{bottom:359.426667pt;}
.y131{bottom:360.386667pt;}
.y4e{bottom:366.306667pt;}
.y87{bottom:370.946667pt;}
.y114{bottom:371.106667pt;}
.ye0{bottom:372.386667pt;}
.yb8{bottom:377.026667pt;}
.y22{bottom:377.346667pt;}
.y187{bottom:378.146667pt;}
.y1ac{bottom:378.306667pt;}
.y12e{bottom:382.146667pt;}
.y4d{bottom:384.386667pt;}
.yf9{bottom:385.346667pt;}
.y86{bottom:387.106667pt;}
.ydf{bottom:390.306667pt;}
.y21{bottom:395.266667pt;}
.y113{bottom:397.026667pt;}
.y186{bottom:399.746667pt;}
.y1ab{bottom:400.226667pt;}
.y4c{bottom:402.306667pt;}
.yb7{bottom:402.946667pt;}
.y85{bottom:403.426667pt;}
.y20{bottom:413.346667pt;}
.yde{bottom:416.386667pt;}
.yf8{bottom:418.786667pt;}
.y84{bottom:419.586667pt;}
.y4b{bottom:420.386667pt;}
.y185{bottom:421.506667pt;}
.y1aa{bottom:421.986667pt;}
.y12d{bottom:423.106667pt;}
.y112{bottom:430.786667pt;}
.y1f{bottom:431.266667pt;}
.y83{bottom:435.746667pt;}
.yf7{bottom:436.066667pt;}
.yb6{bottom:437.026667pt;}
.y4a{bottom:438.306667pt;}
.y184{bottom:443.426667pt;}
.y12c{bottom:444.866667pt;}
.y1e{bottom:449.346667pt;}
.ydd{bottom:450.466667pt;}
.y82{bottom:451.906667pt;}
.y49{bottom:456.226667pt;}
.y111{bottom:462.306667pt;}
.y12b{bottom:462.946667pt;}
.y183{bottom:465.026667pt;}
.y1a9{bottom:465.346667pt;}
.yf6{bottom:465.826667pt;}
.y1d{bottom:467.266667pt;}
.y81{bottom:468.066667pt;}
.yb5{bottom:470.946667pt;}
.y48{bottom:474.306667pt;}
.y12a{bottom:480.866667pt;}
.y80{bottom:484.386667pt;}
.y1c{bottom:485.346667pt;}
.y182{bottom:486.946667pt;}
.y15d{bottom:487.906667pt;}
.yb4{bottom:489.026667pt;}
.y47{bottom:492.226667pt;}
.y129{bottom:498.946667pt;}
.y7f{bottom:500.546667pt;}
.ydc{bottom:502.306667pt;}
.y1b{bottom:503.266667pt;}
.y1c4{bottom:504.546667pt;}
.y15c{bottom:505.986667pt;}
.yb3{bottom:506.946667pt;}
.y181{bottom:508.546667pt;}
.y1a8{bottom:508.706667pt;}
.y46{bottom:510.306667pt;}
.y7c{bottom:516.706667pt;}
.y128{bottom:516.866667pt;}
.ydb{bottom:520.226667pt;}
.y1a{bottom:521.186667pt;}
.yb2{bottom:524.866667pt;}
.y1c3{bottom:527.266667pt;}
.y1a7{bottom:530.626667pt;}
.y127{bottom:534.946667pt;}
.y180{bottom:536.066667pt;}
.y45{bottom:536.226667pt;}
.yda{bottom:538.306667pt;}
.y19{bottom:539.266667pt;}
.y1be{bottom:545.986667pt;}
.y7b{bottom:549.026667pt;}
.yb1{bottom:550.626667pt;}
.y1a6{bottom:552.226667pt;}
.y126{bottom:552.866667pt;}
.yd9{bottom:556.226667pt;}
.y18{bottom:557.346667pt;}
.y7a{bottom:565.213333pt;}
.yb0{bottom:565.693333pt;}
.y17f{bottom:569.693333pt;}
.y44{bottom:570.333333pt;}
.y125{bottom:570.813333pt;}
.y1a5{bottom:574.013333pt;}
.yd8{bottom:574.333333pt;}
.y79{bottom:581.533333pt;}
.yaf{bottom:583.773333pt;}
.y124{bottom:588.893333pt;}
.y17{bottom:591.293333pt;}
.yd7{bottom:592.253333pt;}
.y1a4{bottom:595.773333pt;}
.y17e{bottom:596.413333pt;}
.y78{bottom:597.693333pt;}
.yae{bottom:601.693333pt;}
.y43{bottom:604.253333pt;}
.y123{bottom:606.813333pt;}
.y16{bottom:609.213333pt;}
.yd6{bottom:610.333333pt;}
.y17d{bottom:612.573333pt;}
.y76{bottom:613.853333pt;}
.y1a3{bottom:617.373333pt;}
.y1bd{bottom:617.533333pt;}
.y42{bottom:622.173333pt;}
.y122{bottom:624.893333pt;}
.yd5{bottom:628.253333pt;}
.y17c{bottom:628.733333pt;}
.y74{bottom:630.653333pt;}
.yad{bottom:637.693333pt;}
.y1bc{bottom:639.133333pt;}
.y1a2{bottom:639.293333pt;}
.y41{bottom:640.253333pt;}
.y15{bottom:642.813333pt;}
.y17b{bottom:645.053333pt;}
.yd4{bottom:646.173333pt;}
.yf5{bottom:651.293333pt;}
.yac{bottom:655.613333pt;}
.y40{bottom:658.173333pt;}
.y14{bottom:658.973333pt;}
.y73{bottom:659.773333pt;}
.y1a1{bottom:660.893333pt;}
.yd3{bottom:664.253333pt;}
.yf4{bottom:668.573333pt;}
.y121{bottom:668.893333pt;}
.y17a{bottom:672.253333pt;}
.y3f{bottom:676.253333pt;}
.y72{bottom:677.213333pt;}
.y13{bottom:678.653333pt;}
.yd2{bottom:682.173333pt;}
.y1bb{bottom:682.653333pt;}
.y1a0{bottom:682.813333pt;}
.y12{bottom:691.453333pt;}
.yab{bottom:691.613333pt;}
.yf3{bottom:692.093333pt;}
.y3e{bottom:694.173333pt;}
.yd1{bottom:700.253333pt;}
.y179{bottom:700.893333pt;}
.y120{bottom:702.493333pt;}
.y19f{bottom:704.253333pt;}
.y71{bottom:708.266667pt;}
.yaa{bottom:709.693333pt;}
.y11{bottom:710.973333pt;}
.yd0{bottom:718.173333pt;}
.y11f{bottom:719.773333pt;}
.y3d{bottom:720.253333pt;}
.y10{bottom:723.773333pt;}
.y19e{bottom:726.173333pt;}
.ya9{bottom:727.613333pt;}
.y145{bottom:727.946667pt;}
.y70{bottom:730.653333pt;}
.y178{bottom:735.453333pt;}
.ycf{bottom:736.253333pt;}
.yf{bottom:743.293333pt;}
.y11e{bottom:743.613333pt;}
.ya6{bottom:745.533333pt;}
.y19d{bottom:747.773333pt;}
.y177{bottom:752.893333pt;}
.y6e{bottom:753.066667pt;}
.y3c{bottom:754.173333pt;}
.y132{bottom:754.613333pt;}
.ye{bottom:756.253333pt;}
.y1ba{bottom:769.533333pt;}
.y19c{bottom:769.693333pt;}
.y176{bottom:770.173333pt;}
.y3b{bottom:772.093333pt;}
.yd{bottom:772.413333pt;}
.yf2{bottom:775.133333pt;}
.y6b{bottom:775.453333pt;}
.ya5{bottom:781.533333pt;}
.y175{bottom:788.293333pt;}
.yc{bottom:788.613333pt;}
.y3a{bottom:790.213333pt;}
.y19b{bottom:791.333333pt;}
.yf1{bottom:792.613333pt;}
.y1b9{bottom:793.573333pt;}
.ya4{bottom:799.653333pt;}
.y110{bottom:804.133333pt;}
.yb{bottom:808.133333pt;}
.y19a{bottom:813.093333pt;}
.y1b8{bottom:813.253333pt;}
.ya3{bottom:817.573333pt;}
.y6a{bottom:819.653333pt;}
.yf0{bottom:820.293333pt;}
.y10f{bottom:822.213333pt;}
.y39{bottom:826.213333pt;}
.ya{bottom:829.573333pt;}
.y199{bottom:834.693333pt;}
.ya2{bottom:835.653333pt;}
.y10e{bottom:840.133333pt;}
.y69{bottom:842.053333pt;}
.yce{bottom:844.133333pt;}
.y9{bottom:847.493333pt;}
.y38{bottom:852.133333pt;}
.ya1{bottom:853.573333pt;}
.y198{bottom:856.613333pt;}
.y10d{bottom:858.213333pt;}
.y68{bottom:864.453333pt;}
.ycd{bottom:870.053333pt;}
.ya0{bottom:871.493333pt;}
.y10c{bottom:876.133333pt;}
.y197{bottom:878.213333pt;}
.y8{bottom:884.613333pt;}
.y37{bottom:886.213333pt;}
.y64{bottom:886.853333pt;}
.y9f{bottom:889.573333pt;}
.y10b{bottom:894.053333pt;}
.y196{bottom:900.133333pt;}
.ycc{bottom:904.133333pt;}
.y9e{bottom:907.493333pt;}
.y10a{bottom:912.133333pt;}
.y7{bottom:917.093333pt;}
.y36{bottom:920.133333pt;}
.y195{bottom:921.733333pt;}
.ycb{bottom:922.053333pt;}
.y1b7{bottom:923.973333pt;}
.y9d{bottom:925.573333pt;}
.y109{bottom:930.053333pt;}
.y63{bottom:931.013333pt;}
.y35{bottom:938.053333pt;}
.yca{bottom:940.133333pt;}
.y9b{bottom:943.493333pt;}
.y1b6{bottom:943.653333pt;}
.y108{bottom:948.133333pt;}
.y6{bottom:949.413333pt;}
.y62{bottom:953.413333pt;}
.yc8{bottom:954.213333pt;}
.y34{bottom:956.133333pt;}
.y9a{bottom:961.573333pt;}
.y194{bottom:965.093333pt;}
.y107{bottom:966.053333pt;}
.y33{bottom:974.053333pt;}
.y5f{bottom:975.813333pt;}
.y5{bottom:978.373333pt;}
.y98{bottom:979.493333pt;}
.y1{bottom:980.613333pt;}
.y106{bottom:984.133333pt;}
.y193{bottom:987.013333pt;}
.y32{bottom:992.133333pt;}
.y3{bottom:1008.613333pt;}
.y192{bottom:1008.773333pt;}
.y31{bottom:1010.053333pt;}
.y174{bottom:1010.213333pt;}
.y5e{bottom:1010.400000pt;}
.y30{bottom:1043.520000pt;}
.h17{height:16.146667pt;}
.h14{height:16.160000pt;}
.h19{height:16.178667pt;}
.h15{height:16.186667pt;}
.h18{height:16.306667pt;}
.h13{height:16.320000pt;}
.h1a{height:17.906667pt;}
.h1e{height:17.920000pt;}
.h1b{height:18.066667pt;}
.h1f{height:18.080000pt;}
.h1c{height:18.100000pt;}
.he{height:21.586667pt;}
.h10{height:21.746667pt;}
.h12{height:21.760000pt;}
.h22{height:21.778667pt;}
.h27{height:22.456601pt;}
.h2f{height:27.417312pt;}
.h9{height:31.395938pt;}
.h29{height:31.649072pt;}
.h38{height:31.663658pt;}
.h16{height:32.306667pt;}
.h26{height:33.732278pt;}
.h20{height:33.906667pt;}
.h28{height:34.743308pt;}
.h2a{height:35.898388pt;}
.h1d{height:36.000000pt;}
.h6{height:38.932188pt;}
.h32{height:39.590993pt;}
.hd{height:40.409375pt;}
.h23{height:40.946667pt;}
.h2e{height:41.183810pt;}
.h33{height:42.577665pt;}
.hf{height:43.346667pt;}
.h3b{height:43.379719pt;}
.h30{height:43.461686pt;}
.h11{height:43.540000pt;}
.h25{height:44.260092pt;}
.ha{height:44.835938pt;}
.hb{height:45.234375pt;}
.h31{height:46.138624pt;}
.h4{height:46.906250pt;}
.h41{height:47.109375pt;}
.h39{height:47.560000pt;}
.h37{height:47.562287pt;}
.hc{height:49.618437pt;}
.h8{height:50.059375pt;}
.h3f{height:50.062500pt;}
.h3e{height:52.134375pt;}
.h3c{height:52.267857pt;}
.h2d{height:55.366583pt;}
.h3{height:59.781250pt;}
.h21{height:60.312500pt;}
.h36{height:60.624737pt;}
.h3a{height:62.591787pt;}
.h5{height:62.812500pt;}
.h40{height:65.146667pt;}
.h2{height:73.466667pt;}
.h7{height:90.468750pt;}
.h34{height:221.946667pt;}
.h24{height:243.192482pt;}
.h2c{height:296.133869pt;}
.h2b{height:296.213333pt;}
.h3d{height:327.053333pt;}
.h35{height:327.066652pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wf{width:43.026667pt;}
.w2{width:57.906667pt;}
.w5{width:62.738667pt;}
.w8{width:76.306667pt;}
.w6{width:76.320000pt;}
.wb{width:76.640000pt;}
.wd{width:76.658667pt;}
.w7{width:82.432000pt;}
.w11{width:86.240000pt;}
.w9{width:93.458667pt;}
.w12{width:93.472000pt;}
.w13{width:99.346667pt;}
.wa{width:106.578667pt;}
.wc{width:111.072000pt;}
.w1f{width:113.592000pt;}
.w14{width:119.058667pt;}
.w10{width:129.460000pt;}
.w19{width:200.991842pt;}
.w1a{width:215.546667pt;}
.w15{width:218.418667pt;}
.w17{width:237.138667pt;}
.w18{width:237.186667pt;}
.w1b{width:238.071580pt;}
.w1c{width:252.533333pt;}
.w3{width:254.098667pt;}
.w16{width:255.906667pt;}
.w1e{width:286.140390pt;}
.w4{width:335.586667pt;}
.w1d{width:467.920000pt;}
.w20{width:476.080000pt;}
.we{width:547.920000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7c{left:1.586667pt;}
.x18{left:6.552000pt;}
.x10{left:7.680000pt;}
.x39{left:8.946667pt;}
.x2b{left:10.226667pt;}
.x3a{left:11.386667pt;}
.x2a{left:13.120000pt;}
.x3c{left:14.586667pt;}
.x28{left:15.666667pt;}
.x2f{left:17.266667pt;}
.x26{left:18.226667pt;}
.x2d{left:19.200000pt;}
.x27{left:20.786667pt;}
.x2e{left:21.746667pt;}
.x2c{left:23.346667pt;}
.x29{left:24.626667pt;}
.x33{left:26.226667pt;}
.x19{left:27.832000pt;}
.x5b{left:29.249292pt;}
.x70{left:30.395043pt;}
.x1f{left:31.346667pt;}
.x36{left:32.826667pt;}
.x21{left:35.200000pt;}
.x23{left:37.760000pt;}
.x45{left:40.626667pt;}
.x3b{left:42.746667pt;}
.xf{left:45.266667pt;}
.x9{left:46.706667pt;}
.x5d{left:51.754081pt;}
.x5e{left:52.791864pt;}
.x38{left:55.546667pt;}
.x2{left:57.920000pt;}
.x71{left:60.589646pt;}
.x69{left:61.744088pt;}
.x12{left:63.346667pt;}
.x6a{left:64.523617pt;}
.x11{left:68.506667pt;}
.x1b{left:70.546667pt;}
.xb{left:73.466667pt;}
.x16{left:77.426667pt;}
.x1c{left:82.866667pt;}
.xe{left:85.586667pt;}
.x50{left:87.976811pt;}
.x14{left:90.866667pt;}
.x52{left:94.310390pt;}
.x51{left:98.267974pt;}
.x54{left:99.481248pt;}
.x4{left:102.112000pt;}
.x7a{left:107.506667pt;}
.x53{left:108.443588pt;}
.x5{left:109.632000pt;}
.xc{left:110.706667pt;}
.x1a{left:113.306667pt;}
.x62{left:117.168495pt;}
.x4d{left:119.026667pt;}
.x6f{left:121.152148pt;}
.x6{left:122.912000pt;}
.x1d{left:126.266667pt;}
.x17{left:127.226667pt;}
.x63{left:129.220258pt;}
.x7{left:130.432000pt;}
.x64{left:131.661447pt;}
.x44{left:133.160000pt;}
.x56{left:141.902508pt;}
.x15{left:146.266667pt;}
.x13{left:148.186667pt;}
.x55{left:150.864848pt;}
.xd{left:154.106667pt;}
.x58{left:156.050150pt;}
.x5f{left:162.920000pt;}
.x57{left:164.998046pt;}
.x5a{left:167.070722pt;}
.x66{left:168.853172pt;}
.x4f{left:170.146667pt;}
.x74{left:174.926790pt;}
.x59{left:179.145687pt;}
.x5c{left:181.348357pt;}
.x65{left:184.151288pt;}
.x8{left:185.466667pt;}
.x73{left:188.832405pt;}
.x43{left:191.066667pt;}
.x72{left:193.592885pt;}
.x67{left:196.203052pt;}
.x3d{left:199.226667pt;}
.x1e{left:201.320000pt;}
.x3{left:204.026667pt;}
.x75{left:207.133113pt;}
.x60{left:208.186667pt;}
.x32{left:211.400000pt;}
.x68{left:212.940185pt;}
.x3e{left:214.746667pt;}
.x31{left:220.986667pt;}
.x7b{left:222.920000pt;}
.x79{left:225.466667pt;}
.x4a{left:226.426667pt;}
.x77{left:234.839946pt;}
.x6c{left:245.346667pt;}
.x6e{left:253.813333pt;}
.x76{left:258.015971pt;}
.x46{left:262.626667pt;}
.x20{left:264.066667pt;}
.x34{left:317.986667pt;}
.x4c{left:327.746667pt;}
.x22{left:340.386667pt;}
.x4e{left:346.466667pt;}
.x47{left:348.866667pt;}
.xa{left:356.226667pt;}
.x78{left:377.013333pt;}
.x6b{left:378.466667pt;}
.x61{left:385.680000pt;}
.x35{left:394.626667pt;}
.x30{left:396.893333pt;}
.x24{left:422.826667pt;}
.x48{left:442.346667pt;}
.x6d{left:451.933333pt;}
.x42{left:483.933333pt;}
.x25{left:499.146667pt;}
.x37{left:505.706667pt;}
.x40{left:535.933333pt;}
.x49{left:541.706667pt;}
.x4b{left:615.013333pt;}
.x41{left:627.013333pt;}
.x1{left:633.733333pt;}
.x3f{left:657.413333pt;}
}




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