
    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_912b919cafd0bf7fbbf63ace.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.111000;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_98db9192d1a4f5f6ad6f5fd8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.848145;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_e677605bc3fa04e7e6831e18.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.086000;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_6b4b3f62c16797bf599384a3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.984000;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_3e88771bc878b9500a08feac.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.984000;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_a4d9129ecd4edfd152918264.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.978000;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_01224647174021f112161701.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.978000;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_f1f7cabb4f77eb2f650db5f4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.350000;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_513fb88204c6705f96013c27.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.896000;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_0e14fbe0321e2f8db11bfb50.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.718000;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_c16b87c67db6279b0ccf7958.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.000000;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(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v2{vertical-align:-17.981280px;}
.v4{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.981280px;}
.v1{vertical-align:23.976540px;}
.ls18{letter-spacing:-1.620000px;}
.ls51{letter-spacing:-1.536000px;}
.ls4d{letter-spacing:-1.440000px;}
.ls2e{letter-spacing:-1.350000px;}
.ls4e{letter-spacing:-1.248000px;}
.ls1c{letter-spacing:-1.242000px;}
.ls2c{letter-spacing:-1.188000px;}
.ls53{letter-spacing:-1.152000px;}
.ls27{letter-spacing:-1.134000px;}
.ls17{letter-spacing:-1.080000px;}
.ls4f{letter-spacing:-1.056000px;}
.ls43{letter-spacing:-0.960000px;}
.ls1a{letter-spacing:-0.918000px;}
.ls55{letter-spacing:-0.912000px;}
.ls22{letter-spacing:-0.864000px;}
.ls24{letter-spacing:-0.756000px;}
.ls50{letter-spacing:-0.720000px;}
.ls19{letter-spacing:-0.702000px;}
.ls1d{letter-spacing:-0.648000px;}
.ls1b{letter-spacing:-0.629640px;}
.ls54{letter-spacing:-0.624000px;}
.ls2f{letter-spacing:-0.600000px;}
.ls15{letter-spacing:-0.594000px;}
.lsc{letter-spacing:-0.540000px;}
.ls28{letter-spacing:-0.486000px;}
.ls52{letter-spacing:-0.480000px;}
.ls1e{letter-spacing:-0.432000px;}
.ls56{letter-spacing:-0.336000px;}
.ls1f{letter-spacing:-0.314820px;}
.lsd{letter-spacing:-0.270000px;}
.ls46{letter-spacing:-0.240000px;}
.ls16{letter-spacing:-0.216000px;}
.ls4c{letter-spacing:-0.192000px;}
.ls13{letter-spacing:-0.162000px;}
.ls47{letter-spacing:-0.144000px;}
.lse{letter-spacing:-0.108000px;}
.ls44{letter-spacing:-0.096000px;}
.ls14{letter-spacing:-0.054000px;}
.ls42{letter-spacing:-0.048000px;}
.lsb{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000384px;}
.ls2{letter-spacing:0.001488px;}
.ls0{letter-spacing:0.006000px;}
.ls34{letter-spacing:0.048000px;}
.ls23{letter-spacing:0.054000px;}
.ls3d{letter-spacing:0.096000px;}
.ls4{letter-spacing:0.108000px;}
.ls31{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.162000px;}
.ls33{letter-spacing:0.192000px;}
.ls5{letter-spacing:0.216000px;}
.ls3b{letter-spacing:0.240000px;}
.ls29{letter-spacing:0.251856px;}
.ls10{letter-spacing:0.270000px;}
.ls4a{letter-spacing:0.288000px;}
.ls20{letter-spacing:0.314820px;}
.ls3{letter-spacing:0.324000px;}
.ls38{letter-spacing:0.336000px;}
.ls11{letter-spacing:0.378000px;}
.ls35{letter-spacing:0.384000px;}
.ls21{letter-spacing:0.432000px;}
.ls36{letter-spacing:0.480000px;}
.lsa{letter-spacing:0.486000px;}
.ls45{letter-spacing:0.528000px;}
.ls6{letter-spacing:0.540000px;}
.ls9{letter-spacing:0.566676px;}
.ls7{letter-spacing:0.594000px;}
.ls32{letter-spacing:0.624000px;}
.ls41{letter-spacing:0.672000px;}
.lsf{letter-spacing:0.702000px;}
.ls39{letter-spacing:0.720000px;}
.ls2b{letter-spacing:0.756000px;}
.ls3a{letter-spacing:0.816000px;}
.ls26{letter-spacing:0.864000px;}
.ls3c{letter-spacing:0.912000px;}
.ls4b{letter-spacing:0.960000px;}
.ls8{letter-spacing:0.972000px;}
.ls3f{letter-spacing:1.152000px;}
.ls3e{letter-spacing:1.200000px;}
.ls48{letter-spacing:1.296000px;}
.ls37{letter-spacing:1.392000px;}
.ls2a{letter-spacing:1.404000px;}
.ls49{letter-spacing:1.440000px;}
.ls25{letter-spacing:1.620000px;}
.ls30{letter-spacing:1.824000px;}
.ls40{letter-spacing:2.064000px;}
.ls2d{letter-spacing:5.945820px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-15.012000px;}
.ws23{word-spacing:-14.472000px;}
.ws21{word-spacing:-13.932000px;}
.ws3{word-spacing:-13.344000px;}
.ws1{word-spacing:-11.676000px;}
.ws5{word-spacing:-9.318672px;}
.ws3b{word-spacing:-9.066816px;}
.ws63{word-spacing:-9.003852px;}
.ws20{word-spacing:-8.751996px;}
.ws24{word-spacing:-8.437176px;}
.ws22{word-spacing:-8.122356px;}
.ws0{word-spacing:-5.004000px;}
.ws11{word-spacing:-3.024000px;}
.ws1b{word-spacing:-2.970000px;}
.ws78{word-spacing:-2.916000px;}
.ws34{word-spacing:-2.862000px;}
.ws38{word-spacing:-2.808000px;}
.wsf{word-spacing:-2.754000px;}
.ws79{word-spacing:-2.700000px;}
.ws8f{word-spacing:-2.688000px;}
.ws16{word-spacing:-2.646000px;}
.ws8a{word-spacing:-2.640000px;}
.ws28{word-spacing:-2.592000px;}
.ws87{word-spacing:-2.580000px;}
.ws26{word-spacing:-2.538000px;}
.ws99{word-spacing:-2.496000px;}
.ws5b{word-spacing:-2.484000px;}
.ws47{word-spacing:-2.430000px;}
.ws56{word-spacing:-2.376000px;}
.ws91{word-spacing:-2.352000px;}
.ws4e{word-spacing:-2.322000px;}
.ws1e{word-spacing:-2.214000px;}
.ws77{word-spacing:-2.160000px;}
.ws64{word-spacing:-2.106000px;}
.ws4a{word-spacing:-2.052000px;}
.ws98{word-spacing:-2.016000px;}
.ws95{word-spacing:-1.968000px;}
.ws7e{word-spacing:-1.944000px;}
.ws1c{word-spacing:-1.890000px;}
.ws54{word-spacing:-1.836000px;}
.ws61{word-spacing:-1.782000px;}
.ws25{word-spacing:-1.728000px;}
.wsaa{word-spacing:-1.680000px;}
.ws17{word-spacing:-1.674000px;}
.ws53{word-spacing:-1.620000px;}
.ws76{word-spacing:-1.566000px;}
.ws6d{word-spacing:-1.458000px;}
.wsbd{word-spacing:-1.440000px;}
.wsc{word-spacing:-1.404000px;}
.ws58{word-spacing:-1.350000px;}
.ws72{word-spacing:-1.296000px;}
.wsd{word-spacing:-1.242000px;}
.wsb2{word-spacing:-1.200000px;}
.ws8e{word-spacing:-1.152000px;}
.ws6a{word-spacing:-1.134000px;}
.ws13{word-spacing:-1.080000px;}
.ws74{word-spacing:-1.026000px;}
.ws9e{word-spacing:-1.008000px;}
.ws3d{word-spacing:-0.972000px;}
.wsbf{word-spacing:-0.960000px;}
.ws52{word-spacing:-0.918000px;}
.wsc3{word-spacing:-0.912000px;}
.ws51{word-spacing:-0.864000px;}
.wsb5{word-spacing:-0.768000px;}
.ws75{word-spacing:-0.756000px;}
.ws45{word-spacing:-0.702000px;}
.wsa4{word-spacing:-0.672000px;}
.wsab{word-spacing:-0.624000px;}
.ws33{word-spacing:-0.540000px;}
.wsca{word-spacing:-0.528000px;}
.ws9{word-spacing:-0.486000px;}
.wsa1{word-spacing:-0.480000px;}
.wsb3{word-spacing:-0.432000px;}
.ws2b{word-spacing:-0.378000px;}
.ws96{word-spacing:-0.336000px;}
.wsc6{word-spacing:-0.240000px;}
.ws32{word-spacing:-0.216000px;}
.ws50{word-spacing:-0.162000px;}
.ws55{word-spacing:-0.108000px;}
.ws90{word-spacing:-0.096000px;}
.ws86{word-spacing:-0.060000px;}
.ws7{word-spacing:-0.054000px;}
.wsb4{word-spacing:-0.048000px;}
.ws6{word-spacing:0.000000px;}
.ws36{word-spacing:0.054000px;}
.wsce{word-spacing:0.096000px;}
.ws4c{word-spacing:0.108000px;}
.ws44{word-spacing:0.162000px;}
.ws41{word-spacing:0.216000px;}
.ws12{word-spacing:0.270000px;}
.ws9f{word-spacing:0.288000px;}
.ws19{word-spacing:0.324000px;}
.wsb8{word-spacing:0.384000px;}
.ws4d{word-spacing:0.432000px;}
.wsd0{word-spacing:0.480000px;}
.ws70{word-spacing:0.486000px;}
.wsc7{word-spacing:0.528000px;}
.ws35{word-spacing:0.540000px;}
.ws27{word-spacing:0.594000px;}
.ws82{word-spacing:0.600000px;}
.ws93{word-spacing:0.624000px;}
.ws1d{word-spacing:0.702000px;}
.wsc8{word-spacing:0.720000px;}
.wsd3{word-spacing:0.768000px;}
.ws10{word-spacing:0.810000px;}
.ws5a{word-spacing:0.864000px;}
.ws9c{word-spacing:0.960000px;}
.ws60{word-spacing:0.972000px;}
.ws9b{word-spacing:1.008000px;}
.ws85{word-spacing:1.020000px;}
.ws69{word-spacing:1.026000px;}
.ws18{word-spacing:1.080000px;}
.ws37{word-spacing:1.134000px;}
.ws92{word-spacing:1.152000px;}
.wsbc{word-spacing:1.248000px;}
.ws89{word-spacing:1.260000px;}
.ws80{word-spacing:1.296000px;}
.ws7a{word-spacing:1.404000px;}
.wscd{word-spacing:1.440000px;}
.ws3f{word-spacing:1.458000px;}
.wscc{word-spacing:1.488000px;}
.ws42{word-spacing:1.566000px;}
.ws62{word-spacing:1.620000px;}
.ws5c{word-spacing:1.674000px;}
.wsa8{word-spacing:1.680000px;}
.ws4b{word-spacing:1.728000px;}
.wsc5{word-spacing:1.776000px;}
.ws31{word-spacing:1.782000px;}
.ws2f{word-spacing:1.836000px;}
.wsc4{word-spacing:1.872000px;}
.ws8c{word-spacing:1.920000px;}
.ws65{word-spacing:1.944000px;}
.ws6f{word-spacing:1.998000px;}
.ws67{word-spacing:2.052000px;}
.ws71{word-spacing:2.106000px;}
.wsd6{word-spacing:2.112000px;}
.ws14{word-spacing:2.160000px;}
.wscf{word-spacing:2.256000px;}
.ws3c{word-spacing:2.322000px;}
.ws8{word-spacing:2.376000px;}
.wsb6{word-spacing:2.400000px;}
.ws40{word-spacing:2.430000px;}
.ws5f{word-spacing:2.538000px;}
.wsa9{word-spacing:2.544000px;}
.ws3e{word-spacing:2.592000px;}
.wsa7{word-spacing:2.640000px;}
.ws94{word-spacing:2.688000px;}
.ws66{word-spacing:2.700000px;}
.wsb{word-spacing:2.970000px;}
.wsd2{word-spacing:2.976000px;}
.ws88{word-spacing:3.000000px;}
.wse{word-spacing:3.024000px;}
.wsa6{word-spacing:3.120000px;}
.wsaf{word-spacing:3.168000px;}
.ws46{word-spacing:3.186000px;}
.wsa{word-spacing:3.240000px;}
.wsad{word-spacing:3.264000px;}
.wsd4{word-spacing:3.312000px;}
.ws6e{word-spacing:3.348000px;}
.wsc2{word-spacing:3.408000px;}
.wsa5{word-spacing:3.504000px;}
.ws15{word-spacing:3.510000px;}
.ws83{word-spacing:3.540000px;}
.ws59{word-spacing:3.564000px;}
.ws43{word-spacing:3.672000px;}
.ws2e{word-spacing:3.726000px;}
.ws29{word-spacing:3.834000px;}
.ws2a{word-spacing:3.888000px;}
.ws49{word-spacing:3.942000px;}
.wsa0{word-spacing:3.984000px;}
.ws4f{word-spacing:3.996000px;}
.ws48{word-spacing:4.050000px;}
.ws84{word-spacing:4.080000px;}
.ws5d{word-spacing:4.158000px;}
.wscb{word-spacing:4.224000px;}
.ws8d{word-spacing:4.320000px;}
.wsb1{word-spacing:4.368000px;}
.ws1a{word-spacing:4.428000px;}
.wsba{word-spacing:4.464000px;}
.ws68{word-spacing:4.590000px;}
.wsa3{word-spacing:4.656000px;}
.ws73{word-spacing:4.698000px;}
.ws8b{word-spacing:4.860000px;}
.ws9d{word-spacing:4.992000px;}
.ws6c{word-spacing:5.400000px;}
.ws5e{word-spacing:5.562000px;}
.ws81{word-spacing:5.760000px;}
.ws2c{word-spacing:5.940000px;}
.ws57{word-spacing:5.994000px;}
.wsd5{word-spacing:6.000000px;}
.ws2d{word-spacing:6.426000px;}
.ws9a{word-spacing:6.480000px;}
.ws7c{word-spacing:6.750000px;}
.wsc0{word-spacing:6.864000px;}
.ws7f{word-spacing:6.966000px;}
.wsc1{word-spacing:7.008000px;}
.wsbe{word-spacing:7.344000px;}
.wsac{word-spacing:7.392000px;}
.wsae{word-spacing:8.208000px;}
.ws30{word-spacing:8.802000px;}
.wsa2{word-spacing:8.880000px;}
.ws7b{word-spacing:8.964000px;}
.wsb9{word-spacing:9.120000px;}
.ws7d{word-spacing:9.126000px;}
.wsb0{word-spacing:9.216000px;}
.wsc9{word-spacing:9.312000px;}
.wsd1{word-spacing:13.872000px;}
.ws6b{word-spacing:13.986000px;}
.wsb7{word-spacing:15.792000px;}
.ws97{word-spacing:18.336000px;}
.wsbb{word-spacing:20.448000px;}
.ws1f{word-spacing:37.959726px;}
.ws39{word-spacing:37.962084px;}
.ws2{word-spacing:54.793602px;}
.ws3a{word-spacing:124.367400px;}
._10{margin-left:-830.754000px;}
._2{margin-left:-47.255802px;}
._a{margin-left:-42.012000px;}
._d{margin-left:-40.931568px;}
._7{margin-left:-30.072126px;}
._1d{margin-left:-22.432882px;}
._14{margin-left:-19.980027px;}
._22{margin-left:-8.898606px;}
._4{margin-left:-6.965773px;}
._3{margin-left:-5.328367px;}
._f{margin-left:-4.313963px;}
._0{margin-left:-3.164543px;}
._5{margin-left:-1.939118px;}
._6{width:1.194000px;}
._27{width:5.425200px;}
._8{width:12.968773px;}
._29{width:14.919600px;}
._26{width:16.359600px;}
._28{width:17.799600px;}
._25{width:20.670000px;}
._b{width:24.023412px;}
._e{width:26.020200px;}
._23{width:27.100200px;}
._24{width:35.326800px;}
._15{width:37.523487px;}
._13{width:120.478320px;}
._1a{width:137.664360px;}
._12{width:155.534062px;}
._1{width:157.388543px;}
._19{width:212.724360px;}
._1c{width:232.282620px;}
._17{width:266.501880px;}
._c{width:318.318660px;}
._16{width:333.508320px;}
._18{width:426.438540px;}
._11{width:431.528580px;}
._9{width:517.302720px;}
._1e{width:632.890800px;}
._21{width:791.855795px;}
._20{width:868.487195px;}
._1f{width:954.091200px;}
._1b{width:1170.534000px;}
.fc4{color:rgb(34,31,31);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(87,88,90);}
.fc1{color:rgb(133,144,191);}
.fc0{color:rgb(12,77,150);}
.fs1{font-size:18.000000px;}
.fsa{font-size:27.000000px;}
.fs7{font-size:31.482000px;}
.fs9{font-size:39.000000px;}
.fs6{font-size:41.976000px;}
.fs2{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fsc{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fsb{font-size:90.000000px;}
.fs4{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:40.818750px;}
.y34{bottom:40.819500px;}
.y9d{bottom:71.512725px;}
.y20{bottom:83.764350px;}
.y32{bottom:84.301500px;}
.y104{bottom:94.768590px;}
.yfa{bottom:94.768620px;}
.y5b{bottom:94.768800px;}
.y157{bottom:96.790500px;}
.yb2{bottom:98.346750px;}
.y9c{bottom:100.394175px;}
.y31{bottom:101.551500px;}
.y1f{bottom:110.268000px;}
.y103{bottom:112.018590px;}
.yf9{bottom:112.018620px;}
.y5a{bottom:112.018800px;}
.y156{bottom:114.040500px;}
.y9b{bottom:117.644175px;}
.y30{bottom:118.801500px;}
.y1e{bottom:128.268000px;}
.y102{bottom:129.268590px;}
.yf8{bottom:129.268620px;}
.yb1{bottom:130.479000px;}
.y155{bottom:131.290500px;}
.y9a{bottom:134.894175px;}
.y2f{bottom:136.051500px;}
.y59{bottom:142.024650px;}
.y1d{bottom:146.268000px;}
.y101{bottom:146.518590px;}
.yf7{bottom:146.518620px;}
.yb0{bottom:147.729000px;}
.y154{bottom:148.540500px;}
.y99{bottom:152.144175px;}
.y2e{bottom:153.301500px;}
.y11f{bottom:155.140500px;}
.y58{bottom:159.274650px;}
.y100{bottom:163.768590px;}
.yf6{bottom:163.768620px;}
.y1c{bottom:164.268000px;}
.yaf{bottom:164.979000px;}
.y153{bottom:165.790500px;}
.y98{bottom:169.394175px;}
.y2d{bottom:170.551500px;}
.y11e{bottom:173.140500px;}
.y57{bottom:176.524650px;}
.yff{bottom:181.018590px;}
.yf5{bottom:181.018650px;}
.yae{bottom:182.229000px;}
.y152{bottom:183.040500px;}
.y2c{bottom:187.801500px;}
.y56{bottom:193.774650px;}
.y108{bottom:198.268590px;}
.yfe{bottom:198.268620px;}
.yf4{bottom:198.268650px;}
.y97{bottom:199.400025px;}
.y11d{bottom:199.644000px;}
.y151{bottom:200.290500px;}
.y2b{bottom:205.051500px;}
.y55{bottom:211.024650px;}
.yad{bottom:212.234850px;}
.y107{bottom:215.518590px;}
.yfd{bottom:215.518620px;}
.yf3{bottom:215.518650px;}
.y96{bottom:216.650025px;}
.y150{bottom:217.540500px;}
.y11c{bottom:217.644000px;}
.y2a{bottom:222.301500px;}
.yac{bottom:229.484850px;}
.y106{bottom:232.768590px;}
.yfc{bottom:232.768620px;}
.yf2{bottom:232.768650px;}
.y95{bottom:233.900025px;}
.y14f{bottom:234.790500px;}
.y11b{bottom:235.644000px;}
.y29{bottom:239.551500px;}
.y54{bottom:241.030500px;}
.y105{bottom:250.018590px;}
.yfb{bottom:250.018620px;}
.yf1{bottom:250.018650px;}
.y94{bottom:251.150025px;}
.y14e{bottom:252.040500px;}
.y28{bottom:256.801500px;}
.yab{bottom:259.490700px;}
.y11a{bottom:262.149000px;}
.y14d{bottom:269.290500px;}
.y53{bottom:271.036500px;}
.y27{bottom:274.051500px;}
.yf0{bottom:280.024500px;}
.y119{bottom:280.149000px;}
.y93{bottom:281.155875px;}
.y14c{bottom:286.540500px;}
.yaa{bottom:290.389500px;}
.y26{bottom:291.301500px;}
.y118{bottom:298.149000px;}
.y92{bottom:298.405875px;}
.y14b{bottom:303.790500px;}
.y25{bottom:308.551500px;}
.yef{bottom:310.030500px;}
.y91{bottom:315.655875px;}
.y117{bottom:316.149000px;}
.y14a{bottom:321.040500px;}
.ya9{bottom:321.289500px;}
.y24{bottom:325.801500px;}
.y149{bottom:338.290500px;}
.ya8{bottom:338.539500px;}
.y116{bottom:342.652500px;}
.y23{bottom:343.051500px;}
.yeb{bottom:344.430000px;}
.y90{bottom:345.661725px;}
.y148{bottom:355.540500px;}
.y22{bottom:360.301500px;}
.y115{bottom:360.652500px;}
.y8f{bottom:362.911725px;}
.y147{bottom:372.790500px;}
.yea{bottom:376.561950px;}
.ye6{bottom:376.561980px;}
.y68{bottom:377.551500px;}
.y114{bottom:378.652500px;}
.y8e{bottom:380.161725px;}
.y146{bottom:390.040500px;}
.ye9{bottom:393.811950px;}
.ye5{bottom:393.811980px;}
.y21{bottom:394.801500px;}
.y113{bottom:405.156000px;}
.y145{bottom:407.290500px;}
.y8d{bottom:410.167575px;}
.ye8{bottom:411.061950px;}
.ye4{bottom:411.061980px;}
.y67{bottom:412.051500px;}
.y112{bottom:423.156000px;}
.y144{bottom:424.540500px;}
.y8c{bottom:427.417575px;}
.ye7{bottom:428.311950px;}
.ye3{bottom:428.311980px;}
.y52{bottom:429.301500px;}
.y143{bottom:441.790500px;}
.y8b{bottom:444.667575px;}
.ye2{bottom:445.561980px;}
.y51{bottom:446.551500px;}
.y111{bottom:449.659500px;}
.y142{bottom:459.040500px;}
.y50{bottom:463.801500px;}
.y110{bottom:467.659500px;}
.y8a{bottom:474.673455px;}
.ye0{bottom:475.567830px;}
.yda{bottom:475.567860px;}
.y141{bottom:476.290500px;}
.y4f{bottom:481.051500px;}
.y17a{bottom:483.225000px;}
.y1b{bottom:484.738500px;}
.y89{bottom:491.923455px;}
.ydf{bottom:492.817830px;}
.yd9{bottom:492.817860px;}
.y140{bottom:493.540500px;}
.y10f{bottom:494.164500px;}
.y4e{bottom:498.301500px;}
.y179{bottom:500.475000px;}
.y1a{bottom:501.988500px;}
.y88{bottom:509.173455px;}
.yde{bottom:510.067830px;}
.yd8{bottom:510.067860px;}
.y13f{bottom:510.790500px;}
.y10e{bottom:512.164500px;}
.y4d{bottom:515.551500px;}
.y178{bottom:517.725000px;}
.ydd{bottom:527.317830px;}
.yd7{bottom:527.317860px;}
.y13e{bottom:528.040500px;}
.y10d{bottom:530.164500px;}
.y4c{bottom:532.801500px;}
.y177{bottom:534.975000px;}
.y19{bottom:536.245800px;}
.y84{bottom:539.179350px;}
.y87{bottom:540.679305px;}
.ydc{bottom:544.567830px;}
.yd6{bottom:544.567860px;}
.y13d{bottom:545.290500px;}
.y4b{bottom:550.051500px;}
.y176{bottom:552.225000px;}
.y18{bottom:553.495800px;}
.y83{bottom:556.429350px;}
.y10c{bottom:556.668000px;}
.y86{bottom:557.929305px;}
.ydb{bottom:561.817830px;}
.yd5{bottom:561.817860px;}
.y13c{bottom:562.540500px;}
.y66{bottom:567.301500px;}
.y175{bottom:569.475000px;}
.y17{bottom:570.745800px;}
.y85{bottom:573.679305px;}
.y82{bottom:573.679350px;}
.ye1{bottom:579.067830px;}
.yd4{bottom:579.067860px;}
.y13b{bottom:579.790500px;}
.y10b{bottom:583.173000px;}
.y4a{bottom:584.551500px;}
.y174{bottom:586.725000px;}
.y16{bottom:587.995800px;}
.y81{bottom:590.929350px;}
.y13a{bottom:597.040500px;}
.y10a{bottom:601.173000px;}
.y49{bottom:601.801500px;}
.y173{bottom:603.975000px;}
.y15{bottom:605.245800px;}
.yd3{bottom:609.073710px;}
.y139{bottom:614.290500px;}
.y48{bottom:619.051500px;}
.y80{bottom:620.935200px;}
.y172{bottom:621.225000px;}
.y14{bottom:622.495800px;}
.yd2{bottom:626.323710px;}
.y138{bottom:631.540500px;}
.y47{bottom:636.301500px;}
.y7f{bottom:638.185200px;}
.y171{bottom:638.475000px;}
.y13{bottom:639.745800px;}
.y109{bottom:640.432500px;}
.yd1{bottom:643.573710px;}
.y137{bottom:648.790500px;}
.y46{bottom:653.551500px;}
.y7e{bottom:655.435200px;}
.y170{bottom:655.725000px;}
.y12{bottom:656.995800px;}
.yd0{bottom:660.823710px;}
.y136{bottom:666.040500px;}
.y45{bottom:670.801500px;}
.y7d{bottom:672.685200px;}
.y16f{bottom:672.975000px;}
.y11{bottom:674.245800px;}
.y135{bottom:683.290500px;}
.y44{bottom:688.051500px;}
.y7c{bottom:689.935200px;}
.y16e{bottom:690.225000px;}
.ycf{bottom:690.829560px;}
.y10{bottom:691.495800px;}
.y134{bottom:700.540500px;}
.y43{bottom:705.301500px;}
.y7b{bottom:707.185200px;}
.y16d{bottom:707.475000px;}
.yce{bottom:708.079560px;}
.yf{bottom:708.745800px;}
.y133{bottom:717.790500px;}
.y42{bottom:722.551500px;}
.y7a{bottom:724.435200px;}
.y16c{bottom:724.725000px;}
.ycd{bottom:725.329560px;}
.ye{bottom:725.995800px;}
.y132{bottom:735.040500px;}
.y65{bottom:739.801500px;}
.y79{bottom:741.685200px;}
.y16b{bottom:741.975000px;}
.ycc{bottom:742.579560px;}
.yd{bottom:751.749450px;}
.y131{bottom:752.290500px;}
.y41{bottom:757.051500px;}
.y78{bottom:758.935200px;}
.y16a{bottom:759.225000px;}
.ycb{bottom:759.829560px;}
.y130{bottom:769.540500px;}
.y64{bottom:774.301500px;}
.y77{bottom:776.185200px;}
.y169{bottom:776.475000px;}
.yca{bottom:777.079560px;}
.y12f{bottom:786.790500px;}
.y40{bottom:791.551500px;}
.y76{bottom:793.435200px;}
.y168{bottom:793.725000px;}
.yc{bottom:799.513350px;}
.y12e{bottom:804.040500px;}
.yc7{bottom:807.085560px;}
.y63{bottom:808.801500px;}
.y75{bottom:810.685200px;}
.y167{bottom:810.975000px;}
.y12d{bottom:821.290500px;}
.yb{bottom:821.517000px;}
.yc6{bottom:824.335560px;}
.y3f{bottom:826.051500px;}
.y74{bottom:827.935200px;}
.y166{bottom:828.225000px;}
.ya7{bottom:830.304000px;}
.y12c{bottom:838.540500px;}
.yc5{bottom:841.585560px;}
.y3e{bottom:843.301500px;}
.y165{bottom:845.475000px;}
.ya6{bottom:847.554000px;}
.y12b{bottom:855.790500px;}
.yc4{bottom:858.835560px;}
.y73{bottom:859.441050px;}
.y3d{bottom:860.551500px;}
.y164{bottom:862.725000px;}
.ya{bottom:868.271940px;}
.y12a{bottom:873.040500px;}
.yc3{bottom:876.085605px;}
.y72{bottom:876.691050px;}
.y62{bottom:877.801500px;}
.ya5{bottom:879.685800px;}
.y163{bottom:879.975000px;}
.yba{bottom:880.449000px;}
.y9{bottom:889.024095px;}
.y129{bottom:890.290500px;}
.yc2{bottom:893.335605px;}
.y71{bottom:893.941050px;}
.y3c{bottom:895.051500px;}
.ya4{bottom:896.935800px;}
.y162{bottom:897.225000px;}
.y128{bottom:907.540500px;}
.y70{bottom:909.691050px;}
.y8{bottom:909.775665px;}
.yb9{bottom:910.455450px;}
.yc1{bottom:910.585650px;}
.y3b{bottom:912.301500px;}
.ya3{bottom:914.185800px;}
.y161{bottom:914.475000px;}
.y127{bottom:924.790500px;}
.y6f{bottom:926.941050px;}
.yb8{bottom:927.705450px;}
.yc0{bottom:927.835650px;}
.y3a{bottom:929.551500px;}
.y7{bottom:930.527835px;}
.ya2{bottom:931.435800px;}
.y160{bottom:931.725000px;}
.y126{bottom:942.040500px;}
.y6e{bottom:944.191050px;}
.ya1{bottom:944.191650px;}
.ybf{bottom:945.085650px;}
.yed{bottom:946.801500px;}
.y15f{bottom:948.975000px;}
.yb7{bottom:955.584900px;}
.y6{bottom:957.414150px;}
.y125{bottom:959.290500px;}
.y6d{bottom:961.441050px;}
.ya0{bottom:961.441650px;}
.yc9{bottom:962.335560px;}
.ybe{bottom:962.335650px;}
.y61{bottom:964.050300px;}
.y39{bottom:964.051500px;}
.y15e{bottom:966.225000px;}
.yb6{bottom:972.834900px;}
.y124{bottom:976.540500px;}
.y5{bottom:978.414150px;}
.y6c{bottom:978.691050px;}
.y9f{bottom:978.691650px;}
.yc8{bottom:979.585560px;}
.ybd{bottom:979.585650px;}
.y60{bottom:981.300300px;}
.yee{bottom:981.301500px;}
.y15d{bottom:983.475000px;}
.y123{bottom:993.790500px;}
.y6b{bottom:995.941050px;}
.y9e{bottom:995.941650px;}
.y5f{bottom:998.550300px;}
.y38{bottom:998.551500px;}
.yb5{bottom:1000.714950px;}
.y15c{bottom:1000.725000px;}
.ybc{bottom:1009.591500px;}
.y122{bottom:1011.040500px;}
.y5e{bottom:1015.800300px;}
.y37{bottom:1015.801500px;}
.y15b{bottom:1017.975000px;}
.y4{bottom:1018.548000px;}
.y6a{bottom:1025.947500px;}
.y121{bottom:1028.290500px;}
.yb4{bottom:1028.595000px;}
.y5d{bottom:1033.050300px;}
.yec{bottom:1033.051500px;}
.y15a{bottom:1035.225000px;}
.ybb{bottom:1039.597500px;}
.y36{bottom:1050.301500px;}
.y159{bottom:1052.475000px;}
.y3{bottom:1054.548000px;}
.yb3{bottom:1056.474000px;}
.y69{bottom:1056.847500px;}
.y120{bottom:1067.055000px;}
.y5c{bottom:1067.550300px;}
.y35{bottom:1067.551500px;}
.y158{bottom:1069.725000px;}
.y2{bottom:1130.943000px;}
.y33{bottom:1138.800000px;}
.h7{height:28.996380px;}
.h6{height:28.998720px;}
.hd{height:29.718000px;}
.h9{height:33.930000px;}
.he{height:37.338000px;}
.hf{height:40.824000px;}
.h10{height:40.980000px;}
.hb{height:41.148000px;}
.h14{height:41.760000px;}
.h2{height:42.672000px;}
.hc{height:46.980000px;}
.ha{height:48.006000px;}
.h13{height:52.200000px;}
.h12{height:53.340000px;}
.h5{height:55.962252px;}
.h3{height:58.674000px;}
.h8{height:62.640000px;}
.h11{height:80.010000px;}
.h4{height:106.680000px;}
.h1{height:1190.250000px;}
.h0{height:1190.550000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:62.967750px;}
.x3{left:72.708450px;}
.x6{left:77.307450px;}
.x2{left:79.935300px;}
.x9{left:86.224710px;}
.x1f{left:89.716455px;}
.x20{left:95.102400px;}
.x7{left:101.133930px;}
.x21{left:120.614100px;}
.x13{left:175.393950px;}
.x11{left:208.347315px;}
.x15{left:234.283950px;}
.x17{left:290.196450px;}
.x18{left:296.946450px;}
.x19{left:302.952315px;}
.xa{left:304.678710px;}
.x8{left:310.818750px;}
.xf{left:315.726585px;}
.xe{left:321.732450px;}
.x10{left:325.107450px;}
.x14{left:359.290950px;}
.x1b{left:367.104825px;}
.x1c{left:373.110675px;}
.x4{left:460.488000px;}
.xb{left:477.496935px;}
.x22{left:483.874350px;}
.x16{left:604.204950px;}
.x1{left:629.079000px;}
.x1a{left:636.732045px;}
.x1d{left:664.104090px;}
.x1e{left:670.110090px;}
.xc{left:680.620500px;}
.x12{left:759.231171px;}
.xd{left:830.929500px;}
@media print{
.v2{vertical-align:-15.983360pt;}
.v4{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.983360pt;}
.v1{vertical-align:21.312480pt;}
.ls18{letter-spacing:-1.440000pt;}
.ls51{letter-spacing:-1.365333pt;}
.ls4d{letter-spacing:-1.280000pt;}
.ls2e{letter-spacing:-1.200000pt;}
.ls4e{letter-spacing:-1.109333pt;}
.ls1c{letter-spacing:-1.104000pt;}
.ls2c{letter-spacing:-1.056000pt;}
.ls53{letter-spacing:-1.024000pt;}
.ls27{letter-spacing:-1.008000pt;}
.ls17{letter-spacing:-0.960000pt;}
.ls4f{letter-spacing:-0.938667pt;}
.ls43{letter-spacing:-0.853333pt;}
.ls1a{letter-spacing:-0.816000pt;}
.ls55{letter-spacing:-0.810667pt;}
.ls22{letter-spacing:-0.768000pt;}
.ls24{letter-spacing:-0.672000pt;}
.ls50{letter-spacing:-0.640000pt;}
.ls19{letter-spacing:-0.624000pt;}
.ls1d{letter-spacing:-0.576000pt;}
.ls1b{letter-spacing:-0.559680pt;}
.ls54{letter-spacing:-0.554667pt;}
.ls2f{letter-spacing:-0.533333pt;}
.ls15{letter-spacing:-0.528000pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls28{letter-spacing:-0.432000pt;}
.ls52{letter-spacing:-0.426667pt;}
.ls1e{letter-spacing:-0.384000pt;}
.ls56{letter-spacing:-0.298667pt;}
.ls1f{letter-spacing:-0.279840pt;}
.lsd{letter-spacing:-0.240000pt;}
.ls46{letter-spacing:-0.213333pt;}
.ls16{letter-spacing:-0.192000pt;}
.ls4c{letter-spacing:-0.170667pt;}
.ls13{letter-spacing:-0.144000pt;}
.ls47{letter-spacing:-0.128000pt;}
.lse{letter-spacing:-0.096000pt;}
.ls44{letter-spacing:-0.085333pt;}
.ls14{letter-spacing:-0.048000pt;}
.ls42{letter-spacing:-0.042667pt;}
.lsb{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000341pt;}
.ls2{letter-spacing:0.001323pt;}
.ls0{letter-spacing:0.005333pt;}
.ls34{letter-spacing:0.042667pt;}
.ls23{letter-spacing:0.048000pt;}
.ls3d{letter-spacing:0.085333pt;}
.ls4{letter-spacing:0.096000pt;}
.ls31{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.144000pt;}
.ls33{letter-spacing:0.170667pt;}
.ls5{letter-spacing:0.192000pt;}
.ls3b{letter-spacing:0.213333pt;}
.ls29{letter-spacing:0.223872pt;}
.ls10{letter-spacing:0.240000pt;}
.ls4a{letter-spacing:0.256000pt;}
.ls20{letter-spacing:0.279840pt;}
.ls3{letter-spacing:0.288000pt;}
.ls38{letter-spacing:0.298667pt;}
.ls11{letter-spacing:0.336000pt;}
.ls35{letter-spacing:0.341333pt;}
.ls21{letter-spacing:0.384000pt;}
.ls36{letter-spacing:0.426667pt;}
.lsa{letter-spacing:0.432000pt;}
.ls45{letter-spacing:0.469333pt;}
.ls6{letter-spacing:0.480000pt;}
.ls9{letter-spacing:0.503712pt;}
.ls7{letter-spacing:0.528000pt;}
.ls32{letter-spacing:0.554667pt;}
.ls41{letter-spacing:0.597333pt;}
.lsf{letter-spacing:0.624000pt;}
.ls39{letter-spacing:0.640000pt;}
.ls2b{letter-spacing:0.672000pt;}
.ls3a{letter-spacing:0.725333pt;}
.ls26{letter-spacing:0.768000pt;}
.ls3c{letter-spacing:0.810667pt;}
.ls4b{letter-spacing:0.853333pt;}
.ls8{letter-spacing:0.864000pt;}
.ls3f{letter-spacing:1.024000pt;}
.ls3e{letter-spacing:1.066667pt;}
.ls48{letter-spacing:1.152000pt;}
.ls37{letter-spacing:1.237333pt;}
.ls2a{letter-spacing:1.248000pt;}
.ls49{letter-spacing:1.280000pt;}
.ls25{letter-spacing:1.440000pt;}
.ls30{letter-spacing:1.621333pt;}
.ls40{letter-spacing:1.834667pt;}
.ls2d{letter-spacing:5.285173pt;}
.ws4{word-spacing:-13.344000pt;}
.ws23{word-spacing:-12.864000pt;}
.ws21{word-spacing:-12.384000pt;}
.ws3{word-spacing:-11.861333pt;}
.ws1{word-spacing:-10.378667pt;}
.ws5{word-spacing:-8.283264pt;}
.ws3b{word-spacing:-8.059392pt;}
.ws63{word-spacing:-8.003424pt;}
.ws20{word-spacing:-7.779552pt;}
.ws24{word-spacing:-7.499712pt;}
.ws22{word-spacing:-7.219872pt;}
.ws0{word-spacing:-4.448000pt;}
.ws11{word-spacing:-2.688000pt;}
.ws1b{word-spacing:-2.640000pt;}
.ws78{word-spacing:-2.592000pt;}
.ws34{word-spacing:-2.544000pt;}
.ws38{word-spacing:-2.496000pt;}
.wsf{word-spacing:-2.448000pt;}
.ws79{word-spacing:-2.400000pt;}
.ws8f{word-spacing:-2.389333pt;}
.ws16{word-spacing:-2.352000pt;}
.ws8a{word-spacing:-2.346667pt;}
.ws28{word-spacing:-2.304000pt;}
.ws87{word-spacing:-2.293333pt;}
.ws26{word-spacing:-2.256000pt;}
.ws99{word-spacing:-2.218667pt;}
.ws5b{word-spacing:-2.208000pt;}
.ws47{word-spacing:-2.160000pt;}
.ws56{word-spacing:-2.112000pt;}
.ws91{word-spacing:-2.090667pt;}
.ws4e{word-spacing:-2.064000pt;}
.ws1e{word-spacing:-1.968000pt;}
.ws77{word-spacing:-1.920000pt;}
.ws64{word-spacing:-1.872000pt;}
.ws4a{word-spacing:-1.824000pt;}
.ws98{word-spacing:-1.792000pt;}
.ws95{word-spacing:-1.749333pt;}
.ws7e{word-spacing:-1.728000pt;}
.ws1c{word-spacing:-1.680000pt;}
.ws54{word-spacing:-1.632000pt;}
.ws61{word-spacing:-1.584000pt;}
.ws25{word-spacing:-1.536000pt;}
.wsaa{word-spacing:-1.493333pt;}
.ws17{word-spacing:-1.488000pt;}
.ws53{word-spacing:-1.440000pt;}
.ws76{word-spacing:-1.392000pt;}
.ws6d{word-spacing:-1.296000pt;}
.wsbd{word-spacing:-1.280000pt;}
.wsc{word-spacing:-1.248000pt;}
.ws58{word-spacing:-1.200000pt;}
.ws72{word-spacing:-1.152000pt;}
.wsd{word-spacing:-1.104000pt;}
.wsb2{word-spacing:-1.066667pt;}
.ws8e{word-spacing:-1.024000pt;}
.ws6a{word-spacing:-1.008000pt;}
.ws13{word-spacing:-0.960000pt;}
.ws74{word-spacing:-0.912000pt;}
.ws9e{word-spacing:-0.896000pt;}
.ws3d{word-spacing:-0.864000pt;}
.wsbf{word-spacing:-0.853333pt;}
.ws52{word-spacing:-0.816000pt;}
.wsc3{word-spacing:-0.810667pt;}
.ws51{word-spacing:-0.768000pt;}
.wsb5{word-spacing:-0.682667pt;}
.ws75{word-spacing:-0.672000pt;}
.ws45{word-spacing:-0.624000pt;}
.wsa4{word-spacing:-0.597333pt;}
.wsab{word-spacing:-0.554667pt;}
.ws33{word-spacing:-0.480000pt;}
.wsca{word-spacing:-0.469333pt;}
.ws9{word-spacing:-0.432000pt;}
.wsa1{word-spacing:-0.426667pt;}
.wsb3{word-spacing:-0.384000pt;}
.ws2b{word-spacing:-0.336000pt;}
.ws96{word-spacing:-0.298667pt;}
.wsc6{word-spacing:-0.213333pt;}
.ws32{word-spacing:-0.192000pt;}
.ws50{word-spacing:-0.144000pt;}
.ws55{word-spacing:-0.096000pt;}
.ws90{word-spacing:-0.085333pt;}
.ws86{word-spacing:-0.053333pt;}
.ws7{word-spacing:-0.048000pt;}
.wsb4{word-spacing:-0.042667pt;}
.ws6{word-spacing:0.000000pt;}
.ws36{word-spacing:0.048000pt;}
.wsce{word-spacing:0.085333pt;}
.ws4c{word-spacing:0.096000pt;}
.ws44{word-spacing:0.144000pt;}
.ws41{word-spacing:0.192000pt;}
.ws12{word-spacing:0.240000pt;}
.ws9f{word-spacing:0.256000pt;}
.ws19{word-spacing:0.288000pt;}
.wsb8{word-spacing:0.341333pt;}
.ws4d{word-spacing:0.384000pt;}
.wsd0{word-spacing:0.426667pt;}
.ws70{word-spacing:0.432000pt;}
.wsc7{word-spacing:0.469333pt;}
.ws35{word-spacing:0.480000pt;}
.ws27{word-spacing:0.528000pt;}
.ws82{word-spacing:0.533333pt;}
.ws93{word-spacing:0.554667pt;}
.ws1d{word-spacing:0.624000pt;}
.wsc8{word-spacing:0.640000pt;}
.wsd3{word-spacing:0.682667pt;}
.ws10{word-spacing:0.720000pt;}
.ws5a{word-spacing:0.768000pt;}
.ws9c{word-spacing:0.853333pt;}
.ws60{word-spacing:0.864000pt;}
.ws9b{word-spacing:0.896000pt;}
.ws85{word-spacing:0.906667pt;}
.ws69{word-spacing:0.912000pt;}
.ws18{word-spacing:0.960000pt;}
.ws37{word-spacing:1.008000pt;}
.ws92{word-spacing:1.024000pt;}
.wsbc{word-spacing:1.109333pt;}
.ws89{word-spacing:1.120000pt;}
.ws80{word-spacing:1.152000pt;}
.ws7a{word-spacing:1.248000pt;}
.wscd{word-spacing:1.280000pt;}
.ws3f{word-spacing:1.296000pt;}
.wscc{word-spacing:1.322667pt;}
.ws42{word-spacing:1.392000pt;}
.ws62{word-spacing:1.440000pt;}
.ws5c{word-spacing:1.488000pt;}
.wsa8{word-spacing:1.493333pt;}
.ws4b{word-spacing:1.536000pt;}
.wsc5{word-spacing:1.578667pt;}
.ws31{word-spacing:1.584000pt;}
.ws2f{word-spacing:1.632000pt;}
.wsc4{word-spacing:1.664000pt;}
.ws8c{word-spacing:1.706667pt;}
.ws65{word-spacing:1.728000pt;}
.ws6f{word-spacing:1.776000pt;}
.ws67{word-spacing:1.824000pt;}
.ws71{word-spacing:1.872000pt;}
.wsd6{word-spacing:1.877333pt;}
.ws14{word-spacing:1.920000pt;}
.wscf{word-spacing:2.005333pt;}
.ws3c{word-spacing:2.064000pt;}
.ws8{word-spacing:2.112000pt;}
.wsb6{word-spacing:2.133333pt;}
.ws40{word-spacing:2.160000pt;}
.ws5f{word-spacing:2.256000pt;}
.wsa9{word-spacing:2.261333pt;}
.ws3e{word-spacing:2.304000pt;}
.wsa7{word-spacing:2.346667pt;}
.ws94{word-spacing:2.389333pt;}
.ws66{word-spacing:2.400000pt;}
.wsb{word-spacing:2.640000pt;}
.wsd2{word-spacing:2.645333pt;}
.ws88{word-spacing:2.666667pt;}
.wse{word-spacing:2.688000pt;}
.wsa6{word-spacing:2.773333pt;}
.wsaf{word-spacing:2.816000pt;}
.ws46{word-spacing:2.832000pt;}
.wsa{word-spacing:2.880000pt;}
.wsad{word-spacing:2.901333pt;}
.wsd4{word-spacing:2.944000pt;}
.ws6e{word-spacing:2.976000pt;}
.wsc2{word-spacing:3.029333pt;}
.wsa5{word-spacing:3.114667pt;}
.ws15{word-spacing:3.120000pt;}
.ws83{word-spacing:3.146667pt;}
.ws59{word-spacing:3.168000pt;}
.ws43{word-spacing:3.264000pt;}
.ws2e{word-spacing:3.312000pt;}
.ws29{word-spacing:3.408000pt;}
.ws2a{word-spacing:3.456000pt;}
.ws49{word-spacing:3.504000pt;}
.wsa0{word-spacing:3.541333pt;}
.ws4f{word-spacing:3.552000pt;}
.ws48{word-spacing:3.600000pt;}
.ws84{word-spacing:3.626667pt;}
.ws5d{word-spacing:3.696000pt;}
.wscb{word-spacing:3.754667pt;}
.ws8d{word-spacing:3.840000pt;}
.wsb1{word-spacing:3.882667pt;}
.ws1a{word-spacing:3.936000pt;}
.wsba{word-spacing:3.968000pt;}
.ws68{word-spacing:4.080000pt;}
.wsa3{word-spacing:4.138667pt;}
.ws73{word-spacing:4.176000pt;}
.ws8b{word-spacing:4.320000pt;}
.ws9d{word-spacing:4.437333pt;}
.ws6c{word-spacing:4.800000pt;}
.ws5e{word-spacing:4.944000pt;}
.ws81{word-spacing:5.120000pt;}
.ws2c{word-spacing:5.280000pt;}
.ws57{word-spacing:5.328000pt;}
.wsd5{word-spacing:5.333333pt;}
.ws2d{word-spacing:5.712000pt;}
.ws9a{word-spacing:5.760000pt;}
.ws7c{word-spacing:6.000000pt;}
.wsc0{word-spacing:6.101333pt;}
.ws7f{word-spacing:6.192000pt;}
.wsc1{word-spacing:6.229333pt;}
.wsbe{word-spacing:6.528000pt;}
.wsac{word-spacing:6.570667pt;}
.wsae{word-spacing:7.296000pt;}
.ws30{word-spacing:7.824000pt;}
.wsa2{word-spacing:7.893333pt;}
.ws7b{word-spacing:7.968000pt;}
.wsb9{word-spacing:8.106667pt;}
.ws7d{word-spacing:8.112000pt;}
.wsb0{word-spacing:8.192000pt;}
.wsc9{word-spacing:8.277333pt;}
.wsd1{word-spacing:12.330667pt;}
.ws6b{word-spacing:12.432000pt;}
.wsb7{word-spacing:14.037333pt;}
.ws97{word-spacing:16.298667pt;}
.wsbb{word-spacing:18.176000pt;}
.ws1f{word-spacing:33.741979pt;}
.ws39{word-spacing:33.744075pt;}
.ws2{word-spacing:48.705424pt;}
.ws3a{word-spacing:110.548800pt;}
._10{margin-left:-738.448000pt;}
._2{margin-left:-42.005157pt;}
._a{margin-left:-37.344000pt;}
._d{margin-left:-36.383616pt;}
._7{margin-left:-26.730779pt;}
._1d{margin-left:-19.940339pt;}
._14{margin-left:-17.760024pt;}
._22{margin-left:-7.909872pt;}
._4{margin-left:-6.191798pt;}
._3{margin-left:-4.736326pt;}
._f{margin-left:-3.834634pt;}
._0{margin-left:-2.812927pt;}
._5{margin-left:-1.723661pt;}
._6{width:1.061333pt;}
._27{width:4.822400pt;}
._8{width:11.527798pt;}
._29{width:13.261867pt;}
._26{width:14.541867pt;}
._28{width:15.821867pt;}
._25{width:18.373333pt;}
._b{width:21.354144pt;}
._e{width:23.129067pt;}
._23{width:24.089067pt;}
._24{width:31.401600pt;}
._15{width:33.354211pt;}
._13{width:107.091840pt;}
._1a{width:122.368320pt;}
._12{width:138.252499pt;}
._1{width:139.900927pt;}
._19{width:189.088320pt;}
._1c{width:206.473440pt;}
._17{width:236.890560pt;}
._c{width:282.949920pt;}
._16{width:296.451840pt;}
._18{width:379.056480pt;}
._11{width:383.580960pt;}
._9{width:459.824640pt;}
._1e{width:562.569600pt;}
._21{width:703.871818pt;}
._20{width:771.988618pt;}
._1f{width:848.081067pt;}
._1b{width:1040.474667pt;}
.fs1{font-size:16.000000pt;}
.fsa{font-size:24.000000pt;}
.fs7{font-size:27.984000pt;}
.fs9{font-size:34.666667pt;}
.fs6{font-size:37.312000pt;}
.fs2{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fsc{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fsb{font-size:80.000000pt;}
.fs4{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:36.283333pt;}
.y34{bottom:36.284000pt;}
.y9d{bottom:63.566867pt;}
.y20{bottom:74.457200pt;}
.y32{bottom:74.934667pt;}
.y104{bottom:84.238747pt;}
.yfa{bottom:84.238773pt;}
.y5b{bottom:84.238933pt;}
.y157{bottom:86.036000pt;}
.yb2{bottom:87.419333pt;}
.y9c{bottom:89.239267pt;}
.y31{bottom:90.268000pt;}
.y1f{bottom:98.016000pt;}
.y103{bottom:99.572080pt;}
.yf9{bottom:99.572107pt;}
.y5a{bottom:99.572267pt;}
.y156{bottom:101.369333pt;}
.y9b{bottom:104.572600pt;}
.y30{bottom:105.601333pt;}
.y1e{bottom:114.016000pt;}
.y102{bottom:114.905413pt;}
.yf8{bottom:114.905440pt;}
.yb1{bottom:115.981333pt;}
.y155{bottom:116.702667pt;}
.y9a{bottom:119.905933pt;}
.y2f{bottom:120.934667pt;}
.y59{bottom:126.244133pt;}
.y1d{bottom:130.016000pt;}
.y101{bottom:130.238747pt;}
.yf7{bottom:130.238773pt;}
.yb0{bottom:131.314667pt;}
.y154{bottom:132.036000pt;}
.y99{bottom:135.239267pt;}
.y2e{bottom:136.268000pt;}
.y11f{bottom:137.902667pt;}
.y58{bottom:141.577467pt;}
.y100{bottom:145.572080pt;}
.yf6{bottom:145.572107pt;}
.y1c{bottom:146.016000pt;}
.yaf{bottom:146.648000pt;}
.y153{bottom:147.369333pt;}
.y98{bottom:150.572600pt;}
.y2d{bottom:151.601333pt;}
.y11e{bottom:153.902667pt;}
.y57{bottom:156.910800pt;}
.yff{bottom:160.905413pt;}
.yf5{bottom:160.905467pt;}
.yae{bottom:161.981333pt;}
.y152{bottom:162.702667pt;}
.y2c{bottom:166.934667pt;}
.y56{bottom:172.244133pt;}
.y108{bottom:176.238747pt;}
.yfe{bottom:176.238773pt;}
.yf4{bottom:176.238800pt;}
.y97{bottom:177.244467pt;}
.y11d{bottom:177.461333pt;}
.y151{bottom:178.036000pt;}
.y2b{bottom:182.268000pt;}
.y55{bottom:187.577467pt;}
.yad{bottom:188.653200pt;}
.y107{bottom:191.572080pt;}
.yfd{bottom:191.572107pt;}
.yf3{bottom:191.572133pt;}
.y96{bottom:192.577800pt;}
.y150{bottom:193.369333pt;}
.y11c{bottom:193.461333pt;}
.y2a{bottom:197.601333pt;}
.yac{bottom:203.986533pt;}
.y106{bottom:206.905413pt;}
.yfc{bottom:206.905440pt;}
.yf2{bottom:206.905467pt;}
.y95{bottom:207.911133pt;}
.y14f{bottom:208.702667pt;}
.y11b{bottom:209.461333pt;}
.y29{bottom:212.934667pt;}
.y54{bottom:214.249333pt;}
.y105{bottom:222.238747pt;}
.yfb{bottom:222.238773pt;}
.yf1{bottom:222.238800pt;}
.y94{bottom:223.244467pt;}
.y14e{bottom:224.036000pt;}
.y28{bottom:228.268000pt;}
.yab{bottom:230.658400pt;}
.y11a{bottom:233.021333pt;}
.y14d{bottom:239.369333pt;}
.y53{bottom:240.921333pt;}
.y27{bottom:243.601333pt;}
.yf0{bottom:248.910667pt;}
.y119{bottom:249.021333pt;}
.y93{bottom:249.916333pt;}
.y14c{bottom:254.702667pt;}
.yaa{bottom:258.124000pt;}
.y26{bottom:258.934667pt;}
.y118{bottom:265.021333pt;}
.y92{bottom:265.249667pt;}
.y14b{bottom:270.036000pt;}
.y25{bottom:274.268000pt;}
.yef{bottom:275.582667pt;}
.y91{bottom:280.583000pt;}
.y117{bottom:281.021333pt;}
.y14a{bottom:285.369333pt;}
.ya9{bottom:285.590667pt;}
.y24{bottom:289.601333pt;}
.y149{bottom:300.702667pt;}
.ya8{bottom:300.924000pt;}
.y116{bottom:304.580000pt;}
.y23{bottom:304.934667pt;}
.yeb{bottom:306.160000pt;}
.y90{bottom:307.254867pt;}
.y148{bottom:316.036000pt;}
.y22{bottom:320.268000pt;}
.y115{bottom:320.580000pt;}
.y8f{bottom:322.588200pt;}
.y147{bottom:331.369333pt;}
.yea{bottom:334.721733pt;}
.ye6{bottom:334.721760pt;}
.y68{bottom:335.601333pt;}
.y114{bottom:336.580000pt;}
.y8e{bottom:337.921533pt;}
.y146{bottom:346.702667pt;}
.ye9{bottom:350.055067pt;}
.ye5{bottom:350.055093pt;}
.y21{bottom:350.934667pt;}
.y113{bottom:360.138667pt;}
.y145{bottom:362.036000pt;}
.y8d{bottom:364.593400pt;}
.ye8{bottom:365.388400pt;}
.ye4{bottom:365.388427pt;}
.y67{bottom:366.268000pt;}
.y112{bottom:376.138667pt;}
.y144{bottom:377.369333pt;}
.y8c{bottom:379.926733pt;}
.ye7{bottom:380.721733pt;}
.ye3{bottom:380.721760pt;}
.y52{bottom:381.601333pt;}
.y143{bottom:392.702667pt;}
.y8b{bottom:395.260067pt;}
.ye2{bottom:396.055093pt;}
.y51{bottom:396.934667pt;}
.y111{bottom:399.697333pt;}
.y142{bottom:408.036000pt;}
.y50{bottom:412.268000pt;}
.y110{bottom:415.697333pt;}
.y8a{bottom:421.931960pt;}
.ye0{bottom:422.726960pt;}
.yda{bottom:422.726987pt;}
.y141{bottom:423.369333pt;}
.y4f{bottom:427.601333pt;}
.y17a{bottom:429.533333pt;}
.y1b{bottom:430.878667pt;}
.y89{bottom:437.265293pt;}
.ydf{bottom:438.060293pt;}
.yd9{bottom:438.060320pt;}
.y140{bottom:438.702667pt;}
.y10f{bottom:439.257333pt;}
.y4e{bottom:442.934667pt;}
.y179{bottom:444.866667pt;}
.y1a{bottom:446.212000pt;}
.y88{bottom:452.598627pt;}
.yde{bottom:453.393627pt;}
.yd8{bottom:453.393653pt;}
.y13f{bottom:454.036000pt;}
.y10e{bottom:455.257333pt;}
.y4d{bottom:458.268000pt;}
.y178{bottom:460.200000pt;}
.ydd{bottom:468.726960pt;}
.yd7{bottom:468.726987pt;}
.y13e{bottom:469.369333pt;}
.y10d{bottom:471.257333pt;}
.y4c{bottom:473.601333pt;}
.y177{bottom:475.533333pt;}
.y19{bottom:476.662933pt;}
.y84{bottom:479.270533pt;}
.y87{bottom:480.603827pt;}
.ydc{bottom:484.060293pt;}
.yd6{bottom:484.060320pt;}
.y13d{bottom:484.702667pt;}
.y4b{bottom:488.934667pt;}
.y176{bottom:490.866667pt;}
.y18{bottom:491.996267pt;}
.y83{bottom:494.603867pt;}
.y10c{bottom:494.816000pt;}
.y86{bottom:495.937160pt;}
.ydb{bottom:499.393627pt;}
.yd5{bottom:499.393653pt;}
.y13c{bottom:500.036000pt;}
.y66{bottom:504.268000pt;}
.y175{bottom:506.200000pt;}
.y17{bottom:507.329600pt;}
.y85{bottom:509.937160pt;}
.y82{bottom:509.937200pt;}
.ye1{bottom:514.726960pt;}
.yd4{bottom:514.726987pt;}
.y13b{bottom:515.369333pt;}
.y10b{bottom:518.376000pt;}
.y4a{bottom:519.601333pt;}
.y174{bottom:521.533333pt;}
.y16{bottom:522.662933pt;}
.y81{bottom:525.270533pt;}
.y13a{bottom:530.702667pt;}
.y10a{bottom:534.376000pt;}
.y49{bottom:534.934667pt;}
.y173{bottom:536.866667pt;}
.y15{bottom:537.996267pt;}
.yd3{bottom:541.398853pt;}
.y139{bottom:546.036000pt;}
.y48{bottom:550.268000pt;}
.y80{bottom:551.942400pt;}
.y172{bottom:552.200000pt;}
.y14{bottom:553.329600pt;}
.yd2{bottom:556.732187pt;}
.y138{bottom:561.369333pt;}
.y47{bottom:565.601333pt;}
.y7f{bottom:567.275733pt;}
.y171{bottom:567.533333pt;}
.y13{bottom:568.662933pt;}
.y109{bottom:569.273333pt;}
.yd1{bottom:572.065520pt;}
.y137{bottom:576.702667pt;}
.y46{bottom:580.934667pt;}
.y7e{bottom:582.609067pt;}
.y170{bottom:582.866667pt;}
.y12{bottom:583.996267pt;}
.yd0{bottom:587.398853pt;}
.y136{bottom:592.036000pt;}
.y45{bottom:596.268000pt;}
.y7d{bottom:597.942400pt;}
.y16f{bottom:598.200000pt;}
.y11{bottom:599.329600pt;}
.y135{bottom:607.369333pt;}
.y44{bottom:611.601333pt;}
.y7c{bottom:613.275733pt;}
.y16e{bottom:613.533333pt;}
.ycf{bottom:614.070720pt;}
.y10{bottom:614.662933pt;}
.y134{bottom:622.702667pt;}
.y43{bottom:626.934667pt;}
.y7b{bottom:628.609067pt;}
.y16d{bottom:628.866667pt;}
.yce{bottom:629.404053pt;}
.yf{bottom:629.996267pt;}
.y133{bottom:638.036000pt;}
.y42{bottom:642.268000pt;}
.y7a{bottom:643.942400pt;}
.y16c{bottom:644.200000pt;}
.ycd{bottom:644.737387pt;}
.ye{bottom:645.329600pt;}
.y132{bottom:653.369333pt;}
.y65{bottom:657.601333pt;}
.y79{bottom:659.275733pt;}
.y16b{bottom:659.533333pt;}
.ycc{bottom:660.070720pt;}
.yd{bottom:668.221733pt;}
.y131{bottom:668.702667pt;}
.y41{bottom:672.934667pt;}
.y78{bottom:674.609067pt;}
.y16a{bottom:674.866667pt;}
.ycb{bottom:675.404053pt;}
.y130{bottom:684.036000pt;}
.y64{bottom:688.268000pt;}
.y77{bottom:689.942400pt;}
.y169{bottom:690.200000pt;}
.yca{bottom:690.737387pt;}
.y12f{bottom:699.369333pt;}
.y40{bottom:703.601333pt;}
.y76{bottom:705.275733pt;}
.y168{bottom:705.533333pt;}
.yc{bottom:710.678533pt;}
.y12e{bottom:714.702667pt;}
.yc7{bottom:717.409387pt;}
.y63{bottom:718.934667pt;}
.y75{bottom:720.609067pt;}
.y167{bottom:720.866667pt;}
.y12d{bottom:730.036000pt;}
.yb{bottom:730.237333pt;}
.yc6{bottom:732.742720pt;}
.y3f{bottom:734.268000pt;}
.y74{bottom:735.942400pt;}
.y166{bottom:736.200000pt;}
.ya7{bottom:738.048000pt;}
.y12c{bottom:745.369333pt;}
.yc5{bottom:748.076053pt;}
.y3e{bottom:749.601333pt;}
.y165{bottom:751.533333pt;}
.ya6{bottom:753.381333pt;}
.y12b{bottom:760.702667pt;}
.yc4{bottom:763.409387pt;}
.y73{bottom:763.947600pt;}
.y3d{bottom:764.934667pt;}
.y164{bottom:766.866667pt;}
.ya{bottom:771.797280pt;}
.y12a{bottom:776.036000pt;}
.yc3{bottom:778.742760pt;}
.y72{bottom:779.280933pt;}
.y62{bottom:780.268000pt;}
.ya5{bottom:781.942933pt;}
.y163{bottom:782.200000pt;}
.yba{bottom:782.621333pt;}
.y9{bottom:790.243640pt;}
.y129{bottom:791.369333pt;}
.yc2{bottom:794.076093pt;}
.y71{bottom:794.614267pt;}
.y3c{bottom:795.601333pt;}
.ya4{bottom:797.276267pt;}
.y162{bottom:797.533333pt;}
.y128{bottom:806.702667pt;}
.y70{bottom:808.614267pt;}
.y8{bottom:808.689480pt;}
.yb9{bottom:809.293733pt;}
.yc1{bottom:809.409467pt;}
.y3b{bottom:810.934667pt;}
.ya3{bottom:812.609600pt;}
.y161{bottom:812.866667pt;}
.y127{bottom:822.036000pt;}
.y6f{bottom:823.947600pt;}
.yb8{bottom:824.627067pt;}
.yc0{bottom:824.742800pt;}
.y3a{bottom:826.268000pt;}
.y7{bottom:827.135853pt;}
.ya2{bottom:827.942933pt;}
.y160{bottom:828.200000pt;}
.y126{bottom:837.369333pt;}
.y6e{bottom:839.280933pt;}
.ya1{bottom:839.281467pt;}
.ybf{bottom:840.076133pt;}
.yed{bottom:841.601333pt;}
.y15f{bottom:843.533333pt;}
.yb7{bottom:849.408800pt;}
.y6{bottom:851.034800pt;}
.y125{bottom:852.702667pt;}
.y6d{bottom:854.614267pt;}
.ya0{bottom:854.614800pt;}
.yc9{bottom:855.409387pt;}
.ybe{bottom:855.409467pt;}
.y61{bottom:856.933600pt;}
.y39{bottom:856.934667pt;}
.y15e{bottom:858.866667pt;}
.yb6{bottom:864.742133pt;}
.y124{bottom:868.036000pt;}
.y5{bottom:869.701467pt;}
.y6c{bottom:869.947600pt;}
.y9f{bottom:869.948133pt;}
.yc8{bottom:870.742720pt;}
.ybd{bottom:870.742800pt;}
.y60{bottom:872.266933pt;}
.yee{bottom:872.268000pt;}
.y15d{bottom:874.200000pt;}
.y123{bottom:883.369333pt;}
.y6b{bottom:885.280933pt;}
.y9e{bottom:885.281467pt;}
.y5f{bottom:887.600267pt;}
.y38{bottom:887.601333pt;}
.yb5{bottom:889.524400pt;}
.y15c{bottom:889.533333pt;}
.ybc{bottom:897.414667pt;}
.y122{bottom:898.702667pt;}
.y5e{bottom:902.933600pt;}
.y37{bottom:902.934667pt;}
.y15b{bottom:904.866667pt;}
.y4{bottom:905.376000pt;}
.y6a{bottom:911.953333pt;}
.y121{bottom:914.036000pt;}
.yb4{bottom:914.306667pt;}
.y5d{bottom:918.266933pt;}
.yec{bottom:918.268000pt;}
.y15a{bottom:920.200000pt;}
.ybb{bottom:924.086667pt;}
.y36{bottom:933.601333pt;}
.y159{bottom:935.533333pt;}
.y3{bottom:937.376000pt;}
.yb3{bottom:939.088000pt;}
.y69{bottom:939.420000pt;}
.y120{bottom:948.493333pt;}
.y5c{bottom:948.933600pt;}
.y35{bottom:948.934667pt;}
.y158{bottom:950.866667pt;}
.y2{bottom:1005.282667pt;}
.y33{bottom:1012.266667pt;}
.h7{height:25.774560pt;}
.h6{height:25.776640pt;}
.hd{height:26.416000pt;}
.h9{height:30.160000pt;}
.he{height:33.189333pt;}
.hf{height:36.288000pt;}
.h10{height:36.426667pt;}
.hb{height:36.576000pt;}
.h14{height:37.120000pt;}
.h2{height:37.930667pt;}
.hc{height:41.760000pt;}
.ha{height:42.672000pt;}
.h13{height:46.400000pt;}
.h12{height:47.413333pt;}
.h5{height:49.744224pt;}
.h3{height:52.154667pt;}
.h8{height:55.680000pt;}
.h11{height:71.120000pt;}
.h4{height:94.826667pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.266667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:55.971333pt;}
.x3{left:64.629733pt;}
.x6{left:68.717733pt;}
.x2{left:71.053600pt;}
.x9{left:76.644187pt;}
.x1f{left:79.747960pt;}
.x20{left:84.535467pt;}
.x7{left:89.896827pt;}
.x21{left:107.212533pt;}
.x13{left:155.905733pt;}
.x11{left:185.197613pt;}
.x15{left:208.252400pt;}
.x17{left:257.952400pt;}
.x18{left:263.952400pt;}
.x19{left:269.290947pt;}
.xa{left:270.825520pt;}
.x8{left:276.283333pt;}
.xf{left:280.645853pt;}
.xe{left:285.984400pt;}
.x10{left:288.984400pt;}
.x14{left:319.369733pt;}
.x1b{left:326.315400pt;}
.x1c{left:331.653933pt;}
.x4{left:409.322667pt;}
.xb{left:424.441720pt;}
.x22{left:430.110533pt;}
.x16{left:537.071067pt;}
.x1{left:559.181333pt;}
.x1a{left:565.984040pt;}
.x1d{left:590.314747pt;}
.x1e{left:595.653413pt;}
.xc{left:604.996000pt;}
.x12{left:674.872152pt;}
.xd{left:738.604000pt;}
}




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