
    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_4552529ecf13b5575e7011b1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_decb5c5605de16e61d8d5f4a.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a424cdcac1cc77418512fcd0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.331055;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_c9ac918efe9aa1bdc663e016.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.331055;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_c6838d01facbf4073d5fd4d5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_111b58c29842e4bc17c5c456.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.736816;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_95dc6dd19b853c79fa44bc8f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.049000;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_9e34b49ac43b5599e7f1b7e9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.049000;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_46448410d19f8472eca100d9.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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_2a17a4b7ebf8f107ac088fe8.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;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_540082dcfab749f7b6f02893.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.966309;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_4e38c60a89579157a8dbb402.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.844000;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_ec5c4ddb69f12d4554fd0299.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_592e0a7d31deec3a7fb141ac.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_56dbb336d7fd0c93c1308e8a.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_705287463e74d6afbffe1e30.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.v1{vertical-align:-78.929661px;}
.v2{vertical-align:-74.880000px;}
.v3{vertical-align:-52.140000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:52.140000px;}
.v5{vertical-align:63.360000px;}
.ls12{letter-spacing:-11.040000px;}
.ls25{letter-spacing:-8.095350px;}
.ls2e{letter-spacing:-1.422000px;}
.ls2f{letter-spacing:-0.864000px;}
.ls20{letter-spacing:-0.853806px;}
.ls1f{letter-spacing:-0.714668px;}
.ls16{letter-spacing:-0.702000px;}
.ls30{letter-spacing:-0.648000px;}
.ls1c{letter-spacing:-0.630000px;}
.ls17{letter-spacing:-0.573000px;}
.ls2c{letter-spacing:-0.570000px;}
.ls23{letter-spacing:-0.524933px;}
.ls39{letter-spacing:-0.466800px;}
.ls33{letter-spacing:-0.456000px;}
.ls32{letter-spacing:-0.382800px;}
.ls22{letter-spacing:-0.276380px;}
.ls1d{letter-spacing:-0.234006px;}
.ls31{letter-spacing:-0.216000px;}
.ls21{letter-spacing:-0.185308px;}
.ls10{letter-spacing:-0.178800px;}
.ls19{letter-spacing:-0.089400px;}
.ls24{letter-spacing:-0.082218px;}
.ls1b{letter-spacing:-0.072000px;}
.lsd{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.020160px;}
.ls18{letter-spacing:0.089400px;}
.ls8{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.227682px;}
.ls38{letter-spacing:0.234600px;}
.ls26{letter-spacing:0.336000px;}
.ls6{letter-spacing:0.354172px;}
.ls15{letter-spacing:0.388800px;}
.ls3a{letter-spacing:0.427800px;}
.lsf{letter-spacing:0.452400px;}
.ls0{letter-spacing:0.466560px;}
.ls3{letter-spacing:0.466800px;}
.lsb{letter-spacing:0.525186px;}
.lsa{letter-spacing:0.576000px;}
.ls2{letter-spacing:0.586560px;}
.ls2a{letter-spacing:0.588000px;}
.ls2b{letter-spacing:0.598800px;}
.ls9{letter-spacing:0.599040px;}
.ls5{letter-spacing:0.607151px;}
.lsc{letter-spacing:0.661795px;}
.ls1e{letter-spacing:0.664072px;}
.ls35{letter-spacing:0.665280px;}
.ls4{letter-spacing:0.720000px;}
.ls14{letter-spacing:0.738000px;}
.ls28{letter-spacing:0.756000px;}
.ls1a{letter-spacing:0.792000px;}
.ls13{letter-spacing:1.260000px;}
.ls29{letter-spacing:1.324800px;}
.lse{letter-spacing:1.440000px;}
.ls37{letter-spacing:1.468800px;}
.ls11{letter-spacing:1.854000px;}
.ls36{letter-spacing:2.016000px;}
.ls34{letter-spacing:4.320000px;}
.ls27{letter-spacing:4.392000px;}
.ls3c{letter-spacing:16.306560px;}
.ls3b{letter-spacing:46.546560px;}
.ls2d{letter-spacing:47.664000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10{word-spacing:-72.000000px;}
.ws8{word-spacing:-28.763790px;}
.ws11{word-spacing:-27.288000px;}
.ws2{word-spacing:-26.642880px;}
.ws16{word-spacing:-26.640000px;}
.ws15{word-spacing:-23.520720px;}
.ws9{word-spacing:-22.921920px;}
.ws3{word-spacing:-19.293120px;}
.wsd{word-spacing:-18.399718px;}
.ws1{word-spacing:-18.000000px;}
.ws4{word-spacing:-16.813440px;}
.ws0{word-spacing:-16.560000px;}
.wse{word-spacing:-16.034864px;}
.wsa{word-spacing:-15.140160px;}
.ws5{word-spacing:-15.120000px;}
.ws1a{word-spacing:-14.653200px;}
.ws14{word-spacing:-13.698000px;}
.wsc{word-spacing:-13.050000px;}
.ws13{word-spacing:-12.600000px;}
.ws17{word-spacing:-11.983920px;}
.ws18{word-spacing:-11.943264px;}
.ws12{word-spacing:-11.880000px;}
.ws6{word-spacing:-11.160000px;}
.ws7{word-spacing:-10.440000px;}
.wsb{word-spacing:-8.928000px;}
.wsf{word-spacing:0.000000px;}
.ws19{word-spacing:159.014400px;}
._9{margin-left:-9.278400px;}
._18{margin-left:-7.486465px;}
._7{margin-left:-3.839040px;}
._5{margin-left:-2.119680px;}
._6{margin-left:-1.097280px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._c{width:4.486855px;}
._11{width:5.919725px;}
._12{width:7.058133px;}
._a{width:8.588160px;}
._13{width:10.169783px;}
._14{width:11.384086px;}
._f{width:12.796212px;}
._17{width:14.270324px;}
._19{width:15.275520px;}
._b{width:16.335297px;}
._10{width:17.486114px;}
._e{width:19.463906px;}
._d{width:20.946718px;}
._8{width:22.393440px;}
._15{width:25.251840px;}
._16{width:30.211200px;}
._1c{width:100.495680px;}
._1e{width:110.030688px;}
._3{width:118.920000px;}
._20{width:144.813600px;}
._1f{width:377.139840px;}
._4{width:382.500000px;}
._1d{width:448.188000px;}
._1a{width:570.660000px;}
._1b{width:573.051840px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc5{color:rgb(89,89,89);}
.fc4{color:rgb(64,64,64);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fsa{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fse{font-size:47.520000px;}
.fsb{font-size:54.720000px;}
.fsf{font-size:54.864000px;}
.fs3{font-size:57.600000px;}
.fsc{font-size:57.679368px;}
.fs2{font-size:60.480000px;}
.fs10{font-size:60.624000px;}
.fs0{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs7{font-size:75.893905px;}
.fs4{font-size:83.520000px;}
.fsd{font-size:83.664000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y44{bottom:2.515500px;}
.yb1{bottom:4.305000px;}
.yba{bottom:4.315500px;}
.y5{bottom:4.320000px;}
.yc2{bottom:4.335000px;}
.yb3{bottom:4.665000px;}
.ya9{bottom:4.680000px;}
.yf0{bottom:5.040000px;}
.yca{bottom:6.465000px;}
.ycc{bottom:6.825000px;}
.y51{bottom:7.170000px;}
.y2{bottom:10.080000px;}
.y43{bottom:10.435500px;}
.yb7{bottom:11.145000px;}
.ybf{bottom:13.680000px;}
.ybb{bottom:13.711500px;}
.yec{bottom:14.035500px;}
.ye9{bottom:14.071500px;}
.y4f{bottom:14.395500px;}
.y11e{bottom:16.920000px;}
.y157{bottom:17.280000px;}
.yb6{bottom:17.985000px;}
.yeb{bottom:23.395500px;}
.y4{bottom:23.400000px;}
.yb9{bottom:23.434500px;}
.y4e{bottom:38.155500px;}
.y42{bottom:39.955500px;}
.y3a{bottom:42.120000px;}
.y11d{bottom:46.545000px;}
.y155{bottom:47.160000px;}
.y3{bottom:47.880000px;}
.y41{bottom:51.871500px;}
.y7{bottom:57.636000px;}
.y4d{bottom:60.154500px;}
.y39{bottom:61.200000px;}
.y11c{bottom:62.430000px;}
.y154{bottom:62.640000px;}
.y40{bottom:64.834500px;}
.y3f{bottom:78.154500px;}
.y113{bottom:78.330000px;}
.y153{bottom:78.480000px;}
.y4c{bottom:79.234500px;}
.y38{bottom:79.920000px;}
.y181{bottom:88.956000px;}
.yea{bottom:88.960500px;}
.y87{bottom:90.756000px;}
.y14a{bottom:94.395000px;}
.y3b{bottom:95.800500px;}
.y4b{bottom:96.874500px;}
.y86{bottom:98.316000px;}
.y37{bottom:99.000000px;}
.y3e{bottom:99.754500px;}
.y114{bottom:100.050000px;}
.y10d{bottom:100.116000px;}
.y4a{bottom:103.354500px;}
.y180{bottom:104.436000px;}
.y14b{bottom:110.370000px;}
.y85{bottom:110.916000px;}
.y17f{bottom:111.996000px;}
.y36{bottom:117.765000px;}
.y84{bottom:118.476000px;}
.y10c{bottom:118.836000px;}
.y49{bottom:119.194500px;}
.y115{bottom:121.755000px;}
.y111{bottom:123.405000px;}
.y17e{bottom:124.596000px;}
.y14c{bottom:126.360000px;}
.ye8{bottom:127.480500px;}
.yb8{bottom:128.560500px;}
.y83{bottom:129.276000px;}
.y145{bottom:131.076000px;}
.y17d{bottom:132.156000px;}
.y48{bottom:134.674500px;}
.y35{bottom:136.845000px;}
.y10b{bottom:137.916000px;}
.y144{bottom:138.636000px;}
.y14d{bottom:142.350000px;}
.y149{bottom:142.560000px;}
.y116{bottom:143.460000px;}
.y82{bottom:144.792000px;}
.y47{bottom:150.154500px;}
.y143{bottom:151.275000px;}
.y81{bottom:152.355000px;}
.y112{bottom:153.795000px;}
.y34{bottom:155.565000px;}
.y10a{bottom:156.675000px;}
.y14e{bottom:158.295000px;}
.y142{bottom:158.835000px;}
.y3d{bottom:162.034500px;}
.y80{bottom:164.955000px;}
.y117{bottom:165.210000px;}
.y46{bottom:165.634500px;}
.ye7{bottom:166.050000px;}
.yb5{bottom:167.130000px;}
.y141{bottom:171.435000px;}
.y7f{bottom:172.515000px;}
.y3c{bottom:172.834500px;}
.y14f{bottom:174.270000px;}
.y33{bottom:174.285000px;}
.y148{bottom:174.495000px;}
.y109{bottom:175.755000px;}
.y45{bottom:180.784500px;}
.y7e{bottom:185.115000px;}
.ye6{bottom:185.850000px;}
.y118{bottom:186.915000px;}
.y110{bottom:188.535000px;}
.y150{bottom:190.260000px;}
.y17c{bottom:192.675000px;}
.y32{bottom:193.365000px;}
.y147{bottom:193.680000px;}
.y108{bottom:194.475000px;}
.yb4{bottom:200.250000px;}
.y13f{bottom:203.835000px;}
.y17b{bottom:205.275000px;}
.y151{bottom:206.205000px;}
.y119{bottom:208.620000px;}
.y107{bottom:209.235000px;}
.y10e{bottom:210.960000px;}
.y140{bottom:212.115000px;}
.y10f{bottom:218.955000px;}
.yb2{bottom:219.690000px;}
.y31{bottom:221.085000px;}
.y152{bottom:222.195000px;}
.y13e{bottom:222.555000px;}
.y7d{bottom:223.275000px;}
.ye5{bottom:228.675000px;}
.y11a{bottom:230.370000px;}
.yb0{bottom:239.490000px;}
.y30{bottom:240.195000px;}
.y13d{bottom:241.275000px;}
.y156{bottom:248.790000px;}
.y7c{bottom:251.355000px;}
.y11b{bottom:252.075000px;}
.ye4{bottom:256.395000px;}
.y17a{bottom:257.475000px;}
.y2f{bottom:258.915000px;}
.y13b{bottom:260.355000px;}
.yaf{bottom:263.595000px;}
.y13c{bottom:268.635000px;}
.ye3{bottom:275.505000px;}
.y179{bottom:276.225000px;}
.y2e{bottom:277.995000px;}
.y7b{bottom:279.105000px;}
.yae{bottom:282.345000px;}
.y1d{bottom:289.875000px;}
.ye2{bottom:294.225000px;}
.y2d{bottom:296.715000px;}
.yf{bottom:298.185000px;}
.y13a{bottom:300.345000px;}
.yad{bottom:301.425000px;}
.y178{bottom:303.945000px;}
.ye1{bottom:309.345000px;}
.y1c{bottom:313.995000px;}
.y2c{bottom:315.795000px;}
.yac{bottom:316.545000px;}
.y7a{bottom:316.905000px;}
.y139{bottom:319.425000px;}
.y177{bottom:323.025000px;}
.ye0{bottom:329.145000px;}
.y2b{bottom:334.515000px;}
.y79{bottom:335.625000px;}
.yab{bottom:335.985000px;}
.y1b{bottom:338.115000px;}
.y138{bottom:338.145000px;}
.y176{bottom:341.745000px;}
.ydf{bottom:348.585000px;}
.y2a{bottom:353.235000px;}
.y78{bottom:354.705000px;}
.yaa{bottom:355.785000px;}
.y175{bottom:360.825000px;}
.y1a{bottom:362.595000px;}
.y137{bottom:366.225000px;}
.yde{bottom:368.385000px;}
.y29{bottom:372.345000px;}
.y77{bottom:373.425000px;}
.ya8{bottom:375.225000px;}
.y174{bottom:379.545000px;}
.y135{bottom:384.945000px;}
.y19{bottom:386.745000px;}
.ydd{bottom:388.185000px;}
.y28{bottom:391.065000px;}
.y136{bottom:393.225000px;}
.y173{bottom:398.265000px;}
.ya7{bottom:399.345000px;}
.y75{bottom:401.505000px;}
.y134{bottom:404.025000px;}
.y76{bottom:409.830000px;}
.y27{bottom:410.145000px;}
.y18{bottom:410.865000px;}
.y172{bottom:417.390000px;}
.ya6{bottom:418.470000px;}
.y74{bottom:420.270000px;}
.y133{bottom:422.790000px;}
.y26{bottom:428.865000px;}
.ydc{bottom:431.070000px;}
.y17{bottom:434.985000px;}
.y171{bottom:436.110000px;}
.ya5{bottom:437.190000px;}
.y73{bottom:439.350000px;}
.y131{bottom:441.870000px;}
.y25{bottom:447.945000px;}
.ydb{bottom:449.790000px;}
.y132{bottom:450.150000px;}
.y170{bottom:455.190000px;}
.ya4{bottom:456.270000px;}
.y72{bottom:458.070000px;}
.y16{bottom:459.105000px;}
.y130{bottom:461.310000px;}
.y24{bottom:466.665000px;}
.yda{bottom:468.870000px;}
.y16f{bottom:474.630000px;}
.ya3{bottom:474.990000px;}
.y71{bottom:477.150000px;}
.y12f{bottom:480.030000px;}
.y15{bottom:483.225000px;}
.yd9{bottom:483.990000px;}
.y23{bottom:485.745000px;}
.y106{bottom:487.950000px;}
.y16e{bottom:493.350000px;}
.ya2{bottom:494.070000px;}
.y70{bottom:495.870000px;}
.y12e{bottom:498.750000px;}
.y105{bottom:503.070000px;}
.yd8{bottom:503.790000px;}
.y22{bottom:504.510000px;}
.y14{bottom:507.390000px;}
.y16d{bottom:512.070000px;}
.y6f{bottom:514.590000px;}
.ya1{bottom:521.790000px;}
.y104{bottom:522.870000px;}
.yd7{bottom:523.230000px;}
.y21{bottom:523.590000px;}
.y12d{bottom:526.470000px;}
.y16c{bottom:531.150000px;}
.y13{bottom:531.510000px;}
.y6e{bottom:533.670000px;}
.ya0{bottom:540.540000px;}
.y20{bottom:542.310000px;}
.y103{bottom:542.340000px;}
.yd6{bottom:543.060000px;}
.y12c{bottom:545.580000px;}
.y6d{bottom:552.420000px;}
.y12{bottom:555.630000px;}
.y9f{bottom:559.620000px;}
.y1f{bottom:561.030000px;}
.y102{bottom:562.140000px;}
.yd5{bottom:562.500000px;}
.y12b{bottom:564.300000px;}
.y16b{bottom:570.780000px;}
.y6c{bottom:571.500000px;}
.y197{bottom:572.940000px;}
.y11{bottom:579.750000px;}
.y12a{bottom:583.380000px;}
.yd4{bottom:586.620000px;}
.y9e{bottom:587.340000px;}
.y16a{bottom:589.860000px;}
.y6b{bottom:590.220000px;}
.y196{bottom:591.300000px;}
.y1e{bottom:598.830000px;}
.y129{bottom:602.100000px;}
.y10{bottom:603.870000px;}
.y101{bottom:604.980000px;}
.yd3{bottom:605.700000px;}
.y9d{bottom:606.060000px;}
.y195{bottom:607.140000px;}
.y168{bottom:608.580000px;}
.y169{bottom:616.860000px;}
.y6a{bottom:618.300000px;}
.y128{bottom:621.180000px;}
.y194{bottom:624.420000px;}
.y9c{bottom:627.660000px;}
.y100{bottom:633.060000px;}
.yd2{bottom:633.420000px;}
.y69{bottom:637.020000px;}
.y127{bottom:639.900000px;}
.y193{bottom:641.700000px;}
.y166{bottom:646.380000px;}
.yff{bottom:651.780000px;}
.yd1{bottom:652.140000px;}
.y167{bottom:654.660000px;}
.y9b{bottom:655.380000px;}
.y68{bottom:656.100000px;}
.y126{bottom:658.980000px;}
.y165{bottom:665.460000px;}
.yfe{bottom:670.890000px;}
.yd0{bottom:671.250000px;}
.y9a{bottom:674.490000px;}
.y67{bottom:674.850000px;}
.y192{bottom:676.290000px;}
.y125{bottom:677.730000px;}
.y164{bottom:684.210000px;}
.yfd{bottom:686.025000px;}
.ycf{bottom:686.385000px;}
.y124{bottom:692.490000px;}
.y99{bottom:693.210000px;}
.y146{bottom:694.800000px;}
.y66{bottom:702.930000px;}
.yfc{bottom:705.465000px;}
.yce{bottom:710.145000px;}
.y191{bottom:710.490000px;}
.y98{bottom:712.290000px;}
.y65{bottom:721.650000px;}
.yfb{bottom:725.265000px;}
.y190{bottom:727.770000px;}
.y97{bottom:731.010000px;}
.ycd{bottom:734.625000px;}
.y64{bottom:740.370000px;}
.yfa{bottom:744.705000px;}
.y18f{bottom:745.050000px;}
.y96{bottom:750.090000px;}
.ycb{bottom:758.385000px;}
.y63{bottom:759.450000px;}
.y18e{bottom:762.330000px;}
.y95{bottom:768.810000px;}
.yf9{bottom:777.825000px;}
.y18d{bottom:779.610000px;}
.yc9{bottom:782.865000px;}
.y61{bottom:787.170000px;}
.y94{bottom:787.530000px;}
.y62{bottom:795.450000px;}
.y18c{bottom:796.890000px;}
.yf8{bottom:801.975000px;}
.y60{bottom:806.295000px;}
.y93{bottom:806.655000px;}
.yc8{bottom:810.975000px;}
.y18b{bottom:814.215000px;}
.yf7{bottom:821.055000px;}
.y5f{bottom:825.015000px;}
.y92{bottom:825.375000px;}
.yc7{bottom:830.055000px;}
.y18a{bottom:831.495000px;}
.y5e{bottom:844.095000px;}
.y91{bottom:844.455000px;}
.yf6{bottom:848.775000px;}
.y163{bottom:853.455000px;}
.yc6{bottom:857.775000px;}
.y5d{bottom:862.815000px;}
.y90{bottom:863.175000px;}
.y189{bottom:866.055000px;}
.yf5{bottom:867.855000px;}
.y162{bottom:872.175000px;}
.yc5{bottom:876.855000px;}
.y8f{bottom:882.255000px;}
.y188{bottom:882.975000px;}
.yf4{bottom:886.575000px;}
.y5b{bottom:890.895000px;}
.y160{bottom:891.255000px;}
.yc4{bottom:895.575000px;}
.y5c{bottom:899.175000px;}
.y161{bottom:899.535000px;}
.y187{bottom:900.255000px;}
.y8e{bottom:900.975000px;}
.yf3{bottom:906.375000px;}
.y5a{bottom:909.615000px;}
.y15f{bottom:909.975000px;}
.ye{bottom:914.295000px;}
.yc3{bottom:914.655000px;}
.y186{bottom:917.535000px;}
.yd{bottom:919.695000px;}
.y8d{bottom:920.055000px;}
.yf2{bottom:921.150000px;}
.y59{bottom:928.335000px;}
.y15e{bottom:929.055000px;}
.yc1{bottom:929.790000px;}
.y185{bottom:934.845000px;}
.y8c{bottom:938.805000px;}
.yc{bottom:940.245000px;}
.yf1{bottom:940.605000px;}
.y58{bottom:947.445000px;}
.y15d{bottom:947.805000px;}
.yc0{bottom:949.245000px;}
.y184{bottom:952.125000px;}
.y8b{bottom:957.525000px;}
.yef{bottom:960.405000px;}
.yb{bottom:966.165000px;}
.y123{bottom:967.605000px;}
.ybe{bottom:969.045000px;}
.y183{bottom:969.405000px;}
.y15b{bottom:975.525000px;}
.yee{bottom:980.205000px;}
.y15c{bottom:983.805000px;}
.y89{bottom:985.605000px;}
.y182{bottom:986.685000px;}
.y122{bottom:987.045000px;}
.y8a{bottom:993.885000px;}
.y57{bottom:994.245000px;}
.y15a{bottom:994.605000px;}
.ya{bottom:995.685000px;}
.y88{bottom:1004.325000px;}
.y121{bottom:1006.845000px;}
.ybd{bottom:1007.565000px;}
.y158{bottom:1013.325000px;}
.y56{bottom:1013.685000px;}
.y159{bottom:1021.605000px;}
.yed{bottom:1023.405000px;}
.y120{bottom:1026.285000px;}
.ybc{bottom:1027.005000px;}
.y9{bottom:1032.405000px;}
.y11f{bottom:1046.085000px;}
.y54{bottom:1051.125000px;}
.y55{bottom:1059.405000px;}
.y53{bottom:1070.250000px;}
.y8{bottom:1072.050000px;}
.y50{bottom:1075.320000px;}
.y52{bottom:1088.970000px;}
.y6{bottom:1108.050000px;}
.y1{bottom:1123.530000px;}
.h16{height:5.650313px;}
.h22{height:18.705000px;}
.h26{height:18.720000px;}
.h2b{height:18.750000px;}
.h21{height:19.065000px;}
.h2a{height:19.080000px;}
.h29{height:23.025000px;}
.h27{height:23.061000px;}
.h28{height:23.745000px;}
.h18{height:27.720000px;}
.h13{height:29.678906px;}
.h23{height:32.385000px;}
.h12{height:35.332031px;}
.h25{height:37.785000px;}
.h2c{height:37.795500px;}
.h24{height:37.831500px;}
.h1b{height:38.063520px;}
.hd{height:40.985156px;}
.h1c{height:41.535703px;}
.hc{height:42.086250px;}
.h1d{height:46.638281px;}
.h31{height:48.444480px;}
.h32{height:48.559824px;}
.h14{height:53.677969px;}
.h2e{height:54.426094px;}
.h2f{height:54.569320px;}
.h15{height:55.147500px;}
.h7{height:57.290625px;}
.hf{height:57.672000px;}
.h6{height:59.357813px;}
.he{height:60.791018px;}
.ha{height:60.952500px;}
.h17{height:61.143509px;}
.h35{height:62.163910px;}
.h19{height:63.565031px;}
.h9{height:64.112344px;}
.h5{height:65.010937px;}
.h3{height:65.884219px;}
.h20{height:70.664062px;}
.h10{height:71.613281px;}
.h1e{height:74.004654px;}
.h1f{height:74.953125px;}
.h2{height:84.990000px;}
.h8{height:88.536094px;}
.h30{height:106.566094px;}
.h34{height:111.804480px;}
.h4{height:116.640000px;}
.h11{height:201.645000px;}
.h33{height:272.160000px;}
.h2d{height:272.880000px;}
.hb{height:613.230000px;}
.h1{height:1262.250000px;}
.h1a{height:1262.516085px;}
.h0{height:1262.520000px;}
.w10{width:79.221000px;}
.w22{width:87.120000px;}
.w8{width:96.870000px;}
.w19{width:97.941000px;}
.wa{width:100.821000px;}
.w2{width:103.702500px;}
.w16{width:104.421000px;}
.w29{width:104.805000px;}
.w18{width:132.156000px;}
.w4{width:132.502500px;}
.w9{width:136.152000px;}
.wd{width:136.845000px;}
.w21{width:136.872000px;}
.w1e{width:137.196000px;}
.w15{width:140.796000px;}
.w1f{width:141.165000px;}
.w28{width:141.516000px;}
.w24{width:149.796000px;}
.w14{width:150.510000px;}
.we{width:151.275000px;}
.w25{width:154.485000px;}
.wf{width:156.630000px;}
.wb{width:160.965000px;}
.w6{width:163.080000px;}
.w11{width:164.565000px;}
.w13{width:164.925000px;}
.w12{width:164.955000px;}
.w1b{width:170.715000px;}
.w1c{width:175.725000px;}
.wc{width:185.115000px;}
.w17{width:188.715000px;}
.w27{width:218.970000px;}
.w23{width:234.090000px;}
.w1d{width:238.410000px;}
.w1a{width:276.202500px;}
.w20{width:301.770000px;}
.w2a{width:464.760000px;}
.w26{width:478.080000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w7{width:893.156250px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.265000px;}
.x45{left:9.345000px;}
.x31{left:10.800000px;}
.x46{left:12.240000px;}
.x4{left:13.305000px;}
.x14{left:16.906500px;}
.x19{left:18.346500px;}
.x15{left:19.426500px;}
.x3d{left:21.615000px;}
.x3e{left:22.695000px;}
.x2f{left:24.120000px;}
.x54{left:25.185000px;}
.x6{left:28.785000px;}
.x33{left:30.225000px;}
.x39{left:32.400000px;}
.x5d{left:33.465000px;}
.x4d{left:34.545000px;}
.x59{left:36.360000px;}
.x3c{left:37.830000px;}
.x47{left:40.680000px;}
.x37{left:42.855000px;}
.xf{left:43.906500px;}
.x1a{left:47.542500px;}
.x58{left:48.960000px;}
.x10{left:50.782500px;}
.x4f{left:52.230000px;}
.x13{left:53.302500px;}
.xe{left:55.102500px;}
.x4e{left:56.175000px;}
.x1c{left:57.262500px;}
.x4a{left:58.335000px;}
.x34{left:60.870000px;}
.x17{left:62.295000px;}
.x41{left:64.125000px;}
.x1b{left:66.265500px;}
.x6f{left:67.350000px;}
.x7c{left:69.990000px;}
.x44{left:71.280000px;}
.x12{left:73.105500px;}
.x48{left:74.880000px;}
.x1{left:78.529500px;}
.x7d{left:80.070000px;}
.x66{left:83.670000px;}
.x7{left:86.436000px;}
.x3b{left:89.310000px;}
.x2a{left:91.836000px;}
.x2{left:95.425500px;}
.x87{left:97.236000px;}
.x1d{left:102.985500px;}
.x18{left:106.945500px;}
.x2c{left:113.436000px;}
.x88{left:118.836000px;}
.x1e{left:121.380000px;}
.x68{left:123.120000px;}
.x11{left:124.585500px;}
.x5a{left:134.734500px;}
.x20{left:140.472000px;}
.x81{left:145.508250px;}
.x6b{left:146.595000px;}
.x7e{left:155.805000px;}
.x1f{left:158.100000px;}
.x63{left:176.850000px;}
.x3{left:182.250000px;}
.x79{left:185.250000px;}
.x5e{left:187.650000px;}
.x80{left:190.005000px;}
.x85{left:191.595000px;}
.x86{left:193.755000px;}
.x49{left:198.810000px;}
.x69{left:202.425000px;}
.x36{left:204.570000px;}
.x65{left:206.640000px;}
.x6c{left:213.210000px;}
.x16{left:218.970000px;}
.x55{left:236.625000px;}
.x78{left:240.480000px;}
.x51{left:248.145000px;}
.x40{left:252.465000px;}
.x73{left:267.941250px;}
.x74{left:272.625000px;}
.x2e{left:279.105000px;}
.x7f{left:284.685000px;}
.x7a{left:285.915000px;}
.x23{left:296.381250px;}
.x24{left:301.065000px;}
.x29{left:302.505000px;}
.x60{left:314.070000px;}
.x50{left:324.870000px;}
.x6a{left:331.350000px;}
.x25{left:343.946250px;}
.x26{left:348.630000px;}
.x3f{left:355.110000px;}
.x67{left:360.900000px;}
.x4b{left:364.110000px;}
.x38{left:366.270000px;}
.x35{left:367.710000px;}
.x2d{left:371.670000px;}
.x30{left:376.710000px;}
.x7b{left:386.565000px;}
.x52{left:399.420000px;}
.x2b{left:400.856250px;}
.x42{left:404.460000px;}
.xb{left:405.540000px;}
.x5b{left:411.660000px;}
.x56{left:426.060000px;}
.x76{left:429.656250px;}
.x6d{left:432.900000px;}
.x77{left:434.340000px;}
.x61{left:485.820000px;}
.x32{left:513.585000px;}
.x4c{left:529.785000px;}
.x53{left:540.945000px;}
.x3a{left:552.105000px;}
.x57{left:558.945000px;}
.x43{left:561.825000px;}
.x5f{left:564.705000px;}
.xc{left:566.130000px;}
.x6e{left:575.505000px;}
.x5c{left:583.110000px;}
.x84{left:584.895000px;}
.x27{left:585.971250px;}
.x28{left:590.655000px;}
.x82{left:592.091250px;}
.x83{left:601.455000px;}
.x62{left:623.430000px;}
.x71{left:641.051250px;}
.x72{left:645.735000px;}
.x64{left:686.445000px;}
.x70{left:706.605000px;}
.xa{left:715.245000px;}
.x21{left:757.046250px;}
.x22{left:761.730000px;}
.x9{left:766.050000px;}
.x8{left:784.770000px;}
.x75{left:802.406250px;}
.xd{left:807.090000px;}
@media print{
.v1{vertical-align:-70.159699pt;}
.v2{vertical-align:-66.560000pt;}
.v3{vertical-align:-46.346667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:46.346667pt;}
.v5{vertical-align:56.320000pt;}
.ls12{letter-spacing:-9.813333pt;}
.ls25{letter-spacing:-7.195867pt;}
.ls2e{letter-spacing:-1.264000pt;}
.ls2f{letter-spacing:-0.768000pt;}
.ls20{letter-spacing:-0.758939pt;}
.ls1f{letter-spacing:-0.635260pt;}
.ls16{letter-spacing:-0.624000pt;}
.ls30{letter-spacing:-0.576000pt;}
.ls1c{letter-spacing:-0.560000pt;}
.ls17{letter-spacing:-0.509333pt;}
.ls2c{letter-spacing:-0.506667pt;}
.ls23{letter-spacing:-0.466607pt;}
.ls39{letter-spacing:-0.414933pt;}
.ls33{letter-spacing:-0.405333pt;}
.ls32{letter-spacing:-0.340267pt;}
.ls22{letter-spacing:-0.245671pt;}
.ls1d{letter-spacing:-0.208006pt;}
.ls31{letter-spacing:-0.192000pt;}
.ls21{letter-spacing:-0.164718pt;}
.ls10{letter-spacing:-0.158933pt;}
.ls19{letter-spacing:-0.079467pt;}
.ls24{letter-spacing:-0.073083pt;}
.ls1b{letter-spacing:-0.064000pt;}
.lsd{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.017920pt;}
.ls18{letter-spacing:0.079467pt;}
.ls8{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.202384pt;}
.ls38{letter-spacing:0.208533pt;}
.ls26{letter-spacing:0.298667pt;}
.ls6{letter-spacing:0.314819pt;}
.ls15{letter-spacing:0.345600pt;}
.ls3a{letter-spacing:0.380267pt;}
.lsf{letter-spacing:0.402133pt;}
.ls0{letter-spacing:0.414720pt;}
.ls3{letter-spacing:0.414933pt;}
.lsb{letter-spacing:0.466832pt;}
.lsa{letter-spacing:0.512000pt;}
.ls2{letter-spacing:0.521387pt;}
.ls2a{letter-spacing:0.522667pt;}
.ls2b{letter-spacing:0.532267pt;}
.ls9{letter-spacing:0.532480pt;}
.ls5{letter-spacing:0.539690pt;}
.lsc{letter-spacing:0.588262pt;}
.ls1e{letter-spacing:0.590286pt;}
.ls35{letter-spacing:0.591360pt;}
.ls4{letter-spacing:0.640000pt;}
.ls14{letter-spacing:0.656000pt;}
.ls28{letter-spacing:0.672000pt;}
.ls1a{letter-spacing:0.704000pt;}
.ls13{letter-spacing:1.120000pt;}
.ls29{letter-spacing:1.177600pt;}
.lse{letter-spacing:1.280000pt;}
.ls37{letter-spacing:1.305600pt;}
.ls11{letter-spacing:1.648000pt;}
.ls36{letter-spacing:1.792000pt;}
.ls34{letter-spacing:3.840000pt;}
.ls27{letter-spacing:3.904000pt;}
.ls3c{letter-spacing:14.494720pt;}
.ls3b{letter-spacing:41.374720pt;}
.ls2d{letter-spacing:42.368000pt;}
.ws10{word-spacing:-64.000000pt;}
.ws8{word-spacing:-25.567813pt;}
.ws11{word-spacing:-24.256000pt;}
.ws2{word-spacing:-23.682560pt;}
.ws16{word-spacing:-23.680000pt;}
.ws15{word-spacing:-20.907307pt;}
.ws9{word-spacing:-20.375040pt;}
.ws3{word-spacing:-17.149440pt;}
.wsd{word-spacing:-16.355305pt;}
.ws1{word-spacing:-16.000000pt;}
.ws4{word-spacing:-14.945280pt;}
.ws0{word-spacing:-14.720000pt;}
.wse{word-spacing:-14.253213pt;}
.wsa{word-spacing:-13.457920pt;}
.ws5{word-spacing:-13.440000pt;}
.ws1a{word-spacing:-13.025067pt;}
.ws14{word-spacing:-12.176000pt;}
.wsc{word-spacing:-11.600000pt;}
.ws13{word-spacing:-11.200000pt;}
.ws17{word-spacing:-10.652373pt;}
.ws18{word-spacing:-10.616235pt;}
.ws12{word-spacing:-10.560000pt;}
.ws6{word-spacing:-9.920000pt;}
.ws7{word-spacing:-9.280000pt;}
.wsb{word-spacing:-7.936000pt;}
.wsf{word-spacing:0.000000pt;}
.ws19{word-spacing:141.346133pt;}
._9{margin-left:-8.247467pt;}
._18{margin-left:-6.654635pt;}
._7{margin-left:-3.412480pt;}
._5{margin-left:-1.884160pt;}
._6{margin-left:-0.975360pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._c{width:3.988315pt;}
._11{width:5.261977pt;}
._12{width:6.273896pt;}
._a{width:7.633920pt;}
._13{width:9.039807pt;}
._14{width:10.119187pt;}
._f{width:11.374411pt;}
._17{width:12.684732pt;}
._19{width:13.578240pt;}
._b{width:14.520264pt;}
._10{width:15.543213pt;}
._e{width:17.301249pt;}
._d{width:18.619305pt;}
._8{width:19.905280pt;}
._15{width:22.446080pt;}
._16{width:26.854400pt;}
._1c{width:89.329493pt;}
._1e{width:97.805056pt;}
._3{width:105.706667pt;}
._20{width:128.723200pt;}
._1f{width:335.235413pt;}
._4{width:340.000000pt;}
._1d{width:398.389333pt;}
._1a{width:507.253333pt;}
._1b{width:509.379413pt;}
.fs5{font-size:5.120000pt;}
.fsa{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fse{font-size:42.240000pt;}
.fsb{font-size:48.640000pt;}
.fsf{font-size:48.768000pt;}
.fs3{font-size:51.200000pt;}
.fsc{font-size:51.270549pt;}
.fs2{font-size:53.760000pt;}
.fs10{font-size:53.888000pt;}
.fs0{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs7{font-size:67.461249pt;}
.fs4{font-size:74.240000pt;}
.fsd{font-size:74.368000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y44{bottom:2.236000pt;}
.yb1{bottom:3.826667pt;}
.yba{bottom:3.836000pt;}
.y5{bottom:3.840000pt;}
.yc2{bottom:3.853333pt;}
.yb3{bottom:4.146667pt;}
.ya9{bottom:4.160000pt;}
.yf0{bottom:4.480000pt;}
.yca{bottom:5.746667pt;}
.ycc{bottom:6.066667pt;}
.y51{bottom:6.373333pt;}
.y2{bottom:8.960000pt;}
.y43{bottom:9.276000pt;}
.yb7{bottom:9.906667pt;}
.ybf{bottom:12.160000pt;}
.ybb{bottom:12.188000pt;}
.yec{bottom:12.476000pt;}
.ye9{bottom:12.508000pt;}
.y4f{bottom:12.796000pt;}
.y11e{bottom:15.040000pt;}
.y157{bottom:15.360000pt;}
.yb6{bottom:15.986667pt;}
.yeb{bottom:20.796000pt;}
.y4{bottom:20.800000pt;}
.yb9{bottom:20.830667pt;}
.y4e{bottom:33.916000pt;}
.y42{bottom:35.516000pt;}
.y3a{bottom:37.440000pt;}
.y11d{bottom:41.373333pt;}
.y155{bottom:41.920000pt;}
.y3{bottom:42.560000pt;}
.y41{bottom:46.108000pt;}
.y7{bottom:51.232000pt;}
.y4d{bottom:53.470667pt;}
.y39{bottom:54.400000pt;}
.y11c{bottom:55.493333pt;}
.y154{bottom:55.680000pt;}
.y40{bottom:57.630667pt;}
.y3f{bottom:69.470667pt;}
.y113{bottom:69.626667pt;}
.y153{bottom:69.760000pt;}
.y4c{bottom:70.430667pt;}
.y38{bottom:71.040000pt;}
.y181{bottom:79.072000pt;}
.yea{bottom:79.076000pt;}
.y87{bottom:80.672000pt;}
.y14a{bottom:83.906667pt;}
.y3b{bottom:85.156000pt;}
.y4b{bottom:86.110667pt;}
.y86{bottom:87.392000pt;}
.y37{bottom:88.000000pt;}
.y3e{bottom:88.670667pt;}
.y114{bottom:88.933333pt;}
.y10d{bottom:88.992000pt;}
.y4a{bottom:91.870667pt;}
.y180{bottom:92.832000pt;}
.y14b{bottom:98.106667pt;}
.y85{bottom:98.592000pt;}
.y17f{bottom:99.552000pt;}
.y36{bottom:104.680000pt;}
.y84{bottom:105.312000pt;}
.y10c{bottom:105.632000pt;}
.y49{bottom:105.950667pt;}
.y115{bottom:108.226667pt;}
.y111{bottom:109.693333pt;}
.y17e{bottom:110.752000pt;}
.y14c{bottom:112.320000pt;}
.ye8{bottom:113.316000pt;}
.yb8{bottom:114.276000pt;}
.y83{bottom:114.912000pt;}
.y145{bottom:116.512000pt;}
.y17d{bottom:117.472000pt;}
.y48{bottom:119.710667pt;}
.y35{bottom:121.640000pt;}
.y10b{bottom:122.592000pt;}
.y144{bottom:123.232000pt;}
.y14d{bottom:126.533333pt;}
.y149{bottom:126.720000pt;}
.y116{bottom:127.520000pt;}
.y82{bottom:128.704000pt;}
.y47{bottom:133.470667pt;}
.y143{bottom:134.466667pt;}
.y81{bottom:135.426667pt;}
.y112{bottom:136.706667pt;}
.y34{bottom:138.280000pt;}
.y10a{bottom:139.266667pt;}
.y14e{bottom:140.706667pt;}
.y142{bottom:141.186667pt;}
.y3d{bottom:144.030667pt;}
.y80{bottom:146.626667pt;}
.y117{bottom:146.853333pt;}
.y46{bottom:147.230667pt;}
.ye7{bottom:147.600000pt;}
.yb5{bottom:148.560000pt;}
.y141{bottom:152.386667pt;}
.y7f{bottom:153.346667pt;}
.y3c{bottom:153.630667pt;}
.y14f{bottom:154.906667pt;}
.y33{bottom:154.920000pt;}
.y148{bottom:155.106667pt;}
.y109{bottom:156.226667pt;}
.y45{bottom:160.697333pt;}
.y7e{bottom:164.546667pt;}
.ye6{bottom:165.200000pt;}
.y118{bottom:166.146667pt;}
.y110{bottom:167.586667pt;}
.y150{bottom:169.120000pt;}
.y17c{bottom:171.266667pt;}
.y32{bottom:171.880000pt;}
.y147{bottom:172.160000pt;}
.y108{bottom:172.866667pt;}
.yb4{bottom:178.000000pt;}
.y13f{bottom:181.186667pt;}
.y17b{bottom:182.466667pt;}
.y151{bottom:183.293333pt;}
.y119{bottom:185.440000pt;}
.y107{bottom:185.986667pt;}
.y10e{bottom:187.520000pt;}
.y140{bottom:188.546667pt;}
.y10f{bottom:194.626667pt;}
.yb2{bottom:195.280000pt;}
.y31{bottom:196.520000pt;}
.y152{bottom:197.506667pt;}
.y13e{bottom:197.826667pt;}
.y7d{bottom:198.466667pt;}
.ye5{bottom:203.266667pt;}
.y11a{bottom:204.773333pt;}
.yb0{bottom:212.880000pt;}
.y30{bottom:213.506667pt;}
.y13d{bottom:214.466667pt;}
.y156{bottom:221.146667pt;}
.y7c{bottom:223.426667pt;}
.y11b{bottom:224.066667pt;}
.ye4{bottom:227.906667pt;}
.y17a{bottom:228.866667pt;}
.y2f{bottom:230.146667pt;}
.y13b{bottom:231.426667pt;}
.yaf{bottom:234.306667pt;}
.y13c{bottom:238.786667pt;}
.ye3{bottom:244.893333pt;}
.y179{bottom:245.533333pt;}
.y2e{bottom:247.106667pt;}
.y7b{bottom:248.093333pt;}
.yae{bottom:250.973333pt;}
.y1d{bottom:257.666667pt;}
.ye2{bottom:261.533333pt;}
.y2d{bottom:263.746667pt;}
.yf{bottom:265.053333pt;}
.y13a{bottom:266.973333pt;}
.yad{bottom:267.933333pt;}
.y178{bottom:270.173333pt;}
.ye1{bottom:274.973333pt;}
.y1c{bottom:279.106667pt;}
.y2c{bottom:280.706667pt;}
.yac{bottom:281.373333pt;}
.y7a{bottom:281.693333pt;}
.y139{bottom:283.933333pt;}
.y177{bottom:287.133333pt;}
.ye0{bottom:292.573333pt;}
.y2b{bottom:297.346667pt;}
.y79{bottom:298.333333pt;}
.yab{bottom:298.653333pt;}
.y1b{bottom:300.546667pt;}
.y138{bottom:300.573333pt;}
.y176{bottom:303.773333pt;}
.ydf{bottom:309.853333pt;}
.y2a{bottom:313.986667pt;}
.y78{bottom:315.293333pt;}
.yaa{bottom:316.253333pt;}
.y175{bottom:320.733333pt;}
.y1a{bottom:322.306667pt;}
.y137{bottom:325.533333pt;}
.yde{bottom:327.453333pt;}
.y29{bottom:330.973333pt;}
.y77{bottom:331.933333pt;}
.ya8{bottom:333.533333pt;}
.y174{bottom:337.373333pt;}
.y135{bottom:342.173333pt;}
.y19{bottom:343.773333pt;}
.ydd{bottom:345.053333pt;}
.y28{bottom:347.613333pt;}
.y136{bottom:349.533333pt;}
.y173{bottom:354.013333pt;}
.ya7{bottom:354.973333pt;}
.y75{bottom:356.893333pt;}
.y134{bottom:359.133333pt;}
.y76{bottom:364.293333pt;}
.y27{bottom:364.573333pt;}
.y18{bottom:365.213333pt;}
.y172{bottom:371.013333pt;}
.ya6{bottom:371.973333pt;}
.y74{bottom:373.573333pt;}
.y133{bottom:375.813333pt;}
.y26{bottom:381.213333pt;}
.ydc{bottom:383.173333pt;}
.y17{bottom:386.653333pt;}
.y171{bottom:387.653333pt;}
.ya5{bottom:388.613333pt;}
.y73{bottom:390.533333pt;}
.y131{bottom:392.773333pt;}
.y25{bottom:398.173333pt;}
.ydb{bottom:399.813333pt;}
.y132{bottom:400.133333pt;}
.y170{bottom:404.613333pt;}
.ya4{bottom:405.573333pt;}
.y72{bottom:407.173333pt;}
.y16{bottom:408.093333pt;}
.y130{bottom:410.053333pt;}
.y24{bottom:414.813333pt;}
.yda{bottom:416.773333pt;}
.y16f{bottom:421.893333pt;}
.ya3{bottom:422.213333pt;}
.y71{bottom:424.133333pt;}
.y12f{bottom:426.693333pt;}
.y15{bottom:429.533333pt;}
.yd9{bottom:430.213333pt;}
.y23{bottom:431.773333pt;}
.y106{bottom:433.733333pt;}
.y16e{bottom:438.533333pt;}
.ya2{bottom:439.173333pt;}
.y70{bottom:440.773333pt;}
.y12e{bottom:443.333333pt;}
.y105{bottom:447.173333pt;}
.yd8{bottom:447.813333pt;}
.y22{bottom:448.453333pt;}
.y14{bottom:451.013333pt;}
.y16d{bottom:455.173333pt;}
.y6f{bottom:457.413333pt;}
.ya1{bottom:463.813333pt;}
.y104{bottom:464.773333pt;}
.yd7{bottom:465.093333pt;}
.y21{bottom:465.413333pt;}
.y12d{bottom:467.973333pt;}
.y16c{bottom:472.133333pt;}
.y13{bottom:472.453333pt;}
.y6e{bottom:474.373333pt;}
.ya0{bottom:480.480000pt;}
.y20{bottom:482.053333pt;}
.y103{bottom:482.080000pt;}
.yd6{bottom:482.720000pt;}
.y12c{bottom:484.960000pt;}
.y6d{bottom:491.040000pt;}
.y12{bottom:493.893333pt;}
.y9f{bottom:497.440000pt;}
.y1f{bottom:498.693333pt;}
.y102{bottom:499.680000pt;}
.yd5{bottom:500.000000pt;}
.y12b{bottom:501.600000pt;}
.y16b{bottom:507.360000pt;}
.y6c{bottom:508.000000pt;}
.y197{bottom:509.280000pt;}
.y11{bottom:515.333333pt;}
.y12a{bottom:518.560000pt;}
.yd4{bottom:521.440000pt;}
.y9e{bottom:522.080000pt;}
.y16a{bottom:524.320000pt;}
.y6b{bottom:524.640000pt;}
.y196{bottom:525.600000pt;}
.y1e{bottom:532.293333pt;}
.y129{bottom:535.200000pt;}
.y10{bottom:536.773333pt;}
.y101{bottom:537.760000pt;}
.yd3{bottom:538.400000pt;}
.y9d{bottom:538.720000pt;}
.y195{bottom:539.680000pt;}
.y168{bottom:540.960000pt;}
.y169{bottom:548.320000pt;}
.y6a{bottom:549.600000pt;}
.y128{bottom:552.160000pt;}
.y194{bottom:555.040000pt;}
.y9c{bottom:557.920000pt;}
.y100{bottom:562.720000pt;}
.yd2{bottom:563.040000pt;}
.y69{bottom:566.240000pt;}
.y127{bottom:568.800000pt;}
.y193{bottom:570.400000pt;}
.y166{bottom:574.560000pt;}
.yff{bottom:579.360000pt;}
.yd1{bottom:579.680000pt;}
.y167{bottom:581.920000pt;}
.y9b{bottom:582.560000pt;}
.y68{bottom:583.200000pt;}
.y126{bottom:585.760000pt;}
.y165{bottom:591.520000pt;}
.yfe{bottom:596.346667pt;}
.yd0{bottom:596.666667pt;}
.y9a{bottom:599.546667pt;}
.y67{bottom:599.866667pt;}
.y192{bottom:601.146667pt;}
.y125{bottom:602.426667pt;}
.y164{bottom:608.186667pt;}
.yfd{bottom:609.800000pt;}
.ycf{bottom:610.120000pt;}
.y124{bottom:615.546667pt;}
.y99{bottom:616.186667pt;}
.y146{bottom:617.600000pt;}
.y66{bottom:624.826667pt;}
.yfc{bottom:627.080000pt;}
.yce{bottom:631.240000pt;}
.y191{bottom:631.546667pt;}
.y98{bottom:633.146667pt;}
.y65{bottom:641.466667pt;}
.yfb{bottom:644.680000pt;}
.y190{bottom:646.906667pt;}
.y97{bottom:649.786667pt;}
.ycd{bottom:653.000000pt;}
.y64{bottom:658.106667pt;}
.yfa{bottom:661.960000pt;}
.y18f{bottom:662.266667pt;}
.y96{bottom:666.746667pt;}
.ycb{bottom:674.120000pt;}
.y63{bottom:675.066667pt;}
.y18e{bottom:677.626667pt;}
.y95{bottom:683.386667pt;}
.yf9{bottom:691.400000pt;}
.y18d{bottom:692.986667pt;}
.yc9{bottom:695.880000pt;}
.y61{bottom:699.706667pt;}
.y94{bottom:700.026667pt;}
.y62{bottom:707.066667pt;}
.y18c{bottom:708.346667pt;}
.yf8{bottom:712.866667pt;}
.y60{bottom:716.706667pt;}
.y93{bottom:717.026667pt;}
.yc8{bottom:720.866667pt;}
.y18b{bottom:723.746667pt;}
.yf7{bottom:729.826667pt;}
.y5f{bottom:733.346667pt;}
.y92{bottom:733.666667pt;}
.yc7{bottom:737.826667pt;}
.y18a{bottom:739.106667pt;}
.y5e{bottom:750.306667pt;}
.y91{bottom:750.626667pt;}
.yf6{bottom:754.466667pt;}
.y163{bottom:758.626667pt;}
.yc6{bottom:762.466667pt;}
.y5d{bottom:766.946667pt;}
.y90{bottom:767.266667pt;}
.y189{bottom:769.826667pt;}
.yf5{bottom:771.426667pt;}
.y162{bottom:775.266667pt;}
.yc5{bottom:779.426667pt;}
.y8f{bottom:784.226667pt;}
.y188{bottom:784.866667pt;}
.yf4{bottom:788.066667pt;}
.y5b{bottom:791.906667pt;}
.y160{bottom:792.226667pt;}
.yc4{bottom:796.066667pt;}
.y5c{bottom:799.266667pt;}
.y161{bottom:799.586667pt;}
.y187{bottom:800.226667pt;}
.y8e{bottom:800.866667pt;}
.yf3{bottom:805.666667pt;}
.y5a{bottom:808.546667pt;}
.y15f{bottom:808.866667pt;}
.ye{bottom:812.706667pt;}
.yc3{bottom:813.026667pt;}
.y186{bottom:815.586667pt;}
.yd{bottom:817.506667pt;}
.y8d{bottom:817.826667pt;}
.yf2{bottom:818.800000pt;}
.y59{bottom:825.186667pt;}
.y15e{bottom:825.826667pt;}
.yc1{bottom:826.480000pt;}
.y185{bottom:830.973333pt;}
.y8c{bottom:834.493333pt;}
.yc{bottom:835.773333pt;}
.yf1{bottom:836.093333pt;}
.y58{bottom:842.173333pt;}
.y15d{bottom:842.493333pt;}
.yc0{bottom:843.773333pt;}
.y184{bottom:846.333333pt;}
.y8b{bottom:851.133333pt;}
.yef{bottom:853.693333pt;}
.yb{bottom:858.813333pt;}
.y123{bottom:860.093333pt;}
.ybe{bottom:861.373333pt;}
.y183{bottom:861.693333pt;}
.y15b{bottom:867.133333pt;}
.yee{bottom:871.293333pt;}
.y15c{bottom:874.493333pt;}
.y89{bottom:876.093333pt;}
.y182{bottom:877.053333pt;}
.y122{bottom:877.373333pt;}
.y8a{bottom:883.453333pt;}
.y57{bottom:883.773333pt;}
.y15a{bottom:884.093333pt;}
.ya{bottom:885.053333pt;}
.y88{bottom:892.733333pt;}
.y121{bottom:894.973333pt;}
.ybd{bottom:895.613333pt;}
.y158{bottom:900.733333pt;}
.y56{bottom:901.053333pt;}
.y159{bottom:908.093333pt;}
.yed{bottom:909.693333pt;}
.y120{bottom:912.253333pt;}
.ybc{bottom:912.893333pt;}
.y9{bottom:917.693333pt;}
.y11f{bottom:929.853333pt;}
.y54{bottom:934.333333pt;}
.y55{bottom:941.693333pt;}
.y53{bottom:951.333333pt;}
.y8{bottom:952.933333pt;}
.y50{bottom:955.840000pt;}
.y52{bottom:967.973333pt;}
.y6{bottom:984.933333pt;}
.y1{bottom:998.693333pt;}
.h16{height:5.022500pt;}
.h22{height:16.626667pt;}
.h26{height:16.640000pt;}
.h2b{height:16.666667pt;}
.h21{height:16.946667pt;}
.h2a{height:16.960000pt;}
.h29{height:20.466667pt;}
.h27{height:20.498667pt;}
.h28{height:21.106667pt;}
.h18{height:24.640000pt;}
.h13{height:26.381250pt;}
.h23{height:28.786667pt;}
.h12{height:31.406250pt;}
.h25{height:33.586667pt;}
.h2c{height:33.596000pt;}
.h24{height:33.628000pt;}
.h1b{height:33.834240pt;}
.hd{height:36.431250pt;}
.h1c{height:36.920625pt;}
.hc{height:37.410000pt;}
.h1d{height:41.456250pt;}
.h31{height:43.061760pt;}
.h32{height:43.164288pt;}
.h14{height:47.713750pt;}
.h2e{height:48.378750pt;}
.h2f{height:48.506062pt;}
.h15{height:49.020000pt;}
.h7{height:50.925000pt;}
.hf{height:51.264000pt;}
.h6{height:52.762500pt;}
.he{height:54.036460pt;}
.ha{height:54.180000pt;}
.h17{height:54.349786pt;}
.h35{height:55.256809pt;}
.h19{height:56.502250pt;}
.h9{height:56.988750pt;}
.h5{height:57.787500pt;}
.h3{height:58.563750pt;}
.h20{height:62.812500pt;}
.h10{height:63.656250pt;}
.h1e{height:65.781915pt;}
.h1f{height:66.625000pt;}
.h2{height:75.546667pt;}
.h8{height:78.698750pt;}
.h30{height:94.725417pt;}
.h34{height:99.381760pt;}
.h4{height:103.680000pt;}
.h11{height:179.240000pt;}
.h33{height:241.920000pt;}
.h2d{height:242.560000pt;}
.hb{height:545.093333pt;}
.h1{height:1122.000000pt;}
.h1a{height:1122.236520pt;}
.h0{height:1122.240000pt;}
.w10{width:70.418667pt;}
.w22{width:77.440000pt;}
.w8{width:86.106667pt;}
.w19{width:87.058667pt;}
.wa{width:89.618667pt;}
.w2{width:92.180000pt;}
.w16{width:92.818667pt;}
.w29{width:93.160000pt;}
.w18{width:117.472000pt;}
.w4{width:117.780000pt;}
.w9{width:121.024000pt;}
.wd{width:121.640000pt;}
.w21{width:121.664000pt;}
.w1e{width:121.952000pt;}
.w15{width:125.152000pt;}
.w1f{width:125.480000pt;}
.w28{width:125.792000pt;}
.w24{width:133.152000pt;}
.w14{width:133.786667pt;}
.we{width:134.466667pt;}
.w25{width:137.320000pt;}
.wf{width:139.226667pt;}
.wb{width:143.080000pt;}
.w6{width:144.960000pt;}
.w11{width:146.280000pt;}
.w13{width:146.600000pt;}
.w12{width:146.626667pt;}
.w1b{width:151.746667pt;}
.w1c{width:156.200000pt;}
.wc{width:164.546667pt;}
.w17{width:167.746667pt;}
.w27{width:194.640000pt;}
.w23{width:208.080000pt;}
.w1d{width:211.920000pt;}
.w1a{width:245.513333pt;}
.w20{width:268.240000pt;}
.w2a{width:413.120000pt;}
.w26{width:424.960000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w7{width:793.916667pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.346667pt;}
.x45{left:8.306667pt;}
.x31{left:9.600000pt;}
.x46{left:10.880000pt;}
.x4{left:11.826667pt;}
.x14{left:15.028000pt;}
.x19{left:16.308000pt;}
.x15{left:17.268000pt;}
.x3d{left:19.213333pt;}
.x3e{left:20.173333pt;}
.x2f{left:21.440000pt;}
.x54{left:22.386667pt;}
.x6{left:25.586667pt;}
.x33{left:26.866667pt;}
.x39{left:28.800000pt;}
.x5d{left:29.746667pt;}
.x4d{left:30.706667pt;}
.x59{left:32.320000pt;}
.x3c{left:33.626667pt;}
.x47{left:36.160000pt;}
.x37{left:38.093333pt;}
.xf{left:39.028000pt;}
.x1a{left:42.260000pt;}
.x58{left:43.520000pt;}
.x10{left:45.140000pt;}
.x4f{left:46.426667pt;}
.x13{left:47.380000pt;}
.xe{left:48.980000pt;}
.x4e{left:49.933333pt;}
.x1c{left:50.900000pt;}
.x4a{left:51.853333pt;}
.x34{left:54.106667pt;}
.x17{left:55.373333pt;}
.x41{left:57.000000pt;}
.x1b{left:58.902667pt;}
.x6f{left:59.866667pt;}
.x7c{left:62.213333pt;}
.x44{left:63.360000pt;}
.x12{left:64.982667pt;}
.x48{left:66.560000pt;}
.x1{left:69.804000pt;}
.x7d{left:71.173333pt;}
.x66{left:74.373333pt;}
.x7{left:76.832000pt;}
.x3b{left:79.386667pt;}
.x2a{left:81.632000pt;}
.x2{left:84.822667pt;}
.x87{left:86.432000pt;}
.x1d{left:91.542667pt;}
.x18{left:95.062667pt;}
.x2c{left:100.832000pt;}
.x88{left:105.632000pt;}
.x1e{left:107.893333pt;}
.x68{left:109.440000pt;}
.x11{left:110.742667pt;}
.x5a{left:119.764000pt;}
.x20{left:124.864000pt;}
.x81{left:129.340667pt;}
.x6b{left:130.306667pt;}
.x7e{left:138.493333pt;}
.x1f{left:140.533333pt;}
.x63{left:157.200000pt;}
.x3{left:162.000000pt;}
.x79{left:164.666667pt;}
.x5e{left:166.800000pt;}
.x80{left:168.893333pt;}
.x85{left:170.306667pt;}
.x86{left:172.226667pt;}
.x49{left:176.720000pt;}
.x69{left:179.933333pt;}
.x36{left:181.840000pt;}
.x65{left:183.680000pt;}
.x6c{left:189.520000pt;}
.x16{left:194.640000pt;}
.x55{left:210.333333pt;}
.x78{left:213.760000pt;}
.x51{left:220.573333pt;}
.x40{left:224.413333pt;}
.x73{left:238.170000pt;}
.x74{left:242.333333pt;}
.x2e{left:248.093333pt;}
.x7f{left:253.053333pt;}
.x7a{left:254.146667pt;}
.x23{left:263.450000pt;}
.x24{left:267.613333pt;}
.x29{left:268.893333pt;}
.x60{left:279.173333pt;}
.x50{left:288.773333pt;}
.x6a{left:294.533333pt;}
.x25{left:305.730000pt;}
.x26{left:309.893333pt;}
.x3f{left:315.653333pt;}
.x67{left:320.800000pt;}
.x4b{left:323.653333pt;}
.x38{left:325.573333pt;}
.x35{left:326.853333pt;}
.x2d{left:330.373333pt;}
.x30{left:334.853333pt;}
.x7b{left:343.613333pt;}
.x52{left:355.040000pt;}
.x2b{left:356.316667pt;}
.x42{left:359.520000pt;}
.xb{left:360.480000pt;}
.x5b{left:365.920000pt;}
.x56{left:378.720000pt;}
.x76{left:381.916667pt;}
.x6d{left:384.800000pt;}
.x77{left:386.080000pt;}
.x61{left:431.840000pt;}
.x32{left:456.520000pt;}
.x4c{left:470.920000pt;}
.x53{left:480.840000pt;}
.x3a{left:490.760000pt;}
.x57{left:496.840000pt;}
.x43{left:499.400000pt;}
.x5f{left:501.960000pt;}
.xc{left:503.226667pt;}
.x6e{left:511.560000pt;}
.x5c{left:518.320000pt;}
.x84{left:519.906667pt;}
.x27{left:520.863333pt;}
.x28{left:525.026667pt;}
.x82{left:526.303333pt;}
.x83{left:534.626667pt;}
.x62{left:554.160000pt;}
.x71{left:569.823333pt;}
.x72{left:573.986667pt;}
.x64{left:610.173333pt;}
.x70{left:628.093333pt;}
.xa{left:635.773333pt;}
.x21{left:672.930000pt;}
.x22{left:677.093333pt;}
.x9{left:680.933333pt;}
.x8{left:697.573333pt;}
.x75{left:713.250000pt;}
.xd{left:717.413333pt;}
}




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