
    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_48e875cdd75a1ddd7d003a81.woff')format("woff");}.ff1{font-family:ff1;line-height:1.006348;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_db8d7d76286b16fc67ce66b2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.171387;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_12b0150caf138744d7c5ed68.woff')format("woff");}.ff3{font-family:ff3;line-height:1.171387;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_5133be07dc70d08432ccafa2.woff')format("woff");}.ff4{font-family:ff4;line-height:1.171387;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_0ec9d559331004ab8a726bfe.woff')format("woff");}.ff5{font-family:ff5;line-height:1.171387;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_a5c8969e3fbc212b088517a7.woff')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_b3ec18c910d40b31892bc337.woff')format("woff");}.ff7{font-family:ff7;line-height:1.130371;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_221f8527fc28280e26db7a98.woff')format("woff");}.ff8{font-family:ff8;line-height:1.006348;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_f0720381735c2623d6851fbb.woff')format("woff");}.ff9{font-family:ff9;line-height:1.172852;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_bd2c30c7382ba367969c46c2.woff')format("woff");}.ffa{font-family:ffa;line-height:1.202148;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_162ba2ff4e56d142f3458ea2.woff')format("woff");}.ffb{font-family:ffb;line-height:1.106934;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_7217f2f0fa4d2b93b4c23287.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_5058f829431605648b83ba7f.woff')format("woff");}.ffd{font-family:ffd;line-height:1.130371;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_18a324dd22a7e4ec2f5663b7.woff')format("woff");}.ffe{font-family:ffe;line-height:0.758789;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_adb879eba118e818f64b824b.woff')format("woff");}.fff{font-family:fff;line-height:0.772949;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_26325588526bf0301ce2d06b.woff')format("woff");}.ff10{font-family:ff10;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:43.200000px;}
