
    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_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_98a294c4187ffab81a4ddd4d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_c94158e1688017cc9bd3e462.woff')format("woff");}.ff3{font-family:ff3;line-height:1.087402;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_2684e764be37b23c7697dfe6.woff')format("woff");}.ff4{font-family:ff4;line-height:1.087402;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_59626b4a218d7c2805b6ddbf.woff')format("woff");}.ff5{font-family:ff5;line-height:1.087402;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_88d18db3504b23f8422021d3.woff')format("woff");}.ff6{font-family:ff6;line-height:1.087402;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_b5de67d9b3561cfada2ebbfc.woff')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_deef8478ea19fd54282cecb1.woff')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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_e71eb64b7e110c3f3c65d128.woff')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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_cf55d83911fb3a0abbd8a460.woff')format("woff");}.ffa{font-family:ffa;line-height:1.241699;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_b1b00add077dfef2f9d201bc.woff')format("woff");}.ffb{font-family:ffb;line-height:1.053223;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_5ecd5a473467d5f45281079a.woff')format("woff");}.ffc{font-family:ffc;line-height:1.053223;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_4d715cfd144df66b141bcc63.woff')format("woff");}.ffd{font-family:ffd;line-height:0.708008;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_7e9a9549f344bd4cbeb113cf.woff')format("woff");}.ffe{font-family:ffe;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{transform:matrix(0.235795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235795,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.236363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236363,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.240565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240565,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);}
.m2{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.257275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257275,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.259700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259700,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v6{vertical-align:-29.880000px;}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v4{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.160000px;}
.v2{vertical-align:15.120000px;}
.ls34{letter-spacing:-0.648000px;}
.ls3b{letter-spacing:-0.444600px;}
.ls26{letter-spacing:-0.399000px;}
.lsf{letter-spacing:-0.359400px;}
.ls33{letter-spacing:-0.299400px;}
.ls22{letter-spacing:-0.243600px;}
.lsd{letter-spacing:-0.186600px;}
.ls27{letter-spacing:-0.178800px;}
.ls2a{letter-spacing:-0.162600px;}
.ls21{letter-spacing:-0.153600px;}
.ls2d{letter-spacing:-0.142800px;}
.ls2e{letter-spacing:-0.141600px;}
.ls8{letter-spacing:-0.135000px;}
.ls10{letter-spacing:-0.121200px;}
.ls29{letter-spacing:-0.117600px;}
.ls30{letter-spacing:-0.092400px;}
.ls7{letter-spacing:-0.090000px;}
.lsc{letter-spacing:-0.084600px;}
.ls19{letter-spacing:-0.081000px;}
.ls2c{letter-spacing:-0.067800px;}
.lsb{letter-spacing:-0.063600px;}
.ls31{letter-spacing:-0.038880px;}
.ls3c{letter-spacing:-0.037800px;}
.ls2b{letter-spacing:-0.014760px;}
.lsa{letter-spacing:-0.008400px;}
.ls25{letter-spacing:-0.003240px;}
.ls5{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.000358px;}
.ls11{letter-spacing:0.024540px;}
.ls12{letter-spacing:0.045360px;}
.ls13{letter-spacing:0.048960px;}
.ls23{letter-spacing:0.053280px;}
.ls16{letter-spacing:0.060480px;}
.ls1e{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.065520px;}
.ls36{letter-spacing:0.068400px;}
.ls4{letter-spacing:0.074160px;}
.ls32{letter-spacing:0.074400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls39{letter-spacing:0.098400px;}
.ls35{letter-spacing:0.111360px;}
.ls1c{letter-spacing:0.116400px;}
.ls2f{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.144000px;}
.ls28{letter-spacing:0.160800px;}
.lse{letter-spacing:0.173400px;}
.ls9{letter-spacing:0.174600px;}
.ls14{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.180480px;}
.ls24{letter-spacing:0.199200px;}
.ls1a{letter-spacing:0.268800px;}
.ls38{letter-spacing:0.300000px;}
.ls17{letter-spacing:0.351360px;}
.ls0{letter-spacing:0.360000px;}
.ls1d{letter-spacing:2.613600px;}
.ls18{letter-spacing:5.853600px;}
.ls3a{letter-spacing:47.726640px;}
.ls1f{letter-spacing:63.566640px;}
.ls37{letter-spacing:80.846640px;}
.ls20{letter-spacing:84.708000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{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);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws3{word-spacing:-60.120000px;}
.ws1c{word-spacing:-59.978400px;}
.ws1b{word-spacing:-59.977200px;}
.ws23{word-spacing:-47.880000px;}
.ws2{word-spacing:-14.493600px;}
.wsb{word-spacing:-14.372400px;}
.ws13{word-spacing:-13.425600px;}
.ws7{word-spacing:-13.399800px;}
.ws17{word-spacing:-13.387200px;}
.ws1d{word-spacing:-13.346400px;}
.wse{word-spacing:-13.342800px;}
.ws24{word-spacing:-13.324800px;}
.ws20{word-spacing:-13.300800px;}
.ws12{word-spacing:-13.279680px;}
.wsc{word-spacing:-13.275360px;}
.wsd{word-spacing:-13.226758px;}
.ws5{word-spacing:-13.226400px;}
.ws14{word-spacing:-13.223160px;}
.ws19{word-spacing:-13.211640px;}
.ws25{word-spacing:-13.188600px;}
.ws1f{word-spacing:-13.187520px;}
.wsf{word-spacing:-13.162800px;}
.ws1a{word-spacing:-13.158600px;}
.ws22{word-spacing:-13.134000px;}
.ws18{word-spacing:-13.108800px;}
.ws10{word-spacing:-13.072800px;}
.ws16{word-spacing:-13.047600px;}
.ws6{word-spacing:-13.039800px;}
.ws11{word-spacing:-12.982800px;}
.ws21{word-spacing:-12.927000px;}
.ws8{word-spacing:-12.867000px;}
.ws15{word-spacing:-12.827400px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws4{word-spacing:-8.553600px;}
.ws1e{word-spacing:-8.461200px;}
.wsa{word-spacing:0.000000px;}
.ws9{word-spacing:4.304880px;}
._14{margin-left:-9.464040px;}
._a{margin-left:-3.426600px;}
._8{margin-left:-2.344800px;}
._3{margin-left:-1.107840px;}
._2{width:1.053480px;}
._d{width:2.221440px;}
._c{width:3.306600px;}
._6{width:4.869600px;}
._7{width:6.573602px;}
._b{width:8.356800px;}
._e{width:9.644640px;}
._9{width:10.821600px;}
._4{width:11.974560px;}
._5{width:15.210600px;}
._13{width:16.467480px;}
._12{width:18.036000px;}
._1{width:19.552320px;}
._0{width:20.710080px;}
._15{width:22.689000px;}
._16{width:23.723640px;}
._17{width:24.987720px;}
._10{width:28.788720px;}
._f{width:29.819520px;}
._11{width:68.536800px;}
._18{width:280.640160px;}
._19{width:281.662200px;}
.fc4{color:rgb(0,0,102);}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(40,40,40);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.ybc{bottom:7.740000px;}
.y79{bottom:7.830000px;}
.yb5{bottom:7.860000px;}
.y7b{bottom:7.920000px;}
.y95{bottom:12.330000px;}
.y105{bottom:20.700000px;}
.y103{bottom:20.790000px;}
.y82{bottom:25.470000px;}
.y94{bottom:29.970000px;}
.yba{bottom:33.660000px;}
.y9e{bottom:35.190000px;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.ycf{bottom:111.450000px;}
.y1a2{bottom:115.680000px;}
.y15d{bottom:119.010000px;}
.y1a1{bottom:133.320000px;}
.y4d{bottom:133.770000px;}
.y15c{bottom:136.650000px;}
.yb0{bottom:138.810000px;}
.y29{bottom:140.880000px;}
.y176{bottom:143.940000px;}
.y12e{bottom:144.390000px;}
.yce{bottom:146.280000px;}
.y1b7{bottom:150.870000px;}
.y75{bottom:151.230000px;}
.y15b{bottom:154.200000px;}
.ycd{bottom:157.710000px;}
.y101{bottom:157.980000px;}
.y28{bottom:158.430000px;}
.y1a0{bottom:159.870000px;}
.y175{bottom:161.490000px;}
.y12d{bottom:161.940000px;}
.y4c{bottom:168.600000px;}
.yaf{bottom:170.850000px;}
.y15a{bottom:171.840000px;}
.y100{bottom:175.530000px;}
.y27{bottom:176.070000px;}
.y19f{bottom:177.510000px;}
.y12c{bottom:179.580000px;}
.y4b{bottom:180.030000px;}
.yae{bottom:183.090000px;}
.y74{bottom:186.780000px;}
.y174{bottom:188.130000px;}
.y159{bottom:189.390000px;}
.yff{bottom:193.170000px;}
.y26{bottom:193.620000px;}
.y19e{bottom:195.060000px;}
.y12b{bottom:197.130000px;}
.y173{bottom:205.680000px;}
.y158{bottom:206.940000px;}
.yad{bottom:210.360000px;}
.yfe{bottom:210.720000px;}
.y25{bottom:211.260000px;}
.y12a{bottom:214.680000px;}
.y19d{bottom:221.610000px;}
.y73{bottom:222.420000px;}
.y157{bottom:224.580000px;}
.yfd{bottom:228.270000px;}
.y24{bottom:228.810000px;}
.y129{bottom:232.320000px;}
.yac{bottom:237.720000px;}
.y19c{bottom:239.250000px;}
.y156{bottom:242.130000px;}
.y23{bottom:246.360000px;}
.y128{bottom:249.870000px;}
.y71{bottom:259.320000px;}
.y155{bottom:259.680000px;}
.yfc{bottom:263.910000px;}
.y22{bottom:264.000000px;}
.yab{bottom:265.080000px;}
.y19b{bottom:265.800000px;}
.y72{bottom:266.790000px;}
.y127{bottom:267.510000px;}
.y172{bottom:276.420000px;}
.y154{bottom:277.320000px;}
.y70{bottom:279.750000px;}
.yfb{bottom:281.460000px;}
.y21{bottom:281.550000px;}
.y19a{bottom:283.440000px;}
.y126{bottom:285.060000px;}
.yaa{bottom:292.350000px;}
.y171{bottom:294.060000px;}
.y153{bottom:294.870000px;}
.y6f{bottom:297.390000px;}
.yfa{bottom:299.100000px;}
.y199{bottom:300.990000px;}
.y125{bottom:302.610000px;}
.y20{bottom:308.460000px;}
.y96{bottom:308.910000px;}
.y1b6{bottom:309.990000px;}
.y152{bottom:312.510000px;}
.y6e{bottom:314.940000px;}
.yf9{bottom:316.650000px;}
.y124{bottom:320.250000px;}
.y170{bottom:320.610000px;}
.y93{bottom:321.060000px;}
.y198{bottom:327.540000px;}
.y151{bottom:330.060000px;}
.yf8{bottom:334.200000px;}
.y123{bottom:337.800000px;}
.y16f{bottom:338.250000px;}
.ya9{bottom:341.130000px;}
.y6d{bottom:341.580000px;}
.y197{bottom:345.180000px;}
.y150{bottom:347.610000px;}
.yf7{bottom:351.840000px;}
.y122{bottom:355.440000px;}
.y16e{bottom:355.800000px;}
.y1f{bottom:357.060000px;}
.y14f{bottom:365.250000px;}
.yf6{bottom:369.390000px;}
.y92{bottom:370.470000px;}
.y196{bottom:371.730000px;}
.ya8{bottom:375.960000px;}
.y6c{bottom:377.130000px;}
.y16d{bottom:382.350000px;}
.y14e{bottom:382.800000px;}
.y131{bottom:386.850000px;}
.yf5{bottom:386.940000px;}
.ya7{bottom:388.110000px;}
.y195{bottom:389.370000px;}
.y121{bottom:390.990000px;}
.y1e{bottom:394.050000px;}
.y6b{bottom:394.680000px;}
.y91{bottom:397.830000px;}
.y16c{bottom:399.990000px;}
.y14d{bottom:400.440000px;}
.yf4{bottom:404.580000px;}
.y1b5{bottom:406.920000px;}
.y120{bottom:408.540000px;}
.y1d{bottom:411.690000px;}
.ycc{bottom:412.320000px;}
.ya6{bottom:415.470000px;}
.y194{bottom:415.920000px;}
.y14c{bottom:417.990000px;}
.yf3{bottom:422.130000px;}
.ycb{bottom:424.560000px;}
.y90{bottom:425.100000px;}
.y11f{bottom:426.180000px;}
.y16b{bottom:426.540000px;}
.y1c{bottom:429.240000px;}
.y6a{bottom:430.230000px;}
.y193{bottom:433.470000px;}
.y14b{bottom:435.540000px;}
.yf2{bottom:439.770000px;}
.ya5{bottom:442.830000px;}
.y11e{bottom:443.730000px;}
.y16a{bottom:444.090000px;}
.y1b{bottom:446.880000px;}
.y69{bottom:448.680000px;}
.y1b4{bottom:451.110000px;}
.yca{bottom:451.830000px;}
.y8f{bottom:452.460000px;}
.y192{bottom:460.110000px;}
.y1a{bottom:464.430000px;}
.yf1{bottom:466.320000px;}
.y68{bottom:467.130000px;}
.y1b3{bottom:468.660000px;}
.ya4{bottom:470.130000px;}
.y11d{bottom:470.400000px;}
.y169{bottom:471.030000px;}
.y14a{bottom:471.210000px;}
.y191{bottom:477.690000px;}
.yc9{bottom:479.220000px;}
.y8e{bottom:479.850000px;}
.y19{bottom:482.010000px;}
.y67{bottom:485.520000px;}
.y149{bottom:488.760000px;}
.y1b2{bottom:495.330000px;}
.ya3{bottom:497.490000px;}
.y18{bottom:499.650000px;}
.yf0{bottom:501.900000px;}
.y66{bottom:503.970000px;}
.y190{bottom:504.330000px;}
.y11c{bottom:505.950000px;}
.y148{bottom:506.400000px;}
.yc8{bottom:506.580000px;}
.y17{bottom:517.200000px;}
.y168{bottom:519.360000px;}
.yef{bottom:519.540000px;}
.y18f{bottom:521.880000px;}
.y65{bottom:522.330000px;}
.y11b{bottom:523.500000px;}
.y147{bottom:523.950000px;}
.y8d{bottom:524.760000px;}
.ya2{bottom:524.850000px;}
.yc7{bottom:533.850000px;}
.y16{bottom:534.840000px;}
.y4a{bottom:536.730000px;}
.yee{bottom:537.090000px;}
.y1b1{bottom:539.430000px;}
.y11a{bottom:541.140000px;}
.y146{bottom:541.500000px;}
.y167{bottom:546.270000px;}
.y107{bottom:546.810000px;}
.y18e{bottom:548.430000px;}
.y8c{bottom:552.120000px;}
.ya1{bottom:552.210000px;}
.y15{bottom:552.390000px;}
.y49{bottom:554.280000px;}
.yed{bottom:554.730000px;}
.y119{bottom:558.690000px;}
.y64{bottom:558.780000px;}
.y145{bottom:559.140000px;}
.y18d{bottom:566.070000px;}
.y14{bottom:569.940000px;}
.y48{bottom:571.830000px;}
.yec{bottom:572.280000px;}
.y118{bottom:576.330000px;}
.y63{bottom:576.420000px;}
.y144{bottom:576.690000px;}
.y8b{bottom:579.480000px;}
.yc6{bottom:582.630000px;}
.y166{bottom:583.260000px;}
.y1b0{bottom:583.620000px;}
.y13{bottom:587.580000px;}
.y47{bottom:589.470000px;}
.yeb{bottom:589.830000px;}
.y18c{bottom:592.620000px;}
.y117{bottom:593.880000px;}
.y143{bottom:594.330000px;}
.y165{bottom:600.900000px;}
.y62{bottom:602.970000px;}
.y12{bottom:605.130000px;}
.y8a{bottom:606.750000px;}
.ya0{bottom:606.840000px;}
.y46{bottom:607.020000px;}
.yea{bottom:607.470000px;}
.y18b{bottom:610.260000px;}
.y116{bottom:611.430000px;}
.y142{bottom:611.880000px;}
.yc5{bottom:617.460000px;}
.y164{bottom:618.450000px;}
.y11{bottom:622.770000px;}
.ye9{bottom:625.020000px;}
.y1af{bottom:627.810000px;}
.y141{bottom:629.430000px;}
.yc4{bottom:629.610000px;}
.y45{bottom:633.660000px;}
.y89{bottom:634.110000px;}
.y9d{bottom:634.200000px;}
.y163{bottom:636.000000px;}
.y18a{bottom:636.810000px;}
.y61{bottom:638.520000px;}
.y10{bottom:640.320000px;}
.ye8{bottom:642.660000px;}
.y115{bottom:647.070000px;}
.y162{bottom:653.640000px;}
.y1ae{bottom:654.360000px;}
.yc3{bottom:655.440000px;}
.y60{bottom:656.160000px;}
.yf{bottom:657.870000px;}
.ye7{bottom:660.210000px;}
.y9f{bottom:661.470000px;}
.y189{bottom:663.360000px;}
.y114{bottom:664.620000px;}
.y44{bottom:669.570000px;}
.y161{bottom:671.190000px;}
.y1ad{bottom:672.000000px;}
.ye6{bottom:677.760000px;}
.y88{bottom:679.020000px;}
.y188{bottom:681.000000px;}
.yc2{bottom:681.270000px;}
.y113{bottom:682.260000px;}
.ye{bottom:684.870000px;}
.y5f{bottom:691.710000px;}
.ye5{bottom:695.400000px;}
.y160{bottom:698.100000px;}
.y187{bottom:698.550000px;}
.y112{bottom:699.810000px;}
.y87{bottom:706.380000px;}
.yc1{bottom:707.100000px;}
.y106{bottom:709.170000px;}
.y9c{bottom:710.250000px;}
.y1ac{bottom:716.190000px;}
.y111{bottom:717.360000px;}
.y43{bottom:717.810000px;}
.y130{bottom:722.760000px;}
.y186{bottom:725.190000px;}
.y5e{bottom:727.350000px;}
.ye4{bottom:730.950000px;}
.yd{bottom:731.580000px;}
.yc0{bottom:733.020000px;}
.y86{bottom:733.740000px;}
.y110{bottom:735.000000px;}
.y42{bottom:735.360000px;}
.y15f{bottom:735.450000px;}
.y104{bottom:740.490000px;}
.y185{bottom:742.740000px;}
.y9b{bottom:745.800000px;}
.ye3{bottom:748.590000px;}
.y10f{bottom:752.550000px;}
.y41{bottom:753.000000px;}
.ybf{bottom:758.850000px;}
.y1ab{bottom:760.290000px;}
.y85{bottom:761.010000px;}
.y5d{bottom:762.900000px;}
.ye2{bottom:766.140000px;}
.yc{bottom:767.130000px;}
.y184{bottom:769.290000px;}
.y10e{bottom:770.190000px;}
.y40{bottom:770.550000px;}
.y9a{bottom:772.350000px;}
.ye1{bottom:783.690000px;}
.ybe{bottom:784.680000px;}
.y183{bottom:786.930000px;}
.y10d{bottom:787.740000px;}
.y3f{bottom:788.190000px;}
.y84{bottom:788.370000px;}
.y99{bottom:789.270000px;}
.y5c{bottom:798.450000px;}
.ye0{bottom:801.330000px;}
.yb{bottom:802.950000px;}
.y98{bottom:803.310000px;}
.y1aa{bottom:804.480000px;}
.y10c{bottom:805.290000px;}
.y3e{bottom:805.740000px;}
.ybd{bottom:810.510000px;}
.y182{bottom:813.480000px;}
.y97{bottom:814.740000px;}
.y83{bottom:815.730000px;}
.y5b{bottom:816.090000px;}
.ydf{bottom:818.880000px;}
.y140{bottom:822.930000px;}
.y3d{bottom:823.290000px;}
.y181{bottom:831.030000px;}
.y5a{bottom:833.640000px;}
.ybb{bottom:836.340000px;}
.yde{bottom:836.520000px;}
.y13f{bottom:840.480000px;}
.y3c{bottom:840.930000px;}
.ya{bottom:842.730000px;}
.y81{bottom:843.000000px;}
.y1a9{bottom:848.670000px;}
.ydd{bottom:854.070000px;}
.y180{bottom:857.670000px;}
.y13e{bottom:858.030000px;}
.y10b{bottom:858.480000px;}
.y9{bottom:860.730000px;}
.yb9{bottom:862.170000px;}
.y59{bottom:869.280000px;}
.ydc{bottom:871.620000px;}
.y8{bottom:874.950000px;}
.y17f{bottom:875.220000px;}
.y13d{bottom:875.670000px;}
.y10a{bottom:876.030000px;}
.y3b{bottom:876.480000px;}
.y58{bottom:886.830000px;}
.y80{bottom:888.000000px;}
.ydb{bottom:889.260000px;}
.y1a8{bottom:892.860000px;}
.y13c{bottom:893.220000px;}
.y109{bottom:893.670000px;}
.y3a{bottom:894.030000px;}
.y7{bottom:896.730000px;}
.y17e{bottom:901.860000px;}
.y57{bottom:904.380000px;}
.yda{bottom:906.810000px;}
.y1a7{bottom:910.410000px;}
.y12f{bottom:910.500000px;}
.y13b{bottom:910.860000px;}
.y108{bottom:911.220000px;}
.y39{bottom:911.670000px;}
.y6{bottom:914.730000px;}
.y7f{bottom:915.270000px;}
.y17d{bottom:919.410000px;}
.y56{bottom:922.020000px;}
.yd9{bottom:924.450000px;}
.y13a{bottom:928.410000px;}
.y38{bottom:929.220000px;}
.y15e{bottom:933.720000px;}
.yb8{bottom:935.160000px;}
.y1a6{bottom:936.960000px;}
.y55{bottom:939.570000px;}
.yd8{bottom:942.000000px;}
.y7e{bottom:942.630000px;}
.y17c{bottom:945.960000px;}
.y37{bottom:946.860000px;}
.y5{bottom:947.040000px;}
.y1a5{bottom:954.600000px;}
.y54{bottom:957.210000px;}
.yd7{bottom:959.550000px;}
.y17b{bottom:963.600000px;}
.y139{bottom:963.960000px;}
.y36{bottom:964.410000px;}
.y7d{bottom:969.990000px;}
.yb7{bottom:970.080000px;}
.yd6{bottom:977.190000px;}
.y1a4{bottom:981.150000px;}
.y138{bottom:981.600000px;}
.y35{bottom:981.960000px;}
.yb6{bottom:982.230000px;}
.y4{bottom:985.380000px;}
.y17a{bottom:990.150000px;}
.y53{bottom:992.760000px;}
.yd5{bottom:994.740000px;}
.y7c{bottom:997.260000px;}
.y137{bottom:999.150000px;}
.y34{bottom:999.600000px;}
.y179{bottom:1007.790000px;}
.yb4{bottom:1009.590000px;}
.y3{bottom:1010.070000px;}
.y52{bottom:1010.340000px;}
.yd4{bottom:1012.320000px;}
.y136{bottom:1016.820000px;}
.y33{bottom:1017.180000px;}
.y7a{bottom:1024.650000px;}
.y1a3{bottom:1025.370000px;}
.y51{bottom:1027.980000px;}
.yd3{bottom:1029.960000px;}
.y135{bottom:1034.370000px;}
.y32{bottom:1034.820000px;}
.yb3{bottom:1036.890000px;}
.y50{bottom:1045.530000px;}
.yd2{bottom:1047.510000px;}
.y134{bottom:1051.920000px;}
.y78{bottom:1052.010000px;}
.y31{bottom:1052.370000px;}
.yb2{bottom:1064.250000px;}
.yd1{bottom:1065.150000px;}
.y133{bottom:1069.560000px;}
.y30{bottom:1069.920000px;}
.y4f{bottom:1072.080000px;}
.y178{bottom:1078.560000px;}
.y132{bottom:1087.110000px;}
.y2f{bottom:1087.560000px;}
.yb1{bottom:1091.610000px;}
.yd0{bottom:1091.700000px;}
.y177{bottom:1096.110000px;}
.y77{bottom:1100.700000px;}
.y4e{bottom:1104.750000px;}
.y2e{bottom:1105.110000px;}
.y1b8{bottom:1113.750000px;}
.y102{bottom:1122.570000px;}
.y2d{bottom:1122.750000px;}
.y76{bottom:1127.610000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.h1b{height:25.020000px;}
.h1a{height:25.110000px;}
.h10{height:26.550000px;}
.h18{height:26.580000px;}
.h12{height:26.640000px;}
.h13{height:26.670000px;}
.h2{height:30.022383px;}
.h1e{height:31.680000px;}
.h1c{height:31.770000px;}
.hf{height:34.681641px;}
.h6{height:37.132734px;}
.h3{height:39.111328px;}
.hb{height:41.614453px;}
.h14{height:44.190000px;}
.h1d{height:46.991602px;}
.h15{height:48.690000px;}
.h17{height:50.667539px;}
.h11{height:50.902383px;}
.h19{height:50.940000px;}
.h7{height:52.252734px;}
.h16{height:53.910000px;}
.h8{height:55.779258px;}
.h5{height:57.258984px;}
.he{height:57.918340px;}
.hc{height:59.973223px;}
.hd{height:61.793886px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:72.903516px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w19{width:1.440030px;}
.w18{width:1.530000px;}
.w1a{width:3.780000px;}
.wd{width:41.130000px;}
.w8{width:48.690000px;}
.w17{width:49.140000px;}
.w16{width:50.940000px;}
.w9{width:51.750000px;}
.wc{width:51.780000px;}
.w15{width:51.930000px;}
.w7{width:87.030000px;}
.w10{width:91.620000px;}
.w6{width:93.330000px;}
.wf{width:93.990000px;}
.w11{width:117.210000px;}
.w3{width:139.440000px;}
.w12{width:140.760000px;}
.wb{width:146.160000px;}
.w14{width:154.200000px;}
.w5{width:164.550000px;}
.w4{width:166.410000px;}
.wa{width:175.260000px;}
.w13{width:175.320000px;}
.we{width:262.260000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x39{left:7.740000px;}
.x1{left:68.040000px;}
.x37{left:80.909987px;}
.x38{left:85.319987px;}
.x35{left:95.039987px;}
.x26{left:104.669987px;}
.x58{left:111.239987px;}
.x40{left:128.070000px;}
.x27{left:132.389987px;}
.x52{left:159.840000px;}
.x48{left:185.790000px;}
.x10{left:192.719987px;}
.x3a{left:209.010000px;}
.xa{left:210.720000px;}
.x16{left:219.809987px;}
.x46{left:221.970000px;}
.xe{left:223.050000px;}
.x4a{left:229.350000px;}
.x51{left:239.069987px;}
.xb{left:241.230000px;}
.x6{left:243.570000px;}
.x17{left:249.149987px;}
.xf{left:250.950000px;}
.xc{left:252.660000px;}
.x7{left:271.830000px;}
.x20{left:273.539987px;}
.x4{left:302.880000px;}
.x21{left:304.229987px;}
.xd{left:327.180000px;}
.x5{left:330.510000px;}
.x18{left:346.889987px;}
.x8{left:349.680000px;}
.x34{left:356.969987px;}
.x2b{left:358.139987px;}
.x19{left:376.319987px;}
.x9{left:378.030000px;}
.x33{left:384.329987px;}
.x32{left:394.859987px;}
.x3d{left:396.209987px;}
.x22{left:398.189987px;}
.x4b{left:405.390000px;}
.x23{left:428.879987px;}
.x3f{left:446.609987px;}
.x49{left:448.770000px;}
.x41{left:450.930000px;}
.x4e{left:455.250000px;}
.x1e{left:478.829987px;}
.x47{left:484.950000px;}
.x1a{left:495.569987px;}
.x42{left:503.400000px;}
.x1f{left:506.819987px;}
.x4f{left:507.840000px;}
.x14{left:515.129987px;}
.x54{left:518.910000px;}
.x2e{left:520.979987px;}
.x28{left:523.049987px;}
.x1b{left:524.939987px;}
.x24{left:535.829987px;}
.x15{left:542.309987px;}
.x2f{left:548.969987px;}
.x29{left:551.849987px;}
.x36{left:556.259987px;}
.x4c{left:560.310000px;}
.x25{left:566.519987px;}
.x2a{left:580.469987px;}
.x55{left:592.440000px;}
.x30{left:605.399987px;}
.x2c{left:606.839987px;}
.x43{left:608.460000px;}
.x4d{left:612.960000px;}
.x1c{left:622.859987px;}
.x2d{left:636.269987px;}
.x1d{left:652.289987px;}
.x44{left:660.930000px;}
.x50{left:669.389987px;}
.x56{left:703.770000px;}
.x31{left:707.639987px;}
.x45{left:713.490000px;}
.x3b{left:723.300000px;}
.x53{left:734.730000px;}
.x3e{left:736.889987px;}
.x2{left:748.410000px;}
.x3c{left:772.710000px;}
.x3{left:776.850000px;}
.x12{left:789.449987px;}
.x57{left:794.490000px;}
.x11{left:800.339987px;}
.x13{left:818.969987px;}
@media print{
.v6{vertical-align:-26.560000pt;}
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v4{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.920000pt;}
.v2{vertical-align:13.440000pt;}
.ls34{letter-spacing:-0.576000pt;}
.ls3b{letter-spacing:-0.395200pt;}
.ls26{letter-spacing:-0.354667pt;}
.lsf{letter-spacing:-0.319467pt;}
.ls33{letter-spacing:-0.266133pt;}
.ls22{letter-spacing:-0.216533pt;}
.lsd{letter-spacing:-0.165867pt;}
.ls27{letter-spacing:-0.158933pt;}
.ls2a{letter-spacing:-0.144533pt;}
.ls21{letter-spacing:-0.136533pt;}
.ls2d{letter-spacing:-0.126933pt;}
.ls2e{letter-spacing:-0.125867pt;}
.ls8{letter-spacing:-0.120000pt;}
.ls10{letter-spacing:-0.107733pt;}
.ls29{letter-spacing:-0.104533pt;}
.ls30{letter-spacing:-0.082133pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsc{letter-spacing:-0.075200pt;}
.ls19{letter-spacing:-0.072000pt;}
.ls2c{letter-spacing:-0.060267pt;}
.lsb{letter-spacing:-0.056533pt;}
.ls31{letter-spacing:-0.034560pt;}
.ls3c{letter-spacing:-0.033600pt;}
.ls2b{letter-spacing:-0.013120pt;}
.lsa{letter-spacing:-0.007467pt;}
.ls25{letter-spacing:-0.002880pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.000318pt;}
.ls11{letter-spacing:0.021813pt;}
.ls12{letter-spacing:0.040320pt;}
.ls13{letter-spacing:0.043520pt;}
.ls23{letter-spacing:0.047360pt;}
.ls16{letter-spacing:0.053760pt;}
.ls1e{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.058240pt;}
.ls36{letter-spacing:0.060800pt;}
.ls4{letter-spacing:0.065920pt;}
.ls32{letter-spacing:0.066133pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls39{letter-spacing:0.087467pt;}
.ls35{letter-spacing:0.098987pt;}
.ls1c{letter-spacing:0.103467pt;}
.ls2f{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.128000pt;}
.ls28{letter-spacing:0.142933pt;}
.lse{letter-spacing:0.154133pt;}
.ls9{letter-spacing:0.155200pt;}
.ls14{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.160427pt;}
.ls24{letter-spacing:0.177067pt;}
.ls1a{letter-spacing:0.238933pt;}
.ls38{letter-spacing:0.266667pt;}
.ls17{letter-spacing:0.312320pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:2.323200pt;}
.ls18{letter-spacing:5.203200pt;}
.ls3a{letter-spacing:42.423680pt;}
.ls1f{letter-spacing:56.503680pt;}
.ls37{letter-spacing:71.863680pt;}
.ls20{letter-spacing:75.296000pt;}
.ws3{word-spacing:-53.440000pt;}
.ws1c{word-spacing:-53.314133pt;}
.ws1b{word-spacing:-53.313067pt;}
.ws23{word-spacing:-42.560000pt;}
.ws2{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.ws13{word-spacing:-11.933867pt;}
.ws7{word-spacing:-11.910933pt;}
.ws17{word-spacing:-11.899733pt;}
.ws1d{word-spacing:-11.863467pt;}
.wse{word-spacing:-11.860267pt;}
.ws24{word-spacing:-11.844267pt;}
.ws20{word-spacing:-11.822933pt;}
.ws12{word-spacing:-11.804160pt;}
.wsc{word-spacing:-11.800320pt;}
.wsd{word-spacing:-11.757118pt;}
.ws5{word-spacing:-11.756800pt;}
.ws14{word-spacing:-11.753920pt;}
.ws19{word-spacing:-11.743680pt;}
.ws25{word-spacing:-11.723200pt;}
.ws1f{word-spacing:-11.722240pt;}
.wsf{word-spacing:-11.700267pt;}
.ws1a{word-spacing:-11.696533pt;}
.ws22{word-spacing:-11.674667pt;}
.ws18{word-spacing:-11.652267pt;}
.ws10{word-spacing:-11.620267pt;}
.ws16{word-spacing:-11.597867pt;}
.ws6{word-spacing:-11.590933pt;}
.ws11{word-spacing:-11.540267pt;}
.ws21{word-spacing:-11.490667pt;}
.ws8{word-spacing:-11.437333pt;}
.ws15{word-spacing:-11.402133pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws4{word-spacing:-7.603200pt;}
.ws1e{word-spacing:-7.521067pt;}
.wsa{word-spacing:0.000000pt;}
.ws9{word-spacing:3.826560pt;}
._14{margin-left:-8.412480pt;}
._a{margin-left:-3.045866pt;}
._8{margin-left:-2.084267pt;}
._3{margin-left:-0.984747pt;}
._2{width:0.936427pt;}
._d{width:1.974613pt;}
._c{width:2.939200pt;}
._6{width:4.328533pt;}
._7{width:5.843202pt;}
._b{width:7.428267pt;}
._e{width:8.573013pt;}
._9{width:9.619200pt;}
._4{width:10.644053pt;}
._5{width:13.520534pt;}
._13{width:14.637760pt;}
._12{width:16.032000pt;}
._1{width:17.379840pt;}
._0{width:18.408960pt;}
._15{width:20.168000pt;}
._16{width:21.087680pt;}
._17{width:22.211307pt;}
._10{width:25.589973pt;}
._f{width:26.506240pt;}
._11{width:60.921600pt;}
._18{width:249.457920pt;}
._19{width:250.366400pt;}
.fs8{font-size:32.000000pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.ybc{bottom:6.880000pt;}
.y79{bottom:6.960000pt;}
.yb5{bottom:6.986667pt;}
.y7b{bottom:7.040000pt;}
.y95{bottom:10.960000pt;}
.y105{bottom:18.400000pt;}
.y103{bottom:18.480000pt;}
.y82{bottom:22.640000pt;}
.y94{bottom:26.640000pt;}
.yba{bottom:29.920000pt;}
.y9e{bottom:31.280000pt;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.ycf{bottom:99.066667pt;}
.y1a2{bottom:102.826667pt;}
.y15d{bottom:105.786667pt;}
.y1a1{bottom:118.506667pt;}
.y4d{bottom:118.906667pt;}
.y15c{bottom:121.466667pt;}
.yb0{bottom:123.386667pt;}
.y29{bottom:125.226667pt;}
.y176{bottom:127.946667pt;}
.y12e{bottom:128.346667pt;}
.yce{bottom:130.026667pt;}
.y1b7{bottom:134.106667pt;}
.y75{bottom:134.426667pt;}
.y15b{bottom:137.066667pt;}
.ycd{bottom:140.186667pt;}
.y101{bottom:140.426667pt;}
.y28{bottom:140.826667pt;}
.y1a0{bottom:142.106667pt;}
.y175{bottom:143.546667pt;}
.y12d{bottom:143.946667pt;}
.y4c{bottom:149.866667pt;}
.yaf{bottom:151.866667pt;}
.y15a{bottom:152.746667pt;}
.y100{bottom:156.026667pt;}
.y27{bottom:156.506667pt;}
.y19f{bottom:157.786667pt;}
.y12c{bottom:159.626667pt;}
.y4b{bottom:160.026667pt;}
.yae{bottom:162.746667pt;}
.y74{bottom:166.026667pt;}
.y174{bottom:167.226667pt;}
.y159{bottom:168.346667pt;}
.yff{bottom:171.706667pt;}
.y26{bottom:172.106667pt;}
.y19e{bottom:173.386667pt;}
.y12b{bottom:175.226667pt;}
.y173{bottom:182.826667pt;}
.y158{bottom:183.946667pt;}
.yad{bottom:186.986667pt;}
.yfe{bottom:187.306667pt;}
.y25{bottom:187.786667pt;}
.y12a{bottom:190.826667pt;}
.y19d{bottom:196.986667pt;}
.y73{bottom:197.706667pt;}
.y157{bottom:199.626667pt;}
.yfd{bottom:202.906667pt;}
.y24{bottom:203.386667pt;}
.y129{bottom:206.506667pt;}
.yac{bottom:211.306667pt;}
.y19c{bottom:212.666667pt;}
.y156{bottom:215.226667pt;}
.y23{bottom:218.986667pt;}
.y128{bottom:222.106667pt;}
.y71{bottom:230.506667pt;}
.y155{bottom:230.826667pt;}
.yfc{bottom:234.586667pt;}
.y22{bottom:234.666667pt;}
.yab{bottom:235.626667pt;}
.y19b{bottom:236.266667pt;}
.y72{bottom:237.146667pt;}
.y127{bottom:237.786667pt;}
.y172{bottom:245.706667pt;}
.y154{bottom:246.506667pt;}
.y70{bottom:248.666667pt;}
.yfb{bottom:250.186667pt;}
.y21{bottom:250.266667pt;}
.y19a{bottom:251.946667pt;}
.y126{bottom:253.386667pt;}
.yaa{bottom:259.866667pt;}
.y171{bottom:261.386667pt;}
.y153{bottom:262.106667pt;}
.y6f{bottom:264.346667pt;}
.yfa{bottom:265.866667pt;}
.y199{bottom:267.546667pt;}
.y125{bottom:268.986667pt;}
.y20{bottom:274.186667pt;}
.y96{bottom:274.586667pt;}
.y1b6{bottom:275.546667pt;}
.y152{bottom:277.786667pt;}
.y6e{bottom:279.946667pt;}
.yf9{bottom:281.466667pt;}
.y124{bottom:284.666667pt;}
.y170{bottom:284.986667pt;}
.y93{bottom:285.386667pt;}
.y198{bottom:291.146667pt;}
.y151{bottom:293.386667pt;}
.yf8{bottom:297.066667pt;}
.y123{bottom:300.266667pt;}
.y16f{bottom:300.666667pt;}
.ya9{bottom:303.226667pt;}
.y6d{bottom:303.626667pt;}
.y197{bottom:306.826667pt;}
.y150{bottom:308.986667pt;}
.yf7{bottom:312.746667pt;}
.y122{bottom:315.946667pt;}
.y16e{bottom:316.266667pt;}
.y1f{bottom:317.386667pt;}
.y14f{bottom:324.666667pt;}
.yf6{bottom:328.346667pt;}
.y92{bottom:329.306667pt;}
.y196{bottom:330.426667pt;}
.ya8{bottom:334.186667pt;}
.y6c{bottom:335.226667pt;}
.y16d{bottom:339.866667pt;}
.y14e{bottom:340.266667pt;}
.y131{bottom:343.866667pt;}
.yf5{bottom:343.946667pt;}
.ya7{bottom:344.986667pt;}
.y195{bottom:346.106667pt;}
.y121{bottom:347.546667pt;}
.y1e{bottom:350.266667pt;}
.y6b{bottom:350.826667pt;}
.y91{bottom:353.626667pt;}
.y16c{bottom:355.546667pt;}
.y14d{bottom:355.946667pt;}
.yf4{bottom:359.626667pt;}
.y1b5{bottom:361.706667pt;}
.y120{bottom:363.146667pt;}
.y1d{bottom:365.946667pt;}
.ycc{bottom:366.506667pt;}
.ya6{bottom:369.306667pt;}
.y194{bottom:369.706667pt;}
.y14c{bottom:371.546667pt;}
.yf3{bottom:375.226667pt;}
.ycb{bottom:377.386667pt;}
.y90{bottom:377.866667pt;}
.y11f{bottom:378.826667pt;}
.y16b{bottom:379.146667pt;}
.y1c{bottom:381.546667pt;}
.y6a{bottom:382.426667pt;}
.y193{bottom:385.306667pt;}
.y14b{bottom:387.146667pt;}
.yf2{bottom:390.906667pt;}
.ya5{bottom:393.626667pt;}
.y11e{bottom:394.426667pt;}
.y16a{bottom:394.746667pt;}
.y1b{bottom:397.226667pt;}
.y69{bottom:398.826667pt;}
.y1b4{bottom:400.986667pt;}
.yca{bottom:401.626667pt;}
.y8f{bottom:402.186667pt;}
.y192{bottom:408.986667pt;}
.y1a{bottom:412.826667pt;}
.yf1{bottom:414.506667pt;}
.y68{bottom:415.226667pt;}
.y1b3{bottom:416.586667pt;}
.ya4{bottom:417.893333pt;}
.y11d{bottom:418.133333pt;}
.y169{bottom:418.693333pt;}
.y14a{bottom:418.853333pt;}
.y191{bottom:424.613333pt;}
.yc9{bottom:425.973333pt;}
.y8e{bottom:426.533333pt;}
.y19{bottom:428.453333pt;}
.y67{bottom:431.573333pt;}
.y149{bottom:434.453333pt;}
.y1b2{bottom:440.293333pt;}
.ya3{bottom:442.213333pt;}
.y18{bottom:444.133333pt;}
.yf0{bottom:446.133333pt;}
.y66{bottom:447.973333pt;}
.y190{bottom:448.293333pt;}
.y11c{bottom:449.733333pt;}
.y148{bottom:450.133333pt;}
.yc8{bottom:450.293333pt;}
.y17{bottom:459.733333pt;}
.y168{bottom:461.653333pt;}
.yef{bottom:461.813333pt;}
.y18f{bottom:463.893333pt;}
.y65{bottom:464.293333pt;}
.y11b{bottom:465.333333pt;}
.y147{bottom:465.733333pt;}
.y8d{bottom:466.453333pt;}
.ya2{bottom:466.533333pt;}
.yc7{bottom:474.533333pt;}
.y16{bottom:475.413333pt;}
.y4a{bottom:477.093333pt;}
.yee{bottom:477.413333pt;}
.y1b1{bottom:479.493333pt;}
.y11a{bottom:481.013333pt;}
.y146{bottom:481.333333pt;}
.y167{bottom:485.573333pt;}
.y107{bottom:486.053333pt;}
.y18e{bottom:487.493333pt;}
.y8c{bottom:490.773333pt;}
.ya1{bottom:490.853333pt;}
.y15{bottom:491.013333pt;}
.y49{bottom:492.693333pt;}
.yed{bottom:493.093333pt;}
.y119{bottom:496.613333pt;}
.y64{bottom:496.693333pt;}
.y145{bottom:497.013333pt;}
.y18d{bottom:503.173333pt;}
.y14{bottom:506.613333pt;}
.y48{bottom:508.293333pt;}
.yec{bottom:508.693333pt;}
.y118{bottom:512.293333pt;}
.y63{bottom:512.373333pt;}
.y144{bottom:512.613333pt;}
.y8b{bottom:515.093333pt;}
.yc6{bottom:517.893333pt;}
.y166{bottom:518.453333pt;}
.y1b0{bottom:518.773333pt;}
.y13{bottom:522.293333pt;}
.y47{bottom:523.973333pt;}
.yeb{bottom:524.293333pt;}
.y18c{bottom:526.773333pt;}
.y117{bottom:527.893333pt;}
.y143{bottom:528.293333pt;}
.y165{bottom:534.133333pt;}
.y62{bottom:535.973333pt;}
.y12{bottom:537.893333pt;}
.y8a{bottom:539.333333pt;}
.ya0{bottom:539.413333pt;}
.y46{bottom:539.573333pt;}
.yea{bottom:539.973333pt;}
.y18b{bottom:542.453333pt;}
.y116{bottom:543.493333pt;}
.y142{bottom:543.893333pt;}
.yc5{bottom:548.853333pt;}
.y164{bottom:549.733333pt;}
.y11{bottom:553.573333pt;}
.ye9{bottom:555.573333pt;}
.y1af{bottom:558.053333pt;}
.y141{bottom:559.493333pt;}
.yc4{bottom:559.653333pt;}
.y45{bottom:563.253333pt;}
.y89{bottom:563.653333pt;}
.y9d{bottom:563.733333pt;}
.y163{bottom:565.333333pt;}
.y18a{bottom:566.053333pt;}
.y61{bottom:567.573333pt;}
.y10{bottom:569.173333pt;}
.ye8{bottom:571.253333pt;}
.y115{bottom:575.173333pt;}
.y162{bottom:581.013333pt;}
.y1ae{bottom:581.653333pt;}
.yc3{bottom:582.613333pt;}
.y60{bottom:583.253333pt;}
.yf{bottom:584.773333pt;}
.ye7{bottom:586.853333pt;}
.y9f{bottom:587.973333pt;}
.y189{bottom:589.653333pt;}
.y114{bottom:590.773333pt;}
.y44{bottom:595.173333pt;}
.y161{bottom:596.613333pt;}
.y1ad{bottom:597.333333pt;}
.ye6{bottom:602.453333pt;}
.y88{bottom:603.573333pt;}
.y188{bottom:605.333333pt;}
.yc2{bottom:605.573333pt;}
.y113{bottom:606.453333pt;}
.ye{bottom:608.773333pt;}
.y5f{bottom:614.853333pt;}
.ye5{bottom:618.133333pt;}
.y160{bottom:620.533333pt;}
.y187{bottom:620.933333pt;}
.y112{bottom:622.053333pt;}
.y87{bottom:627.893333pt;}
.yc1{bottom:628.533333pt;}
.y106{bottom:630.373333pt;}
.y9c{bottom:631.333333pt;}
.y1ac{bottom:636.613333pt;}
.y111{bottom:637.653333pt;}
.y43{bottom:638.053333pt;}
.y130{bottom:642.453333pt;}
.y186{bottom:644.613333pt;}
.y5e{bottom:646.533333pt;}
.ye4{bottom:649.733333pt;}
.yd{bottom:650.293333pt;}
.yc0{bottom:651.573333pt;}
.y86{bottom:652.213333pt;}
.y110{bottom:653.333333pt;}
.y42{bottom:653.653333pt;}
.y15f{bottom:653.733333pt;}
.y104{bottom:658.213333pt;}
.y185{bottom:660.213333pt;}
.y9b{bottom:662.933333pt;}
.ye3{bottom:665.413333pt;}
.y10f{bottom:668.933333pt;}
.y41{bottom:669.333333pt;}
.ybf{bottom:674.533333pt;}
.y1ab{bottom:675.813333pt;}
.y85{bottom:676.453333pt;}
.y5d{bottom:678.133333pt;}
.ye2{bottom:681.013333pt;}
.yc{bottom:681.893333pt;}
.y184{bottom:683.813333pt;}
.y10e{bottom:684.613333pt;}
.y40{bottom:684.933333pt;}
.y9a{bottom:686.533333pt;}
.ye1{bottom:696.613333pt;}
.ybe{bottom:697.493333pt;}
.y183{bottom:699.493333pt;}
.y10d{bottom:700.213333pt;}
.y3f{bottom:700.613333pt;}
.y84{bottom:700.773333pt;}
.y99{bottom:701.573333pt;}
.y5c{bottom:709.733333pt;}
.ye0{bottom:712.293333pt;}
.yb{bottom:713.733333pt;}
.y98{bottom:714.053333pt;}
.y1aa{bottom:715.093333pt;}
.y10c{bottom:715.813333pt;}
.y3e{bottom:716.213333pt;}
.ybd{bottom:720.453333pt;}
.y182{bottom:723.093333pt;}
.y97{bottom:724.213333pt;}
.y83{bottom:725.093333pt;}
.y5b{bottom:725.413333pt;}
.ydf{bottom:727.893333pt;}
.y140{bottom:731.493333pt;}
.y3d{bottom:731.813333pt;}
.y181{bottom:738.693333pt;}
.y5a{bottom:741.013333pt;}
.ybb{bottom:743.413333pt;}
.yde{bottom:743.573333pt;}
.y13f{bottom:747.093333pt;}
.y3c{bottom:747.493333pt;}
.ya{bottom:749.093333pt;}
.y81{bottom:749.333333pt;}
.y1a9{bottom:754.373333pt;}
.ydd{bottom:759.173333pt;}
.y180{bottom:762.373333pt;}
.y13e{bottom:762.693333pt;}
.y10b{bottom:763.093333pt;}
.y9{bottom:765.093333pt;}
.yb9{bottom:766.373333pt;}
.y59{bottom:772.693333pt;}
.ydc{bottom:774.773333pt;}
.y8{bottom:777.733333pt;}
.y17f{bottom:777.973333pt;}
.y13d{bottom:778.373333pt;}
.y10a{bottom:778.693333pt;}
.y3b{bottom:779.093333pt;}
.y58{bottom:788.293333pt;}
.y80{bottom:789.333333pt;}
.ydb{bottom:790.453333pt;}
.y1a8{bottom:793.653333pt;}
.y13c{bottom:793.973333pt;}
.y109{bottom:794.373333pt;}
.y3a{bottom:794.693333pt;}
.y7{bottom:797.093333pt;}
.y17e{bottom:801.653333pt;}
.y57{bottom:803.893333pt;}
.yda{bottom:806.053333pt;}
.y1a7{bottom:809.253333pt;}
.y12f{bottom:809.333333pt;}
.y13b{bottom:809.653333pt;}
.y108{bottom:809.973333pt;}
.y39{bottom:810.373333pt;}
.y6{bottom:813.093333pt;}
.y7f{bottom:813.573333pt;}
.y17d{bottom:817.253333pt;}
.y56{bottom:819.573333pt;}
.yd9{bottom:821.733333pt;}
.y13a{bottom:825.253333pt;}
.y38{bottom:825.973333pt;}
.y15e{bottom:829.973333pt;}
.yb8{bottom:831.253333pt;}
.y1a6{bottom:832.853333pt;}
.y55{bottom:835.173333pt;}
.yd8{bottom:837.333333pt;}
.y7e{bottom:837.893333pt;}
.y17c{bottom:840.853333pt;}
.y37{bottom:841.653333pt;}
.y5{bottom:841.813333pt;}
.y1a5{bottom:848.533333pt;}
.y54{bottom:850.853333pt;}
.yd7{bottom:852.933333pt;}
.y17b{bottom:856.533333pt;}
.y139{bottom:856.853333pt;}
.y36{bottom:857.253333pt;}
.y7d{bottom:862.213333pt;}
.yb7{bottom:862.293333pt;}
.yd6{bottom:868.613333pt;}
.y1a4{bottom:872.133333pt;}
.y138{bottom:872.533333pt;}
.y35{bottom:872.853333pt;}
.yb6{bottom:873.093333pt;}
.y4{bottom:875.893333pt;}
.y17a{bottom:880.133333pt;}
.y53{bottom:882.453333pt;}
.yd5{bottom:884.213333pt;}
.y7c{bottom:886.453333pt;}
.y137{bottom:888.133333pt;}
.y34{bottom:888.533333pt;}
.y179{bottom:895.813333pt;}
.yb4{bottom:897.413333pt;}
.y3{bottom:897.840000pt;}
.y52{bottom:898.080000pt;}
.yd4{bottom:899.840000pt;}
.y136{bottom:903.840000pt;}
.y33{bottom:904.160000pt;}
.y7a{bottom:910.800000pt;}
.y1a3{bottom:911.440000pt;}
.y51{bottom:913.760000pt;}
.yd3{bottom:915.520000pt;}
.y135{bottom:919.440000pt;}
.y32{bottom:919.840000pt;}
.yb3{bottom:921.680000pt;}
.y50{bottom:929.360000pt;}
.yd2{bottom:931.120000pt;}
.y134{bottom:935.040000pt;}
.y78{bottom:935.120000pt;}
.y31{bottom:935.440000pt;}
.yb2{bottom:946.000000pt;}
.yd1{bottom:946.800000pt;}
.y133{bottom:950.720000pt;}
.y30{bottom:951.040000pt;}
.y4f{bottom:952.960000pt;}
.y178{bottom:958.720000pt;}
.y132{bottom:966.320000pt;}
.y2f{bottom:966.720000pt;}
.yb1{bottom:970.320000pt;}
.yd0{bottom:970.400000pt;}
.y177{bottom:974.320000pt;}
.y77{bottom:978.400000pt;}
.y4e{bottom:982.000000pt;}
.y2e{bottom:982.320000pt;}
.y1b8{bottom:990.000000pt;}
.y102{bottom:997.840000pt;}
.y2d{bottom:998.000000pt;}
.y76{bottom:1002.320000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.h1b{height:22.240000pt;}
.h1a{height:22.320000pt;}
.h10{height:23.600000pt;}
.h18{height:23.626667pt;}
.h12{height:23.680000pt;}
.h13{height:23.706667pt;}
.h2{height:26.686562pt;}
.h1e{height:28.160000pt;}
.h1c{height:28.240000pt;}
.hf{height:30.828125pt;}
.h6{height:33.006875pt;}
.h3{height:34.765625pt;}
.hb{height:36.990625pt;}
.h14{height:39.280000pt;}
.h1d{height:41.770312pt;}
.h15{height:43.280000pt;}
.h17{height:45.037812pt;}
.h11{height:45.246562pt;}
.h19{height:45.280000pt;}
.h7{height:46.446875pt;}
.h16{height:47.920000pt;}
.h8{height:49.581562pt;}
.h5{height:50.896875pt;}
.he{height:51.482969pt;}
.hc{height:53.309531pt;}
.hd{height:54.927899pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:64.803125pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w19{width:1.280027pt;}
.w18{width:1.360000pt;}
.w1a{width:3.360000pt;}
.wd{width:36.560000pt;}
.w8{width:43.280000pt;}
.w17{width:43.680000pt;}
.w16{width:45.280000pt;}
.w9{width:46.000000pt;}
.wc{width:46.026667pt;}
.w15{width:46.160000pt;}
.w7{width:77.360000pt;}
.w10{width:81.440000pt;}
.w6{width:82.960000pt;}
.wf{width:83.546667pt;}
.w11{width:104.186667pt;}
.w3{width:123.946667pt;}
.w12{width:125.120000pt;}
.wb{width:129.920000pt;}
.w14{width:137.066667pt;}
.w5{width:146.266667pt;}
.w4{width:147.920000pt;}
.wa{width:155.786667pt;}
.w13{width:155.840000pt;}
.we{width:233.120000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x39{left:6.880000pt;}
.x1{left:60.480000pt;}
.x37{left:71.919988pt;}
.x38{left:75.839988pt;}
.x35{left:84.479988pt;}
.x26{left:93.039988pt;}
.x58{left:98.879988pt;}
.x40{left:113.840000pt;}
.x27{left:117.679988pt;}
.x52{left:142.080000pt;}
.x48{left:165.146667pt;}
.x10{left:171.306655pt;}
.x3a{left:185.786667pt;}
.xa{left:187.306667pt;}
.x16{left:195.386655pt;}
.x46{left:197.306667pt;}
.xe{left:198.266667pt;}
.x4a{left:203.866667pt;}
.x51{left:212.506655pt;}
.xb{left:214.426667pt;}
.x6{left:216.506667pt;}
.x17{left:221.466655pt;}
.xf{left:223.066667pt;}
.xc{left:224.586667pt;}
.x7{left:241.626667pt;}
.x20{left:243.146655pt;}
.x4{left:269.226667pt;}
.x21{left:270.426655pt;}
.xd{left:290.826667pt;}
.x5{left:293.786667pt;}
.x18{left:308.346655pt;}
.x8{left:310.826667pt;}
.x34{left:317.306655pt;}
.x2b{left:318.346655pt;}
.x19{left:334.506655pt;}
.x9{left:336.026667pt;}
.x33{left:341.626655pt;}
.x32{left:350.986655pt;}
.x3d{left:352.186655pt;}
.x22{left:353.946655pt;}
.x4b{left:360.346667pt;}
.x23{left:381.226655pt;}
.x3f{left:396.986655pt;}
.x49{left:398.906667pt;}
.x41{left:400.826667pt;}
.x4e{left:404.666667pt;}
.x1e{left:425.626655pt;}
.x47{left:431.066667pt;}
.x1a{left:440.506655pt;}
.x42{left:447.466667pt;}
.x1f{left:450.506655pt;}
.x4f{left:451.413333pt;}
.x14{left:457.893322pt;}
.x54{left:461.253333pt;}
.x2e{left:463.093322pt;}
.x28{left:464.933322pt;}
.x1b{left:466.613322pt;}
.x24{left:476.293322pt;}
.x15{left:482.053322pt;}
.x2f{left:487.973322pt;}
.x29{left:490.533322pt;}
.x36{left:494.453322pt;}
.x4c{left:498.053333pt;}
.x25{left:503.573322pt;}
.x2a{left:515.973322pt;}
.x55{left:526.613333pt;}
.x30{left:538.133322pt;}
.x2c{left:539.413322pt;}
.x43{left:540.853333pt;}
.x4d{left:544.853333pt;}
.x1c{left:553.653322pt;}
.x2d{left:565.573322pt;}
.x1d{left:579.813322pt;}
.x44{left:587.493333pt;}
.x50{left:595.013322pt;}
.x56{left:625.573333pt;}
.x31{left:629.013322pt;}
.x45{left:634.213333pt;}
.x3b{left:642.933333pt;}
.x53{left:653.093333pt;}
.x3e{left:655.013322pt;}
.x2{left:665.253333pt;}
.x3c{left:686.853333pt;}
.x3{left:690.533333pt;}
.x12{left:701.733322pt;}
.x57{left:706.213333pt;}
.x11{left:711.413322pt;}
.x13{left:727.973322pt;}
}




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