
    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_7daea91c19e009ce20a146cb.woff')format("woff");}.ff1{font-family:ff1;line-height:1.090332;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_0a69cc1fade8c419acaa0570.woff')format("woff");}.ff2{font-family:ff2;line-height:1.123047;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_52f6ffb116697565d81007f8.woff')format("woff");}.ff3{font-family:ff3;line-height:1.123047;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_5d90bd87514ec3007c77686b.woff')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_65aa5e8ab04c9f89a2ef49b2.woff')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_edcf8d3ba116031f97868b94.woff')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_942dbd44e5a47660a52a49ee.woff')format("woff");}.ff7{font-family:ff7;line-height:1.061035;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_2477aed5f3a260538f369ddc.woff')format("woff");}.ff8{font-family:ff8;line-height:1.102051;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_e4a922f9619770141caf44c6.woff')format("woff");}.ff9{font-family:ff9;line-height:1.102051;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_177140197ad903db95200dd1.woff')format("woff");}.ffa{font-family:ffa;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ef8d72a36087ba70f196ecf0.woff')format("woff");}.ffb{font-family:ffb;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_2a702ea36d1bb88a93a9e1e1.woff')format("woff");}.ffc{font-family:ffc;line-height:1.090332;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_ed5746e1de615524d5957846.woff')format("woff");}.ffd{font-family:ffd;line-height:0.912109;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;}
.mb{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.229168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229168,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.232758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232758,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.236110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236110,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.237180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237180,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.256950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256950,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.257800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257800,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.v1{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.ls24{letter-spacing:-6.060000px;}
.ls29{letter-spacing:-0.828000px;}
.ls22{letter-spacing:-0.708000px;}
.ls23{letter-spacing:-0.339000px;}
.lsc{letter-spacing:-0.238800px;}
.ls2b{letter-spacing:-0.237600px;}
.ls2a{letter-spacing:-0.212400px;}
.lsb{letter-spacing:-0.145200px;}
.ls11{letter-spacing:-0.126000px;}
.ls3{letter-spacing:-0.106800px;}
.ls14{letter-spacing:-0.091200px;}
.ls16{letter-spacing:-0.048960px;}
.ls21{letter-spacing:-0.018000px;}
.ls25{letter-spacing:-0.005682px;}
.ls2{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.031680px;}
.ls18{letter-spacing:0.049140px;}
.ls0{letter-spacing:0.052560px;}
.ls12{letter-spacing:0.066600px;}
.lse{letter-spacing:0.078000px;}
.ls27{letter-spacing:0.079800px;}
.ls28{letter-spacing:0.090000px;}
.ls20{letter-spacing:0.139200px;}
.ls17{letter-spacing:0.146880px;}
.ls1a{letter-spacing:0.179280px;}
.ls8{letter-spacing:0.180000px;}
.ls26{letter-spacing:0.224400px;}
.lsa{letter-spacing:0.300000px;}
.ls10{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.423600px;}
.lsf{letter-spacing:0.594000px;}
.ls19{letter-spacing:0.678000px;}
.ls13{letter-spacing:0.684000px;}
.ls1f{letter-spacing:1.290000px;}
.ls6{letter-spacing:2.340000px;}
.ls7{letter-spacing:3.060000px;}
.ls9{letter-spacing:4.286752px;}
.ls5{letter-spacing:4.320000px;}
.ls1c{letter-spacing:60.516000px;}
.ls1d{letter-spacing:60.636000px;}
.ls1b{letter-spacing:61.236000px;}
.ls4{letter-spacing:105.120000px;}
.ls1{letter-spacing:150.456000px;}
.ls1e{letter-spacing:170.676000px;}
.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;}
}
.ws1f{word-spacing:-66.240000px;}
.ws4{word-spacing:-16.983600px;}
.ws5{word-spacing:-16.638000px;}
.ws11{word-spacing:-16.609140px;}
.ws0{word-spacing:-16.560000px;}
.ws10{word-spacing:-16.511040px;}
.ws1{word-spacing:-16.453200px;}
.ws3{word-spacing:-16.321200px;}
.ws17{word-spacing:-16.221000px;}
.ws16{word-spacing:-15.852000px;}
.ws1c{word-spacing:-15.732000px;}
.ws13{word-spacing:-15.079200px;}
.ws12{word-spacing:-14.940000px;}
.ws1d{word-spacing:-14.727600px;}
.ws1e{word-spacing:-14.702400px;}
.wse{word-spacing:-14.184000px;}
.ws8{word-spacing:-14.094000px;}
.ws9{word-spacing:-13.860000px;}
.wsd{word-spacing:-13.800000px;}
.wsa{word-spacing:-13.680000px;}
.wsc{word-spacing:-13.566600px;}
.ws7{word-spacing:-13.500000px;}
.wsf{word-spacing:-13.408800px;}
.wsb{word-spacing:-13.374000px;}
.ws14{word-spacing:-12.204000px;}
.ws15{word-spacing:-12.186000px;}
.ws1a{word-spacing:-10.017120px;}
.ws1b{word-spacing:-9.872520px;}
.ws19{word-spacing:-9.787038px;}
.ws6{word-spacing:-9.000000px;}
.ws18{word-spacing:-3.732720px;}
.ws2{word-spacing:0.000000px;}
._15{margin-left:-5.166720px;}
._c{margin-left:-4.106880px;}
._b{margin-left:-2.980800px;}
._1{margin-left:-1.192320px;}
._0{width:1.200000px;}
._2{width:2.503200px;}
._3{width:3.974400px;}
._4{width:5.829120px;}
._7{width:7.021440px;}
._9{width:8.809920px;}
._5{width:9.869760px;}
._a{width:11.393280px;}
._d{width:13.049280px;}
._e{width:14.109120px;}
._8{width:15.168960px;}
._f{width:18.282240px;}
._14{width:19.724160px;}
._10{width:22.124160px;}
._12{width:25.104960px;}
._6{width:29.741760px;}
._13{width:82.137600px;}
._11{width:195.816000px;}
._16{width:265.622400px;}
.fc2{color:transparent;}
.fc1{color:rgb(88,88,88);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:18.000000px;}
.fs3{font-size:36.000000px;}
.fs2{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:54.144000px;}
.fs8{font-size:56.880000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs9{font-size:84.240000px;}
.y10b{bottom:-15.555000px;}
.yfb{bottom:-9.210000px;}
.y108{bottom:-2.415000px;}
.y106{bottom:-2.235000px;}
.yf1{bottom:-2.190000px;}
.y10a{bottom:-2.055000px;}
.y104{bottom:-0.075000px;}
.y0{bottom:0.000000px;}
.ycb{bottom:3.240000px;}
.y143{bottom:4.500000px;}
.y160{bottom:6.480000px;}
.y15a{bottom:6.660000px;}
.y142{bottom:6.840000px;}
.yf5{bottom:7.350000px;}
.yff{bottom:7.530000px;}
.y163{bottom:8.100000px;}
.ya0{bottom:8.280000px;}
.y9c{bottom:8.460000px;}
.y127{bottom:9.000000px;}
.y124{bottom:9.180000px;}
.y11b{bottom:9.360000px;}
.y15e{bottom:9.540000px;}
.y159{bottom:9.720000px;}
.y8c{bottom:9.900000px;}
.y8f{bottom:10.080000px;}
.y92{bottom:10.260000px;}
.y11d{bottom:10.440000px;}
.y162{bottom:10.980000px;}
.y164{bottom:11.340000px;}
.y125{bottom:12.240000px;}
.y122{bottom:12.420000px;}
.ye4{bottom:12.960000px;}
.y10d{bottom:12.990000px;}
.ycf{bottom:13.140000px;}
.y120{bottom:13.680000px;}
.y14b{bottom:14.040000px;}
.y151{bottom:14.265000px;}
.y11e{bottom:14.760000px;}
.y119{bottom:16.200000px;}
.y155{bottom:18.540000px;}
.ycd{bottom:19.080000px;}
.yca{bottom:19.260000px;}
.y145{bottom:22.680000px;}
.y149{bottom:23.040000px;}
.y14f{bottom:23.085000px;}
.y103{bottom:25.350000px;}
.y158{bottom:27.360000px;}
.y146{bottom:30.600000px;}
.y150{bottom:31.545000px;}
.y14a{bottom:31.680000px;}
.yf4{bottom:34.890000px;}
.y156{bottom:35.100000px;}
.y154{bottom:37.260000px;}
.y14e{bottom:39.645000px;}
.y148{bottom:39.780000px;}
.y157{bottom:44.100000px;}
.y102{bottom:50.550000px;}
.y3{bottom:57.060000px;}
.y2{bottom:73.836000px;}
.y101{bottom:78.270000px;}
.yf7{bottom:94.470000px;}
.ya9{bottom:109.836000px;}
.yc1{bottom:110.736000px;}
.y56{bottom:111.276000px;}
.y13e{bottom:112.176000px;}
.y2f{bottom:122.436000px;}
.ya8{bottom:124.956000px;}
.y77{bottom:125.676000px;}
.ya7{bottom:128.016000px;}
.yc0{bottom:130.716000px;}
.y55{bottom:131.256000px;}
.yef{bottom:131.616000px;}
.y1b0{bottom:136.296000px;}
.ya6{bottom:140.256000px;}
.y178{bottom:141.876000px;}
.y2e{bottom:142.416000px;}
.y13d{bottom:146.736000px;}
.ybf{bottom:150.690000px;}
.ya5{bottom:155.370000px;}
.yee{bottom:158.250000px;}
.y76{bottom:160.050000px;}
.y177{bottom:161.850000px;}
.y54{bottom:165.630000px;}
.ya4{bottom:170.490000px;}
.ybe{bottom:170.670000px;}
.ya3{bottom:173.550000px;}
.y195{bottom:173.910000px;}
.y2d{bottom:176.970000px;}
.y13c{bottom:181.110000px;}
.y176{bottom:181.830000px;}
.yed{bottom:184.890000px;}
.ybd{bottom:190.830000px;}
.y194{bottom:193.890000px;}
.y75{bottom:194.430000px;}
.ya2{bottom:196.230000px;}
.y2c{bottom:196.950000px;}
.y53{bottom:200.010000px;}
.y175{bottom:201.990000px;}
.y1af{bottom:205.050000px;}
.yec{bottom:211.530000px;}
.ybc{bottom:212.250000px;}
.y74{bottom:214.410000px;}
.y13b{bottom:215.490000px;}
.y2b{bottom:216.930000px;}
.ya1{bottom:218.370000px;}
.y193{bottom:228.270000px;}
.y52{bottom:234.570000px;}
.y13a{bottom:235.470000px;}
.y174{bottom:236.370000px;}
.y2a{bottom:237.090000px;}
.yeb{bottom:238.170000px;}
.y1ae{bottom:239.430000px;}
.y9f{bottom:245.010000px;}
.ybb{bottom:246.810000px;}
.y192{bottom:248.250000px;}
.y73{bottom:248.970000px;}
.y51{bottom:254.550000px;}
.y139{bottom:255.630000px;}
.y173{bottom:256.350000px;}
.y29{bottom:257.070000px;}
.yea{bottom:264.810000px;}
.y72{bottom:268.950000px;}
.y9e{bottom:271.470000px;}
.y1ad{bottom:273.990000px;}
.y50{bottom:274.530000px;}
.y138{bottom:275.610000px;}
.y172{bottom:276.510000px;}
.y28{bottom:277.050000px;}
.yba{bottom:281.190000px;}
.y191{bottom:282.810000px;}
.ye9{bottom:291.450000px;}
.y4f{bottom:294.690000px;}
.y137{bottom:295.590000px;}
.y171{bottom:296.490000px;}
.y27{bottom:297.030000px;}
.y9d{bottom:298.110000px;}
.yb9{bottom:302.790000px;}
.y71{bottom:303.330000px;}
.y1ac{bottom:308.370000px;}
.y4e{bottom:314.670000px;}
.y170{bottom:316.470000px;}
.ye8{bottom:318.090000px;}
.y190{bottom:322.770000px;}
.y70{bottom:323.490000px;}
.y9b{bottom:324.750000px;}
.y1ab{bottom:328.350000px;}
.y136{bottom:330.150000px;}
.y26{bottom:331.590000px;}
.y16f{bottom:336.495000px;}
.yb8{bottom:337.215000px;}
.y6f{bottom:343.515000px;}
.ye7{bottom:344.595000px;}
.y1aa{bottom:348.555000px;}
.y4d{bottom:349.095000px;}
.y135{bottom:350.175000px;}
.y9a{bottom:351.435000px;}
.y25{bottom:351.615000px;}
.y18f{bottom:357.375000px;}
.y6e{bottom:363.495000px;}
.y4c{bottom:369.075000px;}
.y134{bottom:370.155000px;}
.y16e{bottom:371.055000px;}
.ye6{bottom:371.235000px;}
.y24{bottom:371.595000px;}
.y18e{bottom:377.355000px;}
.y99{bottom:379.515000px;}
.y1a9{bottom:382.935000px;}
.y6d{bottom:383.475000px;}
.y4b{bottom:389.235000px;}
.y133{bottom:390.135000px;}
.y16d{bottom:391.035000px;}
.y23{bottom:391.755000px;}
.y18d{bottom:397.335000px;}
.ye5{bottom:397.875000px;}
.y1a8{bottom:402.915000px;}
.yd3{bottom:403.635000px;}
.y98{bottom:407.955000px;}
.y4a{bottom:409.215000px;}
.y132{bottom:410.295000px;}
.y16c{bottom:411.015000px;}
.y22{bottom:411.735000px;}
.y6c{bottom:418.035000px;}
.y1a7{bottom:422.895000px;}
.ye3{bottom:424.515000px;}
.yb7{bottom:426.135000px;}
.yd2{bottom:430.275000px;}
.y16b{bottom:431.175000px;}
.y18c{bottom:431.895000px;}
.y97{bottom:436.215000px;}
.y6b{bottom:438.015000px;}
.y1a6{bottom:443.055000px;}
.y49{bottom:443.595000px;}
.y21{bottom:446.115000px;}
.y131{bottom:450.255000px;}
.ye2{bottom:450.975000px;}
.y18b{bottom:451.875000px;}
.yd1{bottom:456.915000px;}
.y6a{bottom:457.995000px;}
.yb6{bottom:460.515000px;}
.y48{bottom:463.755000px;}
.y96{bottom:464.475000px;}
.y16a{bottom:465.555000px;}
.y1a5{bottom:477.435000px;}
.y69{bottom:478.155000px;}
.y20{bottom:480.495000px;}
.yd0{bottom:483.555000px;}
.y47{bottom:483.735000px;}
.ye1{bottom:484.275000px;}
.y130{bottom:484.815000px;}
.y169{bottom:485.535000px;}
.y18a{bottom:486.255000px;}
.y95{bottom:492.915000px;}
.yb5{bottom:494.895000px;}
.y1a4{bottom:497.415000px;}
.y68{bottom:498.135000px;}
.y46{bottom:503.715000px;}
.y12f{bottom:504.795000px;}
.y168{bottom:505.695000px;}
.y189{bottom:506.235000px;}
.ye0{bottom:508.575000px;}
.yce{bottom:510.195000px;}
.y1f{bottom:515.055000px;}
.y1a3{bottom:517.575000px;}
.y67{bottom:518.115000px;}
.y94{bottom:521.175000px;}
.y45{bottom:523.695000px;}
.y12e{bottom:524.775000px;}
.yb4{bottom:529.455000px;}
.ycc{bottom:536.835000px;}
.y66{bottom:538.095000px;}
.y167{bottom:540.075000px;}
.y188{bottom:540.795000px;}
.ydf{bottom:542.955000px;}
.y44{bottom:543.855000px;}
.y12d{bottom:544.935000px;}
.y93{bottom:549.255000px;}
.y1e{bottom:549.435000px;}
.y1a2{bottom:551.955000px;}
.y65{bottom:558.255000px;}
.y187{bottom:560.775000px;}
.y43{bottom:563.835000px;}
.y12c{bottom:564.915000px;}
.y1d{bottom:569.415000px;}
.y1a1{bottom:571.935000px;}
.y166{bottom:574.455000px;}
.yde{bottom:577.335000px;}
.y91{bottom:577.515000px;}
.y64{bottom:578.235000px;}
.y186{bottom:580.755000px;}
.y42{bottom:583.815000px;}
.y12b{bottom:584.895000px;}
.yb3{bottom:589.575000px;}
.y1a0{bottom:591.915000px;}
.ydd{bottom:597.495000px;}
.y63{bottom:598.215000px;}
.y1c{bottom:604.005000px;}
.y165{bottom:605.265000px;}
.y90{bottom:605.985000px;}
.yc9{bottom:608.865000px;}
.yb2{bottom:609.585000px;}
.y185{bottom:615.345000px;}
.y161{bottom:617.325000px;}
.ydc{bottom:617.505000px;}
.y12a{bottom:619.305000px;}
.y1b{bottom:623.985000px;}
.y19f{bottom:626.505000px;}
.yb1{bottom:629.565000px;}
.y62{bottom:632.805000px;}
.y8e{bottom:634.245000px;}
.yc8{bottom:635.145000px;}
.y184{bottom:635.325000px;}
.ydb{bottom:637.485000px;}
.y15f{bottom:641.625000px;}
.y1a{bottom:643.965000px;}
.y19e{bottom:646.485000px;}
.y129{bottom:647.565000px;}
.yb0{bottom:649.545000px;}
.y61{bottom:652.785000px;}
.yda{bottom:657.465000px;}
.y8d{bottom:662.505000px;}
.y19{bottom:664.125000px;}
.y15d{bottom:664.305000px;}
.y19d{bottom:666.465000px;}
.yaf{bottom:669.705000px;}
.y60{bottom:672.765000px;}
.y128{bottom:676.905000px;}
.yd9{bottom:677.625000px;}
.y41{bottom:678.525000px;}
.y18{bottom:684.105000px;}
.y15c{bottom:687.165000px;}
.y126{bottom:688.965000px;}
.yae{bottom:689.685000px;}
.y8b{bottom:690.945000px;}
.y5f{bottom:692.925000px;}
.yd8{bottom:697.605000px;}
.y40{bottom:698.505000px;}
.y19c{bottom:701.025000px;}
.y17{bottom:704.085000px;}
.yad{bottom:709.665000px;}
.y15b{bottom:710.025000px;}
.y123{bottom:713.985000px;}
.yd7{bottom:717.585000px;}
.y19b{bottom:721.005000px;}
.y16{bottom:724.065000px;}
.y8a{bottom:725.685000px;}
.y5e{bottom:727.305000px;}
.yc7{bottom:729.825000px;}
.y3f{bottom:732.885000px;}
.yd6{bottom:737.745000px;}
.y121{bottom:739.185000px;}
.y15{bottom:744.225000px;}
.y183{bottom:745.485000px;}
.y5d{bottom:747.285000px;}
.y89{bottom:749.805000px;}
.y3e{bottom:752.865000px;}
.y19a{bottom:755.385000px;}
.y153{bottom:758.265000px;}
.yac{bottom:764.205000px;}
.y11f{bottom:764.385000px;}
.y182{bottom:765.465000px;}
.y5c{bottom:767.265000px;}
.yd5{bottom:772.125000px;}
.y3d{bottom:773.025000px;}
.y199{bottom:775.545000px;}
.y14{bottom:778.605000px;}
.y87{bottom:784.185000px;}
.y5b{bottom:787.425000px;}
.y88{bottom:787.965000px;}
.y11c{bottom:791.025000px;}
.y3c{bottom:793.005000px;}
.y181{bottom:799.845000px;}
.y86{bottom:804.345000px;}
.yd4{bottom:806.505000px;}
.y5a{bottom:807.405000px;}
.y198{bottom:809.925000px;}
.y13{bottom:812.985000px;}
.y152{bottom:813.885000px;}
.y11a{bottom:818.565000px;}
.yc6{bottom:818.745000px;}
.y180{bottom:820.005000px;}
.y85{bottom:824.325000px;}
.y59{bottom:827.385000px;}
.y109{bottom:828.360000px;}
.y197{bottom:829.905000px;}
.y12{bottom:833.145000px;}
.y105{bottom:839.700000px;}
.y118{bottom:842.325000px;}
.y107{bottom:843.120000px;}
.y84{bottom:844.305000px;}
.y3b{bottom:847.545000px;}
.y11{bottom:853.125000px;}
.y17f{bottom:854.385000px;}
.y100{bottom:859.140000px;}
.y83{bottom:864.285000px;}
.y14d{bottom:865.905000px;}
.y3a{bottom:867.525000px;}
.y10{bottom:873.150000px;}
.y17e{bottom:874.410000px;}
.yfe{bottom:876.780000px;}
.yab{bottom:878.730000px;}
.y117{bottom:878.910000px;}
.y196{bottom:884.490000px;}
.y39{bottom:887.550000px;}
.yf{bottom:893.130000px;}
.y82{bottom:898.890000px;}
.y116{bottom:899.790000px;}
.y38{bottom:907.530000px;}
.y17d{bottom:908.970000px;}
.ye{bottom:913.290000px;}
.y14c{bottom:917.970000px;}
.y81{bottom:918.870000px;}
.y37{bottom:927.690000px;}
.yd{bottom:933.270000px;}
.y115{bottom:934.170000px;}
.y80{bottom:938.850000px;}
.y17c{bottom:943.350000px;}
.y36{bottom:947.670000px;}
.yfc{bottom:951.300000px;}
.yc{bottom:953.250000px;}
.y114{bottom:954.330000px;}
.yfd{bottom:955.980000px;}
.y7f{bottom:959.010000px;}
.y17b{bottom:963.330000px;}
.y58{bottom:967.650000px;}
.y147{bottom:969.990000px;}
.yf6{bottom:972.180000px;}
.yb{bottom:973.410000px;}
.y113{bottom:974.310000px;}
.y7d{bottom:978.990000px;}
.y35{bottom:982.050000px;}
.y7e{bottom:982.770000px;}
.y57{bottom:987.810000px;}
.yfa{bottom:988.170000px;}
.ya{bottom:993.390000px;}
.y17a{bottom:997.710000px;}
.y7c{bottom:998.970000px;}
.y34{bottom:1002.210000px;}
.yc5{bottom:1007.790000px;}
.y112{bottom:1008.690000px;}
.y9{bottom:1013.370000px;}
.yf9{bottom:1013.550000px;}
.y179{bottom:1017.690000px;}
.y7b{bottom:1018.950000px;}
.y144{bottom:1022.010000px;}
.y33{bottom:1022.190000px;}
.y111{bottom:1023.630000px;}
.yf3{bottom:1025.640000px;}
.yc4{bottom:1027.770000px;}
.y8{bottom:1033.350000px;}
.yf8{bottom:1038.930000px;}
.y7a{bottom:1039.110000px;}
.y32{bottom:1042.170000px;}
.yc3{bottom:1047.750000px;}
.y110{bottom:1050.270000px;}
.yaa{bottom:1053.510000px;}
.y31{bottom:1062.150000px;}
.y141{bottom:1066.110000px;}
.y7{bottom:1067.910000px;}
.y79{bottom:1073.490000px;}
.y10f{bottom:1076.910000px;}
.y30{bottom:1082.310000px;}
.yf2{bottom:1085.040000px;}
.yc2{bottom:1087.890000px;}
.y140{bottom:1094.550000px;}
.yf0{bottom:1100.160000px;}
.y6{bottom:1102.290000px;}
.y10e{bottom:1103.550000px;}
.y78{bottom:1107.870000px;}
.y13f{bottom:1113.270000px;}
.y5{bottom:1122.270000px;}
.y10c{bottom:1130.190000px;}
.y4{bottom:1142.460000px;}
.y1{bottom:1194.300000px;}
.h16{height:8.640000px;}
.h14{height:8.820000px;}
.h24{height:15.477539px;}
.h25{height:17.100000px;}
.h1e{height:22.320000px;}
.h2f{height:22.680000px;}
.h2e{height:22.860000px;}
.h30{height:24.300000px;}
.h21{height:25.020000px;}
.h20{height:25.200000px;}
.h2d{height:25.380000px;}
.h1c{height:25.596000px;}
.hd{height:25.740000px;}
.h13{height:25.776000px;}
.hc{height:25.920000px;}
.hb{height:25.956000px;}
.h1f{height:26.640000px;}
.h7{height:27.360000px;}
.h8{height:27.540000px;}
.ha{height:27.720000px;}
.h9{height:27.756000px;}
.h1d{height:29.196000px;}
.h12{height:31.860000px;}
.h11{height:32.040000px;}
.he{height:34.192617px;}
.h6{height:35.907891px;}
.h26{height:41.479805px;}
.h22{height:41.809570px;}
.h27{height:43.200000px;}
.h19{height:45.900000px;}
.h17{height:46.080000px;}
.hf{height:46.432617px;}
.h23{height:46.801758px;}
.h29{height:48.909023px;}
.h3{height:51.385430px;}
.h28{height:52.020000px;}
.h2a{height:52.056000px;}
.h15{height:53.709961px;}
.h1a{height:53.853187px;}
.h4{height:55.501875px;}
.h2b{height:55.620000px;}
.h5{height:56.957344px;}
.h2{height:57.410156px;}
.h10{height:62.327813px;}
.h2c{height:72.434883px;}
.h1b{height:89.460000px;}
.h18{height:105.660000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w19{width:8.460000px;}
.w14{width:18.540000px;}
.w22{width:28.980000px;}
.w10{width:46.800000px;}
.w13{width:47.160000px;}
.w11{width:47.700000px;}
.wf{width:47.916000px;}
.w17{width:49.500000px;}
.w8{width:54.000000px;}
.w12{width:54.036000px;}
.w15{width:55.080000px;}
.w1a{width:58.140000px;}
.w20{width:59.580000px;}
.wa{width:61.596000px;}
.wb{width:63.720000px;}
.w1f{width:65.880000px;}
.w21{width:65.916000px;}
.w1e{width:66.096000px;}
.w9{width:75.780000px;}
.w18{width:91.980000px;}
.wc{width:101.196000px;}
.w1d{width:114.300000px;}
.w1c{width:114.696000px;}
.we{width:119.160000px;}
.w7{width:119.376000px;}
.wd{width:150.150000px;}
.w4{width:164.190000px;}
.w23{width:175.890000px;}
.w6{width:183.270000px;}
.w24{width:194.070000px;}
.w5{width:196.590000px;}
.w1b{width:344.340000px;}
.w16{width:538.380000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x39{left:3.420000px;}
.x5e{left:4.680000px;}
.x37{left:5.760000px;}
.x32{left:7.380000px;}
.x17{left:8.460000px;}
.x1c{left:9.540000px;}
.x19{left:11.700000px;}
.x3d{left:13.680000px;}
.x64{left:14.760000px;}
.x58{left:16.200000px;}
.x43{left:18.030000px;}
.x34{left:19.620000px;}
.x3c{left:20.880000px;}
.x5f{left:23.940000px;}
.x35{left:25.560000px;}
.x40{left:27.750000px;}
.x42{left:29.160000px;}
.x63{left:32.040000px;}
.x41{left:34.950000px;}
.x62{left:36.360000px;}
.x3e{left:39.780000px;}
.x4c{left:41.580000px;}
.x4d{left:43.920000px;}
.x3f{left:45.000000px;}
.x3b{left:48.240000px;}
.x59{left:49.890000px;}
.x75{left:51.480000px;}
.x60{left:54.180000px;}
.x6c{left:55.260000px;}
.x76{left:56.700000px;}
.x72{left:58.140000px;}
.x61{left:60.660000px;}
.x74{left:64.080000px;}
.x55{left:67.500000px;}
.x70{left:68.760000px;}
.x6d{left:71.100000px;}
.x24{left:73.440000px;}
.x6e{left:76.680000px;}
.x6f{left:78.660000px;}
.x20{left:81.000000px;}
.x77{left:82.620000px;}
.x1d{left:84.960000px;}
.x25{left:86.760000px;}
.x1e{left:88.200000px;}
.x1f{left:95.400000px;}
.x22{left:96.660000px;}
.x73{left:98.100000px;}
.x4f{left:101.745000px;}
.x4e{left:106.425000px;}
.x21{left:116.685000px;}
.x71{left:124.065000px;}
.xe{left:127.655987px;}
.x4{left:130.715987px;}
.x27{left:136.115987px;}
.x78{left:137.370000px;}
.x28{left:145.295987px;}
.x23{left:149.445000px;}
.x65{left:154.109987px;}
.x2c{left:157.169987px;}
.x3{left:166.169987px;}
.x69{left:169.950000px;}
.x50{left:171.900000px;}
.x16{left:173.730000px;}
.xf{left:180.749987px;}
.x51{left:182.160000px;}
.x1a{left:185.070000px;}
.x47{left:187.950000px;}
.x30{left:206.850000px;}
.x54{left:210.060000px;}
.x44{left:213.869987px;}
.x2a{left:228.809987px;}
.x14{left:268.229987px;}
.x2d{left:286.994987px;}
.x45{left:298.514987px;}
.x57{left:303.555000px;}
.x2b{left:322.814987px;}
.x31{left:326.955000px;}
.x18{left:338.655000px;}
.x26{left:343.694987px;}
.x68{left:345.854987px;}
.xa{left:349.634987px;}
.x6a{left:353.235000px;}
.xd{left:360.614987px;}
.x6{left:366.374987px;}
.xc{left:370.514987px;}
.x33{left:381.675000px;}
.x2f{left:383.294987px;}
.x7{left:385.994987px;}
.x8{left:389.234987px;}
.xb{left:392.114987px;}
.x9{left:395.354987px;}
.x5{left:400.214987px;}
.x2{left:417.134987px;}
.x2e{left:432.974987px;}
.x67{left:434.594987px;}
.x52{left:444.705000px;}
.x1{left:446.474987px;}
.x36{left:458.175000px;}
.x12{left:476.384973px;}
.x5a{left:483.945000px;}
.x13{left:486.104987px;}
.x48{left:507.345000px;}
.x66{left:512.384987px;}
.x38{left:520.485000px;}
.x15{left:523.364987px;}
.x56{left:524.624987px;}
.x6b{left:529.125000px;}
.x1b{left:536.145000px;}
.x5b{left:549.825000px;}
.x10{left:551.624973px;}
.x49{left:554.865000px;}
.x11{left:561.344987px;}
.x3a{left:584.925000px;}
.x4a{left:603.285000px;}
.x5c{left:609.405000px;}
.x46{left:621.464987px;}
.x53{left:626.864987px;}
.x4b{left:658.050000px;}
.x79{left:666.149987px;}
.x5d{left:675.330000px;}
.x29{left:693.509987px;}
@media print{
.v1{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.ls24{letter-spacing:-5.386667pt;}
.ls29{letter-spacing:-0.736000pt;}
.ls22{letter-spacing:-0.629333pt;}
.ls23{letter-spacing:-0.301333pt;}
.lsc{letter-spacing:-0.212267pt;}
.ls2b{letter-spacing:-0.211200pt;}
.ls2a{letter-spacing:-0.188800pt;}
.lsb{letter-spacing:-0.129067pt;}
.ls11{letter-spacing:-0.112000pt;}
.ls3{letter-spacing:-0.094933pt;}
.ls14{letter-spacing:-0.081067pt;}
.ls16{letter-spacing:-0.043520pt;}
.ls21{letter-spacing:-0.016000pt;}
.ls25{letter-spacing:-0.005051pt;}
.ls2{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.028160pt;}
.ls18{letter-spacing:0.043680pt;}
.ls0{letter-spacing:0.046720pt;}
.ls12{letter-spacing:0.059200pt;}
.lse{letter-spacing:0.069333pt;}
.ls27{letter-spacing:0.070933pt;}
.ls28{letter-spacing:0.080000pt;}
.ls20{letter-spacing:0.123733pt;}
.ls17{letter-spacing:0.130560pt;}
.ls1a{letter-spacing:0.159360pt;}
.ls8{letter-spacing:0.160000pt;}
.ls26{letter-spacing:0.199467pt;}
.lsa{letter-spacing:0.266667pt;}
.ls10{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.376533pt;}
.lsf{letter-spacing:0.528000pt;}
.ls19{letter-spacing:0.602667pt;}
.ls13{letter-spacing:0.608000pt;}
.ls1f{letter-spacing:1.146667pt;}
.ls6{letter-spacing:2.080000pt;}
.ls7{letter-spacing:2.720000pt;}
.ls9{letter-spacing:3.810446pt;}
.ls5{letter-spacing:3.840000pt;}
.ls1c{letter-spacing:53.792000pt;}
.ls1d{letter-spacing:53.898667pt;}
.ls1b{letter-spacing:54.432000pt;}
.ls4{letter-spacing:93.440000pt;}
.ls1{letter-spacing:133.738667pt;}
.ls1e{letter-spacing:151.712000pt;}
.ws1f{word-spacing:-58.880000pt;}
.ws4{word-spacing:-15.096533pt;}
.ws5{word-spacing:-14.789333pt;}
.ws11{word-spacing:-14.763680pt;}
.ws0{word-spacing:-14.720000pt;}
.ws10{word-spacing:-14.676480pt;}
.ws1{word-spacing:-14.625067pt;}
.ws3{word-spacing:-14.507733pt;}
.ws17{word-spacing:-14.418667pt;}
.ws16{word-spacing:-14.090667pt;}
.ws1c{word-spacing:-13.984000pt;}
.ws13{word-spacing:-13.403733pt;}
.ws12{word-spacing:-13.280000pt;}
.ws1d{word-spacing:-13.091200pt;}
.ws1e{word-spacing:-13.068800pt;}
.wse{word-spacing:-12.608000pt;}
.ws8{word-spacing:-12.528000pt;}
.ws9{word-spacing:-12.320000pt;}
.wsd{word-spacing:-12.266667pt;}
.wsa{word-spacing:-12.160000pt;}
.wsc{word-spacing:-12.059200pt;}
.ws7{word-spacing:-12.000000pt;}
.wsf{word-spacing:-11.918933pt;}
.wsb{word-spacing:-11.888000pt;}
.ws14{word-spacing:-10.848000pt;}
.ws15{word-spacing:-10.832000pt;}
.ws1a{word-spacing:-8.904107pt;}
.ws1b{word-spacing:-8.775573pt;}
.ws19{word-spacing:-8.699589pt;}
.ws6{word-spacing:-8.000000pt;}
.ws18{word-spacing:-3.317973pt;}
.ws2{word-spacing:0.000000pt;}
._15{margin-left:-4.592640pt;}
._c{margin-left:-3.650560pt;}
._b{margin-left:-2.649600pt;}
._1{margin-left:-1.059840pt;}
._0{width:1.066667pt;}
._2{width:2.225067pt;}
._3{width:3.532800pt;}
._4{width:5.181440pt;}
._7{width:6.241280pt;}
._9{width:7.831040pt;}
._5{width:8.773120pt;}
._a{width:10.127360pt;}
._d{width:11.599360pt;}
._e{width:12.541440pt;}
._8{width:13.483520pt;}
._f{width:16.250880pt;}
._14{width:17.532587pt;}
._10{width:19.665920pt;}
._12{width:22.315520pt;}
._6{width:26.437120pt;}
._13{width:73.011200pt;}
._11{width:174.058667pt;}
._16{width:236.108800pt;}
.fs7{font-size:16.000000pt;}
.fs3{font-size:32.000000pt;}
.fs2{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:48.128000pt;}
.fs8{font-size:50.560000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs9{font-size:74.880000pt;}
.y10b{bottom:-13.826667pt;}
.yfb{bottom:-8.186667pt;}
.y108{bottom:-2.146667pt;}
.y106{bottom:-1.986667pt;}
.yf1{bottom:-1.946667pt;}
.y10a{bottom:-1.826667pt;}
.y104{bottom:-0.066667pt;}
.y0{bottom:0.000000pt;}
.ycb{bottom:2.880000pt;}
.y143{bottom:4.000000pt;}
.y160{bottom:5.760000pt;}
.y15a{bottom:5.920000pt;}
.y142{bottom:6.080000pt;}
.yf5{bottom:6.533333pt;}
.yff{bottom:6.693333pt;}
.y163{bottom:7.200000pt;}
.ya0{bottom:7.360000pt;}
.y9c{bottom:7.520000pt;}
.y127{bottom:8.000000pt;}
.y124{bottom:8.160000pt;}
.y11b{bottom:8.320000pt;}
.y15e{bottom:8.480000pt;}
.y159{bottom:8.640000pt;}
.y8c{bottom:8.800000pt;}
.y8f{bottom:8.960000pt;}
.y92{bottom:9.120000pt;}
.y11d{bottom:9.280000pt;}
.y162{bottom:9.760000pt;}
.y164{bottom:10.080000pt;}
.y125{bottom:10.880000pt;}
.y122{bottom:11.040000pt;}
.ye4{bottom:11.520000pt;}
.y10d{bottom:11.546667pt;}
.ycf{bottom:11.680000pt;}
.y120{bottom:12.160000pt;}
.y14b{bottom:12.480000pt;}
.y151{bottom:12.680000pt;}
.y11e{bottom:13.120000pt;}
.y119{bottom:14.400000pt;}
.y155{bottom:16.480000pt;}
.ycd{bottom:16.960000pt;}
.yca{bottom:17.120000pt;}
.y145{bottom:20.160000pt;}
.y149{bottom:20.480000pt;}
.y14f{bottom:20.520000pt;}
.y103{bottom:22.533333pt;}
.y158{bottom:24.320000pt;}
.y146{bottom:27.200000pt;}
.y150{bottom:28.040000pt;}
.y14a{bottom:28.160000pt;}
.yf4{bottom:31.013333pt;}
.y156{bottom:31.200000pt;}
.y154{bottom:33.120000pt;}
.y14e{bottom:35.240000pt;}
.y148{bottom:35.360000pt;}
.y157{bottom:39.200000pt;}
.y102{bottom:44.933333pt;}
.y3{bottom:50.720000pt;}
.y2{bottom:65.632000pt;}
.y101{bottom:69.573333pt;}
.yf7{bottom:83.973333pt;}
.ya9{bottom:97.632000pt;}
.yc1{bottom:98.432000pt;}
.y56{bottom:98.912000pt;}
.y13e{bottom:99.712000pt;}
.y2f{bottom:108.832000pt;}
.ya8{bottom:111.072000pt;}
.y77{bottom:111.712000pt;}
.ya7{bottom:113.792000pt;}
.yc0{bottom:116.192000pt;}
.y55{bottom:116.672000pt;}
.yef{bottom:116.992000pt;}
.y1b0{bottom:121.152000pt;}
.ya6{bottom:124.672000pt;}
.y178{bottom:126.112000pt;}
.y2e{bottom:126.592000pt;}
.y13d{bottom:130.432000pt;}
.ybf{bottom:133.946667pt;}
.ya5{bottom:138.106667pt;}
.yee{bottom:140.666667pt;}
.y76{bottom:142.266667pt;}
.y177{bottom:143.866667pt;}
.y54{bottom:147.226667pt;}
.ya4{bottom:151.546667pt;}
.ybe{bottom:151.706667pt;}
.ya3{bottom:154.266667pt;}
.y195{bottom:154.586667pt;}
.y2d{bottom:157.306667pt;}
.y13c{bottom:160.986667pt;}
.y176{bottom:161.626667pt;}
.yed{bottom:164.346667pt;}
.ybd{bottom:169.626667pt;}
.y194{bottom:172.346667pt;}
.y75{bottom:172.826667pt;}
.ya2{bottom:174.426667pt;}
.y2c{bottom:175.066667pt;}
.y53{bottom:177.786667pt;}
.y175{bottom:179.546667pt;}
.y1af{bottom:182.266667pt;}
.yec{bottom:188.026667pt;}
.ybc{bottom:188.666667pt;}
.y74{bottom:190.586667pt;}
.y13b{bottom:191.546667pt;}
.y2b{bottom:192.826667pt;}
.ya1{bottom:194.106667pt;}
.y193{bottom:202.906667pt;}
.y52{bottom:208.506667pt;}
.y13a{bottom:209.306667pt;}
.y174{bottom:210.106667pt;}
.y2a{bottom:210.746667pt;}
.yeb{bottom:211.706667pt;}
.y1ae{bottom:212.826667pt;}
.y9f{bottom:217.786667pt;}
.ybb{bottom:219.386667pt;}
.y192{bottom:220.666667pt;}
.y73{bottom:221.306667pt;}
.y51{bottom:226.266667pt;}
.y139{bottom:227.226667pt;}
.y173{bottom:227.866667pt;}
.y29{bottom:228.506667pt;}
.yea{bottom:235.386667pt;}
.y72{bottom:239.066667pt;}
.y9e{bottom:241.306667pt;}
.y1ad{bottom:243.546667pt;}
.y50{bottom:244.026667pt;}
.y138{bottom:244.986667pt;}
.y172{bottom:245.786667pt;}
.y28{bottom:246.266667pt;}
.yba{bottom:249.946667pt;}
.y191{bottom:251.386667pt;}
.ye9{bottom:259.066667pt;}
.y4f{bottom:261.946667pt;}
.y137{bottom:262.746667pt;}
.y171{bottom:263.546667pt;}
.y27{bottom:264.026667pt;}
.y9d{bottom:264.986667pt;}
.yb9{bottom:269.146667pt;}
.y71{bottom:269.626667pt;}
.y1ac{bottom:274.106667pt;}
.y4e{bottom:279.706667pt;}
.y170{bottom:281.306667pt;}
.ye8{bottom:282.746667pt;}
.y190{bottom:286.906667pt;}
.y70{bottom:287.546667pt;}
.y9b{bottom:288.666667pt;}
.y1ab{bottom:291.866667pt;}
.y136{bottom:293.466667pt;}
.y26{bottom:294.746667pt;}
.y16f{bottom:299.106667pt;}
.yb8{bottom:299.746667pt;}
.y6f{bottom:305.346667pt;}
.ye7{bottom:306.306667pt;}
.y1aa{bottom:309.826667pt;}
.y4d{bottom:310.306667pt;}
.y135{bottom:311.266667pt;}
.y9a{bottom:312.386667pt;}
.y25{bottom:312.546667pt;}
.y18f{bottom:317.666667pt;}
.y6e{bottom:323.106667pt;}
.y4c{bottom:328.066667pt;}
.y134{bottom:329.026667pt;}
.y16e{bottom:329.826667pt;}
.ye6{bottom:329.986667pt;}
.y24{bottom:330.306667pt;}
.y18e{bottom:335.426667pt;}
.y99{bottom:337.346667pt;}
.y1a9{bottom:340.386667pt;}
.y6d{bottom:340.866667pt;}
.y4b{bottom:345.986667pt;}
.y133{bottom:346.786667pt;}
.y16d{bottom:347.586667pt;}
.y23{bottom:348.226667pt;}
.y18d{bottom:353.186667pt;}
.ye5{bottom:353.666667pt;}
.y1a8{bottom:358.146667pt;}
.yd3{bottom:358.786667pt;}
.y98{bottom:362.626667pt;}
.y4a{bottom:363.746667pt;}
.y132{bottom:364.706667pt;}
.y16c{bottom:365.346667pt;}
.y22{bottom:365.986667pt;}
.y6c{bottom:371.586667pt;}
.y1a7{bottom:375.906667pt;}
.ye3{bottom:377.346667pt;}
.yb7{bottom:378.786667pt;}
.yd2{bottom:382.466667pt;}
.y16b{bottom:383.266667pt;}
.y18c{bottom:383.906667pt;}
.y97{bottom:387.746667pt;}
.y6b{bottom:389.346667pt;}
.y1a6{bottom:393.826667pt;}
.y49{bottom:394.306667pt;}
.y21{bottom:396.546667pt;}
.y131{bottom:400.226667pt;}
.ye2{bottom:400.866667pt;}
.y18b{bottom:401.666667pt;}
.yd1{bottom:406.146667pt;}
.y6a{bottom:407.106667pt;}
.yb6{bottom:409.346667pt;}
.y48{bottom:412.226667pt;}
.y96{bottom:412.866667pt;}
.y16a{bottom:413.826667pt;}
.y1a5{bottom:424.386667pt;}
.y69{bottom:425.026667pt;}
.y20{bottom:427.106667pt;}
.yd0{bottom:429.826667pt;}
.y47{bottom:429.986667pt;}
.ye1{bottom:430.466667pt;}
.y130{bottom:430.946667pt;}
.y169{bottom:431.586667pt;}
.y18a{bottom:432.226667pt;}
.y95{bottom:438.146667pt;}
.yb5{bottom:439.906667pt;}
.y1a4{bottom:442.146667pt;}
.y68{bottom:442.786667pt;}
.y46{bottom:447.746667pt;}
.y12f{bottom:448.706667pt;}
.y168{bottom:449.506667pt;}
.y189{bottom:449.986667pt;}
.ye0{bottom:452.066667pt;}
.yce{bottom:453.506667pt;}
.y1f{bottom:457.826667pt;}
.y1a3{bottom:460.066667pt;}
.y67{bottom:460.546667pt;}
.y94{bottom:463.266667pt;}
.y45{bottom:465.506667pt;}
.y12e{bottom:466.466667pt;}
.yb4{bottom:470.626667pt;}
.ycc{bottom:477.186667pt;}
.y66{bottom:478.306667pt;}
.y167{bottom:480.066667pt;}
.y188{bottom:480.706667pt;}
.ydf{bottom:482.626667pt;}
.y44{bottom:483.426667pt;}
.y12d{bottom:484.386667pt;}
.y93{bottom:488.226667pt;}
.y1e{bottom:488.386667pt;}
.y1a2{bottom:490.626667pt;}
.y65{bottom:496.226667pt;}
.y187{bottom:498.466667pt;}
.y43{bottom:501.186667pt;}
.y12c{bottom:502.146667pt;}
.y1d{bottom:506.146667pt;}
.y1a1{bottom:508.386667pt;}
.y166{bottom:510.626667pt;}
.yde{bottom:513.186667pt;}
.y91{bottom:513.346667pt;}
.y64{bottom:513.986667pt;}
.y186{bottom:516.226667pt;}
.y42{bottom:518.946667pt;}
.y12b{bottom:519.906667pt;}
.yb3{bottom:524.066667pt;}
.y1a0{bottom:526.146667pt;}
.ydd{bottom:531.106667pt;}
.y63{bottom:531.746667pt;}
.y1c{bottom:536.893333pt;}
.y165{bottom:538.013333pt;}
.y90{bottom:538.653333pt;}
.yc9{bottom:541.213333pt;}
.yb2{bottom:541.853333pt;}
.y185{bottom:546.973333pt;}
.y161{bottom:548.733333pt;}
.ydc{bottom:548.893333pt;}
.y12a{bottom:550.493333pt;}
.y1b{bottom:554.653333pt;}
.y19f{bottom:556.893333pt;}
.yb1{bottom:559.613333pt;}
.y62{bottom:562.493333pt;}
.y8e{bottom:563.773333pt;}
.yc8{bottom:564.573333pt;}
.y184{bottom:564.733333pt;}
.ydb{bottom:566.653333pt;}
.y15f{bottom:570.333333pt;}
.y1a{bottom:572.413333pt;}
.y19e{bottom:574.653333pt;}
.y129{bottom:575.613333pt;}
.yb0{bottom:577.373333pt;}
.y61{bottom:580.253333pt;}
.yda{bottom:584.413333pt;}
.y8d{bottom:588.893333pt;}
.y19{bottom:590.333333pt;}
.y15d{bottom:590.493333pt;}
.y19d{bottom:592.413333pt;}
.yaf{bottom:595.293333pt;}
.y60{bottom:598.013333pt;}
.y128{bottom:601.693333pt;}
.yd9{bottom:602.333333pt;}
.y41{bottom:603.133333pt;}
.y18{bottom:608.093333pt;}
.y15c{bottom:610.813333pt;}
.y126{bottom:612.413333pt;}
.yae{bottom:613.053333pt;}
.y8b{bottom:614.173333pt;}
.y5f{bottom:615.933333pt;}
.yd8{bottom:620.093333pt;}
.y40{bottom:620.893333pt;}
.y19c{bottom:623.133333pt;}
.y17{bottom:625.853333pt;}
.yad{bottom:630.813333pt;}
.y15b{bottom:631.133333pt;}
.y123{bottom:634.653333pt;}
.yd7{bottom:637.853333pt;}
.y19b{bottom:640.893333pt;}
.y16{bottom:643.613333pt;}
.y8a{bottom:645.053333pt;}
.y5e{bottom:646.493333pt;}
.yc7{bottom:648.733333pt;}
.y3f{bottom:651.453333pt;}
.yd6{bottom:655.773333pt;}
.y121{bottom:657.053333pt;}
.y15{bottom:661.533333pt;}
.y183{bottom:662.653333pt;}
.y5d{bottom:664.253333pt;}
.y89{bottom:666.493333pt;}
.y3e{bottom:669.213333pt;}
.y19a{bottom:671.453333pt;}
.y153{bottom:674.013333pt;}
.yac{bottom:679.293333pt;}
.y11f{bottom:679.453333pt;}
.y182{bottom:680.413333pt;}
.y5c{bottom:682.013333pt;}
.yd5{bottom:686.333333pt;}
.y3d{bottom:687.133333pt;}
.y199{bottom:689.373333pt;}
.y14{bottom:692.093333pt;}
.y87{bottom:697.053333pt;}
.y5b{bottom:699.933333pt;}
.y88{bottom:700.413333pt;}
.y11c{bottom:703.133333pt;}
.y3c{bottom:704.893333pt;}
.y181{bottom:710.973333pt;}
.y86{bottom:714.973333pt;}
.yd4{bottom:716.893333pt;}
.y5a{bottom:717.693333pt;}
.y198{bottom:719.933333pt;}
.y13{bottom:722.653333pt;}
.y152{bottom:723.453333pt;}
.y11a{bottom:727.613333pt;}
.yc6{bottom:727.773333pt;}
.y180{bottom:728.893333pt;}
.y85{bottom:732.733333pt;}
.y59{bottom:735.453333pt;}
.y109{bottom:736.320000pt;}
.y197{bottom:737.693333pt;}
.y12{bottom:740.573333pt;}
.y105{bottom:746.400000pt;}
.y118{bottom:748.733333pt;}
.y107{bottom:749.440000pt;}
.y84{bottom:750.493333pt;}
.y3b{bottom:753.373333pt;}
.y11{bottom:758.333333pt;}
.y17f{bottom:759.453333pt;}
.y100{bottom:763.680000pt;}
.y83{bottom:768.253333pt;}
.y14d{bottom:769.693333pt;}
.y3a{bottom:771.133333pt;}
.y10{bottom:776.133333pt;}
.y17e{bottom:777.253333pt;}
.yfe{bottom:779.360000pt;}
.yab{bottom:781.093333pt;}
.y117{bottom:781.253333pt;}
.y196{bottom:786.213333pt;}
.y39{bottom:788.933333pt;}
.yf{bottom:793.893333pt;}
.y82{bottom:799.013333pt;}
.y116{bottom:799.813333pt;}
.y38{bottom:806.693333pt;}
.y17d{bottom:807.973333pt;}
.ye{bottom:811.813333pt;}
.y14c{bottom:815.973333pt;}
.y81{bottom:816.773333pt;}
.y37{bottom:824.613333pt;}
.yd{bottom:829.573333pt;}
.y115{bottom:830.373333pt;}
.y80{bottom:834.533333pt;}
.y17c{bottom:838.533333pt;}
.y36{bottom:842.373333pt;}
.yfc{bottom:845.600000pt;}
.yc{bottom:847.333333pt;}
.y114{bottom:848.293333pt;}
.yfd{bottom:849.760000pt;}
.y7f{bottom:852.453333pt;}
.y17b{bottom:856.293333pt;}
.y58{bottom:860.133333pt;}
.y147{bottom:862.213333pt;}
.yf6{bottom:864.160000pt;}
.yb{bottom:865.253333pt;}
.y113{bottom:866.053333pt;}
.y7d{bottom:870.213333pt;}
.y35{bottom:872.933333pt;}
.y7e{bottom:873.573333pt;}
.y57{bottom:878.053333pt;}
.yfa{bottom:878.373333pt;}
.ya{bottom:883.013333pt;}
.y17a{bottom:886.853333pt;}
.y7c{bottom:887.973333pt;}
.y34{bottom:890.853333pt;}
.yc5{bottom:895.813333pt;}
.y112{bottom:896.613333pt;}
.y9{bottom:900.773333pt;}
.yf9{bottom:900.933333pt;}
.y179{bottom:904.613333pt;}
.y7b{bottom:905.733333pt;}
.y144{bottom:908.453333pt;}
.y33{bottom:908.613333pt;}
.y111{bottom:909.893333pt;}
.yf3{bottom:911.680000pt;}
.yc4{bottom:913.573333pt;}
.y8{bottom:918.533333pt;}
.yf8{bottom:923.493333pt;}
.y7a{bottom:923.653333pt;}
.y32{bottom:926.373333pt;}
.yc3{bottom:931.333333pt;}
.y110{bottom:933.573333pt;}
.yaa{bottom:936.453333pt;}
.y31{bottom:944.133333pt;}
.y141{bottom:947.653333pt;}
.y7{bottom:949.253333pt;}
.y79{bottom:954.213333pt;}
.y10f{bottom:957.253333pt;}
.y30{bottom:962.053333pt;}
.yf2{bottom:964.480000pt;}
.yc2{bottom:967.013333pt;}
.y140{bottom:972.933333pt;}
.yf0{bottom:977.920000pt;}
.y6{bottom:979.813333pt;}
.y10e{bottom:980.933333pt;}
.y78{bottom:984.773333pt;}
.y13f{bottom:989.573333pt;}
.y5{bottom:997.573333pt;}
.y10c{bottom:1004.613333pt;}
.y4{bottom:1015.520000pt;}
.y1{bottom:1061.600000pt;}
.h16{height:7.680000pt;}
.h14{height:7.840000pt;}
.h24{height:13.757812pt;}
.h25{height:15.200000pt;}
.h1e{height:19.840000pt;}
.h2f{height:20.160000pt;}
.h2e{height:20.320000pt;}
.h30{height:21.600000pt;}
.h21{height:22.240000pt;}
.h20{height:22.400000pt;}
.h2d{height:22.560000pt;}
.h1c{height:22.752000pt;}
.hd{height:22.880000pt;}
.h13{height:22.912000pt;}
.hc{height:23.040000pt;}
.hb{height:23.072000pt;}
.h1f{height:23.680000pt;}
.h7{height:24.320000pt;}
.h8{height:24.480000pt;}
.ha{height:24.640000pt;}
.h9{height:24.672000pt;}
.h1d{height:25.952000pt;}
.h12{height:28.320000pt;}
.h11{height:28.480000pt;}
.he{height:30.393437pt;}
.h6{height:31.918125pt;}
.h26{height:36.870937pt;}
.h22{height:37.164062pt;}
.h27{height:38.400000pt;}
.h19{height:40.800000pt;}
.h17{height:40.960000pt;}
.hf{height:41.273438pt;}
.h23{height:41.601562pt;}
.h29{height:43.474688pt;}
.h3{height:45.675938pt;}
.h28{height:46.240000pt;}
.h2a{height:46.272000pt;}
.h15{height:47.742188pt;}
.h1a{height:47.869500pt;}
.h4{height:49.335000pt;}
.h2b{height:49.440000pt;}
.h5{height:50.628750pt;}
.h2{height:51.031250pt;}
.h10{height:55.402500pt;}
.h2c{height:64.386562pt;}
.h1b{height:79.520000pt;}
.h18{height:93.920000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w19{width:7.520000pt;}
.w14{width:16.480000pt;}
.w22{width:25.760000pt;}
.w10{width:41.600000pt;}
.w13{width:41.920000pt;}
.w11{width:42.400000pt;}
.wf{width:42.592000pt;}
.w17{width:44.000000pt;}
.w8{width:48.000000pt;}
.w12{width:48.032000pt;}
.w15{width:48.960000pt;}
.w1a{width:51.680000pt;}
.w20{width:52.960000pt;}
.wa{width:54.752000pt;}
.wb{width:56.640000pt;}
.w1f{width:58.560000pt;}
.w21{width:58.592000pt;}
.w1e{width:58.752000pt;}
.w9{width:67.360000pt;}
.w18{width:81.760000pt;}
.wc{width:89.952000pt;}
.w1d{width:101.600000pt;}
.w1c{width:101.952000pt;}
.we{width:105.920000pt;}
.w7{width:106.112000pt;}
.wd{width:133.466667pt;}
.w4{width:145.946667pt;}
.w23{width:156.346667pt;}
.w6{width:162.906667pt;}
.w24{width:172.506667pt;}
.w5{width:174.746667pt;}
.w1b{width:306.080000pt;}
.w16{width:478.560000pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x39{left:3.040000pt;}
.x5e{left:4.160000pt;}
.x37{left:5.120000pt;}
.x32{left:6.560000pt;}
.x17{left:7.520000pt;}
.x1c{left:8.480000pt;}
.x19{left:10.400000pt;}
.x3d{left:12.160000pt;}
.x64{left:13.120000pt;}
.x58{left:14.400000pt;}
.x43{left:16.026667pt;}
.x34{left:17.440000pt;}
.x3c{left:18.560000pt;}
.x5f{left:21.280000pt;}
.x35{left:22.720000pt;}
.x40{left:24.666667pt;}
.x42{left:25.920000pt;}
.x63{left:28.480000pt;}
.x41{left:31.066667pt;}
.x62{left:32.320000pt;}
.x3e{left:35.360000pt;}
.x4c{left:36.960000pt;}
.x4d{left:39.040000pt;}
.x3f{left:40.000000pt;}
.x3b{left:42.880000pt;}
.x59{left:44.346667pt;}
.x75{left:45.760000pt;}
.x60{left:48.160000pt;}
.x6c{left:49.120000pt;}
.x76{left:50.400000pt;}
.x72{left:51.680000pt;}
.x61{left:53.920000pt;}
.x74{left:56.960000pt;}
.x55{left:60.000000pt;}
.x70{left:61.120000pt;}
.x6d{left:63.200000pt;}
.x24{left:65.280000pt;}
.x6e{left:68.160000pt;}
.x6f{left:69.920000pt;}
.x20{left:72.000000pt;}
.x77{left:73.440000pt;}
.x1d{left:75.520000pt;}
.x25{left:77.120000pt;}
.x1e{left:78.400000pt;}
.x1f{left:84.800000pt;}
.x22{left:85.920000pt;}
.x73{left:87.200000pt;}
.x4f{left:90.440000pt;}
.x4e{left:94.600000pt;}
.x21{left:103.720000pt;}
.x71{left:110.280000pt;}
.xe{left:113.471988pt;}
.x4{left:116.191988pt;}
.x27{left:120.991988pt;}
.x78{left:122.106667pt;}
.x28{left:129.151988pt;}
.x23{left:132.840000pt;}
.x65{left:136.986655pt;}
.x2c{left:139.706655pt;}
.x3{left:147.706655pt;}
.x69{left:151.066667pt;}
.x50{left:152.800000pt;}
.x16{left:154.426667pt;}
.xf{left:160.666655pt;}
.x51{left:161.920000pt;}
.x1a{left:164.506667pt;}
.x47{left:167.066667pt;}
.x30{left:183.866667pt;}
.x54{left:186.720000pt;}
.x44{left:190.106655pt;}
.x2a{left:203.386655pt;}
.x14{left:238.426655pt;}
.x2d{left:255.106655pt;}
.x45{left:265.346655pt;}
.x57{left:269.826667pt;}
.x2b{left:286.946655pt;}
.x31{left:290.626667pt;}
.x18{left:301.026667pt;}
.x26{left:305.506655pt;}
.x68{left:307.426655pt;}
.xa{left:310.786655pt;}
.x6a{left:313.986667pt;}
.xd{left:320.546655pt;}
.x6{left:325.666655pt;}
.xc{left:329.346655pt;}
.x33{left:339.266667pt;}
.x2f{left:340.706655pt;}
.x7{left:343.106655pt;}
.x8{left:345.986655pt;}
.xb{left:348.546655pt;}
.x9{left:351.426655pt;}
.x5{left:355.746655pt;}
.x2{left:370.786655pt;}
.x2e{left:384.866655pt;}
.x67{left:386.306655pt;}
.x52{left:395.293333pt;}
.x1{left:396.866655pt;}
.x36{left:407.266667pt;}
.x12{left:423.453310pt;}
.x5a{left:430.173333pt;}
.x13{left:432.093322pt;}
.x48{left:450.973333pt;}
.x66{left:455.453322pt;}
.x38{left:462.653333pt;}
.x15{left:465.213322pt;}
.x56{left:466.333322pt;}
.x6b{left:470.333333pt;}
.x1b{left:476.573333pt;}
.x5b{left:488.733333pt;}
.x10{left:490.333310pt;}
.x49{left:493.213333pt;}
.x11{left:498.973322pt;}
.x3a{left:519.933333pt;}
.x4a{left:536.253333pt;}
.x5c{left:541.693333pt;}
.x46{left:552.413322pt;}
.x53{left:557.213322pt;}
.x4b{left:584.933333pt;}
.x79{left:592.133322pt;}
.x5d{left:600.293333pt;}
.x29{left:616.453322pt;}
}




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