.ls2d{letter-spacing:-0.612000px;}
.ls50{letter-spacing:-0.505200px;}
.ls2c{letter-spacing:-0.494400px;}
.ls4d{letter-spacing:-0.478800px;}
.ls17{letter-spacing:-0.359400px;}
.ls5{letter-spacing:-0.288000px;}
.ls66{letter-spacing:-0.238800px;}
.ls48{letter-spacing:-0.229800px;}
.ls42{letter-spacing:-0.189000px;}
.ls18{letter-spacing:-0.139800px;}
.ls13{letter-spacing:-0.108000px;}
.ls16{letter-spacing:-0.096600px;}
.ls6{letter-spacing:-0.072000px;}
.ls64{letter-spacing:-0.054720px;}
.ls4c{letter-spacing:-0.037440px;}
.ls3{letter-spacing:-0.035280px;}
.ls7{letter-spacing:-0.012240px;}
.ls2{letter-spacing:0.000000px;}
.ls3b{letter-spacing:0.024000px;}
.lsf{letter-spacing:0.036000px;}
.ls57{letter-spacing:0.054720px;}
.ls8{letter-spacing:0.072000px;}
.ls5e{letter-spacing:0.089400px;}
.ls1f{letter-spacing:0.094800px;}
.ls2b{letter-spacing:0.106800px;}
.ls2a{letter-spacing:0.117000px;}
.ls0{letter-spacing:0.125280px;}
.ls55{letter-spacing:0.144000px;}
.ls1a{letter-spacing:0.165000px;}
.ls39{letter-spacing:0.198000px;}
.ls58{letter-spacing:0.216000px;}
.ls2f{letter-spacing:0.218400px;}
.ls56{letter-spacing:0.234720px;}
.ls37{letter-spacing:0.243600px;}
.ls2e{letter-spacing:0.250800px;}
.ls15{letter-spacing:0.255456px;}
.ls3d{letter-spacing:0.255600px;}
.ls51{letter-spacing:0.256800px;}
.ls65{letter-spacing:0.278400px;}
.ls4{letter-spacing:0.288000px;}
.ls54{letter-spacing:0.302400px;}
.ls9{letter-spacing:0.360000px;}
.ls20{letter-spacing:0.417600px;}
.ls43{letter-spacing:0.720000px;}
.ls5d{letter-spacing:0.845280px;}
.ls38{letter-spacing:1.022400px;}
.ls28{letter-spacing:5.457600px;}
.ls27{letter-spacing:6.177600px;}
.ls36{letter-spacing:8.942400px;}
.ls35{letter-spacing:9.662400px;}
.ls23{letter-spacing:11.217600px;}
.ls21{letter-spacing:12.657600px;}
.ls62{letter-spacing:16.862400px;}
.ls10{letter-spacing:18.000000px;}
.ls12{letter-spacing:20.880000px;}
.ls3c{letter-spacing:22.133664px;}
.ls3a{letter-spacing:22.248000px;}
.ls63{letter-spacing:24.480000px;}
.ls1{letter-spacing:24.981120px;}
.ls33{letter-spacing:29.064960px;}
.ls40{letter-spacing:29.520000px;}
.ls31{letter-spacing:29.784960px;}
.ls60{letter-spacing:29.822400px;}
.ls32{letter-spacing:29.904960px;}
.ls61{letter-spacing:30.002400px;}
.lsb{letter-spacing:30.922560px;}
.ls1e{letter-spacing:31.741200px;}
.ls1b{letter-spacing:36.417600px;}
.lse{letter-spacing:36.720000px;}
.lsd{letter-spacing:37.440000px;}
.ls25{letter-spacing:40.017600px;}
.ls26{letter-spacing:40.737600px;}
.ls24{letter-spacing:42.541200px;}
.ls41{letter-spacing:43.162560px;}
.ls22{letter-spacing:43.981200px;}
.lsa{letter-spacing:49.493664px;}
.lsc{letter-spacing:49.608000px;}
.ls29{letter-spacing:50.097600px;}
.ls3f{letter-spacing:61.162560px;}
.ls3e{letter-spacing:61.186560px;}
.ls19{letter-spacing:64.285920px;}
.ls45{letter-spacing:64.762560px;}
.ls46{letter-spacing:66.415104px;}
.ls47{letter-spacing:66.529440px;}
.ls1d{letter-spacing:67.786560px;}
.ls1c{letter-spacing:67.842720px;}
.ls5c{letter-spacing:72.302400px;}
.ls5f{letter-spacing:79.502400px;}
.ls5a{letter-spacing:80.290080px;}
.ls53{letter-spacing:85.830048px;}
.ls52{letter-spacing:85.896000px;}
.ls30{letter-spacing:91.435968px;}
.ls34{letter-spacing:91.501920px;}
.ls4f{letter-spacing:91.579968px;}
.ls4e{letter-spacing:91.645920px;}
.ls49{letter-spacing:96.922080px;}
.ls5b{letter-spacing:101.844000px;}
.ls59{letter-spacing:106.930080px;}
.ls44{letter-spacing:112.470048px;}
.ls14{letter-spacing:112.536000px;}
.ls4b{letter-spacing:123.472128px;}
.ls4a{letter-spacing:123.538080px;}
.ls11{letter-spacing:680.482560px;}
.sc_{text-shadow:none;}
.sc2{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);}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws30{word-spacing:-120.240000px;}
.ws2{word-spacing:-56.197440px;}
.ws44{word-spacing:-56.160000px;}
.ws2a{word-spacing:-43.655040px;}
.ws2e{word-spacing:-43.617600px;}
.ws3c{word-spacing:-37.440000px;}
.ws25{word-spacing:-31.480800px;}
.ws17{word-spacing:-31.357200px;}
.ws10{word-spacing:-31.299840px;}
.ws12{word-spacing:-31.262400px;}
.ws26{word-spacing:-30.768000px;}
.ws20{word-spacing:-30.650400px;}
.ws5{word-spacing:-30.024000px;}
.ws2b{word-spacing:-28.373040px;}
.ws6{word-spacing:-28.117440px;}
.ws8{word-spacing:-28.116000px;}
.ws7{word-spacing:-28.080000px;}
.ws9{word-spacing:-27.972000px;}
.ws2c{word-spacing:-27.928440px;}
.ws43{word-spacing:-27.206784px;}
.ws2d{word-spacing:-27.174240px;}
.ws4a{word-spacing:-25.176000px;}
.ws29{word-spacing:-25.141200px;}
.ws28{word-spacing:-25.133040px;}
.ws49{word-spacing:-24.987000px;}
.ws27{word-spacing:-24.935040px;}
.ws0{word-spacing:-24.897600px;}
.ws47{word-spacing:-24.842880px;}
.ws46{word-spacing:-24.757800px;}
.ws35{word-spacing:-24.408000px;}
.ws45{word-spacing:-21.939840px;}
.ws34{word-spacing:-21.902400px;}
.ws37{word-spacing:-21.898560px;}
.ws36{word-spacing:-21.136560px;}
.ws2f{word-spacing:-19.038240px;}
.ws32{word-spacing:-19.008000px;}
.ws31{word-spacing:-18.648000px;}
.wsb{word-spacing:-16.304544px;}
.wsa{word-spacing:-16.272000px;}
.ws4{word-spacing:-16.200000px;}
.wsd{word-spacing:-16.164744px;}
.ws3{word-spacing:-15.984000px;}
.wsc{word-spacing:-15.945144px;}
.wse{word-spacing:-1.825152px;}
.ws39{word-spacing:-1.476000px;}
.ws24{word-spacing:-1.368720px;}
.ws3d{word-spacing:-1.066848px;}
.ws23{word-spacing:-0.696480px;}
.ws3f{word-spacing:-0.576000px;}
.wsf{word-spacing:-0.415104px;}
.ws3a{word-spacing:-0.396000px;}
.ws41{word-spacing:-0.276000px;}
.ws42{word-spacing:-0.252000px;}
.ws33{word-spacing:-0.108000px;}
.ws4e{word-spacing:-0.050400px;}
.ws1{word-spacing:0.000000px;}
.ws16{word-spacing:0.091440px;}
.ws19{word-spacing:0.342720px;}
.ws48{word-spacing:0.357120px;}
.ws3b{word-spacing:0.360000px;}
.ws1a{word-spacing:0.417600px;}
.ws40{word-spacing:0.828000px;}
.ws1b{word-spacing:0.878400px;}
.ws3e{word-spacing:0.880632px;}
.ws1c{word-spacing:0.931680px;}
.ws38{word-spacing:1.044000px;}
.ws18{word-spacing:1.157040px;}
.ws21{word-spacing:10.925280px;}
.ws22{word-spacing:11.463120px;}
.ws1d{word-spacing:12.360960px;}
.ws1e{word-spacing:12.818160px;}
.ws1f{word-spacing:13.137600px;}
.ws4b{word-spacing:16.197120px;}
.ws4d{word-spacing:16.557120px;}
.ws4c{word-spacing:16.605360px;}
.ws14{word-spacing:35.947440px;}
.ws11{word-spacing:36.120960px;}
.ws15{word-spacing:36.589680px;}
.ws13{word-spacing:36.698160px;}
._10{margin-left:-50.656800px;}
._16{margin-left:-43.447200px;}
._1f{margin-left:-30.117312px;}
._14{margin-left:-28.879200px;}
._1c{margin-left:-14.762880px;}
._1b{margin-left:-9.808560px;}
._4{margin-left:-8.699040px;}
._1a{margin-left:-7.460112px;}
._18{margin-left:-5.391360px;}
._12{margin-left:-3.973872px;}
._2{margin-left:-2.915280px;}
._0{margin-left:-1.345680px;}
._1{width:1.402032px;}
._3{width:3.377568px;}
._e{width:5.594880px;}
._11{width:9.256704px;}
._b{width:10.499520px;}
._a{width:12.353040px;}
._20{width:17.177280px;}
._8{width:18.648000px;}
._9{width:21.096000px;}
._21{width:26.389200px;}
._6{width:29.311200px;}
._5{width:31.047408px;}
._7{width:37.656000px;}
._d{width:40.043280px;}
._c{width:42.094800px;}
._15{width:43.751616px;}
._f{width:49.949040px;}
._13{width:60.794496px;}
._1d{width:72.580080px;}
._1e{width:79.366320px;}
._17{width:546.289440px;}
._19{width:808.122480px;}
.fc4{color:rgb(5,99,193);}
.fc3{color:rgb(0,35,70);}
.fc5{color:rgb(0,30,96);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsc{font-size:66.240000px;}
.fsd{font-size:66.384000px;}
.fs6{font-size:72.000000px;}
.fs14{font-size:72.144000px;}
.fse{font-size:84.240000px;}
.fs17{font-size:84.384000px;}
.fs12{font-size:90.000000px;}
.fs4{font-size:90.144000px;}
.fs2{font-size:95.760000px;}
.fs9{font-size:95.904000px;}
.fs3{font-size:102.240000px;}
.fsb{font-size:108.000000px;}
.fs11{font-size:108.144000px;}
.fs16{font-size:120.240000px;}
.fs10{font-size:120.384000px;}
.fs8{font-size:144.000000px;}
.fs1{font-size:144.144000px;}
.fs1a{font-size:156.240000px;}
.fs18{font-size:156.384000px;}
.fs7{font-size:167.760000px;}
.fs13{font-size:167.904000px;}
.fs19{font-size:180.000000px;}
.fsf{font-size:180.144000px;}
.fs0{font-size:192.240000px;}
.fs15{font-size:216.000000px;}
.fs5{font-size:216.144000px;}
.fs1b{font-size:257.904000px;}
.fsa{font-size:264.384000px;}
.y0{bottom:0.000000px;}
.y14d{bottom:35.568000px;}
.y134{bottom:39.852000px;}
.y1c{bottom:40.572000px;}
.ya{bottom:46.548000px;}
.y8{bottom:48.492000px;}
.y143{bottom:61.272000px;}
.y96{bottom:82.980000px;}
.y142{bottom:86.472000px;}
.y14c{bottom:101.088000px;}
.yab{bottom:106.524000px;}
.yba{bottom:106.956000px;}
.yfb{bottom:107.712000px;}
.y6d{bottom:107.892000px;}
.y9f{bottom:109.332000px;}
.y119{bottom:110.808000px;}
.y113{bottom:111.564000px;}
.y141{bottom:111.672000px;}
.y51{bottom:113.832000px;}
.yd{bottom:114.120000px;}
.ydc{bottom:114.696000px;}
.yfe{bottom:114.732000px;}
.yfd{bottom:117.252000px;}
.y34{bottom:117.504000px;}
.y56{bottom:118.944000px;}
.ya0{bottom:119.700000px;}
.yf4{bottom:120.132000px;}
.ycc{bottom:122.940000px;}
.y6a{bottom:123.588000px;}
.yf5{bottom:123.696000px;}
.ye9{bottom:124.632000px;}
.y125{bottom:125.172000px;}
.y7{bottom:125.928000px;}
.yfa{bottom:129.348000px;}
.y28{bottom:130.176000px;}
.y114{bottom:131.652000px;}
.y9c{bottom:133.092000px;}
.y66{bottom:133.668000px;}
.yd5{bottom:136.728000px;}
.y140{bottom:136.908000px;}
.y2b{bottom:136.944000px;}
.y14b{bottom:138.348000px;}
.y21{bottom:139.968000px;}
.y6c{bottom:140.292000px;}
.y149{bottom:142.668000px;}
.y112{bottom:143.964000px;}
.y33{bottom:146.304000px;}
.y55{bottom:147.744000px;}
.ycb{bottom:148.140000px;}
.yaa{bottom:149.112000px;}
.y24{bottom:149.400000px;}
.y27{bottom:150.375000px;}
.y69{bottom:152.385000px;}
.y13c{bottom:154.470000px;}
.y2a{bottom:157.110000px;}
.y1e{bottom:159.225000px;}
.y20{bottom:160.125000px;}
.y9e{bottom:160.170000px;}
.y124{bottom:161.205000px;}
.y4c{bottom:163.050000px;}
.yd4{bottom:165.525000px;}
.y79{bottom:169.275000px;}
.y23{bottom:169.560000px;}
.y26{bottom:170.535000px;}
.yca{bottom:173.340000px;}
.y117{bottom:173.445000px;}
.yff{bottom:176.430000px;}
.y29{bottom:177.270000px;}
.y1d{bottom:179.385000px;}
.y13b{bottom:179.670000px;}
.y1f{bottom:180.285000px;}
.y111{bottom:180.870000px;}
.ya9{bottom:181.545000px;}
.ye8{bottom:185.040000px;}
.y32{bottom:185.475000px;}
.y9b{bottom:187.125000px;}
.y22{bottom:189.720000px;}
.y25{bottom:190.695000px;}
.yd3{bottom:194.325000px;}
.y4b{bottom:195.450000px;}
.y123{bottom:197.205000px;}
.yc9{bottom:198.540000px;}
.y6{bottom:198.870000px;}
.y54{bottom:200.445000px;}
.y78{bottom:201.705000px;}
.y13a{bottom:204.870000px;}
.y1a{bottom:207.390000px;}
.y94{bottom:208.650000px;}
.y64{bottom:209.085000px;}
.y68{bottom:209.985000px;}
.y9d{bottom:210.960000px;}
.y110{bottom:213.270000px;}
.y7c{bottom:216.360000px;}
.yd2{bottom:223.170000px;}
.yc8{bottom:223.770000px;}
.y4a{bottom:227.850000px;}
.ye7{bottom:229.320000px;}
.y133{bottom:229.530000px;}
.y139{bottom:230.070000px;}
.y122{bottom:233.205000px;}
.y5{bottom:235.230000px;}
.y93{bottom:235.650000px;}
.y95{bottom:236.160000px;}
.y19{bottom:236.190000px;}
.y63{bottom:237.885000px;}
.y67{bottom:238.830000px;}
.y50{bottom:244.650000px;}
.y10f{bottom:245.670000px;}
.yc7{bottom:248.970000px;}
.y77{bottom:249.225000px;}
.yd1{bottom:251.970000px;}
.y4{bottom:256.650000px;}
.ye6{bottom:258.480000px;}
.y49{bottom:260.250000px;}
.y92{bottom:262.650000px;}
.y18{bottom:264.990000px;}
.y132{bottom:265.575000px;}
.y62{bottom:266.685000px;}
.ydb{bottom:268.050000px;}
.y121{bottom:269.205000px;}
.y3d{bottom:271.515000px;}
.yc6{bottom:274.170000px;}
.y7d{bottom:280.290000px;}
.yd0{bottom:280.770000px;}
.y76{bottom:281.625000px;}
.y10e{bottom:282.600000px;}
.ya7{bottom:282.960000px;}
.y9a{bottom:287.460000px;}
.ye5{bottom:287.640000px;}
.y91{bottom:289.650000px;}
.y48{bottom:292.650000px;}
.ya8{bottom:297.255000px;}
.yb9{bottom:299.235000px;}
.yc5{bottom:299.370000px;}
.yda{bottom:300.450000px;}
.y131{bottom:301.575000px;}
.y3c{bottom:303.915000px;}
.y120{bottom:305.250000px;}
.ycf{bottom:309.570000px;}
.y10d{bottom:315.000000px;}
.y97{bottom:319.140000px;}
.y17{bottom:322.635000px;}
.y47{bottom:325.080000px;}
.y99{bottom:325.725000px;}
.y75{bottom:328.965000px;}
.ya6{bottom:330.300000px;}
.y3{bottom:331.740000px;}
.y130{bottom:337.575000px;}
.yce{bottom:338.370000px;}
.y61{bottom:339.270000px;}
.y11f{bottom:341.250000px;}
.yb8{bottom:346.575000px;}
.yc4{bottom:349.770000px;}
.y4f{bottom:350.535000px;}
.y16{bottom:351.435000px;}
.y10c{bottom:351.900000px;}
.y46{bottom:357.480000px;}
.ye4{bottom:360.930000px;}
.y74{bottom:361.410000px;}
.y145{bottom:361.440000px;}
.y60{bottom:368.070000px;}
.y3b{bottom:368.715000px;}
.y12f{bottom:373.575000px;}
.yc3{bottom:375.015000px;}
.yf9{bottom:375.225000px;}
.y58{bottom:375.405000px;}
.y7b{bottom:375.840000px;}
.y98{bottom:376.530000px;}
.y4e{bottom:377.205000px;}
.y11e{bottom:377.250000px;}
.ya5{bottom:377.820000px;}
.y10b{bottom:384.300000px;}
.y144{bottom:386.640000px;}
.y45{bottom:389.880000px;}
.yb7{bottom:394.125000px;}
.ycd{bottom:396.000000px;}
.yf3{bottom:396.750000px;}
.yf8{bottom:396.825000px;}
.y5f{bottom:396.870000px;}
.yc2{bottom:400.215000px;}
.y3a{bottom:401.145000px;}
.ye3{bottom:405.030000px;}
.y73{bottom:408.750000px;}
.y15{bottom:409.035000px;}
.y12e{bottom:409.575000px;}
.y11d{bottom:413.250000px;}
.y10a{bottom:416.700000px;}
.y44{bottom:422.280000px;}
.yf2{bottom:422.670000px;}
.y4d{bottom:424.335000px;}
.ya4{bottom:425.190000px;}
.yc1{bottom:425.415000px;}
.y90{bottom:426.345000px;}
.y2e{bottom:429.840000px;}
.y8d{bottom:431.970000px;}
.y39{bottom:433.545000px;}
.y57{bottom:433.770000px;}
.ye2{bottom:434.190000px;}
.yb2{bottom:434.850000px;}
.y14{bottom:437.835000px;}
.yb6{bottom:441.465000px;}
.y2{bottom:441.825000px;}
.y14a{bottom:444.750000px;}
.y12d{bottom:445.605000px;}
.y1b{bottom:449.250000px;}
.yc0{bottom:450.615000px;}
.y8f{bottom:453.345000px;}
.y109{bottom:453.630000px;}
.y43{bottom:454.680000px;}
.y72{bottom:456.270000px;}
.y8c{bottom:458.970000px;}
.ye1{bottom:463.350000px;}
.yf1{bottom:463.530000px;}
.y38{bottom:465.945000px;}
.y13{bottom:466.665000px;}
.y5e{bottom:469.620000px;}
.ya3{bottom:472.530000px;}
.ybf{bottom:475.815000px;}
.yb1{bottom:476.250000px;}
.y2d{bottom:477.510000px;}
.y12c{bottom:481.605000px;}
.y11c{bottom:485.280000px;}
.y8b{bottom:485.970000px;}
.y108{bottom:486.030000px;}
.y42{bottom:487.110000px;}
.y1{bottom:487.905000px;}
.yb5{bottom:488.805000px;}
.yf0{bottom:489.450000px;}
.yd9{bottom:489.525000px;}
.y8e{bottom:490.680000px;}
.ye0{bottom:492.555000px;}
.y2c{bottom:492.630000px;}
.y5d{bottom:498.420000px;}
.y138{bottom:501.555000px;}
.y71{bottom:503.610000px;}
.ybe{bottom:517.575000px;}
.y12b{bottom:517.605000px;}
.yb0{bottom:517.650000px;}
.yd8{bottom:518.370000px;}
.y107{bottom:518.430000px;}
.y148{bottom:519.015000px;}
.y41{bottom:519.510000px;}
.ya2{bottom:520.050000px;}
.y11b{bottom:521.280000px;}
.y12{bottom:524.265000px;}
.y137{bottom:526.755000px;}
.y5c{bottom:527.220000px;}
.y7a{bottom:527.655000px;}
.y8a{bottom:528.945000px;}
.yef{bottom:530.535000px;}
.y37{bottom:530.745000px;}
.yb4{bottom:536.370000px;}
.ydf{bottom:536.835000px;}
.y13f{bottom:537.810000px;}
.y155{bottom:541.230000px;}
.y147{bottom:544.215000px;}
.yd7{bottom:547.170000px;}
.y70{bottom:550.980000px;}
.y40{bottom:551.910000px;}
.y136{bottom:551.955000px;}
.y11{bottom:553.065000px;}
.y12a{bottom:553.605000px;}
.y106{bottom:555.330000px;}
.yee{bottom:556.455000px;}
.y11a{bottom:557.280000px;}
.yaf{bottom:559.050000px;}
.y82{bottom:559.290000px;}
.y13e{bottom:563.010000px;}
.y36{bottom:563.190000px;}
.yde{bottom:565.995000px;}
.ya1{bottom:567.435000px;}
.yc{bottom:568.695000px;}
.y146{bottom:569.415000px;}
.ybd{bottom:569.730000px;}
.y154{bottom:570.030000px;}
.y9{bottom:570.240000px;}
.y89{bottom:579.750000px;}
.y3f{bottom:584.310000px;}
.y81{bottom:586.290000px;}
.y105{bottom:587.775000px;}
.y13d{bottom:588.210000px;}
.y129{bottom:589.650000px;}
.yae{bottom:591.480000px;}
.yb3{bottom:592.710000px;}
.ybc{bottom:594.930000px;}
.ydd{bottom:595.155000px;}
.yed{bottom:597.315000px;}
.y6f{bottom:598.500000px;}
.y153{bottom:598.830000px;}
.y5b{bottom:599.760000px;}
.y31{bottom:600.150000px;}
.y103{bottom:602.430000px;}
.yd6{bottom:604.770000px;}
.y10{bottom:610.665000px;}
.y80{bottom:613.290000px;}
.ybb{bottom:620.130000px;}
.y104{bottom:620.175000px;}
.yec{bottom:623.235000px;}
.yad{bottom:623.880000px;}
.y128{bottom:625.650000px;}
.y152{bottom:627.660000px;}
.y5a{bottom:628.590000px;}
.y88{bottom:630.540000px;}
.y30{bottom:634.350000px;}
.yf{bottom:639.510000px;}
.y84{bottom:642.750000px;}
.y102{bottom:652.350000px;}
.y151{bottom:656.460000px;}
.y127{bottom:661.650000px;}
.ye{bottom:668.310000px;}
.y87{bottom:668.805000px;}
.y83{bottom:669.750000px;}
.y116{bottom:672.840000px;}
.y7e{bottom:684.570000px;}
.y101{bottom:684.750000px;}
.y150{bottom:685.260000px;}
.yf7{bottom:692.745000px;}
.y126{bottom:697.650000px;}
.y53{bottom:698.760000px;}
.yf6{bottom:706.395000px;}
.y86{bottom:707.070000px;}
.y14f{bottom:714.060000px;}
.y100{bottom:717.195000px;}
.y6e{bottom:719.610000px;}
.yea{bottom:721.545000px;}
.y6b{bottom:721.590000px;}
.y3e{bottom:722.445000px;}
.y135{bottom:723.240000px;}
.y35{bottom:723.990000px;}
.yac{bottom:724.710000px;}
.y59{bottom:725.325000px;}
.y2f{bottom:729.510000px;}
.y115{bottom:730.620000px;}
.yeb{bottom:733.890000px;}
.y65{bottom:738.690000px;}
.y14e{bottom:742.860000px;}
.y85{bottom:745.350000px;}
.y118{bottom:758.880000px;}
.y52{bottom:759.090000px;}
.yb{bottom:760.245000px;}
.yfc{bottom:767.880000px;}
.y7f{bottom:783.570000px;}
.h31{height:61.679531px;}
.h2b{height:64.537383px;}
.hf{height:65.884219px;}
.h11{height:66.027445px;}
.h6{height:67.042969px;}
.h10{height:67.824844px;}
.h9{height:68.554688px;}
.h2f{height:68.691797px;}
.h1c{height:71.613281px;}
.h1e{height:71.756508px;}
.hc{height:73.363008px;}
.h1a{height:73.722656px;}
.h12{height:75.093750px;}
.h14{height:78.440273px;}
.h2a{height:78.574359px;}
.h23{height:80.208984px;}
.h24{height:80.346094px;}
.h28{height:82.054688px;}
.h33{height:82.740234px;}
.h19{height:82.850555px;}
.h36{height:83.787539px;}
.h37{height:83.930766px;}
.h4{height:83.937797px;}
.ha{height:89.167148px;}
.hb{height:89.301234px;}
.h1b{height:89.516602px;}
.h2c{height:91.177734px;}
.h29{height:92.117461px;}
.h27{height:92.227781px;}
.h3{height:95.201016px;}
.h18{height:100.564453px;}
.h17{height:100.698539px;}
.h32{height:102.832031px;}
.he{height:107.419922px;}
.h30{height:110.320312px;}
.h21{height:111.961758px;}
.h20{height:112.095844px;}
.h13{height:112.640625px;}
.h22{height:114.486328px;}
.h16{height:114.623437px;}
.h2{height:134.220023px;}
.h35{height:138.352852px;}
.h8{height:143.226562px;}
.h34{height:145.483242px;}
.h2d{height:145.617328px;}
.h1{height:147.277617px;}
.h7{height:156.210117px;}
.h1d{height:156.344203px;}
.h2e{height:167.607422px;}
.h15{height:167.741508px;}
.h26{height:180.720000px;}
.h38{height:197.583680px;}
.h1f{height:201.128906px;}
.h5{height:201.262992px;}
.hd{height:262.963969px;}
.h25{height:630.000000px;}
.h0{height:810.000000px;}
.w2{width:233.100000px;}
.w3{width:257.220000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x57{left:5.505000px;}
.x1a{left:9.971979px;}
.x4{left:11.591979px;}
.x54{left:15.810000px;}
.x6c{left:18.899979px;}
.x83{left:23.363979px;}
.x3b{left:24.623979px;}
.x19{left:26.963979px;}
.x1d{left:28.547979px;}
.xa{left:30.599979px;}
.xb{left:35.819979px;}
.x71{left:38.303979px;}
.x2d{left:40.355979px;}
.x6b{left:42.659979px;}
.x65{left:43.883979px;}
.x87{left:46.763979px;}
.x79{left:47.807979px;}
.x5{left:50.579979px;}
.x3c{left:51.623979px;}
.x33{left:67.571979px;}
.x64{left:70.775979px;}
.x72{left:72.143979px;}
.x8f{left:73.547979px;}
.x75{left:74.951979px;}
.x76{left:78.443979px;}
.x8e{left:80.387979px;}
.x74{left:84.383979px;}
.x78{left:87.659979px;}
.x1{left:96.299979px;}
.x8d{left:98.207979px;}
.x82{left:103.715979px;}
.x41{left:109.799979px;}
.x80{left:111.635979px;}
.x31{left:118.799979px;}
.x9b{left:120.167979px;}
.x8c{left:125.603979px;}
.x90{left:127.403979px;}
.x20{left:128.555979px;}
.x70{left:144.107979px;}
.x32{left:145.835979px;}
.x2f{left:151.769979px;}
.x59{left:164.805000px;}
.x2e{left:177.509979px;}
.x1f{left:232.484979px;}
.x1c{left:236.849979px;}
.x7f{left:265.784979px;}
.x9a{left:271.874979px;}
.x68{left:281.129979px;}
.x9{left:284.864979px;}
.x3{left:298.079979px;}
.x26{left:314.129979px;}
.x2b{left:317.804979px;}
.x37{left:320.144979px;}
.x3a{left:330.089979px;}
.x27{left:346.034979px;}
.x10{left:350.309979px;}
.x39{left:356.864979px;}
.x38{left:362.264979px;}
.x11{left:371.549979px;}
.x36{left:372.599979px;}
.xf{left:376.229979px;}
.x1b{left:377.279979px;}
.x23{left:388.004979px;}
.x29{left:409.349979px;}
.x28{left:425.594979px;}
.x92{left:443.699979px;}
.x7{left:463.064979px;}
.x30{left:470.879979px;}
.x91{left:472.319979px;}
.x6d{left:479.624979px;}
.x88{left:488.954979px;}
.x2{left:500.474979px;}
.x66{left:523.004979px;}
.x86{left:537.194979px;}
.x34{left:562.244979px;}
.x67{left:578.774979px;}
.x35{left:596.084979px;}
.x53{left:610.020000px;}
.x12{left:616.394979px;}
.x13{left:618.554979px;}
.x14{left:634.214979px;}
.x45{left:646.349979px;}
.x44{left:649.949979px;}
.x43{left:660.749979px;}
.x2a{left:672.554979px;}
.x52{left:678.749979px;}
.x55{left:681.809979px;}
.x9c{left:683.534979px;}
.x69{left:731.084979px;}
.x18{left:749.624979px;}
.x3d{left:764.924979px;}
.x3e{left:766.799979px;}
.x3f{left:769.709979px;}
.x6a{left:771.584979px;}
.x7a{left:792.899979px;}
.x6e{left:831.164979px;}
.x56{left:842.940000px;}
.xc{left:846.974979px;}
.xe{left:854.354979px;}
.x5e{left:869.504979px;}
.x21{left:876.164979px;}
.x46{left:877.784979px;}
.x8{left:887.549979px;}
.x24{left:889.994979px;}
.xd{left:891.794979px;}
.x4e{left:895.244979px;}
.x5f{left:902.444979px;}
.x42{left:906.224979px;}
.x93{left:907.919979px;}
.x22{left:910.004979px;}
.x60{left:915.944979px;}
.x89{left:917.429979px;}
.x97{left:922.424979px;}
.x4d{left:923.504979px;}
.x47{left:925.844979px;}
.x25{left:930.494979px;}
.x99{left:937.904979px;}
.x94{left:940.709979px;}
.x84{left:942.689979px;}
.x73{left:949.934979px;}
.x98{left:968.324979px;}
.x85{left:976.529979px;}
.x58{left:997.124979px;}
.x1e{left:1066.469979px;}
.x2c{left:1072.469979px;}
.x17{left:1084.064979px;}
.x95{left:1091.954979px;}
.x7e{left:1093.964979px;}
.x16{left:1106.744979px;}
.x15{left:1112.504979px;}
.x96{left:1117.694979px;}
.x50{left:1121.969979px;}
.x4c{left:1126.469979px;}
.x62{left:1134.029979px;}
.x5a{left:1135.829979px;}
.x8a{left:1137.239979px;}
.x6f{left:1144.769979px;}
.x7d{left:1147.064979px;}
.x5c{left:1157.249979px;}
.x5b{left:1166.609979px;}
.x8b{left:1177.739979px;}
.x49{left:1187.309979px;}
.x48{left:1191.089979px;}
.x51{left:1196.309979px;}
.x61{left:1198.289979px;}
.x77{left:1200.164979px;}
.x5d{left:1202.969979px;}
.x4a{left:1205.894979px;}
.x4f{left:1228.934979px;}
.x81{left:1231.814979px;}
.x7c{left:1233.824979px;}
.x4b{left:1235.414979px;}
.x63{left:1246.034979px;}
.x7b{left:1269.869979px;}
.x6{left:1272.569979px;}
.x40{left:1277.609979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:38.400000pt;}
.ls2d{letter-spacing:-0.544000pt;}
.ls50{letter-spacing:-0.449067pt;}
.ls2c{letter-spacing:-0.439467pt;}
.ls4d{letter-spacing:-0.425600pt;}
.ls17{letter-spacing:-0.319467pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls66{letter-spacing:-0.212267pt;}
.ls48{letter-spacing:-0.204267pt;}
.ls42{letter-spacing:-0.168000pt;}
.ls18{letter-spacing:-0.124267pt;}
.ls13{letter-spacing:-0.096000pt;}
.ls16{letter-spacing:-0.085867pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls64{letter-spacing:-0.048640pt;}
.ls4c{letter-spacing:-0.033280pt;}
.ls3{letter-spacing:-0.031360pt;}
.ls7{letter-spacing:-0.010880pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3b{letter-spacing:0.021333pt;}
.lsf{letter-spacing:0.032000pt;}
.ls57{letter-spacing:0.048640pt;}
.ls8{letter-spacing:0.064000pt;}
.ls5e{letter-spacing:0.079467pt;}
.ls1f{letter-spacing:0.084267pt;}
.ls2b{letter-spacing:0.094933pt;}
.ls2a{letter-spacing:0.104000pt;}
.ls0{letter-spacing:0.111360pt;}
.ls55{letter-spacing:0.128000pt;}
.ls1a{letter-spacing:0.146667pt;}
.ls39{letter-spacing:0.176000pt;}
.ls58{letter-spacing:0.192000pt;}
.ls2f{letter-spacing:0.194133pt;}
.ls56{letter-spacing:0.208640pt;}
.ls37{letter-spacing:0.216533pt;}
.ls2e{letter-spacing:0.222933pt;}
.ls15{letter-spacing:0.227072pt;}
.ls3d{letter-spacing:0.227200pt;}
.ls51{letter-spacing:0.228267pt;}
.ls65{letter-spacing:0.247467pt;}
.ls4{letter-spacing:0.256000pt;}
.ls54{letter-spacing:0.268800pt;}
.ls9{letter-spacing:0.320000pt;}
.ls20{letter-spacing:0.371200pt;}
.ls43{letter-spacing:0.640000pt;}
.ls5d{letter-spacing:0.751360pt;}
.ls38{letter-spacing:0.908800pt;}
.ls28{letter-spacing:4.851200pt;}
.ls27{letter-spacing:5.491200pt;}
.ls36{letter-spacing:7.948800pt;}
.ls35{letter-spacing:8.588800pt;}
.ls23{letter-spacing:9.971200pt;}
.ls21{letter-spacing:11.251200pt;}
.ls62{letter-spacing:14.988800pt;}
.ls10{letter-spacing:16.000000pt;}
.ls12{letter-spacing:18.560000pt;}
.ls3c{letter-spacing:19.674368pt;}
.ls3a{letter-spacing:19.776000pt;}
.ls63{letter-spacing:21.760000pt;}
.ls1{letter-spacing:22.205440pt;}
.ls33{letter-spacing:25.835520pt;}
.ls40{letter-spacing:26.240000pt;}
.ls31{letter-spacing:26.475520pt;}
.ls60{letter-spacing:26.508800pt;}
.ls32{letter-spacing:26.582187pt;}
.ls61{letter-spacing:26.668800pt;}
.lsb{letter-spacing:27.486720pt;}
.ls1e{letter-spacing:28.214400pt;}
.ls1b{letter-spacing:32.371200pt;}
.lse{letter-spacing:32.640000pt;}
.lsd{letter-spacing:33.280000pt;}
.ls25{letter-spacing:35.571200pt;}
.ls26{letter-spacing:36.211200pt;}
.ls24{letter-spacing:37.814400pt;}
.ls41{letter-spacing:38.366720pt;}
.ls22{letter-spacing:39.094400pt;}
.lsa{letter-spacing:43.994368pt;}
.lsc{letter-spacing:44.096000pt;}
.ls29{letter-spacing:44.531200pt;}
.ls3f{letter-spacing:54.366720pt;}
.ls3e{letter-spacing:54.388053pt;}
.ls19{letter-spacing:57.143040pt;}
.ls45{letter-spacing:57.566720pt;}
.ls46{letter-spacing:59.035648pt;}
.ls47{letter-spacing:59.137280pt;}
.ls1d{letter-spacing:60.254720pt;}
.ls1c{letter-spacing:60.304640pt;}
.ls5c{letter-spacing:64.268800pt;}
.ls5f{letter-spacing:70.668800pt;}
.ls5a{letter-spacing:71.368960pt;}
.ls53{letter-spacing:76.293376pt;}
.ls52{letter-spacing:76.352000pt;}
.ls30{letter-spacing:81.276416pt;}
.ls34{letter-spacing:81.335040pt;}
.ls4f{letter-spacing:81.404416pt;}
.ls4e{letter-spacing:81.463040pt;}
.ls49{letter-spacing:86.152960pt;}
.ls5b{letter-spacing:90.528000pt;}
.ls59{letter-spacing:95.048960pt;}
.ls44{letter-spacing:99.973376pt;}
.ls14{letter-spacing:100.032000pt;}
.ls4b{letter-spacing:109.753003pt;}
.ls4a{letter-spacing:109.811627pt;}
.ls11{letter-spacing:604.873387pt;}
.ws30{word-spacing:-106.880000pt;}
.ws2{word-spacing:-49.953280pt;}
.ws44{word-spacing:-49.920000pt;}
.ws2a{word-spacing:-38.804480pt;}
.ws2e{word-spacing:-38.771200pt;}
.ws3c{word-spacing:-33.280000pt;}
.ws25{word-spacing:-27.982933pt;}
.ws17{word-spacing:-27.873067pt;}
.ws10{word-spacing:-27.822080pt;}
.ws12{word-spacing:-27.788800pt;}
.ws26{word-spacing:-27.349333pt;}
.ws20{word-spacing:-27.244800pt;}
.ws5{word-spacing:-26.688000pt;}
.ws2b{word-spacing:-25.220480pt;}
.ws6{word-spacing:-24.993280pt;}
.ws8{word-spacing:-24.992000pt;}
.ws7{word-spacing:-24.960000pt;}
.ws9{word-spacing:-24.864000pt;}
.ws2c{word-spacing:-24.825280pt;}
.ws43{word-spacing:-24.183808pt;}
.ws2d{word-spacing:-24.154880pt;}
.ws4a{word-spacing:-22.378667pt;}
.ws29{word-spacing:-22.347733pt;}
.ws28{word-spacing:-22.340480pt;}
.ws49{word-spacing:-22.210667pt;}
.ws27{word-spacing:-22.164480pt;}
.ws0{word-spacing:-22.131200pt;}
.ws47{word-spacing:-22.082560pt;}
.ws46{word-spacing:-22.006933pt;}
.ws35{word-spacing:-21.696000pt;}
.ws45{word-spacing:-19.502080pt;}
.ws34{word-spacing:-19.468800pt;}
.ws37{word-spacing:-19.465387pt;}
.ws36{word-spacing:-18.788053pt;}
.ws2f{word-spacing:-16.922880pt;}
.ws32{word-spacing:-16.896000pt;}
.ws31{word-spacing:-16.576000pt;}
.wsb{word-spacing:-14.492928pt;}
.wsa{word-spacing:-14.464000pt;}
.ws4{word-spacing:-14.400000pt;}
.wsd{word-spacing:-14.368661pt;}
.ws3{word-spacing:-14.208000pt;}
.wsc{word-spacing:-14.173461pt;}
.wse{word-spacing:-1.622357pt;}
.ws39{word-spacing:-1.312000pt;}
.ws24{word-spacing:-1.216640pt;}
.ws3d{word-spacing:-0.948309pt;}
.ws23{word-spacing:-0.619093pt;}
.ws3f{word-spacing:-0.512000pt;}
.wsf{word-spacing:-0.368981pt;}
.ws3a{word-spacing:-0.352000pt;}
.ws41{word-spacing:-0.245333pt;}
.ws42{word-spacing:-0.224000pt;}
.ws33{word-spacing:-0.096000pt;}
.ws4e{word-spacing:-0.044800pt;}
.ws1{word-spacing:0.000000pt;}
.ws16{word-spacing:0.081280pt;}
.ws19{word-spacing:0.304640pt;}
.ws48{word-spacing:0.317440pt;}
.ws3b{word-spacing:0.320000pt;}
.ws1a{word-spacing:0.371200pt;}
.ws40{word-spacing:0.736000pt;}
.ws1b{word-spacing:0.780800pt;}
.ws3e{word-spacing:0.782784pt;}
.ws1c{word-spacing:0.828160pt;}
.ws38{word-spacing:0.928000pt;}
.ws18{word-spacing:1.028480pt;}
.ws21{word-spacing:9.711360pt;}
.ws22{word-spacing:10.189440pt;}
.ws1d{word-spacing:10.987520pt;}
.ws1e{word-spacing:11.393920pt;}
.ws1f{word-spacing:11.677867pt;}
.ws4b{word-spacing:14.397440pt;}
.ws4d{word-spacing:14.717440pt;}
.ws4c{word-spacing:14.760320pt;}
.ws14{word-spacing:31.953280pt;}
.ws11{word-spacing:32.107520pt;}
.ws15{word-spacing:32.524160pt;}
.ws13{word-spacing:32.620587pt;}
._10{margin-left:-45.028267pt;}
._16{margin-left:-38.619733pt;}
._1f{margin-left:-26.770944pt;}
._14{margin-left:-25.670400pt;}
._1c{margin-left:-13.122560pt;}
._1b{margin-left:-8.718720pt;}
._4{margin-left:-7.732480pt;}
._1a{margin-left:-6.631211pt;}
._18{margin-left:-4.792320pt;}
._12{margin-left:-3.532331pt;}
._2{margin-left:-2.591360pt;}
._0{margin-left:-1.196160pt;}
._1{width:1.246251pt;}
._3{width:3.002283pt;}
._e{width:4.973227pt;}
._11{width:8.228181pt;}
._b{width:9.332907pt;}
._a{width:10.980480pt;}
._20{width:15.268693pt;}
._8{width:16.576000pt;}
._9{width:18.752000pt;}
._21{width:23.457067pt;}
._6{width:26.054400pt;}
._5{width:27.597696pt;}
._7{width:33.472000pt;}
._d{width:35.594027pt;}
._c{width:37.417600pt;}
._15{width:38.890325pt;}
._f{width:44.399147pt;}
._13{width:54.039552pt;}
._1d{width:64.515627pt;}
._1e{width:70.547840pt;}
._17{width:485.590613pt;}
._19{width:718.331093pt;}
.fsc{font-size:58.880000pt;}
.fsd{font-size:59.008000pt;}
.fs6{font-size:64.000000pt;}
.fs14{font-size:64.128000pt;}
.fse{font-size:74.880000pt;}
.fs17{font-size:75.008000pt;}
.fs12{font-size:80.000000pt;}
.fs4{font-size:80.128000pt;}
.fs2{font-size:85.120000pt;}
.fs9{font-size:85.248000pt;}
.fs3{font-size:90.880000pt;}
.fsb{font-size:96.000000pt;}
.fs11{font-size:96.128000pt;}
.fs16{font-size:106.880000pt;}
.fs10{font-size:107.008000pt;}
.fs8{font-size:128.000000pt;}
.fs1{font-size:128.128000pt;}
.fs1a{font-size:138.880000pt;}
.fs18{font-size:139.008000pt;}
.fs7{font-size:149.120000pt;}
.fs13{font-size:149.248000pt;}
.fs19{font-size:160.000000pt;}
.fsf{font-size:160.128000pt;}
.fs0{font-size:170.880000pt;}
.fs15{font-size:192.000000pt;}
.fs5{font-size:192.128000pt;}
.fs1b{font-size:229.248000pt;}
.fsa{font-size:235.008000pt;}
.y0{bottom:0.000000pt;}
.y14d{bottom:31.616000pt;}
.y134{bottom:35.424000pt;}
.y1c{bottom:36.064000pt;}
.ya{bottom:41.376000pt;}
.y8{bottom:43.104000pt;}
.y143{bottom:54.464000pt;}
.y96{bottom:73.760000pt;}
.y142{bottom:76.864000pt;}
.y14c{bottom:89.856000pt;}
.yab{bottom:94.688000pt;}
.yba{bottom:95.072000pt;}
.yfb{bottom:95.744000pt;}
.y6d{bottom:95.904000pt;}
.y9f{bottom:97.184000pt;}
.y119{bottom:98.496000pt;}
.y113{bottom:99.168000pt;}
.y141{bottom:99.264000pt;}
.y51{bottom:101.184000pt;}
.yd{bottom:101.440000pt;}
.ydc{bottom:101.952000pt;}
.yfe{bottom:101.984000pt;}
.yfd{bottom:104.224000pt;}
.y34{bottom:104.448000pt;}
.y56{bottom:105.728000pt;}
.ya0{bottom:106.400000pt;}
.yf4{bottom:106.784000pt;}
.ycc{bottom:109.280000pt;}
.y6a{bottom:109.856000pt;}
.yf5{bottom:109.952000pt;}
.ye9{bottom:110.784000pt;}
.y125{bottom:111.264000pt;}
.y7{bottom:111.936000pt;}
.yfa{bottom:114.976000pt;}
.y28{bottom:115.712000pt;}
.y114{bottom:117.024000pt;}
.y9c{bottom:118.304000pt;}
.y66{bottom:118.816000pt;}
.yd5{bottom:121.536000pt;}
.y140{bottom:121.696000pt;}
.y2b{bottom:121.728000pt;}
.y14b{bottom:122.976000pt;}
.y21{bottom:124.416000pt;}
.y6c{bottom:124.704000pt;}
.y149{bottom:126.816000pt;}
.y112{bottom:127.968000pt;}
.y33{bottom:130.048000pt;}
.y55{bottom:131.328000pt;}
.ycb{bottom:131.680000pt;}
.yaa{bottom:132.544000pt;}
.y24{bottom:132.800000pt;}
.y27{bottom:133.666667pt;}
.y69{bottom:135.453333pt;}
.y13c{bottom:137.306667pt;}
.y2a{bottom:139.653333pt;}
.y1e{bottom:141.533333pt;}
.y20{bottom:142.333333pt;}
.y9e{bottom:142.373333pt;}
.y124{bottom:143.293333pt;}
.y4c{bottom:144.933333pt;}
.yd4{bottom:147.133333pt;}
.y79{bottom:150.466667pt;}
.y23{bottom:150.720000pt;}
.y26{bottom:151.586667pt;}
.yca{bottom:154.080000pt;}
.y117{bottom:154.173333pt;}
.yff{bottom:156.826667pt;}
.y29{bottom:157.573333pt;}
.y1d{bottom:159.453333pt;}
.y13b{bottom:159.706667pt;}
.y1f{bottom:160.253333pt;}
.y111{bottom:160.773333pt;}
.ya9{bottom:161.373333pt;}
.ye8{bottom:164.480000pt;}
.y32{bottom:164.866667pt;}
.y9b{bottom:166.333333pt;}
.y22{bottom:168.640000pt;}
.y25{bottom:169.506667pt;}
.yd3{bottom:172.733333pt;}
.y4b{bottom:173.733333pt;}
.y123{bottom:175.293333pt;}
.yc9{bottom:176.480000pt;}
.y6{bottom:176.773333pt;}
.y54{bottom:178.173333pt;}
.y78{bottom:179.293333pt;}
.y13a{bottom:182.106667pt;}
.y1a{bottom:184.346667pt;}
.y94{bottom:185.466667pt;}
.y64{bottom:185.853333pt;}
.y68{bottom:186.653333pt;}
.y9d{bottom:187.520000pt;}
.y110{bottom:189.573333pt;}
.y7c{bottom:192.320000pt;}
.yd2{bottom:198.373333pt;}
.yc8{bottom:198.906667pt;}
.y4a{bottom:202.533333pt;}
.ye7{bottom:203.840000pt;}
.y133{bottom:204.026667pt;}
.y139{bottom:204.506667pt;}
.y122{bottom:207.293333pt;}
.y5{bottom:209.093333pt;}
.y93{bottom:209.466667pt;}
.y95{bottom:209.920000pt;}
.y19{bottom:209.946667pt;}
.y63{bottom:211.453333pt;}
.y67{bottom:212.293333pt;}
.y50{bottom:217.466667pt;}
.y10f{bottom:218.373333pt;}
.yc7{bottom:221.306667pt;}
.y77{bottom:221.533333pt;}
.yd1{bottom:223.973333pt;}
.y4{bottom:228.133333pt;}
.ye6{bottom:229.760000pt;}
.y49{bottom:231.333333pt;}
.y92{bottom:233.466667pt;}
.y18{bottom:235.546667pt;}
.y132{bottom:236.066667pt;}
.y62{bottom:237.053333pt;}
.ydb{bottom:238.266667pt;}
.y121{bottom:239.293333pt;}
.y3d{bottom:241.346667pt;}
.yc6{bottom:243.706667pt;}
.y7d{bottom:249.146667pt;}
.yd0{bottom:249.573333pt;}
.y76{bottom:250.333333pt;}
.y10e{bottom:251.200000pt;}
.ya7{bottom:251.520000pt;}
.y9a{bottom:255.520000pt;}
.ye5{bottom:255.680000pt;}
.y91{bottom:257.466667pt;}
.y48{bottom:260.133333pt;}
.ya8{bottom:264.226667pt;}
.yb9{bottom:265.986667pt;}
.yc5{bottom:266.106667pt;}
.yda{bottom:267.066667pt;}
.y131{bottom:268.066667pt;}
.y3c{bottom:270.146667pt;}
.y120{bottom:271.333333pt;}
.ycf{bottom:275.173333pt;}
.y10d{bottom:280.000000pt;}
.y97{bottom:283.680000pt;}
.y17{bottom:286.786667pt;}
.y47{bottom:288.960000pt;}
.y99{bottom:289.533333pt;}
.y75{bottom:292.413333pt;}
.ya6{bottom:293.600000pt;}
.y3{bottom:294.880000pt;}
.y130{bottom:300.066667pt;}
.yce{bottom:300.773333pt;}
.y61{bottom:301.573333pt;}
.y11f{bottom:303.333333pt;}
.yb8{bottom:308.066667pt;}
.yc4{bottom:310.906667pt;}
.y4f{bottom:311.586667pt;}
.y16{bottom:312.386667pt;}
.y10c{bottom:312.800000pt;}
.y46{bottom:317.760000pt;}
.ye4{bottom:320.826667pt;}
.y74{bottom:321.253333pt;}
.y145{bottom:321.280000pt;}
.y60{bottom:327.173333pt;}
.y3b{bottom:327.746667pt;}
.y12f{bottom:332.066667pt;}
.yc3{bottom:333.346667pt;}
.yf9{bottom:333.533333pt;}
.y58{bottom:333.693333pt;}
.y7b{bottom:334.080000pt;}
.y98{bottom:334.693333pt;}
.y4e{bottom:335.293333pt;}
.y11e{bottom:335.333333pt;}
.ya5{bottom:335.840000pt;}
.y10b{bottom:341.600000pt;}
.y144{bottom:343.680000pt;}
.y45{bottom:346.560000pt;}
.yb7{bottom:350.333333pt;}
.ycd{bottom:352.000000pt;}
.yf3{bottom:352.666667pt;}
.yf8{bottom:352.733333pt;}
.y5f{bottom:352.773333pt;}
.yc2{bottom:355.746667pt;}
.y3a{bottom:356.573333pt;}
.ye3{bottom:360.026667pt;}
.y73{bottom:363.333333pt;}
.y15{bottom:363.586667pt;}
.y12e{bottom:364.066667pt;}
.y11d{bottom:367.333333pt;}
.y10a{bottom:370.400000pt;}
.y44{bottom:375.360000pt;}
.yf2{bottom:375.706667pt;}
.y4d{bottom:377.186667pt;}
.ya4{bottom:377.946667pt;}
.yc1{bottom:378.146667pt;}
.y90{bottom:378.973333pt;}
.y2e{bottom:382.080000pt;}
.y8d{bottom:383.973333pt;}
.y39{bottom:385.373333pt;}
.y57{bottom:385.573333pt;}
.ye2{bottom:385.946667pt;}
.yb2{bottom:386.533333pt;}
.y14{bottom:389.186667pt;}
.yb6{bottom:392.413333pt;}
.y2{bottom:392.733333pt;}
.y14a{bottom:395.333333pt;}
.y12d{bottom:396.093333pt;}
.y1b{bottom:399.333333pt;}
.yc0{bottom:400.546667pt;}
.y8f{bottom:402.973333pt;}
.y109{bottom:403.226667pt;}
.y43{bottom:404.160000pt;}
.y72{bottom:405.573333pt;}
.y8c{bottom:407.973333pt;}
.ye1{bottom:411.866667pt;}
.yf1{bottom:412.026667pt;}
.y38{bottom:414.173333pt;}
.y13{bottom:414.813333pt;}
.y5e{bottom:417.440000pt;}
.ya3{bottom:420.026667pt;}
.ybf{bottom:422.946667pt;}
.yb1{bottom:423.333333pt;}
.y2d{bottom:424.453333pt;}
.y12c{bottom:428.093333pt;}
.y11c{bottom:431.360000pt;}
.y8b{bottom:431.973333pt;}
.y108{bottom:432.026667pt;}
.y42{bottom:432.986667pt;}
.y1{bottom:433.693333pt;}
.yb5{bottom:434.493333pt;}
.yf0{bottom:435.066667pt;}
.yd9{bottom:435.133333pt;}
.y8e{bottom:436.160000pt;}
.ye0{bottom:437.826667pt;}
.y2c{bottom:437.893333pt;}
.y5d{bottom:443.040000pt;}
.y138{bottom:445.826667pt;}
.y71{bottom:447.653333pt;}
.ybe{bottom:460.066667pt;}
.y12b{bottom:460.093333pt;}
.yb0{bottom:460.133333pt;}
.yd8{bottom:460.773333pt;}
.y107{bottom:460.826667pt;}
.y148{bottom:461.346667pt;}
.y41{bottom:461.786667pt;}
.ya2{bottom:462.266667pt;}
.y11b{bottom:463.360000pt;}
.y12{bottom:466.013333pt;}
.y137{bottom:468.226667pt;}
.y5c{bottom:468.640000pt;}
.y7a{bottom:469.026667pt;}
.y8a{bottom:470.173333pt;}
.yef{bottom:471.586667pt;}
.y37{bottom:471.773333pt;}
.yb4{bottom:476.773333pt;}
.ydf{bottom:477.186667pt;}
.y13f{bottom:478.053333pt;}
.y155{bottom:481.093333pt;}
.y147{bottom:483.746667pt;}
.yd7{bottom:486.373333pt;}
.y70{bottom:489.760000pt;}
.y40{bottom:490.586667pt;}
.y136{bottom:490.626667pt;}
.y11{bottom:491.613333pt;}
.y12a{bottom:492.093333pt;}
.y106{bottom:493.626667pt;}
.yee{bottom:494.626667pt;}
.y11a{bottom:495.360000pt;}
.yaf{bottom:496.933333pt;}
.y82{bottom:497.146667pt;}
.y13e{bottom:500.453333pt;}
.y36{bottom:500.613333pt;}
.yde{bottom:503.106667pt;}
.ya1{bottom:504.386667pt;}
.yc{bottom:505.506667pt;}
.y146{bottom:506.146667pt;}
.ybd{bottom:506.426667pt;}
.y154{bottom:506.693333pt;}
.y9{bottom:506.880000pt;}
.y89{bottom:515.333333pt;}
.y3f{bottom:519.386667pt;}
.y81{bottom:521.146667pt;}
.y105{bottom:522.466667pt;}
.y13d{bottom:522.853333pt;}
.y129{bottom:524.133333pt;}
.yae{bottom:525.760000pt;}
.yb3{bottom:526.853333pt;}
.ybc{bottom:528.826667pt;}
.ydd{bottom:529.026667pt;}
.yed{bottom:530.946667pt;}
.y6f{bottom:532.000000pt;}
.y153{bottom:532.293333pt;}
.y5b{bottom:533.120000pt;}
.y31{bottom:533.466667pt;}
.y103{bottom:535.493333pt;}
.yd6{bottom:537.573333pt;}
.y10{bottom:542.813333pt;}
.y80{bottom:545.146667pt;}
.ybb{bottom:551.226667pt;}
.y104{bottom:551.266667pt;}
.yec{bottom:553.986667pt;}
.yad{bottom:554.560000pt;}
.y128{bottom:556.133333pt;}
.y152{bottom:557.920000pt;}
.y5a{bottom:558.746667pt;}
.y88{bottom:560.480000pt;}
.y30{bottom:563.866667pt;}
.yf{bottom:568.453333pt;}
.y84{bottom:571.333333pt;}
.y102{bottom:579.866667pt;}
.y151{bottom:583.520000pt;}
.y127{bottom:588.133333pt;}
.ye{bottom:594.053333pt;}
.y87{bottom:594.493333pt;}
.y83{bottom:595.333333pt;}
.y116{bottom:598.080000pt;}
.y7e{bottom:608.506667pt;}
.y101{bottom:608.666667pt;}
.y150{bottom:609.120000pt;}
.yf7{bottom:615.773333pt;}
.y126{bottom:620.133333pt;}
.y53{bottom:621.120000pt;}
.yf6{bottom:627.906667pt;}
.y86{bottom:628.506667pt;}
.y14f{bottom:634.720000pt;}
.y100{bottom:637.506667pt;}
.y6e{bottom:639.653333pt;}
.yea{bottom:641.373333pt;}
.y6b{bottom:641.413333pt;}
.y3e{bottom:642.173333pt;}
.y135{bottom:642.880000pt;}
.y35{bottom:643.546667pt;}
.yac{bottom:644.186667pt;}
.y59{bottom:644.733333pt;}
.y2f{bottom:648.453333pt;}
.y115{bottom:649.440000pt;}
.yeb{bottom:652.346667pt;}
.y65{bottom:656.613333pt;}
.y14e{bottom:660.320000pt;}
.y85{bottom:662.533333pt;}
.y118{bottom:674.560000pt;}
.y52{bottom:674.746667pt;}
.yb{bottom:675.773333pt;}
.yfc{bottom:682.560000pt;}
.y7f{bottom:696.506667pt;}
.h31{height:54.826250pt;}
.h2b{height:57.366562pt;}
.hf{height:58.563750pt;}
.h11{height:58.691063pt;}
.h6{height:59.593750pt;}
.h10{height:60.288750pt;}
.h9{height:60.937500pt;}
.h2f{height:61.059375pt;}
.h1c{height:63.656250pt;}
.h1e{height:63.783562pt;}
.hc{height:65.211562pt;}
.h1a{height:65.531250pt;}
.h12{height:66.750000pt;}
.h14{height:69.724687pt;}
.h2a{height:69.843875pt;}
.h23{height:71.296875pt;}
.h24{height:71.418750pt;}
.h28{height:72.937500pt;}
.h33{height:73.546875pt;}
.h19{height:73.644937pt;}
.h36{height:74.477812pt;}
.h37{height:74.605125pt;}
.h4{height:74.611375pt;}
.ha{height:79.259687pt;}
.hb{height:79.378875pt;}
.h1b{height:79.570312pt;}
.h2c{height:81.046875pt;}
.h29{height:81.882188pt;}
.h27{height:81.980250pt;}
.h3{height:84.623125pt;}
.h18{height:89.390625pt;}
.h17{height:89.509812pt;}
.h32{height:91.406250pt;}
.he{height:95.484375pt;}
.h30{height:98.062500pt;}
.h21{height:99.521562pt;}
.h20{height:99.640750pt;}
.h13{height:100.125000pt;}
.h22{height:101.765625pt;}
.h16{height:101.887500pt;}
.h2{height:119.306687pt;}
.h35{height:122.980312pt;}
.h8{height:127.312500pt;}
.h34{height:129.318437pt;}
.h2d{height:129.437625pt;}
.h1{height:130.913437pt;}
.h7{height:138.853437pt;}
.h1d{height:138.972625pt;}
.h2e{height:148.984375pt;}
.h15{height:149.103562pt;}
.h26{height:160.640000pt;}
.h38{height:175.629937pt;}
.h1f{height:178.781250pt;}
.h5{height:178.900437pt;}
.hd{height:233.745750pt;}
.h25{height:560.000000pt;}
.h0{height:720.000000pt;}
.w2{width:207.200000pt;}
.w3{width:228.640000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x57{left:4.893333pt;}
.x1a{left:8.863981pt;}
.x4{left:10.303981pt;}
.x54{left:14.053333pt;}
.x6c{left:16.799981pt;}
.x83{left:20.767981pt;}
.x3b{left:21.887981pt;}
.x19{left:23.967981pt;}
.x1d{left:25.375981pt;}
.xa{left:27.199981pt;}
.xb{left:31.839981pt;}
.x71{left:34.047981pt;}
.x2d{left:35.871981pt;}
.x6b{left:37.919981pt;}
.x65{left:39.007981pt;}
.x87{left:41.567981pt;}
.x79{left:42.495981pt;}
.x5{left:44.959981pt;}
.x3c{left:45.887981pt;}
.x33{left:60.063981pt;}
.x64{left:62.911981pt;}
.x72{left:64.127981pt;}
.x8f{left:65.375981pt;}
.x75{left:66.623981pt;}
.x76{left:69.727981pt;}
.x8e{left:71.455981pt;}
.x74{left:75.007981pt;}
.x78{left:77.919981pt;}
.x1{left:85.599981pt;}
.x8d{left:87.295981pt;}
.x82{left:92.191981pt;}
.x41{left:97.599981pt;}
.x80{left:99.231981pt;}
.x31{left:105.599981pt;}
.x9b{left:106.815981pt;}
.x8c{left:111.647981pt;}
.x90{left:113.247981pt;}
.x20{left:114.271981pt;}
.x70{left:128.095981pt;}
.x32{left:129.631981pt;}
.x2f{left:134.906648pt;}
.x59{left:146.493333pt;}
.x2e{left:157.786648pt;}
.x1f{left:206.653314pt;}
.x1c{left:210.533314pt;}
.x7f{left:236.253314pt;}
.x9a{left:241.666648pt;}
.x68{left:249.893314pt;}
.x9{left:253.213314pt;}
.x3{left:264.959981pt;}
.x26{left:279.226648pt;}
.x2b{left:282.493314pt;}
.x37{left:284.573314pt;}
.x3a{left:293.413314pt;}
.x27{left:307.586648pt;}
.x10{left:311.386648pt;}
.x39{left:317.213314pt;}
.x38{left:322.013314pt;}
.x11{left:330.266648pt;}
.x36{left:331.199981pt;}
.xf{left:334.426648pt;}
.x1b{left:335.359981pt;}
.x23{left:344.893314pt;}
.x29{left:363.866648pt;}
.x28{left:378.306648pt;}
.x92{left:394.399981pt;}
.x7{left:411.613314pt;}
.x30{left:418.559981pt;}
.x91{left:419.839981pt;}
.x6d{left:426.333314pt;}
.x88{left:434.626648pt;}
.x2{left:444.866648pt;}
.x66{left:464.893314pt;}
.x86{left:477.506648pt;}
.x34{left:499.773314pt;}
.x67{left:514.466648pt;}
.x35{left:529.853314pt;}
.x53{left:542.240000pt;}
.x12{left:547.906648pt;}
.x13{left:549.826648pt;}
.x14{left:563.746648pt;}
.x45{left:574.533314pt;}
.x44{left:577.733314pt;}
.x43{left:587.333314pt;}
.x2a{left:597.826648pt;}
.x52{left:603.333314pt;}
.x55{left:606.053314pt;}
.x9c{left:607.586648pt;}
.x69{left:649.853314pt;}
.x18{left:666.333314pt;}
.x3d{left:679.933314pt;}
.x3e{left:681.599981pt;}
.x3f{left:684.186648pt;}
.x6a{left:685.853314pt;}
.x7a{left:704.799981pt;}
.x6e{left:738.813314pt;}
.x56{left:749.280000pt;}
.xc{left:752.866648pt;}
.xe{left:759.426648pt;}
.x5e{left:772.893314pt;}
.x21{left:778.813314pt;}
.x46{left:780.253314pt;}
.x8{left:788.933314pt;}
.x24{left:791.106648pt;}
.xd{left:792.706648pt;}
.x4e{left:795.773314pt;}
.x5f{left:802.173314pt;}
.x42{left:805.533314pt;}
.x93{left:807.039981pt;}
.x22{left:808.893314pt;}
.x60{left:814.173314pt;}
.x89{left:815.493314pt;}
.x97{left:819.933314pt;}
.x4d{left:820.893314pt;}
.x47{left:822.973314pt;}
.x25{left:827.106648pt;}
.x99{left:833.693314pt;}
.x94{left:836.186648pt;}
.x84{left:837.946648pt;}
.x73{left:844.386648pt;}
.x98{left:860.733314pt;}
.x85{left:868.026648pt;}
.x58{left:886.333314pt;}
.x1e{left:947.973314pt;}
.x2c{left:953.306648pt;}
.x17{left:963.613314pt;}
.x95{left:970.626648pt;}
.x7e{left:972.413314pt;}
.x16{left:983.773314pt;}
.x15{left:988.893314pt;}
.x96{left:993.506648pt;}
.x50{left:997.306648pt;}
.x4c{left:1001.306648pt;}
.x62{left:1008.026648pt;}
.x5a{left:1009.626648pt;}
.x8a{left:1010.879981pt;}
.x6f{left:1017.573314pt;}
.x7d{left:1019.613314pt;}
.x5c{left:1028.666648pt;}
.x5b{left:1036.986648pt;}
.x8b{left:1046.879981pt;}
.x49{left:1055.386648pt;}
.x48{left:1058.746648pt;}
.x51{left:1063.386648pt;}
.x61{left:1065.146648pt;}
.x77{left:1066.813314pt;}
.x5d{left:1069.306648pt;}
.x4a{left:1071.906648pt;}
.x4f{left:1092.386648pt;}
.x81{left:1094.946648pt;}
.x7c{left:1096.733314pt;}
.x4b{left:1098.146648pt;}
.x63{left:1107.586648pt;}
.x7b{left:1128.773314pt;}
.x6{left:1131.173314pt;}
.x40{left:1135.653314pt;}
}




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