
    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_6b70d59c4dbe378ee6babc90.woff')format("woff");}.ff1{font-family:ff1;line-height:0.866699;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_1eec75849de417f6b3c6433e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_fd0d42ca9cbd84bc51a1c9bb.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_e4e9e1ee7cd9b98934c9ae96.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_c2cb196b8fd91c8ef3a0f9af.woff')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_e0b9dd94a9001999ba6a0adc.woff')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_aa95078fa173464e18f6646d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.916016;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_8e38d563ac164ae45b851db7.woff')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_feb93a1b0fd1953cb21462ed.woff')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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_09f51ab7e747b12c02a11256.woff')format("woff");}.ffa{font-family:ffa;line-height:0.921387;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_85d5b285980a819a8e028bc2.woff')format("woff");}.ffb{font-family:ffb;line-height:1.085938;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_c437e7c1fb5ed9268b7abefa.woff')format("woff");}.ffc{font-family:ffc;line-height:0.938477;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_93903520fa106aaa65023f37.woff')format("woff");}.ffd{font-family:ffd;line-height:1.269531;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_6b62ba4d4140a214ffb2432e.woff')format("woff");}.ffe{font-family:ffe;line-height:0.938477;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_d289d0f15aa17a87bdcae1a6.woff')format("woff");}.fff{font-family:fff;line-height:1.137207;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_cae8c1af7cd795dc4dc4ed57.woff')format("woff");}.ff10{font-family:ff10;line-height:0.853027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_90430cc850b51707cb3a26fb.woff')format("woff");}.ff11{font-family:ff11;line-height:0.682617;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:ff12;src:url('chunks/assets/font_555659a8556cd62a0946e962.woff')format("woff");}.ff12{font-family:ff12;line-height:0.938477;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:23.760000px;}
.ls34{letter-spacing:-0.828000px;}
.ls1c{letter-spacing:-0.720000px;}
.ls44{letter-spacing:-0.702000px;}
.ls32{letter-spacing:-0.642000px;}
.ls2a{letter-spacing:-0.612000px;}
.ls16{letter-spacing:-0.540000px;}
.ls23{letter-spacing:-0.457800px;}
.ls1d{letter-spacing:-0.414600px;}
.ls19{letter-spacing:-0.413400px;}
.ls25{letter-spacing:-0.366000px;}
.ls15{letter-spacing:-0.360000px;}
.ls43{letter-spacing:-0.305400px;}
.ls46{letter-spacing:-0.233400px;}
.ls4d{letter-spacing:-0.216000px;}
.ls2b{letter-spacing:-0.152400px;}
.ls3c{letter-spacing:-0.144000px;}
.ls2c{letter-spacing:-0.115200px;}
.ls24{letter-spacing:-0.109200px;}
.ls14{letter-spacing:-0.106800px;}
.ls13{letter-spacing:-0.053280px;}
.ls4e{letter-spacing:-0.000003px;}
.ls11{letter-spacing:0.000000px;}
.ls40{letter-spacing:0.017280px;}
.ls41{letter-spacing:0.034560px;}
.ls3f{letter-spacing:0.043200px;}
.ls17{letter-spacing:0.053280px;}
.ls4c{letter-spacing:0.072000px;}
.ls26{letter-spacing:0.080400px;}
.ls28{letter-spacing:0.080640px;}
.ls9{letter-spacing:0.106560px;}
.lse{letter-spacing:0.106800px;}
.ls12{letter-spacing:0.109200px;}
.ls1e{letter-spacing:0.109440px;}
.ls29{letter-spacing:0.119520px;}
.ls0{letter-spacing:0.144000px;}
.ls22{letter-spacing:0.152400px;}
.lsd{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.206400px;}
.ls5{letter-spacing:0.226200px;}
.ls3a{letter-spacing:0.259800px;}
.lsc{letter-spacing:0.259920px;}
.ls20{letter-spacing:0.262080px;}
.ls1a{letter-spacing:0.262200px;}
.lsb{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.290880px;}
.ls31{letter-spacing:0.305280px;}
.ls1b{letter-spacing:0.305400px;}
.ls18{letter-spacing:0.306600px;}
.ls3d{letter-spacing:0.334080px;}
.ls33{letter-spacing:0.354000px;}
.ls37{letter-spacing:0.354240px;}
.ls8{letter-spacing:0.360000px;}
.ls2e{letter-spacing:0.432000px;}
.ls1f{letter-spacing:0.470880px;}
.ls6{letter-spacing:0.720000px;}
.ls45{letter-spacing:0.738000px;}
.ls39{letter-spacing:0.774000px;}
.lsf{letter-spacing:1.008000px;}
.ls30{letter-spacing:1.025280px;}
.ls10{letter-spacing:1.026720px;}
.ls2d{letter-spacing:1.152000px;}
.ls27{letter-spacing:2.880000px;}
.ls38{letter-spacing:3.600000px;}
.ls3e{letter-spacing:4.320000px;}
.ls2f{letter-spacing:6.480000px;}
.ls21{letter-spacing:7.380000px;}
.ls4b{letter-spacing:10.800000px;}
.ls36{letter-spacing:23.760000px;}
.ls47{letter-spacing:63.720000px;}
.ls1{letter-spacing:75.960000px;}
.ls49{letter-spacing:139.320000px;}
.ls3{letter-spacing:151.560000px;}
.ls35{letter-spacing:182.880000px;}
.ls3b{letter-spacing:199.440000px;}
.ls4a{letter-spacing:642.780000px;}
.ls4{letter-spacing:655.740000px;}
.ls48{letter-spacing:667.980000px;}
.ls2{letter-spacing:680.940000px;}
.ls42{letter-spacing:849.607200px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(238,0,0),0 0.015em rgb(238,0,0),0.015em 0 rgb(238,0,0),0 -0.015em  rgb(238,0,0);}
.sc2{text-shadow:-0.015em 0 rgb(0,0,255),0 0.015em rgb(0,0,255),0.015em 0 rgb(0,0,255),0 -0.015em  rgb(0,0,255);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc3{-webkit-text-stroke:0.015em rgb(238,0,0);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1e{word-spacing:-66.283200px;}
.ws1f{word-spacing:-66.240000px;}
.ws23{word-spacing:-59.760000px;}
.ws0{word-spacing:-25.200000px;}
.ws24{word-spacing:-18.000000px;}
.ws1b{word-spacing:-17.856000px;}
.ws10{word-spacing:-16.865400px;}
.wsd{word-spacing:-16.822200px;}
.wse{word-spacing:-16.712400px;}
.ws4{word-spacing:-16.669200px;}
.ws5{word-spacing:-16.560000px;}
.wsf{word-spacing:-16.450800px;}
.ws15{word-spacing:-16.444800px;}
.ws25{word-spacing:-16.416000px;}
.ws12{word-spacing:-16.407600px;}
.ws1d{word-spacing:-16.254600px;}
.ws16{word-spacing:-16.194000px;}
.ws11{word-spacing:-16.145400px;}
.ws13{word-spacing:-16.102200px;}
.ws14{word-spacing:-15.948000px;}
.ws17{word-spacing:-15.840000px;}
.ws18{word-spacing:-15.732000px;}
.ws19{word-spacing:-15.714000px;}
.ws3{word-spacing:-15.300000px;}
.ws1a{word-spacing:-15.246600px;}
.ws8{word-spacing:-15.146400px;}
.ws20{word-spacing:-15.137280px;}
.ws22{word-spacing:-15.120000px;}
.ws21{word-spacing:-15.102720px;}
.ws6{word-spacing:-15.046800px;}
.wsb{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.833200px;}
.wsa{word-spacing:-14.580000px;}
.ws1{word-spacing:-10.666200px;}
.ws1c{word-spacing:-10.440000px;}
.ws9{word-spacing:-0.059760px;}
.wsc{word-spacing:0.000000px;}
._16{margin-left:-15.840000px;}
._1f{margin-left:-8.460960px;}
._a{margin-left:-5.221440px;}
._7{margin-left:-3.649680px;}
._1{margin-left:-2.505600px;}
._0{margin-left:-1.061280px;}
._2{width:1.147680px;}
._3{width:2.450160px;}
._6{width:3.944160px;}
._d{width:5.058720px;}
._f{width:6.135840px;}
._e{width:7.839840px;}
._8{width:9.538560px;}
._9{width:10.566720px;}
._12{width:11.643840px;}
._19{width:13.446720px;}
._10{width:14.937120px;}
._4{width:15.943680px;}
._5{width:17.142480px;}
._1b{width:18.691680px;}
._20{width:19.944000px;}
._1c{width:21.709440px;}
._15{width:23.187360px;}
._18{width:25.767360px;}
._1e{width:55.964160px;}
._1d{width:89.084160px;}
._14{width:97.878720px;}
._b{width:109.280160px;}
._17{width:116.334240px;}
._1a{width:169.248480px;}
._13{width:182.880000px;}
._c{width:199.440000px;}
._11{width:847.620000px;}
.fca{color:rgb(0,112,192);}
.fc9{color:rgb(0,0,127);}
.fc6{color:rgb(255,0,0);}
.fc5{color:rgb(0,32,96);}
.fc8{color:rgb(80,0,80);}
.fc3{color:rgb(0,0,255);}
.fc7{color:rgb(0,127,0);}
.fc2{color:rgb(238,0,0);}
.fc4{color:rgb(0,0,0);}
.fc1{color:rgb(0,176,80);}
.fc0{color:rgb(255,0,255);}
.fs2{font-size:18.000000px;}
.fs0{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y21{bottom:0.900000px;}
.y11{bottom:1.080000px;}
.yf{bottom:3.240000px;}
.ye{bottom:3.780000px;}
.y2{bottom:56.880000px;}
.y125{bottom:111.636000px;}
.y1be{bottom:113.976000px;}
.y71{bottom:115.956000px;}
.y3f{bottom:120.456000px;}
.y150{bottom:123.516000px;}
.yfc{bottom:123.696000px;}
.y189{bottom:123.876000px;}
.ya3{bottom:124.416000px;}
.y3e{bottom:125.676000px;}
.ycc{bottom:126.936000px;}
.y124{bottom:130.716000px;}
.y1e7{bottom:131.256000px;}
.y1bd{bottom:133.056000px;}
.y3d{bottom:133.236000px;}
.y70{bottom:134.856000px;}
.y1e6{bottom:138.996000px;}
.y14f{bottom:142.416000px;}
.yfb{bottom:142.596000px;}
.ya2{bottom:143.496000px;}
.y188{bottom:144.216000px;}
.ycb{bottom:146.016000px;}
.y123{bottom:149.616000px;}
.y3c{bottom:150.510000px;}
.y1bc{bottom:151.950000px;}
.y6f{bottom:153.930000px;}
.y1e5{bottom:157.890000px;}
.y14e{bottom:161.310000px;}
.yfa{bottom:161.670000px;}
.ya1{bottom:162.390000px;}
.yca{bottom:166.170000px;}
.y122{bottom:168.510000px;}
.y3b{bottom:168.870000px;}
.y1bb{bottom:169.950000px;}
.y6e{bottom:172.830000px;}
.y1e4{bottom:176.790000px;}
.y14d{bottom:180.390000px;}
.yf9{bottom:180.570000px;}
.ya0{bottom:181.290000px;}
.y1ba{bottom:184.350000px;}
.y187{bottom:185.070000px;}
.yc9{bottom:186.330000px;}
.y3a{bottom:187.230000px;}
.y121{bottom:187.590000px;}
.y6d{bottom:191.910000px;}
.y1e3{bottom:196.230000px;}
.y14c{bottom:199.290000px;}
.yf8{bottom:199.650000px;}
.y9f{bottom:200.370000px;}
.y1b9{bottom:201.990000px;}
.y186{bottom:203.970000px;}
.y39{bottom:204.330000px;}
.yc8{bottom:205.410000px;}
.y120{bottom:206.490000px;}
.y6c{bottom:210.810000px;}
.y1b8{bottom:215.490000px;}
.y1e2{bottom:216.930000px;}
.y14b{bottom:218.370000px;}
.yf7{bottom:218.550000px;}
.y9e{bottom:219.270000px;}
.y38{bottom:221.610000px;}
.y185{bottom:222.870000px;}
.yc7{bottom:224.310000px;}
.y11f{bottom:225.570000px;}
.y6b{bottom:229.890000px;}
.y1b7{bottom:234.390000px;}
.y14a{bottom:237.270000px;}
.yf6{bottom:237.450000px;}
.y1e1{bottom:237.630000px;}
.y9d{bottom:238.350000px;}
.y37{bottom:238.890000px;}
.y184{bottom:241.950000px;}
.yc6{bottom:243.390000px;}
.y11e{bottom:244.470000px;}
.y6a{bottom:248.790000px;}
.y1b6{bottom:253.290000px;}
.y36{bottom:256.170000px;}
.yf5{bottom:256.530000px;}
.y9c{bottom:257.250000px;}
.y1e0{bottom:258.330000px;}
.y183{bottom:260.850000px;}
.yc5{bottom:262.290000px;}
.y11d{bottom:263.550000px;}
.y69{bottom:267.690000px;}
.y1b5{bottom:272.370000px;}
.y35{bottom:273.450000px;}
.y149{bottom:275.250000px;}
.yf4{bottom:275.430000px;}
.y9b{bottom:276.150000px;}
.y1df{bottom:279.030000px;}
.y182{bottom:279.750000px;}
.yc4{bottom:281.190000px;}
.y11c{bottom:282.450000px;}
.y68{bottom:286.770000px;}
.y34{bottom:290.010000px;}
.y1b4{bottom:290.370000px;}
.y148{bottom:294.150000px;}
.yf3{bottom:294.510000px;}
.y9a{bottom:295.230000px;}
.y181{bottom:298.650000px;}
.y1de{bottom:299.730000px;}
.yc3{bottom:300.270000px;}
.y11b{bottom:301.350000px;}
.y33{bottom:304.410000px;}
.y1b3{bottom:304.770000px;}
.y67{bottom:305.670000px;}
.y147{bottom:313.230000px;}
.yf2{bottom:313.410000px;}
.y99{bottom:314.130000px;}
.y180{bottom:317.595000px;}
.yc2{bottom:319.215000px;}
.y11a{bottom:320.475000px;}
.y32{bottom:321.735000px;}
.y1b2{bottom:322.455000px;}
.y66{bottom:324.795000px;}
.y146{bottom:332.175000px;}
.yf1{bottom:332.355000px;}
.y98{bottom:333.255000px;}
.y1b1{bottom:336.135000px;}
.y17f{bottom:336.495000px;}
.yc1{bottom:338.295000px;}
.y31{bottom:339.015000px;}
.y119{bottom:339.375000px;}
.y1dd{bottom:341.175000px;}
.y65{bottom:343.695000px;}
.y145{bottom:351.435000px;}
.y97{bottom:352.155000px;}
.yf0{bottom:352.695000px;}
.y17e{bottom:355.575000px;}
.y30{bottom:356.295000px;}
.y1b0{bottom:356.835000px;}
.yc0{bottom:357.195000px;}
.y118{bottom:358.455000px;}
.y1dc{bottom:361.875000px;}
.y64{bottom:362.595000px;}
.yef{bottom:371.595000px;}
.y144{bottom:371.775000px;}
.y96{bottom:372.315000px;}
.y2f{bottom:373.575000px;}
.y17d{bottom:374.475000px;}
.ybf{bottom:376.455000px;}
.y117{bottom:377.355000px;}
.y1af{bottom:377.535000px;}
.y63{bottom:381.675000px;}
.y1db{bottom:382.575000px;}
.y2e{bottom:390.675000px;}
.y143{bottom:390.855000px;}
.y95{bottom:391.395000px;}
.y17c{bottom:393.375000px;}
.y116{bottom:396.255000px;}
.ybe{bottom:396.795000px;}
.y1ae{bottom:398.235000px;}
.y62{bottom:400.575000px;}
.y1da{bottom:403.275000px;}
.y2d{bottom:407.955000px;}
.yee{bottom:409.575000px;}
.y142{bottom:409.755000px;}
.y94{bottom:410.295000px;}
.y17b{bottom:412.275000px;}
.ybd{bottom:413.895000px;}
.y115{bottom:415.335000px;}
.y1ad{bottom:417.675000px;}
.y61{bottom:419.655000px;}
.y1d9{bottom:423.975000px;}
.y2c{bottom:425.235000px;}
.yed{bottom:428.475000px;}
.y141{bottom:428.835000px;}
.y93{bottom:430.455000px;}
.y1ac{bottom:432.075000px;}
.ybc{bottom:434.055000px;}
.y114{bottom:434.235000px;}
.y17a{bottom:438.555000px;}
.y60{bottom:438.915000px;}
.y2b{bottom:442.515000px;}
.y1d8{bottom:444.675000px;}
.yec{bottom:447.555000px;}
.y140{bottom:447.735000px;}
.y1ab{bottom:448.635000px;}
.y92{bottom:449.535000px;}
.y113{bottom:453.315000px;}
.ybb{bottom:454.215000px;}
.y5f{bottom:459.255000px;}
.y2a{bottom:459.795000px;}
.y1aa{bottom:463.755000px;}
.y1d7{bottom:465.375000px;}
.yeb{bottom:466.455000px;}
.y13f{bottom:466.815000px;}
.y179{bottom:467.895000px;}
.y91{bottom:468.435000px;}
.y112{bottom:472.215000px;}
.yba{bottom:474.195000px;}
.y29{bottom:476.895000px;}
.y5e{bottom:478.155000px;}
.yb9{bottom:482.295000px;}
.y1a9{bottom:484.455000px;}
.yea{bottom:485.535000px;}
.y13e{bottom:485.715000px;}
.y1d6{bottom:486.075000px;}
.y90{bottom:488.775000px;}
.y178{bottom:490.215000px;}
.y111{bottom:491.115000px;}
.y28{bottom:494.175000px;}
.y5d{bottom:497.235000px;}
.yb8{bottom:502.455000px;}
.ye9{bottom:504.435000px;}
.y13d{bottom:504.615000px;}
.y1a8{bottom:505.155000px;}
.y1d5{bottom:506.775000px;}
.y8f{bottom:507.675000px;}
.y110{bottom:510.195000px;}
.y177{bottom:510.915000px;}
.y27{bottom:511.455000px;}
.y5c{bottom:516.135000px;}
.yb7{bottom:522.435000px;}
.ye8{bottom:523.335000px;}
.y13c{bottom:524.955000px;}
.y1a7{bottom:525.855000px;}
.y8e{bottom:526.575000px;}
.y1d4{bottom:527.475000px;}
.y26{bottom:528.735000px;}
.y10f{bottom:529.095000px;}
.y176{bottom:531.255000px;}
.y5b{bottom:535.215000px;}
.ye7{bottom:542.415000px;}
.yb6{bottom:542.595000px;}
.y13b{bottom:543.855000px;}
.y25{bottom:545.295000px;}
.y8d{bottom:545.655000px;}
.y1a6{bottom:546.555000px;}
.y10e{bottom:548.175000px;}
.y175{bottom:550.155000px;}
.y5a{bottom:554.115000px;}
.y24{bottom:558.255000px;}
.ye6{bottom:561.315000px;}
.yb5{bottom:562.755000px;}
.y8c{bottom:564.555000px;}
.y160{bottom:567.075000px;}
.y1a5{bottom:567.255000px;}
.y10d{bottom:568.365000px;}
.y1d3{bottom:568.905000px;}
.y174{bottom:569.265000px;}
.y59{bottom:573.045000px;}
.y23{bottom:578.445000px;}
.ye5{bottom:581.505000px;}
.yb4{bottom:582.765000px;}
.y13a{bottom:583.125000px;}
.y8b{bottom:583.665000px;}
.y1a4{bottom:584.925000px;}
.y15f{bottom:586.005000px;}
.y10c{bottom:587.265000px;}
.y173{bottom:588.165000px;}
.y1d2{bottom:589.605000px;}
.y58{bottom:592.125000px;}
.y1a3{bottom:592.485000px;}
.y22{bottom:598.605000px;}
.ye4{bottom:601.845000px;}
.y8a{bottom:602.565000px;}
.yb3{bottom:602.925000px;}
.y139{bottom:603.285000px;}
.y15e{bottom:605.085000px;}
.y10b{bottom:606.345000px;}
.y172{bottom:607.245000px;}
.y1a2{bottom:610.125000px;}
.y1d1{bottom:610.305000px;}
.y57{bottom:611.025000px;}
.y20{bottom:618.585000px;}
.ye3{bottom:620.745000px;}
.y89{bottom:621.465000px;}
.y138{bottom:622.185000px;}
.yb2{bottom:623.085000px;}
.y1a1{bottom:623.445000px;}
.y15d{bottom:623.985000px;}
.y10a{bottom:625.245000px;}
.y171{bottom:626.145000px;}
.y1f{bottom:626.685000px;}
.y56{bottom:630.105000px;}
.y1d0{bottom:631.005000px;}
.ye2{bottom:639.825000px;}
.y88{bottom:640.545000px;}
.y137{bottom:641.265000px;}
.y1a0{bottom:642.525000px;}
.yb1{bottom:643.065000px;}
.y109{bottom:644.325000px;}
.y170{bottom:645.045000px;}
.y1e{bottom:646.845000px;}
.y55{bottom:649.005000px;}
.y1cf{bottom:651.705000px;}
.ye1{bottom:658.725000px;}
.y87{bottom:659.445000px;}
.y136{bottom:660.525000px;}
.y19f{bottom:661.425000px;}
.y15c{bottom:661.965000px;}
.yb0{bottom:663.225000px;}
.y16f{bottom:664.125000px;}
.y1d{bottom:666.825000px;}
.y54{bottom:667.905000px;}
.y1ce{bottom:672.405000px;}
.ye0{bottom:677.625000px;}
.y86{bottom:678.525000px;}
.y19e{bottom:679.425000px;}
.y135{bottom:680.865000px;}
.y108{bottom:682.125000px;}
.yaf{bottom:683.385000px;}
.y1c{bottom:686.985000px;}
.y1cd{bottom:693.105000px;}
.y19d{bottom:693.825000px;}
.y85{bottom:697.425000px;}
.ydf{bottom:697.965000px;}
.y134{bottom:699.945000px;}
.y107{bottom:701.205000px;}
.y16e{bottom:702.465000px;}
.yae{bottom:703.365000px;}
.y53{bottom:705.885000px;}
.y1b{bottom:707.145000px;}
.y19c{bottom:711.465000px;}
.y1cc{bottom:713.805000px;}
.y84{bottom:716.505000px;}
.yde{bottom:718.125000px;}
.y133{bottom:718.845000px;}
.y106{bottom:720.105000px;}
.y16d{bottom:721.365000px;}
.yad{bottom:723.525000px;}
.y52{bottom:724.965000px;}
.y19b{bottom:725.145000px;}
.y1a{bottom:727.125000px;}
.y1cb{bottom:734.505000px;}
.y83{bottom:735.405000px;}
.ydd{bottom:737.025000px;}
.y132{bottom:737.745000px;}
.y15b{bottom:737.925000px;}
.y105{bottom:739.185000px;}
.y16c{bottom:740.265000px;}
.y19a{bottom:741.345000px;}
.yac{bottom:743.685000px;}
.y51{bottom:743.865000px;}
.y19{bottom:747.285000px;}
.y199{bottom:749.265000px;}
.y82{bottom:754.305000px;}
.y1ca{bottom:755.205000px;}
.ydc{bottom:756.105000px;}
.y131{bottom:756.825000px;}
.y104{bottom:758.085000px;}
.y16b{bottom:759.345000px;}
.y50{bottom:763.125000px;}
.yab{bottom:763.665000px;}
.y198{bottom:765.465000px;}
.y18{bottom:767.445000px;}
.yaa{bottom:772.125000px;}
.y81{bottom:773.385000px;}
.ydb{bottom:775.005000px;}
.y130{bottom:775.725000px;}
.y1c9{bottom:775.905000px;}
.y15a{bottom:776.085000px;}
.y103{bottom:776.985000px;}
.y16a{bottom:778.245000px;}
.y4f{bottom:783.825000px;}
.y17{bottom:787.425000px;}
.y197{bottom:792.465000px;}
.y80{bottom:793.545000px;}
.yda{bottom:794.085000px;}
.y12f{bottom:794.805000px;}
.ya9{bottom:796.065000px;}
.y159{bottom:796.605000px;}
.y169{bottom:797.325000px;}
.y4e{bottom:804.525000px;}
.y16{bottom:807.585000px;}
.y196{bottom:808.665000px;}
.yd9{bottom:812.985000px;}
.y12e{bottom:813.345000px;}
.y7f{bottom:813.705000px;}
.ya8{bottom:814.965000px;}
.y158{bottom:815.505000px;}
.y168{bottom:816.225000px;}
.y195{bottom:816.585000px;}
.y1c8{bottom:817.305000px;}
.y4d{bottom:825.270000px;}
.y15{bottom:827.790000px;}
.y12d{bottom:830.670000px;}
.yd8{bottom:833.190000px;}
.y7e{bottom:834.090000px;}
.y157{bottom:834.450000px;}
.y167{bottom:835.350000px;}
.y194{bottom:835.710000px;}
.y1c7{bottom:839.490000px;}
.y4c{bottom:845.970000px;}
.y14{bottom:847.770000px;}
.yd7{bottom:852.270000px;}
.ya7{bottom:852.990000px;}
.y156{bottom:853.530000px;}
.y7d{bottom:854.250000px;}
.y166{bottom:854.610000px;}
.y1c6{bottom:860.190000px;}
.y12c{bottom:866.310000px;}
.y4b{bottom:866.670000px;}
.y13{bottom:867.930000px;}
.ya6{bottom:871.890000px;}
.yd6{bottom:872.430000px;}
.y7c{bottom:873.150000px;}
.y193{bottom:873.510000px;}
.y165{bottom:874.950000px;}
.y1c5{bottom:882.150000px;}
.y12b{bottom:884.850000px;}
.y4a{bottom:887.370000px;}
.y12{bottom:888.090000px;}
.y102{bottom:890.970000px;}
.yd5{bottom:891.510000px;}
.y7b{bottom:892.230000px;}
.y192{bottom:892.590000px;}
.y164{bottom:893.850000px;}
.y12a{bottom:902.130000px;}
.y1c4{bottom:902.850000px;}
.y49{bottom:907.350000px;}
.y10{bottom:908.070000px;}
.y101{bottom:909.870000px;}
.yd4{bottom:910.410000px;}
.y7a{bottom:911.130000px;}
.y191{bottom:911.490000px;}
.y163{bottom:912.930000px;}
.yd{bottom:916.530000px;}
.y129{bottom:919.410000px;}
.y1c3{bottom:923.550000px;}
.y48{bottom:924.630000px;}
.y100{bottom:928.950000px;}
.yd3{bottom:929.310000px;}
.y79{bottom:930.210000px;}
.y190{bottom:930.570000px;}
.y162{bottom:931.830000px;}
.y128{bottom:936.510000px;}
.yc{bottom:939.210000px;}
.y47{bottom:941.910000px;}
.y1c2{bottom:944.250000px;}
.yff{bottom:947.850000px;}
.yd2{bottom:948.390000px;}
.y78{bottom:949.110000px;}
.y18f{bottom:949.470000px;}
.y155{bottom:949.650000px;}
.y161{bottom:950.910000px;}
.yb{bottom:953.790000px;}
.y46{bottom:959.190000px;}
.y1c1{bottom:964.950000px;}
.yfe{bottom:966.750000px;}
.yd1{bottom:967.290000px;}
.y77{bottom:968.010000px;}
.y18e{bottom:968.550000px;}
.y154{bottom:969.810000px;}
.y127{bottom:971.070000px;}
.ya{bottom:971.430000px;}
.y45{bottom:976.290000px;}
.y1c0{bottom:985.650000px;}
.yfd{bottom:985.830000px;}
.y76{bottom:987.090000px;}
.yd0{bottom:987.450000px;}
.y126{bottom:988.350000px;}
.y153{bottom:988.710000px;}
.y9{bottom:991.770000px;}
.y44{bottom:993.570000px;}
.y18d{bottom:1005.270000px;}
.y75{bottom:1005.990000px;}
.y1bf{bottom:1006.350000px;}
.ycf{bottom:1006.530000px;}
.y152{bottom:1007.790000px;}
.y8{bottom:1010.310000px;}
.y43{bottom:1010.850000px;}
.y18c{bottom:1020.210000px;}
.y74{bottom:1025.070000px;}
.yce{bottom:1025.430000px;}
.y151{bottom:1026.690000px;}
.y42{bottom:1028.130000px;}
.y7{bottom:1028.670000px;}
.y18b{bottom:1039.110000px;}
.ya5{bottom:1043.970000px;}
.y73{bottom:1044.330000px;}
.y6{bottom:1044.690000px;}
.y41{bottom:1045.590000px;}
.ycd{bottom:1045.770000px;}
.y5{bottom:1051.350000px;}
.y18a{bottom:1061.250000px;}
.y4{bottom:1061.970000px;}
.ya4{bottom:1063.230000px;}
.y40{bottom:1064.490000px;}
.y72{bottom:1064.670000px;}
.y3{bottom:1068.630000px;}
.y1{bottom:1125.180000px;}
.hf{height:5.220000px;}
.hb{height:5.580000px;}
.h5{height:12.568359px;}
.h3{height:12.700195px;}
.h21{height:13.104492px;}
.hc{height:17.100000px;}
.h16{height:17.136000px;}
.hd{height:17.280000px;}
.he{height:17.316000px;}
.h9{height:18.360000px;}
.h1{height:29.158594px;}
.h4{height:29.464453px;}
.h1e{height:32.152148px;}
.h1c{height:32.717461px;}
.h10{height:33.683203px;}
.h2{height:34.036523px;}
.h1d{height:35.120039px;}
.h6{height:41.726953px;}
.ha{height:42.164648px;}
.h7{height:46.251562px;}
.h15{height:46.736719px;}
.h11{height:48.224531px;}
.h8{height:49.255313px;}
.h18{height:49.938750px;}
.h12{height:50.273438px;}
.h13{height:50.800781px;}
.h19{height:52.377539px;}
.h20{height:52.417969px;}
.h17{height:52.918594px;}
.h14{height:54.596250px;}
.h1a{height:55.825312px;}
.h1f{height:59.343750px;}
.h1b{height:59.985352px;}
.h0{height:1188.000000px;}
.w8{width:19.476000px;}
.w3{width:26.280000px;}
.w6{width:32.940000px;}
.w4{width:32.976000px;}
.w9{width:39.780000px;}
.w2{width:46.260000px;}
.w5{width:60.120000px;}
.w7{width:87.120000px;}
.wb{width:92.700000px;}
.wa{width:114.156000px;}
.wc{width:598.785000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xe{left:2.340000px;}
.x4{left:3.960000px;}
.xb{left:9.570000px;}
.x12{left:12.960000px;}
.x13{left:16.380000px;}
.x16{left:19.800000px;}
.x11{left:23.040000px;}
.x1d{left:26.640000px;}
.x14{left:30.060000px;}
.x19{left:32.220000px;}
.x1c{left:36.540000px;}
.x15{left:43.560000px;}
.x18{left:46.080000px;}
.x1a{left:47.520000px;}
.x1b{left:53.280000px;}
.x17{left:57.060000px;}
.x1e{left:78.480000px;}
.x1{left:162.029986px;}
.x20{left:171.389986px;}
.x3{left:186.690000px;}
.x23{left:216.029986px;}
.x5{left:233.670000px;}
.x6{left:260.670000px;}
.x22{left:270.029986px;}
.x7{left:294.375000px;}
.x8{left:355.215000px;}
.x9{left:388.875000px;}
.x21{left:390.134986px;}
.x2{left:415.334986px;}
.x25{left:425.234986px;}
.x24{left:459.794986px;}
.xa{left:476.715000px;}
.x1f{left:486.104986px;}
.xc{left:496.905000px;}
.xd{left:537.405000px;}
.xf{left:577.905000px;}
.x10{left:692.790000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls34{letter-spacing:-0.736000pt;}
.ls1c{letter-spacing:-0.640000pt;}
.ls44{letter-spacing:-0.624000pt;}
.ls32{letter-spacing:-0.570667pt;}
.ls2a{letter-spacing:-0.544000pt;}
.ls16{letter-spacing:-0.480000pt;}
.ls23{letter-spacing:-0.406933pt;}
.ls1d{letter-spacing:-0.368533pt;}
.ls19{letter-spacing:-0.367467pt;}
.ls25{letter-spacing:-0.325333pt;}
.ls15{letter-spacing:-0.320000pt;}
.ls43{letter-spacing:-0.271467pt;}
.ls46{letter-spacing:-0.207467pt;}
.ls4d{letter-spacing:-0.192000pt;}
.ls2b{letter-spacing:-0.135467pt;}
.ls3c{letter-spacing:-0.128000pt;}
.ls2c{letter-spacing:-0.102400pt;}
.ls24{letter-spacing:-0.097067pt;}
.ls14{letter-spacing:-0.094933pt;}
.ls13{letter-spacing:-0.047360pt;}
.ls4e{letter-spacing:-0.000003pt;}
.ls11{letter-spacing:0.000000pt;}
.ls40{letter-spacing:0.015360pt;}
.ls41{letter-spacing:0.030720pt;}
.ls3f{letter-spacing:0.038400pt;}
.ls17{letter-spacing:0.047360pt;}
.ls4c{letter-spacing:0.064000pt;}
.ls26{letter-spacing:0.071467pt;}
.ls28{letter-spacing:0.071680pt;}
.ls9{letter-spacing:0.094720pt;}
.lse{letter-spacing:0.094933pt;}
.ls12{letter-spacing:0.097067pt;}
.ls1e{letter-spacing:0.097280pt;}
.ls29{letter-spacing:0.106240pt;}
.ls0{letter-spacing:0.128000pt;}
.ls22{letter-spacing:0.135467pt;}
.lsd{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.183467pt;}
.ls5{letter-spacing:0.201067pt;}
.ls3a{letter-spacing:0.230933pt;}
.lsc{letter-spacing:0.231040pt;}
.ls20{letter-spacing:0.232960pt;}
.ls1a{letter-spacing:0.233067pt;}
.lsb{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.258560pt;}
.ls31{letter-spacing:0.271360pt;}
.ls1b{letter-spacing:0.271467pt;}
.ls18{letter-spacing:0.272533pt;}
.ls3d{letter-spacing:0.296960pt;}
.ls33{letter-spacing:0.314667pt;}
.ls37{letter-spacing:0.314880pt;}
.ls8{letter-spacing:0.320000pt;}
.ls2e{letter-spacing:0.384000pt;}
.ls1f{letter-spacing:0.418560pt;}
.ls6{letter-spacing:0.640000pt;}
.ls45{letter-spacing:0.656000pt;}
.ls39{letter-spacing:0.688000pt;}
.lsf{letter-spacing:0.896000pt;}
.ls30{letter-spacing:0.911360pt;}
.ls10{letter-spacing:0.912640pt;}
.ls2d{letter-spacing:1.024000pt;}
.ls27{letter-spacing:2.560000pt;}
.ls38{letter-spacing:3.200000pt;}
.ls3e{letter-spacing:3.840000pt;}
.ls2f{letter-spacing:5.760000pt;}
.ls21{letter-spacing:6.560000pt;}
.ls4b{letter-spacing:9.600000pt;}
.ls36{letter-spacing:21.120000pt;}
.ls47{letter-spacing:56.640000pt;}
.ls1{letter-spacing:67.520000pt;}
.ls49{letter-spacing:123.840000pt;}
.ls3{letter-spacing:134.720000pt;}
.ls35{letter-spacing:162.560000pt;}
.ls3b{letter-spacing:177.280000pt;}
.ls4a{letter-spacing:571.360000pt;}
.ls4{letter-spacing:582.880000pt;}
.ls48{letter-spacing:593.760000pt;}
.ls2{letter-spacing:605.280000pt;}
.ls42{letter-spacing:755.206400pt;}
.ws1e{word-spacing:-58.918400pt;}
.ws1f{word-spacing:-58.880000pt;}
.ws23{word-spacing:-53.120000pt;}
.ws0{word-spacing:-22.400000pt;}
.ws24{word-spacing:-16.000000pt;}
.ws1b{word-spacing:-15.872000pt;}
.ws10{word-spacing:-14.991467pt;}
.wsd{word-spacing:-14.953067pt;}
.wse{word-spacing:-14.855467pt;}
.ws4{word-spacing:-14.817067pt;}
.ws5{word-spacing:-14.720000pt;}
.wsf{word-spacing:-14.622933pt;}
.ws15{word-spacing:-14.617600pt;}
.ws25{word-spacing:-14.592000pt;}
.ws12{word-spacing:-14.584533pt;}
.ws1d{word-spacing:-14.448533pt;}
.ws16{word-spacing:-14.394667pt;}
.ws11{word-spacing:-14.351467pt;}
.ws13{word-spacing:-14.313067pt;}
.ws14{word-spacing:-14.176000pt;}
.ws17{word-spacing:-14.080000pt;}
.ws18{word-spacing:-13.984000pt;}
.ws19{word-spacing:-13.968000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws1a{word-spacing:-13.552533pt;}
.ws8{word-spacing:-13.463467pt;}
.ws20{word-spacing:-13.455360pt;}
.ws22{word-spacing:-13.440000pt;}
.ws21{word-spacing:-13.424640pt;}
.ws6{word-spacing:-13.374933pt;}
.wsb{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.185067pt;}
.wsa{word-spacing:-12.960000pt;}
.ws1{word-spacing:-9.481067pt;}
.ws1c{word-spacing:-9.280000pt;}
.ws9{word-spacing:-0.053120pt;}
.wsc{word-spacing:0.000000pt;}
._16{margin-left:-14.080000pt;}
._1f{margin-left:-7.520853pt;}
._a{margin-left:-4.641280pt;}
._7{margin-left:-3.244160pt;}
._1{margin-left:-2.227200pt;}
._0{margin-left:-0.943360pt;}
._2{width:1.020160pt;}
._3{width:2.177920pt;}
._6{width:3.505920pt;}
._d{width:4.496640pt;}
._f{width:5.454080pt;}
._e{width:6.968747pt;}
._8{width:8.478720pt;}
._9{width:9.392640pt;}
._12{width:10.350080pt;}
._19{width:11.952640pt;}
._10{width:13.277440pt;}
._4{width:14.172160pt;}
._5{width:15.237760pt;}
._1b{width:16.614827pt;}
._20{width:17.728000pt;}
._1c{width:19.297280pt;}
._15{width:20.610987pt;}
._18{width:22.904320pt;}
._1e{width:49.745920pt;}
._1d{width:79.185920pt;}
._14{width:87.003307pt;}
._b{width:97.137920pt;}
._17{width:103.408213pt;}
._1a{width:150.443093pt;}
._13{width:162.560000pt;}
._c{width:177.280000pt;}
._11{width:753.440000pt;}
.fs2{font-size:16.000000pt;}
.fs0{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:0.800000pt;}
.y11{bottom:0.960000pt;}
.yf{bottom:2.880000pt;}
.ye{bottom:3.360000pt;}
.y2{bottom:50.560000pt;}
.y125{bottom:99.232000pt;}
.y1be{bottom:101.312000pt;}
.y71{bottom:103.072000pt;}
.y3f{bottom:107.072000pt;}
.y150{bottom:109.792000pt;}
.yfc{bottom:109.952000pt;}
.y189{bottom:110.112000pt;}
.ya3{bottom:110.592000pt;}
.y3e{bottom:111.712000pt;}
.ycc{bottom:112.832000pt;}
.y124{bottom:116.192000pt;}
.y1e7{bottom:116.672000pt;}
.y1bd{bottom:118.272000pt;}
.y3d{bottom:118.432000pt;}
.y70{bottom:119.872000pt;}
.y1e6{bottom:123.552000pt;}
.y14f{bottom:126.592000pt;}
.yfb{bottom:126.752000pt;}
.ya2{bottom:127.552000pt;}
.y188{bottom:128.192000pt;}
.ycb{bottom:129.792000pt;}
.y123{bottom:132.992000pt;}
.y3c{bottom:133.786667pt;}
.y1bc{bottom:135.066667pt;}
.y6f{bottom:136.826667pt;}
.y1e5{bottom:140.346667pt;}
.y14e{bottom:143.386667pt;}
.yfa{bottom:143.706667pt;}
.ya1{bottom:144.346667pt;}
.yca{bottom:147.706667pt;}
.y122{bottom:149.786667pt;}
.y3b{bottom:150.106667pt;}
.y1bb{bottom:151.066667pt;}
.y6e{bottom:153.626667pt;}
.y1e4{bottom:157.146667pt;}
.y14d{bottom:160.346667pt;}
.yf9{bottom:160.506667pt;}
.ya0{bottom:161.146667pt;}
.y1ba{bottom:163.866667pt;}
.y187{bottom:164.506667pt;}
.yc9{bottom:165.626667pt;}
.y3a{bottom:166.426667pt;}
.y121{bottom:166.746667pt;}
.y6d{bottom:170.586667pt;}
.y1e3{bottom:174.426667pt;}
.y14c{bottom:177.146667pt;}
.yf8{bottom:177.466667pt;}
.y9f{bottom:178.106667pt;}
.y1b9{bottom:179.546667pt;}
.y186{bottom:181.306667pt;}
.y39{bottom:181.626667pt;}
.yc8{bottom:182.586667pt;}
.y120{bottom:183.546667pt;}
.y6c{bottom:187.386667pt;}
.y1b8{bottom:191.546667pt;}
.y1e2{bottom:192.826667pt;}
.y14b{bottom:194.106667pt;}
.yf7{bottom:194.266667pt;}
.y9e{bottom:194.906667pt;}
.y38{bottom:196.986667pt;}
.y185{bottom:198.106667pt;}
.yc7{bottom:199.386667pt;}
.y11f{bottom:200.506667pt;}
.y6b{bottom:204.346667pt;}
.y1b7{bottom:208.346667pt;}
.y14a{bottom:210.906667pt;}
.yf6{bottom:211.066667pt;}
.y1e1{bottom:211.226667pt;}
.y9d{bottom:211.866667pt;}
.y37{bottom:212.346667pt;}
.y184{bottom:215.066667pt;}
.yc6{bottom:216.346667pt;}
.y11e{bottom:217.306667pt;}
.y6a{bottom:221.146667pt;}
.y1b6{bottom:225.146667pt;}
.y36{bottom:227.706667pt;}
.yf5{bottom:228.026667pt;}
.y9c{bottom:228.666667pt;}
.y1e0{bottom:229.626667pt;}
.y183{bottom:231.866667pt;}
.yc5{bottom:233.146667pt;}
.y11d{bottom:234.266667pt;}
.y69{bottom:237.946667pt;}
.y1b5{bottom:242.106667pt;}
.y35{bottom:243.066667pt;}
.y149{bottom:244.666667pt;}
.yf4{bottom:244.826667pt;}
.y9b{bottom:245.466667pt;}
.y1df{bottom:248.026667pt;}
.y182{bottom:248.666667pt;}
.yc4{bottom:249.946667pt;}
.y11c{bottom:251.066667pt;}
.y68{bottom:254.906667pt;}
.y34{bottom:257.786667pt;}
.y1b4{bottom:258.106667pt;}
.y148{bottom:261.466667pt;}
.yf3{bottom:261.786667pt;}
.y9a{bottom:262.426667pt;}
.y181{bottom:265.466667pt;}
.y1de{bottom:266.426667pt;}
.yc3{bottom:266.906667pt;}
.y11b{bottom:267.866667pt;}
.y33{bottom:270.586667pt;}
.y1b3{bottom:270.906667pt;}
.y67{bottom:271.706667pt;}
.y147{bottom:278.426667pt;}
.yf2{bottom:278.586667pt;}
.y99{bottom:279.226667pt;}
.y180{bottom:282.306667pt;}
.yc2{bottom:283.746667pt;}
.y11a{bottom:284.866667pt;}
.y32{bottom:285.986667pt;}
.y1b2{bottom:286.626667pt;}
.y66{bottom:288.706667pt;}
.y146{bottom:295.266667pt;}
.yf1{bottom:295.426667pt;}
.y98{bottom:296.226667pt;}
.y1b1{bottom:298.786667pt;}
.y17f{bottom:299.106667pt;}
.yc1{bottom:300.706667pt;}
.y31{bottom:301.346667pt;}
.y119{bottom:301.666667pt;}
.y1dd{bottom:303.266667pt;}
.y65{bottom:305.506667pt;}
.y145{bottom:312.386667pt;}
.y97{bottom:313.026667pt;}
.yf0{bottom:313.506667pt;}
.y17e{bottom:316.066667pt;}
.y30{bottom:316.706667pt;}
.y1b0{bottom:317.186667pt;}
.yc0{bottom:317.506667pt;}
.y118{bottom:318.626667pt;}
.y1dc{bottom:321.666667pt;}
.y64{bottom:322.306667pt;}
.yef{bottom:330.306667pt;}
.y144{bottom:330.466667pt;}
.y96{bottom:330.946667pt;}
.y2f{bottom:332.066667pt;}
.y17d{bottom:332.866667pt;}
.ybf{bottom:334.626667pt;}
.y117{bottom:335.426667pt;}
.y1af{bottom:335.586667pt;}
.y63{bottom:339.266667pt;}
.y1db{bottom:340.066667pt;}
.y2e{bottom:347.266667pt;}
.y143{bottom:347.426667pt;}
.y95{bottom:347.906667pt;}
.y17c{bottom:349.666667pt;}
.y116{bottom:352.226667pt;}
.ybe{bottom:352.706667pt;}
.y1ae{bottom:353.986667pt;}
.y62{bottom:356.066667pt;}
.y1da{bottom:358.466667pt;}
.y2d{bottom:362.626667pt;}
.yee{bottom:364.066667pt;}
.y142{bottom:364.226667pt;}
.y94{bottom:364.706667pt;}
.y17b{bottom:366.466667pt;}
.ybd{bottom:367.906667pt;}
.y115{bottom:369.186667pt;}
.y1ad{bottom:371.266667pt;}
.y61{bottom:373.026667pt;}
.y1d9{bottom:376.866667pt;}
.y2c{bottom:377.986667pt;}
.yed{bottom:380.866667pt;}
.y141{bottom:381.186667pt;}
.y93{bottom:382.626667pt;}
.y1ac{bottom:384.066667pt;}
.ybc{bottom:385.826667pt;}
.y114{bottom:385.986667pt;}
.y17a{bottom:389.826667pt;}
.y60{bottom:390.146667pt;}
.y2b{bottom:393.346667pt;}
.y1d8{bottom:395.266667pt;}
.yec{bottom:397.826667pt;}
.y140{bottom:397.986667pt;}
.y1ab{bottom:398.786667pt;}
.y92{bottom:399.586667pt;}
.y113{bottom:402.946667pt;}
.ybb{bottom:403.746667pt;}
.y5f{bottom:408.226667pt;}
.y2a{bottom:408.706667pt;}
.y1aa{bottom:412.226667pt;}
.y1d7{bottom:413.666667pt;}
.yeb{bottom:414.626667pt;}
.y13f{bottom:414.946667pt;}
.y179{bottom:415.906667pt;}
.y91{bottom:416.386667pt;}
.y112{bottom:419.746667pt;}
.yba{bottom:421.506667pt;}
.y29{bottom:423.906667pt;}
.y5e{bottom:425.026667pt;}
.yb9{bottom:428.706667pt;}
.y1a9{bottom:430.626667pt;}
.yea{bottom:431.586667pt;}
.y13e{bottom:431.746667pt;}
.y1d6{bottom:432.066667pt;}
.y90{bottom:434.466667pt;}
.y178{bottom:435.746667pt;}
.y111{bottom:436.546667pt;}
.y28{bottom:439.266667pt;}
.y5d{bottom:441.986667pt;}
.yb8{bottom:446.626667pt;}
.ye9{bottom:448.386667pt;}
.y13d{bottom:448.546667pt;}
.y1a8{bottom:449.026667pt;}
.y1d5{bottom:450.466667pt;}
.y8f{bottom:451.266667pt;}
.y110{bottom:453.506667pt;}
.y177{bottom:454.146667pt;}
.y27{bottom:454.626667pt;}
.y5c{bottom:458.786667pt;}
.yb7{bottom:464.386667pt;}
.ye8{bottom:465.186667pt;}
.y13c{bottom:466.626667pt;}
.y1a7{bottom:467.426667pt;}
.y8e{bottom:468.066667pt;}
.y1d4{bottom:468.866667pt;}
.y26{bottom:469.986667pt;}
.y10f{bottom:470.306667pt;}
.y176{bottom:472.226667pt;}
.y5b{bottom:475.746667pt;}
.ye7{bottom:482.146667pt;}
.yb6{bottom:482.306667pt;}
.y13b{bottom:483.426667pt;}
.y25{bottom:484.706667pt;}
.y8d{bottom:485.026667pt;}
.y1a6{bottom:485.826667pt;}
.y10e{bottom:487.266667pt;}
.y175{bottom:489.026667pt;}
.y5a{bottom:492.546667pt;}
.y24{bottom:496.226667pt;}
.ye6{bottom:498.946667pt;}
.yb5{bottom:500.226667pt;}
.y8c{bottom:501.826667pt;}
.y160{bottom:504.066667pt;}
.y1a5{bottom:504.226667pt;}
.y10d{bottom:505.213333pt;}
.y1d3{bottom:505.693333pt;}
.y174{bottom:506.013333pt;}
.y59{bottom:509.373333pt;}
.y23{bottom:514.173333pt;}
.ye5{bottom:516.893333pt;}
.yb4{bottom:518.013333pt;}
.y13a{bottom:518.333333pt;}
.y8b{bottom:518.813333pt;}
.y1a4{bottom:519.933333pt;}
.y15f{bottom:520.893333pt;}
.y10c{bottom:522.013333pt;}
.y173{bottom:522.813333pt;}
.y1d2{bottom:524.093333pt;}
.y58{bottom:526.333333pt;}
.y1a3{bottom:526.653333pt;}
.y22{bottom:532.093333pt;}
.ye4{bottom:534.973333pt;}
.y8a{bottom:535.613333pt;}
.yb3{bottom:535.933333pt;}
.y139{bottom:536.253333pt;}
.y15e{bottom:537.853333pt;}
.y10b{bottom:538.973333pt;}
.y172{bottom:539.773333pt;}
.y1a2{bottom:542.333333pt;}
.y1d1{bottom:542.493333pt;}
.y57{bottom:543.133333pt;}
.y20{bottom:549.853333pt;}
.ye3{bottom:551.773333pt;}
.y89{bottom:552.413333pt;}
.y138{bottom:553.053333pt;}
.yb2{bottom:553.853333pt;}
.y1a1{bottom:554.173333pt;}
.y15d{bottom:554.653333pt;}
.y10a{bottom:555.773333pt;}
.y171{bottom:556.573333pt;}
.y1f{bottom:557.053333pt;}
.y56{bottom:560.093333pt;}
.y1d0{bottom:560.893333pt;}
.ye2{bottom:568.733333pt;}
.y88{bottom:569.373333pt;}
.y137{bottom:570.013333pt;}
.y1a0{bottom:571.133333pt;}
.yb1{bottom:571.613333pt;}
.y109{bottom:572.733333pt;}
.y170{bottom:573.373333pt;}
.y1e{bottom:574.973333pt;}
.y55{bottom:576.893333pt;}
.y1cf{bottom:579.293333pt;}
.ye1{bottom:585.533333pt;}
.y87{bottom:586.173333pt;}
.y136{bottom:587.133333pt;}
.y19f{bottom:587.933333pt;}
.y15c{bottom:588.413333pt;}
.yb0{bottom:589.533333pt;}
.y16f{bottom:590.333333pt;}
.y1d{bottom:592.733333pt;}
.y54{bottom:593.693333pt;}
.y1ce{bottom:597.693333pt;}
.ye0{bottom:602.333333pt;}
.y86{bottom:603.133333pt;}
.y19e{bottom:603.933333pt;}
.y135{bottom:605.213333pt;}
.y108{bottom:606.333333pt;}
.yaf{bottom:607.453333pt;}
.y1c{bottom:610.653333pt;}
.y1cd{bottom:616.093333pt;}
.y19d{bottom:616.733333pt;}
.y85{bottom:619.933333pt;}
.ydf{bottom:620.413333pt;}
.y134{bottom:622.173333pt;}
.y107{bottom:623.293333pt;}
.y16e{bottom:624.413333pt;}
.yae{bottom:625.213333pt;}
.y53{bottom:627.453333pt;}
.y1b{bottom:628.573333pt;}
.y19c{bottom:632.413333pt;}
.y1cc{bottom:634.493333pt;}
.y84{bottom:636.893333pt;}
.yde{bottom:638.333333pt;}
.y133{bottom:638.973333pt;}
.y106{bottom:640.093333pt;}
.y16d{bottom:641.213333pt;}
.yad{bottom:643.133333pt;}
.y52{bottom:644.413333pt;}
.y19b{bottom:644.573333pt;}
.y1a{bottom:646.333333pt;}
.y1cb{bottom:652.893333pt;}
.y83{bottom:653.693333pt;}
.ydd{bottom:655.133333pt;}
.y132{bottom:655.773333pt;}
.y15b{bottom:655.933333pt;}
.y105{bottom:657.053333pt;}
.y16c{bottom:658.013333pt;}
.y19a{bottom:658.973333pt;}
.yac{bottom:661.053333pt;}
.y51{bottom:661.213333pt;}
.y19{bottom:664.253333pt;}
.y199{bottom:666.013333pt;}
.y82{bottom:670.493333pt;}
.y1ca{bottom:671.293333pt;}
.ydc{bottom:672.093333pt;}
.y131{bottom:672.733333pt;}
.y104{bottom:673.853333pt;}
.y16b{bottom:674.973333pt;}
.y50{bottom:678.333333pt;}
.yab{bottom:678.813333pt;}
.y198{bottom:680.413333pt;}
.y18{bottom:682.173333pt;}
.yaa{bottom:686.333333pt;}
.y81{bottom:687.453333pt;}
.ydb{bottom:688.893333pt;}
.y130{bottom:689.533333pt;}
.y1c9{bottom:689.693333pt;}
.y15a{bottom:689.853333pt;}
.y103{bottom:690.653333pt;}
.y16a{bottom:691.773333pt;}
.y4f{bottom:696.733333pt;}
.y17{bottom:699.933333pt;}
.y197{bottom:704.413333pt;}
.y80{bottom:705.373333pt;}
.yda{bottom:705.853333pt;}
.y12f{bottom:706.493333pt;}
.ya9{bottom:707.613333pt;}
.y159{bottom:708.093333pt;}
.y169{bottom:708.733333pt;}
.y4e{bottom:715.133333pt;}
.y16{bottom:717.853333pt;}
.y196{bottom:718.813333pt;}
.yd9{bottom:722.653333pt;}
.y12e{bottom:722.973333pt;}
.y7f{bottom:723.293333pt;}
.ya8{bottom:724.413333pt;}
.y158{bottom:724.893333pt;}
.y168{bottom:725.533333pt;}
.y195{bottom:725.853333pt;}
.y1c8{bottom:726.493333pt;}
.y4d{bottom:733.573333pt;}
.y15{bottom:735.813333pt;}
.y12d{bottom:738.373333pt;}
.yd8{bottom:740.613333pt;}
.y7e{bottom:741.413333pt;}
.y157{bottom:741.733333pt;}
.y167{bottom:742.533333pt;}
.y194{bottom:742.853333pt;}
.y1c7{bottom:746.213333pt;}
.y4c{bottom:751.973333pt;}
.y14{bottom:753.573333pt;}
.yd7{bottom:757.573333pt;}
.ya7{bottom:758.213333pt;}
.y156{bottom:758.693333pt;}
.y7d{bottom:759.333333pt;}
.y166{bottom:759.653333pt;}
.y1c6{bottom:764.613333pt;}
.y12c{bottom:770.053333pt;}
.y4b{bottom:770.373333pt;}
.y13{bottom:771.493333pt;}
.ya6{bottom:775.013333pt;}
.yd6{bottom:775.493333pt;}
.y7c{bottom:776.133333pt;}
.y193{bottom:776.453333pt;}
.y165{bottom:777.733333pt;}
.y1c5{bottom:784.133333pt;}
.y12b{bottom:786.533333pt;}
.y4a{bottom:788.773333pt;}
.y12{bottom:789.413333pt;}
.y102{bottom:791.973333pt;}
.yd5{bottom:792.453333pt;}
.y7b{bottom:793.093333pt;}
.y192{bottom:793.413333pt;}
.y164{bottom:794.533333pt;}
.y12a{bottom:801.893333pt;}
.y1c4{bottom:802.533333pt;}
.y49{bottom:806.533333pt;}
.y10{bottom:807.173333pt;}
.y101{bottom:808.773333pt;}
.yd4{bottom:809.253333pt;}
.y7a{bottom:809.893333pt;}
.y191{bottom:810.213333pt;}
.y163{bottom:811.493333pt;}
.yd{bottom:814.693333pt;}
.y129{bottom:817.253333pt;}
.y1c3{bottom:820.933333pt;}
.y48{bottom:821.893333pt;}
.y100{bottom:825.733333pt;}
.yd3{bottom:826.053333pt;}
.y79{bottom:826.853333pt;}
.y190{bottom:827.173333pt;}
.y162{bottom:828.293333pt;}
.y128{bottom:832.453333pt;}
.yc{bottom:834.853333pt;}
.y47{bottom:837.253333pt;}
.y1c2{bottom:839.333333pt;}
.yff{bottom:842.533333pt;}
.yd2{bottom:843.013333pt;}
.y78{bottom:843.653333pt;}
.y18f{bottom:843.973333pt;}
.y155{bottom:844.133333pt;}
.y161{bottom:845.253333pt;}
.yb{bottom:847.813333pt;}
.y46{bottom:852.613333pt;}
.y1c1{bottom:857.733333pt;}
.yfe{bottom:859.333333pt;}
.yd1{bottom:859.813333pt;}
.y77{bottom:860.453333pt;}
.y18e{bottom:860.933333pt;}
.y154{bottom:862.053333pt;}
.y127{bottom:863.173333pt;}
.ya{bottom:863.493333pt;}
.y45{bottom:867.813333pt;}
.y1c0{bottom:876.133333pt;}
.yfd{bottom:876.293333pt;}
.y76{bottom:877.413333pt;}
.yd0{bottom:877.733333pt;}
.y126{bottom:878.533333pt;}
.y153{bottom:878.853333pt;}
.y9{bottom:881.573333pt;}
.y44{bottom:883.173333pt;}
.y18d{bottom:893.573333pt;}
.y75{bottom:894.213333pt;}
.y1bf{bottom:894.533333pt;}
.ycf{bottom:894.693333pt;}
.y152{bottom:895.813333pt;}
.y8{bottom:898.053333pt;}
.y43{bottom:898.533333pt;}
.y18c{bottom:906.853333pt;}
.y74{bottom:911.173333pt;}
.yce{bottom:911.493333pt;}
.y151{bottom:912.613333pt;}
.y42{bottom:913.893333pt;}
.y7{bottom:914.373333pt;}
.y18b{bottom:923.653333pt;}
.ya5{bottom:927.973333pt;}
.y73{bottom:928.293333pt;}
.y6{bottom:928.613333pt;}
.y41{bottom:929.413333pt;}
.ycd{bottom:929.573333pt;}
.y5{bottom:934.533333pt;}
.y18a{bottom:943.333333pt;}
.y4{bottom:943.973333pt;}
.ya4{bottom:945.093333pt;}
.y40{bottom:946.213333pt;}
.y72{bottom:946.373333pt;}
.y3{bottom:949.893333pt;}
.y1{bottom:1000.160000pt;}
.hf{height:4.640000pt;}
.hb{height:4.960000pt;}
.h5{height:11.171875pt;}
.h3{height:11.289062pt;}
.h21{height:11.648438pt;}
.hc{height:15.200000pt;}
.h16{height:15.232000pt;}
.hd{height:15.360000pt;}
.he{height:15.392000pt;}
.h9{height:16.320000pt;}
.h1{height:25.918750pt;}
.h4{height:26.190625pt;}
.h1e{height:28.579687pt;}
.h1c{height:29.082187pt;}
.h10{height:29.940625pt;}
.h2{height:30.254687pt;}
.h1d{height:31.217812pt;}
.h6{height:37.090625pt;}
.ha{height:37.479688pt;}
.h7{height:41.112500pt;}
.h15{height:41.543750pt;}
.h11{height:42.866250pt;}
.h8{height:43.782500pt;}
.h18{height:44.390000pt;}
.h12{height:44.687500pt;}
.h13{height:45.156250pt;}
.h19{height:46.557813pt;}
.h20{height:46.593750pt;}
.h17{height:47.038750pt;}
.h14{height:48.530000pt;}
.h1a{height:49.622500pt;}
.h1f{height:52.750000pt;}
.h1b{height:53.320312pt;}
.h0{height:1056.000000pt;}
.w8{width:17.312000pt;}
.w3{width:23.360000pt;}
.w6{width:29.280000pt;}
.w4{width:29.312000pt;}
.w9{width:35.360000pt;}
.w2{width:41.120000pt;}
.w5{width:53.440000pt;}
.w7{width:77.440000pt;}
.wb{width:82.400000pt;}
.wa{width:101.472000pt;}
.wc{width:532.253333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xe{left:2.080000pt;}
.x4{left:3.520000pt;}
.xb{left:8.506667pt;}
.x12{left:11.520000pt;}
.x13{left:14.560000pt;}
.x16{left:17.600000pt;}
.x11{left:20.480000pt;}
.x1d{left:23.680000pt;}
.x14{left:26.720000pt;}
.x19{left:28.640000pt;}
.x1c{left:32.480000pt;}
.x15{left:38.720000pt;}
.x18{left:40.960000pt;}
.x1a{left:42.240000pt;}
.x1b{left:47.360000pt;}
.x17{left:50.720000pt;}
.x1e{left:69.760000pt;}
.x1{left:144.026655pt;}
.x20{left:152.346655pt;}
.x3{left:165.946667pt;}
.x23{left:192.026655pt;}
.x5{left:207.706667pt;}
.x6{left:231.706667pt;}
.x22{left:240.026655pt;}
.x7{left:261.666667pt;}
.x8{left:315.746667pt;}
.x9{left:345.666667pt;}
.x21{left:346.786655pt;}
.x2{left:369.186655pt;}
.x25{left:377.986655pt;}
.x24{left:408.706655pt;}
.xa{left:423.746667pt;}
.x1f{left:432.093321pt;}
.xc{left:441.693333pt;}
.xd{left:477.693333pt;}
.xf{left:513.693333pt;}
.x10{left:615.813333pt;}
}




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