
    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_b5043739093223896e134669.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_ae8cf992cb73a1e67424e042.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8c74f8d93911a47531250560.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_225279bcea3b625470e21dfd.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.106934;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_85375e6a4618de5643a50ecd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.884277;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_e5fecddf3c0f61614045d08c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_c2554c82ef88c81a21c5e83e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e7467f31bbac4840d7c5a667.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_9506e86fc1a694702a368ba2.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.104004;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_cac0e1f4f015b2cc6e678341.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.112305;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_d112cce9df339dc4327c8dce.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_a04d5dc747c62d55943a1fa1.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.063477;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_f0c7221355f5af2d79d2e6f5.woff2')format("woff");}.fff{font-family:fff;line-height:1.098145;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-17.280000px;}
.v4{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.160000px;}
.v6{vertical-align:27.360000px;}
.v2{vertical-align:30.240000px;}
.v1{vertical-align:35.280000px;}
.ls6{letter-spacing:-2.988000px;}
.ls20{letter-spacing:-0.666000px;}
.ls18{letter-spacing:-0.612000px;}
.lsd{letter-spacing:-0.540000px;}
.ls36{letter-spacing:-0.513600px;}
.ls35{letter-spacing:-0.460200px;}
.ls15{letter-spacing:-0.413400px;}
.ls12{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.206400px;}
.ls17{letter-spacing:-0.172200px;}
.ls19{letter-spacing:-0.131400px;}
.ls1a{letter-spacing:-0.058320px;}
.ls7{letter-spacing:-0.053280px;}
.ls31{letter-spacing:-0.008640px;}
.ls2b{letter-spacing:-0.004320px;}
.ls0{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.012960px;}
.ls1f{letter-spacing:0.053280px;}
.lse{letter-spacing:0.054720px;}
.ls2d{letter-spacing:0.106560px;}
.lsb{letter-spacing:0.106800px;}
.lsa{letter-spacing:0.109200px;}
.ls1e{letter-spacing:0.135600px;}
.ls5{letter-spacing:0.150000px;}
.ls21{letter-spacing:0.156000px;}
.ls27{letter-spacing:0.174240px;}
.ls4{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.259800px;}
.ls1c{letter-spacing:0.298800px;}
.ls33{letter-spacing:0.300000px;}
.ls1{letter-spacing:0.322560px;}
.ls2{letter-spacing:0.360000px;}
.ls30{letter-spacing:0.466800px;}
.ls22{letter-spacing:0.513600px;}
.ls9{letter-spacing:0.666000px;}
.ls10{letter-spacing:0.828000px;}
.lsf{letter-spacing:0.829440px;}
.ls3{letter-spacing:0.900000px;}
.ls2a{letter-spacing:0.924000px;}
.ls11{letter-spacing:1.080000px;}
.ls25{letter-spacing:1.620000px;}
.ls2f{letter-spacing:2.340000px;}
.ls13{letter-spacing:3.036000px;}
.ls29{letter-spacing:3.060000px;}
.ls23{letter-spacing:5.220000px;}
.ls2e{letter-spacing:5.940000px;}
.ls26{letter-spacing:6.660000px;}
.ls28{letter-spacing:8.100000px;}
.ls1d{letter-spacing:11.700000px;}
.ls1b{letter-spacing:13.140000px;}
.ls34{letter-spacing:15.300000px;}
.ls14{letter-spacing:16.020000px;}
.ls24{letter-spacing:16.734240px;}
.ls16{letter-spacing:16.959600px;}
.ls32{letter-spacing:21.780000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-16.613280px;}
.wsa{word-spacing:-16.020000px;}
.ws19{word-spacing:-15.864000px;}
.ws1f{word-spacing:-15.768000px;}
.ws7{word-spacing:-15.606000px;}
.ws17{word-spacing:-15.453600px;}
.ws1c{word-spacing:-15.406800px;}
.ws3{word-spacing:-15.300000px;}
.ws16{word-spacing:-15.238800px;}
.ws6{word-spacing:-15.199800px;}
.wsb{word-spacing:-15.046800px;}
.ws15{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.886720px;}
.ws9{word-spacing:-14.733600px;}
.ws12{word-spacing:-14.580000px;}
.wsc{word-spacing:-14.526600px;}
.ws20{word-spacing:-14.426400px;}
.ws18{word-spacing:-14.274000px;}
.ws8{word-spacing:-13.734480px;}
.ws2{word-spacing:-13.625280px;}
.ws14{word-spacing:-13.447440px;}
.ws13{word-spacing:-13.406904px;}
.wse{word-spacing:-13.147200px;}
.wsd{word-spacing:-12.975000px;}
.ws1b{word-spacing:-9.732960px;}
.ws1d{word-spacing:-9.720000px;}
.ws1a{word-spacing:-9.715680px;}
.ws1e{word-spacing:-9.711360px;}
.ws0{word-spacing:0.000000px;}
.ws10{word-spacing:341.234400px;}
.wsf{word-spacing:344.493120px;}
.ws11{word-spacing:356.682720px;}
._1{margin-left:-3.944160px;}
._0{margin-left:-2.808720px;}
._2{margin-left:-1.374480px;}
._5{width:1.092960px;}
._a{width:2.172000px;}
._4{width:3.183840px;}
._26{width:4.195680px;}
._6{width:5.196000px;}
._10{width:6.312480px;}
._3{width:7.332480px;}
._9{width:8.480160px;}
._b{width:9.903120px;}
._d{width:11.175120px;}
._e{width:12.564720px;}
._15{width:13.906800px;}
._f{width:16.015680px;}
._14{width:17.327280px;}
._c{width:18.406800px;}
._13{width:19.422000px;}
._11{width:20.646720px;}
._12{width:21.879120px;}
._1a{width:23.772960px;}
._1c{width:25.276800px;}
._1b{width:26.874720px;}
._7{width:28.463040px;}
._8{width:29.640960px;}
._18{width:31.603680px;}
._27{width:32.658240px;}
._19{width:33.678240px;}
._28{width:34.686000px;}
._1d{width:35.856000px;}
._1e{width:36.974160px;}
._16{width:49.839840px;}
._17{width:51.330000px;}
._1f{width:73.742400px;}
._22{width:129.321600px;}
._23{width:509.520000px;}
._21{width:849.915840px;}
._24{width:873.341760px;}
._25{width:914.851200px;}
._20{width:1018.560000px;}
.fc7{color:rgb(42,45,53);}
.fc6{color:rgb(0,128,0);}
.fc5{color:rgb(156,0,6);}
.fc4{color:rgb(0,97,0);}
.fc3{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(156,154,126);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:2.880000px;}
.fs6{font-size:5.760000px;}
.fsb{font-size:38.880000px;}
.fsc{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fs7{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fsd{font-size:59.904000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsa{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.y13d{bottom:-10.275000px;}
.y0{bottom:0.000000px;}
.y24{bottom:2.370000px;}
.y138{bottom:3.585000px;}
.y120{bottom:3.600000px;}
.y135{bottom:3.765000px;}
.y11c{bottom:3.780000px;}
.y134{bottom:5.385000px;}
.y11e{bottom:5.400000px;}
.y13c{bottom:7.005000px;}
.y26{bottom:7.230000px;}
.y25{bottom:24.510000px;}
.y23{bottom:24.870000px;}
.y52{bottom:56.520000px;}
.y2a{bottom:64.800000px;}
.y5{bottom:66.525004px;}
.y29{bottom:78.480000px;}
.y28{bottom:92.340000px;}
.y18f{bottom:92.880000px;}
.yf1{bottom:95.940000px;}
.y118{bottom:96.660000px;}
.y4{bottom:97.125005px;}
.y174{bottom:103.500000px;}
.y7e{bottom:104.940000px;}
.ycb{bottom:105.660000px;}
.y50{bottom:107.100000px;}
.y18e{bottom:110.160000px;}
.yf0{bottom:113.220000px;}
.y117{bottom:113.940000px;}
.y161{bottom:114.660000px;}
.y1ab{bottom:118.440000px;}
.y173{bottom:120.600000px;}
.y7d{bottom:122.220000px;}
.yca{bottom:122.940000px;}
.y143{bottom:123.300000px;}
.y18d{bottom:127.440000px;}
.yef{bottom:130.320000px;}
.y14b{bottom:130.500000px;}
.y116{bottom:131.220000px;}
.y160{bottom:131.940000px;}
.y4f{bottom:132.840000px;}
.y1aa{bottom:135.720000px;}
.y21{bottom:139.264499px;}
.y7c{bottom:139.500000px;}
.yc9{bottom:140.220000px;}
.y142{bottom:140.580000px;}
.y172{bottom:146.880000px;}
.yee{bottom:147.600000px;}
.y4e{bottom:148.500000px;}
.yea{bottom:149.040000px;}
.y15f{bottom:149.220000px;}
.y18c{bottom:153.720000px;}
.y141{bottom:154.800000px;}
.y4d{bottom:155.340000px;}
.y7b{bottom:156.600000px;}
.yc8{bottom:157.500000px;}
.y1a9{bottom:162.000000px;}
.y14a{bottom:164.880000px;}
.y115{bottom:165.600000px;}
.ye9{bottom:166.320000px;}
.y15e{bottom:166.500000px;}
.y18b{bottom:171.000000px;}
.y171{bottom:173.160000px;}
.ya4{bottom:173.880000px;}
.yc7{bottom:174.600000px;}
.y4c{bottom:176.040000px;}
.y140{bottom:176.220000px;}
.y1a8{bottom:179.100000px;}
.y149{bottom:182.160000px;}
.y7a{bottom:182.880000px;}
.ye8{bottom:183.600000px;}
.y18a{bottom:188.130000px;}
.y170{bottom:190.470000px;}
.ya3{bottom:191.190000px;}
.y16b{bottom:191.910000px;}
.y18{bottom:196.933500px;}
.y13f{bottom:197.505000px;}
.y148{bottom:199.470000px;}
.y79{bottom:200.190000px;}
.ye7{bottom:200.730000px;}
.yc6{bottom:200.910000px;}
.y1a7{bottom:205.410000px;}
.y16f{bottom:207.750000px;}
.ya2{bottom:208.470000px;}
.y16a{bottom:209.190000px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y4b{bottom:212.070000px;}
.y189{bottom:214.410000px;}
.y147{bottom:216.750000px;}
.y78{bottom:217.470000px;}
.yc5{bottom:218.190000px;}
.y13e{bottom:218.745000px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y1a6{bottom:222.690000px;}
.y16e{bottom:225.030000px;}
.ya1{bottom:225.750000px;}
.y169{bottom:226.470000px;}
.ye6{bottom:226.650000px;}
.y4a{bottom:229.350000px;}
.y188{bottom:231.690000px;}
.y146{bottom:234.030000px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y77{bottom:234.750000px;}
.yc4{bottom:235.470000px;}
.y1be{bottom:239.970000px;}
.y13b{bottom:240.165000px;}
.ya0{bottom:243.030000px;}
.y168{bottom:243.750000px;}
.y15d{bottom:244.470000px;}
.y49{bottom:246.450000px;}
.y1a5{bottom:248.970000px;}
.y16d{bottom:250.770000px;}
.y145{bottom:251.130000px;}
.y76{bottom:252.030000px;}
.yc3{bottom:252.750000px;}
.y187{bottom:257.970000px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y9f{bottom:260.130000px;}
.y167{bottom:261.030000px;}
.y13a{bottom:261.405000px;}
.y15c{bottom:261.750000px;}
.y48{bottom:263.730000px;}
.y1a4{bottom:266.250000px;}
.y1bd{bottom:267.690000px;}
.y75{bottom:269.130000px;}
.yed{bottom:269.850000px;}
.yc2{bottom:270.030000px;}
.ye5{bottom:271.290000px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y186{bottom:275.250000px;}
.y144{bottom:277.050000px;}
.y9e{bottom:277.410000px;}
.y166{bottom:278.130000px;}
.y15b{bottom:279.030000px;}
.y139{bottom:282.645000px;}
.y1a3{bottom:283.530000px;}
.y1bc{bottom:284.970000px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y74{bottom:286.410000px;}
.yc1{bottom:287.130000px;}
.ye4{bottom:288.570000px;}
.y47{bottom:289.650000px;}
.y103{bottom:293.610000px;}
.y9d{bottom:294.690000px;}
.yf2{bottom:294.840000px;}
.y165{bottom:295.410000px;}
.y15a{bottom:296.130000px;}
.y185{bottom:301.530000px;}
.y1bb{bottom:302.250000px;}
.y73{bottom:303.690000px;}
.y137{bottom:304.065000px;}
.yc0{bottom:304.410000px;}
.ye3{bottom:305.850000px;}
.y1a2{bottom:309.630000px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y9c{bottom:311.970000px;}
.y159{bottom:313.410000px;}
.y184{bottom:318.630000px;}
.y114{bottom:320.970000px;}
.ybf{bottom:321.690000px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.ye2{bottom:323.130000px;}
.y136{bottom:325.305000px;}
.y1a1{bottom:326.910000px;}
.y1ba{bottom:328.530000px;}
.y9b{bottom:329.250000px;}
.y72{bottom:329.970000px;}
.y158{bottom:330.690000px;}
.y46{bottom:333.750000px;}
.y104{bottom:336.930000px;}
.ybe{bottom:338.970000px;}
.ye1{bottom:340.230000px;}
.y183{bottom:344.910000px;}
.y1b9{bottom:345.630000px;}
.y9a{bottom:346.530000px;}
.y133{bottom:346.545000px;}
.y71{bottom:347.250000px;}
.y157{bottom:347.970000px;}
.yf{bottom:348.133500px;}
.y1a0{bottom:353.190000px;}
.ybd{bottom:356.250000px;}
.y45{bottom:358.770000px;}
.yfe{bottom:360.690000px;}
.y182{bottom:362.190000px;}
.y1b8{bottom:362.910000px;}
.ye0{bottom:363.090000px;}
.y70{bottom:364.530000px;}
.y156{bottom:365.250000px;}
.y132{bottom:367.995000px;}
.y19f{bottom:370.515000px;}
.ydf{bottom:370.695000px;}
.y99{bottom:372.675000px;}
.ybc{bottom:373.575000px;}
.y105{bottom:380.265000px;}
.y6f{bottom:381.675000px;}
.y100{bottom:382.350000px;}
.y155{bottom:382.575000px;}
.y44{bottom:385.095000px;}
.yfb{bottom:386.670000px;}
.ye{bottom:386.785499px;}
.y19e{bottom:387.795000px;}
.y181{bottom:388.515000px;}
.y131{bottom:389.235000px;}
.y98{bottom:389.955000px;}
.ybb{bottom:390.675000px;}
.yf4{bottom:390.990000px;}
.yfc{bottom:395.310000px;}
.y113{bottom:398.955000px;}
.y154{bottom:399.675000px;}
.yde{bottom:401.655000px;}
.y180{bottom:405.795000px;}
.y1b7{bottom:406.515000px;}
.y97{bottom:407.235000px;}
.y6e{bottom:407.955000px;}
.yd{bottom:408.044999px;}
.yf3{bottom:408.315000px;}
.y130{bottom:410.475000px;}
.y43{bottom:411.375000px;}
.y19d{bottom:414.075000px;}
.y112{bottom:416.235000px;}
.yba{bottom:416.955000px;}
.ydd{bottom:418.935000px;}
.yf7{bottom:421.305000px;}
.y106{bottom:423.570000px;}
.y96{bottom:424.515000px;}
.y16c{bottom:424.875000px;}
.y6d{bottom:425.235000px;}
.yfa{bottom:425.670000px;}
.y42{bottom:428.655000px;}
.yf5{bottom:429.990000px;}
.y19c{bottom:431.175000px;}
.y12f{bottom:431.895000px;}
.y17f{bottom:432.075000px;}
.y1b6{bottom:432.795000px;}
.y111{bottom:433.515000px;}
.yb9{bottom:434.235000px;}
.ydc{bottom:436.035000px;}
.y95{bottom:441.795000px;}
.y6c{bottom:442.515000px;}
.y41{bottom:445.755000px;}
.y101{bottom:447.300000px;}
.y17e{bottom:449.175000px;}
.y1b5{bottom:450.075000px;}
.yb8{bottom:451.515000px;}
.y12e{bottom:453.135000px;}
.ydb{bottom:453.315000px;}
.yf8{bottom:455.970000px;}
.y19b{bottom:457.455000px;}
.y94{bottom:459.075000px;}
.y6b{bottom:459.795000px;}
.y40{bottom:463.035000px;}
.yfd{bottom:464.655000px;}
.y107{bottom:466.890000px;}
.y1b4{bottom:467.175000px;}
.yb7{bottom:468.795000px;}
.y12d{bottom:474.375000px;}
.y19a{bottom:474.735000px;}
.y17d{bottom:475.455000px;}
.y93{bottom:476.175000px;}
.y6a{bottom:477.075000px;}
.yff{bottom:477.645000px;}
.y153{bottom:477.795000px;}
.yda{bottom:478.155000px;}
.y3f{bottom:480.315000px;}
.y1b3{bottom:484.455000px;}
.yd9{bottom:485.715000px;}
.yb6{bottom:486.075000px;}
.yf9{bottom:486.285000px;}
.y199{bottom:492.015000px;}
.y17c{bottom:492.735000px;}
.y92{bottom:493.455000px;}
.y69{bottom:494.175000px;}
.y152{bottom:495.075000px;}
.y12c{bottom:495.795000px;}
.y3e{bottom:497.595000px;}
.y1b2{bottom:501.735000px;}
.yc{bottom:502.864502px;}
.yb5{bottom:503.175000px;}
.y108{bottom:510.195000px;}
.y91{bottom:510.735000px;}
.y68{bottom:511.455000px;}
.y151{bottom:512.175000px;}
.y3d{bottom:514.875000px;}
.yd8{bottom:516.495000px;}
.y12b{bottom:517.035000px;}
.y198{bottom:518.295000px;}
.y17b{bottom:519.015000px;}
.yb4{bottom:520.455000px;}
.yb{bottom:520.864502px;}
.yf6{bottom:525.270000px;}
.y90{bottom:528.015000px;}
.y67{bottom:528.735000px;}
.y150{bottom:529.455000px;}
.y3c{bottom:532.155000px;}
.yd7{bottom:533.775000px;}
.y197{bottom:535.395000px;}
.y17a{bottom:536.295000px;}
.yb3{bottom:537.735000px;}
.y12a{bottom:538.275000px;}
.ya{bottom:538.864499px;}
.y8f{bottom:545.295000px;}
.y66{bottom:546.015000px;}
.y14f{bottom:546.765000px;}
.y102{bottom:546.945000px;}
.y3b{bottom:549.285000px;}
.yd6{bottom:551.085000px;}
.y109{bottom:553.530000px;}
.yb2{bottom:555.045000px;}
.y9{bottom:556.864499px;}
.y129{bottom:559.725000px;}
.y196{bottom:561.705000px;}
.y8e{bottom:562.425000px;}
.y164{bottom:563.325000px;}
.y14e{bottom:564.045000px;}
.y3a{bottom:566.565000px;}
.y65{bottom:572.325000px;}
.yd5{bottom:575.925000px;}
.y195{bottom:578.985000px;}
.y8d{bottom:579.705000px;}
.y163{bottom:580.425000px;}
.y128{bottom:580.965000px;}
.yb1{bottom:581.325000px;}
.yd4{bottom:583.485000px;}
.y39{bottom:583.845000px;}
.y1b1{bottom:588.705000px;}
.y64{bottom:589.425000px;}
.y8c{bottom:596.985000px;}
.yb0{bottom:598.425000px;}
.y38{bottom:601.125000px;}
.y127{bottom:602.205000px;}
.y194{bottom:605.265000px;}
.y1b0{bottom:605.985000px;}
.y63{bottom:606.705000px;}
.y8b{bottom:614.265000px;}
.yaf{bottom:615.705000px;}
.y37{bottom:618.405000px;}
.y193{bottom:622.545000px;}
.y1af{bottom:623.265000px;}
.y126{bottom:623.625000px;}
.y62{bottom:623.985000px;}
.yd3{bottom:631.545000px;}
.yae{bottom:632.985000px;}
.y36{bottom:635.685000px;}
.y8a{bottom:640.545000px;}
.y61{bottom:641.265000px;}
.y14d{bottom:641.985000px;}
.y125{bottom:644.865000px;}
.y8{bottom:645.510000px;}
.y192{bottom:648.825000px;}
.y1ae{bottom:649.545000px;}
.yad{bottom:650.265000px;}
.y35{bottom:652.785000px;}
.yd2{bottom:654.405000px;}
.y89{bottom:657.825000px;}
.y60{bottom:658.545000px;}
.y14c{bottom:659.265000px;}
.yd1{bottom:661.965000px;}
.y191{bottom:665.925000px;}
.y124{bottom:666.105000px;}
.y7{bottom:666.771000px;}
.y1ad{bottom:666.825000px;}
.yac{bottom:667.545000px;}
.y34{bottom:670.065000px;}
.y88{bottom:674.925000px;}
.y5f{bottom:675.825000px;}
.y110{bottom:676.545000px;}
.y1ac{bottom:683.925000px;}
.yab{bottom:684.825000px;}
.y33{bottom:687.345000px;}
.y123{bottom:687.525000px;}
.y87{bottom:692.205000px;}
.y5e{bottom:692.925000px;}
.y10f{bottom:693.825000px;}
.y179{bottom:701.205000px;}
.yaa{bottom:701.925000px;}
.y32{bottom:704.625000px;}
.y122{bottom:708.765000px;}
.y86{bottom:709.485000px;}
.y5d{bottom:710.205000px;}
.y10e{bottom:710.925000px;}
.y178{bottom:718.485000px;}
.ya9{bottom:719.205000px;}
.y31{bottom:721.905000px;}
.y6{bottom:726.298500px;}
.y85{bottom:726.765000px;}
.yd0{bottom:727.305000px;}
.y5c{bottom:727.485000px;}
.y10d{bottom:728.250000px;}
.y121{bottom:730.050000px;}
.y177{bottom:735.810000px;}
.ya8{bottom:736.530000px;}
.y30{bottom:739.050000px;}
.y84{bottom:744.090000px;}
.ycf{bottom:744.630000px;}
.y5b{bottom:744.810000px;}
.y10c{bottom:745.530000px;}
.y11f{bottom:751.470000px;}
.y3{bottom:752.599495px;}
.y190{bottom:753.090000px;}
.ya7{bottom:753.810000px;}
.y2f{bottom:756.330000px;}
.yce{bottom:761.910000px;}
.y5a{bottom:762.090000px;}
.y10b{bottom:762.810000px;}
.y83{bottom:770.010000px;}
.ya6{bottom:771.090000px;}
.y11d{bottom:772.710000px;}
.y176{bottom:779.370000px;}
.y10a{bottom:780.090000px;}
.ycd{bottom:784.590000px;}
.y59{bottom:788.370000px;}
.ycc{bottom:792.150000px;}
.y11b{bottom:793.950000px;}
.y175{bottom:796.470000px;}
.ya5{bottom:797.370000px;}
.y58{bottom:805.470000px;}
.y2d{bottom:809.970000px;}
.y82{bottom:814.470000px;}
.y2e{bottom:818.250000px;}
.y11a{bottom:821.670000px;}
.y57{bottom:822.750000px;}
.y81{bottom:831.750000px;}
.y119{bottom:838.950000px;}
.y56{bottom:840.030000px;}
.y2c{bottom:840.570000px;}
.y80{bottom:849.030000px;}
.y55{bottom:857.310000px;}
.y7f{bottom:866.310000px;}
.y2b{bottom:866.490000px;}
.y162{bottom:874.590000px;}
.y2{bottom:879.369000px;}
.yec{bottom:883.230000px;}
.y54{bottom:883.590000px;}
.yeb{bottom:900.510000px;}
.y53{bottom:900.870000px;}
.y27{bottom:905.730000px;}
.y22{bottom:907.890000px;}
.y51{bottom:932.580000px;}
.y1{bottom:966.726000px;}
.hf{height:4.367813px;}
.h22{height:20.505000px;}
.h24{height:20.520000px;}
.h26{height:20.541000px;}
.h23{height:20.542500px;}
.h25{height:20.550000px;}
.h27{height:20.556000px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h10{height:35.120039px;}
.hc{height:38.370000px;}
.h18{height:39.183750px;}
.h19{height:43.506914px;}
.h21{height:45.316055px;}
.h20{height:45.425250px;}
.h7{height:45.960000px;}
.h3{height:48.195000px;}
.h1a{height:48.224531px;}
.h6{height:48.258000px;}
.h14{height:48.616875px;}
.h17{height:50.229844px;}
.h28{height:53.573906px;}
.h2{height:55.152000px;}
.h1e{height:58.621992px;}
.hd{height:58.651172px;}
.h16{height:60.226875px;}
.he{height:62.327813px;}
.h12{height:63.949219px;}
.h2a{height:65.010937px;}
.h29{height:65.518594px;}
.h1b{height:70.474219px;}
.h15{height:72.562500px;}
.h5{height:78.132000px;}
.h1c{height:88.891172px;}
.h1d{height:89.071172px;}
.h11{height:90.703125px;}
.h4{height:119.055004px;}
.h1f{height:576.000000px;}
.hb{height:999.000000px;}
.h13{height:999.358035px;}
.ha{height:999.360000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w5{width:31.894500px;}
.w10{width:57.045000px;}
.w11{width:57.225000px;}
.w12{width:57.261000px;}
.wb{width:57.405000px;}
.wc{width:57.585000px;}
.wd{width:57.621000px;}
.wf{width:62.265000px;}
.we{width:62.625000px;}
.w6{width:95.749500px;}
.wa{width:304.804500px;}
.w7{width:436.050000px;}
.w9{width:541.080000px;}
.w2{width:637.794021px;}
.w8{width:701.638125px;}
.w3{width:701.640000px;}
.w4{width:702.000000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2e{left:4.849500px;}
.x36{left:6.660000px;}
.x6{left:8.098500px;}
.x2c{left:9.864000px;}
.x34{left:11.865000px;}
.x30{left:12.945000px;}
.x35{left:14.580000px;}
.xa{left:16.905000px;}
.x39{left:21.045000px;}
.x3a{left:23.580000px;}
.x38{left:24.645000px;}
.x37{left:27.720000px;}
.x16{left:40.320000px;}
.x9{left:52.050000px;}
.x5{left:53.101500px;}
.x17{left:76.320000px;}
.x2d{left:80.146500px;}
.x7{left:85.006500px;}
.xe{left:92.376000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x18{left:112.290000px;}
.x19{left:130.290000px;}
.x1a{left:148.290000px;}
.xb{left:166.528125px;}
.xc{left:172.650000px;}
.x8{left:180.765000px;}
.x1b{left:184.290000px;}
.x1c{left:202.290000px;}
.x4{left:203.484001px;}
.x1d{left:220.290000px;}
.x1e{left:238.245000px;}
.x1f{left:256.245000px;}
.x20{left:274.245000px;}
.x21{left:292.245000px;}
.xd{left:301.035000px;}
.x22{left:328.245000px;}
.x23{left:346.245000px;}
.x14{left:348.195000px;}
.x11{left:354.675000px;}
.x12{left:361.515000px;}
.x24{left:364.245000px;}
.x13{left:373.785000px;}
.x25{left:382.215000px;}
.x2f{left:385.320000px;}
.x26{left:400.215000px;}
.x27{left:418.215000px;}
.x28{left:436.215000px;}
.x31{left:443.100000px;}
.x3{left:454.959000px;}
.x29{left:472.215000px;}
.xf{left:477.105000px;}
.x2a{left:490.215000px;}
.x32{left:501.060000px;}
.x2b{left:508.170000px;}
.x33{left:559.050000px;}
.x10{left:596.130000px;}
.x15{left:626.190000px;}
@media print{
.v5{vertical-align:-15.360000pt;}
.v4{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.920000pt;}
.v6{vertical-align:24.320000pt;}
.v2{vertical-align:26.880000pt;}
.v1{vertical-align:31.360000pt;}
.ls6{letter-spacing:-2.656000pt;}
.ls20{letter-spacing:-0.592000pt;}
.ls18{letter-spacing:-0.544000pt;}
.lsd{letter-spacing:-0.480000pt;}
.ls36{letter-spacing:-0.456533pt;}
.ls35{letter-spacing:-0.409067pt;}
.ls15{letter-spacing:-0.367467pt;}
.ls12{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.183467pt;}
.ls17{letter-spacing:-0.153067pt;}
.ls19{letter-spacing:-0.116800pt;}
.ls1a{letter-spacing:-0.051840pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls31{letter-spacing:-0.007680pt;}
.ls2b{letter-spacing:-0.003840pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.011520pt;}
.ls1f{letter-spacing:0.047360pt;}
.lse{letter-spacing:0.048640pt;}
.ls2d{letter-spacing:0.094720pt;}
.lsb{letter-spacing:0.094933pt;}
.lsa{letter-spacing:0.097067pt;}
.ls1e{letter-spacing:0.120533pt;}
.ls5{letter-spacing:0.133333pt;}
.ls21{letter-spacing:0.138667pt;}
.ls27{letter-spacing:0.154880pt;}
.ls4{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.230933pt;}
.ls1c{letter-spacing:0.265600pt;}
.ls33{letter-spacing:0.266667pt;}
.ls1{letter-spacing:0.286720pt;}
.ls2{letter-spacing:0.320000pt;}
.ls30{letter-spacing:0.414933pt;}
.ls22{letter-spacing:0.456533pt;}
.ls9{letter-spacing:0.592000pt;}
.ls10{letter-spacing:0.736000pt;}
.lsf{letter-spacing:0.737280pt;}
.ls3{letter-spacing:0.800000pt;}
.ls2a{letter-spacing:0.821333pt;}
.ls11{letter-spacing:0.960000pt;}
.ls25{letter-spacing:1.440000pt;}
.ls2f{letter-spacing:2.080000pt;}
.ls13{letter-spacing:2.698667pt;}
.ls29{letter-spacing:2.720000pt;}
.ls23{letter-spacing:4.640000pt;}
.ls2e{letter-spacing:5.280000pt;}
.ls26{letter-spacing:5.920000pt;}
.ls28{letter-spacing:7.200000pt;}
.ls1d{letter-spacing:10.400000pt;}
.ls1b{letter-spacing:11.680000pt;}
.ls34{letter-spacing:13.600000pt;}
.ls14{letter-spacing:14.240000pt;}
.ls24{letter-spacing:14.874880pt;}
.ls16{letter-spacing:15.075200pt;}
.ls32{letter-spacing:19.360000pt;}
.ws1{word-spacing:-14.767360pt;}
.wsa{word-spacing:-14.240000pt;}
.ws19{word-spacing:-14.101333pt;}
.ws1f{word-spacing:-14.016000pt;}
.ws7{word-spacing:-13.872000pt;}
.ws17{word-spacing:-13.736533pt;}
.ws1c{word-spacing:-13.694933pt;}
.ws3{word-spacing:-13.600000pt;}
.ws16{word-spacing:-13.545600pt;}
.ws6{word-spacing:-13.510933pt;}
.wsb{word-spacing:-13.374933pt;}
.ws15{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.232640pt;}
.ws9{word-spacing:-13.096533pt;}
.ws12{word-spacing:-12.960000pt;}
.wsc{word-spacing:-12.912533pt;}
.ws20{word-spacing:-12.823467pt;}
.ws18{word-spacing:-12.688000pt;}
.ws8{word-spacing:-12.208427pt;}
.ws2{word-spacing:-12.111360pt;}
.ws14{word-spacing:-11.953280pt;}
.ws13{word-spacing:-11.917248pt;}
.wse{word-spacing:-11.686400pt;}
.wsd{word-spacing:-11.533333pt;}
.ws1b{word-spacing:-8.651520pt;}
.ws1d{word-spacing:-8.640000pt;}
.ws1a{word-spacing:-8.636160pt;}
.ws1e{word-spacing:-8.632320pt;}
.ws0{word-spacing:0.000000pt;}
.ws10{word-spacing:303.319467pt;}
.wsf{word-spacing:306.216107pt;}
.ws11{word-spacing:317.051307pt;}
._1{margin-left:-3.505920pt;}
._0{margin-left:-2.496640pt;}
._2{margin-left:-1.221760pt;}
._5{width:0.971520pt;}
._a{width:1.930667pt;}
._4{width:2.830080pt;}
._26{width:3.729493pt;}
._6{width:4.618667pt;}
._10{width:5.611093pt;}
._3{width:6.517760pt;}
._9{width:7.537920pt;}
._b{width:8.802773pt;}
._d{width:9.933440pt;}
._e{width:11.168640pt;}
._15{width:12.361600pt;}
._f{width:14.236160pt;}
._14{width:15.402027pt;}
._c{width:16.361600pt;}
._13{width:17.264000pt;}
._11{width:18.352640pt;}
._12{width:19.448107pt;}
._1a{width:21.131520pt;}
._1c{width:22.468267pt;}
._1b{width:23.888640pt;}
._7{width:25.300480pt;}
._8{width:26.347520pt;}
._18{width:28.092160pt;}
._27{width:29.029547pt;}
._19{width:29.936213pt;}
._28{width:30.832000pt;}
._1d{width:31.872000pt;}
._1e{width:32.865920pt;}
._16{width:44.302080pt;}
._17{width:45.626667pt;}
._1f{width:65.548800pt;}
._22{width:114.952533pt;}
._23{width:452.906667pt;}
._21{width:755.480747pt;}
._24{width:776.303787pt;}
._25{width:813.201067pt;}
._20{width:905.386667pt;}
.fse{font-size:2.560000pt;}
.fs6{font-size:5.120000pt;}
.fsb{font-size:34.560000pt;}
.fsc{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fsd{font-size:53.248000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsa{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.y13d{bottom:-9.133333pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:2.106667pt;}
.y138{bottom:3.186667pt;}
.y120{bottom:3.200000pt;}
.y135{bottom:3.346667pt;}
.y11c{bottom:3.360000pt;}
.y134{bottom:4.786667pt;}
.y11e{bottom:4.800000pt;}
.y13c{bottom:6.226667pt;}
.y26{bottom:6.426667pt;}
.y25{bottom:21.786667pt;}
.y23{bottom:22.106667pt;}
.y52{bottom:50.240000pt;}
.y2a{bottom:57.600000pt;}
.y5{bottom:59.133337pt;}
.y29{bottom:69.760000pt;}
.y28{bottom:82.080000pt;}
.y18f{bottom:82.560000pt;}
.yf1{bottom:85.280000pt;}
.y118{bottom:85.920000pt;}
.y4{bottom:86.333337pt;}
.y174{bottom:92.000000pt;}
.y7e{bottom:93.280000pt;}
.ycb{bottom:93.920000pt;}
.y50{bottom:95.200000pt;}
.y18e{bottom:97.920000pt;}
.yf0{bottom:100.640000pt;}
.y117{bottom:101.280000pt;}
.y161{bottom:101.920000pt;}
.y1ab{bottom:105.280000pt;}
.y173{bottom:107.200000pt;}
.y7d{bottom:108.640000pt;}
.yca{bottom:109.280000pt;}
.y143{bottom:109.600000pt;}
.y18d{bottom:113.280000pt;}
.yef{bottom:115.840000pt;}
.y14b{bottom:116.000000pt;}
.y116{bottom:116.640000pt;}
.y160{bottom:117.280000pt;}
.y4f{bottom:118.080000pt;}
.y1aa{bottom:120.640000pt;}
.y21{bottom:123.790666pt;}
.y7c{bottom:124.000000pt;}
.yc9{bottom:124.640000pt;}
.y142{bottom:124.960000pt;}
.y172{bottom:130.560000pt;}
.yee{bottom:131.200000pt;}
.y4e{bottom:132.000000pt;}
.yea{bottom:132.480000pt;}
.y15f{bottom:132.640000pt;}
.y18c{bottom:136.640000pt;}
.y141{bottom:137.600000pt;}
.y4d{bottom:138.080000pt;}
.y7b{bottom:139.200000pt;}
.yc8{bottom:140.000000pt;}
.y1a9{bottom:144.000000pt;}
.y14a{bottom:146.560000pt;}
.y115{bottom:147.200000pt;}
.ye9{bottom:147.840000pt;}
.y15e{bottom:148.000000pt;}
.y18b{bottom:152.000000pt;}
.y171{bottom:153.920000pt;}
.ya4{bottom:154.560000pt;}
.yc7{bottom:155.200000pt;}
.y4c{bottom:156.480000pt;}
.y140{bottom:156.640000pt;}
.y1a8{bottom:159.200000pt;}
.y149{bottom:161.920000pt;}
.y7a{bottom:162.560000pt;}
.ye8{bottom:163.200000pt;}
.y18a{bottom:167.226667pt;}
.y170{bottom:169.306667pt;}
.ya3{bottom:169.946667pt;}
.y16b{bottom:170.586667pt;}
.y18{bottom:175.052000pt;}
.y13f{bottom:175.560000pt;}
.y148{bottom:177.306667pt;}
.y79{bottom:177.946667pt;}
.ye7{bottom:178.426667pt;}
.yc6{bottom:178.586667pt;}
.y1a7{bottom:182.586667pt;}
.y16f{bottom:184.666667pt;}
.ya2{bottom:185.306667pt;}
.y16a{bottom:185.946667pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y4b{bottom:188.506667pt;}
.y189{bottom:190.586667pt;}
.y147{bottom:192.666667pt;}
.y78{bottom:193.306667pt;}
.yc5{bottom:193.946667pt;}
.y13e{bottom:194.440000pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y1a6{bottom:197.946667pt;}
.y16e{bottom:200.026667pt;}
.ya1{bottom:200.666667pt;}
.y169{bottom:201.306667pt;}
.ye6{bottom:201.466667pt;}
.y4a{bottom:203.866667pt;}
.y188{bottom:205.946667pt;}
.y146{bottom:208.026667pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y77{bottom:208.666667pt;}
.yc4{bottom:209.306667pt;}
.y1be{bottom:213.306667pt;}
.y13b{bottom:213.480000pt;}
.ya0{bottom:216.026667pt;}
.y168{bottom:216.666667pt;}
.y15d{bottom:217.306667pt;}
.y49{bottom:219.066667pt;}
.y1a5{bottom:221.306667pt;}
.y16d{bottom:222.906667pt;}
.y145{bottom:223.226667pt;}
.y76{bottom:224.026667pt;}
.yc3{bottom:224.666667pt;}
.y187{bottom:229.306667pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y9f{bottom:231.226667pt;}
.y167{bottom:232.026667pt;}
.y13a{bottom:232.360000pt;}
.y15c{bottom:232.666667pt;}
.y48{bottom:234.426667pt;}
.y1a4{bottom:236.666667pt;}
.y1bd{bottom:237.946667pt;}
.y75{bottom:239.226667pt;}
.yed{bottom:239.866667pt;}
.yc2{bottom:240.026667pt;}
.ye5{bottom:241.146667pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y186{bottom:244.666667pt;}
.y144{bottom:246.266667pt;}
.y9e{bottom:246.586667pt;}
.y166{bottom:247.226667pt;}
.y15b{bottom:248.026667pt;}
.y139{bottom:251.240000pt;}
.y1a3{bottom:252.026667pt;}
.y1bc{bottom:253.306667pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y74{bottom:254.586667pt;}
.yc1{bottom:255.226667pt;}
.ye4{bottom:256.506667pt;}
.y47{bottom:257.466667pt;}
.y103{bottom:260.986667pt;}
.y9d{bottom:261.946667pt;}
.yf2{bottom:262.080000pt;}
.y165{bottom:262.586667pt;}
.y15a{bottom:263.226667pt;}
.y185{bottom:268.026667pt;}
.y1bb{bottom:268.666667pt;}
.y73{bottom:269.946667pt;}
.y137{bottom:270.280000pt;}
.yc0{bottom:270.586667pt;}
.ye3{bottom:271.866667pt;}
.y1a2{bottom:275.226667pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y9c{bottom:277.306667pt;}
.y159{bottom:278.586667pt;}
.y184{bottom:283.226667pt;}
.y114{bottom:285.306667pt;}
.ybf{bottom:285.946667pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.ye2{bottom:287.226667pt;}
.y136{bottom:289.160000pt;}
.y1a1{bottom:290.586667pt;}
.y1ba{bottom:292.026667pt;}
.y9b{bottom:292.666667pt;}
.y72{bottom:293.306667pt;}
.y158{bottom:293.946667pt;}
.y46{bottom:296.666667pt;}
.y104{bottom:299.493333pt;}
.ybe{bottom:301.306667pt;}
.ye1{bottom:302.426667pt;}
.y183{bottom:306.586667pt;}
.y1b9{bottom:307.226667pt;}
.y9a{bottom:308.026667pt;}
.y133{bottom:308.040000pt;}
.y71{bottom:308.666667pt;}
.y157{bottom:309.306667pt;}
.yf{bottom:309.452000pt;}
.y1a0{bottom:313.946667pt;}
.ybd{bottom:316.666667pt;}
.y45{bottom:318.906667pt;}
.yfe{bottom:320.613333pt;}
.y182{bottom:321.946667pt;}
.y1b8{bottom:322.586667pt;}
.ye0{bottom:322.746667pt;}
.y70{bottom:324.026667pt;}
.y156{bottom:324.666667pt;}
.y132{bottom:327.106667pt;}
.y19f{bottom:329.346667pt;}
.ydf{bottom:329.506667pt;}
.y99{bottom:331.266667pt;}
.ybc{bottom:332.066667pt;}
.y105{bottom:338.013333pt;}
.y6f{bottom:339.266667pt;}
.y100{bottom:339.866667pt;}
.y155{bottom:340.066667pt;}
.y44{bottom:342.306667pt;}
.yfb{bottom:343.706667pt;}
.ye{bottom:343.809333pt;}
.y19e{bottom:344.706667pt;}
.y181{bottom:345.346667pt;}
.y131{bottom:345.986667pt;}
.y98{bottom:346.626667pt;}
.ybb{bottom:347.266667pt;}
.yf4{bottom:347.546667pt;}
.yfc{bottom:351.386667pt;}
.y113{bottom:354.626667pt;}
.y154{bottom:355.266667pt;}
.yde{bottom:357.026667pt;}
.y180{bottom:360.706667pt;}
.y1b7{bottom:361.346667pt;}
.y97{bottom:361.986667pt;}
.y6e{bottom:362.626667pt;}
.yd{bottom:362.706666pt;}
.yf3{bottom:362.946667pt;}
.y130{bottom:364.866667pt;}
.y43{bottom:365.666667pt;}
.y19d{bottom:368.066667pt;}
.y112{bottom:369.986667pt;}
.yba{bottom:370.626667pt;}
.ydd{bottom:372.386667pt;}
.yf7{bottom:374.493333pt;}
.y106{bottom:376.506667pt;}
.y96{bottom:377.346667pt;}
.y16c{bottom:377.666667pt;}
.y6d{bottom:377.986667pt;}
.yfa{bottom:378.373333pt;}
.y42{bottom:381.026667pt;}
.yf5{bottom:382.213333pt;}
.y19c{bottom:383.266667pt;}
.y12f{bottom:383.906667pt;}
.y17f{bottom:384.066667pt;}
.y1b6{bottom:384.706667pt;}
.y111{bottom:385.346667pt;}
.yb9{bottom:385.986667pt;}
.ydc{bottom:387.586667pt;}
.y95{bottom:392.706667pt;}
.y6c{bottom:393.346667pt;}
.y41{bottom:396.226667pt;}
.y101{bottom:397.600000pt;}
.y17e{bottom:399.266667pt;}
.y1b5{bottom:400.066667pt;}
.yb8{bottom:401.346667pt;}
.y12e{bottom:402.786667pt;}
.ydb{bottom:402.946667pt;}
.yf8{bottom:405.306667pt;}
.y19b{bottom:406.626667pt;}
.y94{bottom:408.066667pt;}
.y6b{bottom:408.706667pt;}
.y40{bottom:411.586667pt;}
.yfd{bottom:413.026667pt;}
.y107{bottom:415.013333pt;}
.y1b4{bottom:415.266667pt;}
.yb7{bottom:416.706667pt;}
.y12d{bottom:421.666667pt;}
.y19a{bottom:421.986667pt;}
.y17d{bottom:422.626667pt;}
.y93{bottom:423.266667pt;}
.y6a{bottom:424.066667pt;}
.yff{bottom:424.573333pt;}
.y153{bottom:424.706667pt;}
.yda{bottom:425.026667pt;}
.y3f{bottom:426.946667pt;}
.y1b3{bottom:430.626667pt;}
.yd9{bottom:431.746667pt;}
.yb6{bottom:432.066667pt;}
.yf9{bottom:432.253333pt;}
.y199{bottom:437.346667pt;}
.y17c{bottom:437.986667pt;}
.y92{bottom:438.626667pt;}
.y69{bottom:439.266667pt;}
.y152{bottom:440.066667pt;}
.y12c{bottom:440.706667pt;}
.y3e{bottom:442.306667pt;}
.y1b2{bottom:445.986667pt;}
.yc{bottom:446.990669pt;}
.yb5{bottom:447.266667pt;}
.y108{bottom:453.506667pt;}
.y91{bottom:453.986667pt;}
.y68{bottom:454.626667pt;}
.y151{bottom:455.266667pt;}
.y3d{bottom:457.666667pt;}
.yd8{bottom:459.106667pt;}
.y12b{bottom:459.586667pt;}
.y198{bottom:460.706667pt;}
.y17b{bottom:461.346667pt;}
.yb4{bottom:462.626667pt;}
.yb{bottom:462.990669pt;}
.yf6{bottom:466.906667pt;}
.y90{bottom:469.346667pt;}
.y67{bottom:469.986667pt;}
.y150{bottom:470.626667pt;}
.y3c{bottom:473.026667pt;}
.yd7{bottom:474.466667pt;}
.y197{bottom:475.906667pt;}
.y17a{bottom:476.706667pt;}
.yb3{bottom:477.986667pt;}
.y12a{bottom:478.466667pt;}
.ya{bottom:478.990666pt;}
.y8f{bottom:484.706667pt;}
.y66{bottom:485.346667pt;}
.y14f{bottom:486.013333pt;}
.y102{bottom:486.173333pt;}
.y3b{bottom:488.253333pt;}
.yd6{bottom:489.853333pt;}
.y109{bottom:492.026667pt;}
.yb2{bottom:493.373333pt;}
.y9{bottom:494.990666pt;}
.y129{bottom:497.533333pt;}
.y196{bottom:499.293333pt;}
.y8e{bottom:499.933333pt;}
.y164{bottom:500.733333pt;}
.y14e{bottom:501.373333pt;}
.y3a{bottom:503.613333pt;}
.y65{bottom:508.733333pt;}
.yd5{bottom:511.933333pt;}
.y195{bottom:514.653333pt;}
.y8d{bottom:515.293333pt;}
.y163{bottom:515.933333pt;}
.y128{bottom:516.413333pt;}
.yb1{bottom:516.733333pt;}
.yd4{bottom:518.653333pt;}
.y39{bottom:518.973333pt;}
.y1b1{bottom:523.293333pt;}
.y64{bottom:523.933333pt;}
.y8c{bottom:530.653333pt;}
.yb0{bottom:531.933333pt;}
.y38{bottom:534.333333pt;}
.y127{bottom:535.293333pt;}
.y194{bottom:538.013333pt;}
.y1b0{bottom:538.653333pt;}
.y63{bottom:539.293333pt;}
.y8b{bottom:546.013333pt;}
.yaf{bottom:547.293333pt;}
.y37{bottom:549.693333pt;}
.y193{bottom:553.373333pt;}
.y1af{bottom:554.013333pt;}
.y126{bottom:554.333333pt;}
.y62{bottom:554.653333pt;}
.yd3{bottom:561.373333pt;}
.yae{bottom:562.653333pt;}
.y36{bottom:565.053333pt;}
.y8a{bottom:569.373333pt;}
.y61{bottom:570.013333pt;}
.y14d{bottom:570.653333pt;}
.y125{bottom:573.213333pt;}
.y8{bottom:573.786667pt;}
.y192{bottom:576.733333pt;}
.y1ae{bottom:577.373333pt;}
.yad{bottom:578.013333pt;}
.y35{bottom:580.253333pt;}
.yd2{bottom:581.693333pt;}
.y89{bottom:584.733333pt;}
.y60{bottom:585.373333pt;}
.y14c{bottom:586.013333pt;}
.yd1{bottom:588.413333pt;}
.y191{bottom:591.933333pt;}
.y124{bottom:592.093333pt;}
.y7{bottom:592.685334pt;}
.y1ad{bottom:592.733333pt;}
.yac{bottom:593.373333pt;}
.y34{bottom:595.613333pt;}
.y88{bottom:599.933333pt;}
.y5f{bottom:600.733333pt;}
.y110{bottom:601.373333pt;}
.y1ac{bottom:607.933333pt;}
.yab{bottom:608.733333pt;}
.y33{bottom:610.973333pt;}
.y123{bottom:611.133333pt;}
.y87{bottom:615.293333pt;}
.y5e{bottom:615.933333pt;}
.y10f{bottom:616.733333pt;}
.y179{bottom:623.293333pt;}
.yaa{bottom:623.933333pt;}
.y32{bottom:626.333333pt;}
.y122{bottom:630.013333pt;}
.y86{bottom:630.653333pt;}
.y5d{bottom:631.293333pt;}
.y10e{bottom:631.933333pt;}
.y178{bottom:638.653333pt;}
.ya9{bottom:639.293333pt;}
.y31{bottom:641.693333pt;}
.y6{bottom:645.598667pt;}
.y85{bottom:646.013333pt;}
.yd0{bottom:646.493333pt;}
.y5c{bottom:646.653333pt;}
.y10d{bottom:647.333333pt;}
.y121{bottom:648.933333pt;}
.y177{bottom:654.053333pt;}
.ya8{bottom:654.693333pt;}
.y30{bottom:656.933333pt;}
.y84{bottom:661.413333pt;}
.ycf{bottom:661.893333pt;}
.y5b{bottom:662.053333pt;}
.y10c{bottom:662.693333pt;}
.y11f{bottom:667.973333pt;}
.y3{bottom:668.977329pt;}
.y190{bottom:669.413333pt;}
.ya7{bottom:670.053333pt;}
.y2f{bottom:672.293333pt;}
.yce{bottom:677.253333pt;}
.y5a{bottom:677.413333pt;}
.y10b{bottom:678.053333pt;}
.y83{bottom:684.453333pt;}
.ya6{bottom:685.413333pt;}
.y11d{bottom:686.853333pt;}
.y176{bottom:692.773333pt;}
.y10a{bottom:693.413333pt;}
.ycd{bottom:697.413333pt;}
.y59{bottom:700.773333pt;}
.ycc{bottom:704.133333pt;}
.y11b{bottom:705.733333pt;}
.y175{bottom:707.973333pt;}
.ya5{bottom:708.773333pt;}
.y58{bottom:715.973333pt;}
.y2d{bottom:719.973333pt;}
.y82{bottom:723.973333pt;}
.y2e{bottom:727.333333pt;}
.y11a{bottom:730.373333pt;}
.y57{bottom:731.333333pt;}
.y81{bottom:739.333333pt;}
.y119{bottom:745.733333pt;}
.y56{bottom:746.693333pt;}
.y2c{bottom:747.173333pt;}
.y80{bottom:754.693333pt;}
.y55{bottom:762.053333pt;}
.y7f{bottom:770.053333pt;}
.y2b{bottom:770.213333pt;}
.y162{bottom:777.413333pt;}
.y2{bottom:781.661334pt;}
.yec{bottom:785.093333pt;}
.y54{bottom:785.413333pt;}
.yeb{bottom:800.453333pt;}
.y53{bottom:800.773333pt;}
.y27{bottom:805.093333pt;}
.y22{bottom:807.013333pt;}
.y51{bottom:828.960000pt;}
.y1{bottom:859.312000pt;}
.hf{height:3.882500pt;}
.h22{height:18.226667pt;}
.h24{height:18.240000pt;}
.h26{height:18.258667pt;}
.h23{height:18.260000pt;}
.h25{height:18.266667pt;}
.h27{height:18.272000pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h10{height:31.217812pt;}
.hc{height:34.106667pt;}
.h18{height:34.830000pt;}
.h19{height:38.672812pt;}
.h21{height:40.280938pt;}
.h20{height:40.378000pt;}
.h7{height:40.853333pt;}
.h3{height:42.840000pt;}
.h1a{height:42.866250pt;}
.h6{height:42.896000pt;}
.h14{height:43.215000pt;}
.h17{height:44.648750pt;}
.h28{height:47.621250pt;}
.h2{height:49.024000pt;}
.h1e{height:52.108438pt;}
.hd{height:52.134375pt;}
.h16{height:53.535000pt;}
.he{height:55.402500pt;}
.h12{height:56.843750pt;}
.h2a{height:57.787500pt;}
.h29{height:58.238750pt;}
.h1b{height:62.643750pt;}
.h15{height:64.500000pt;}
.h5{height:69.450667pt;}
.h1c{height:79.014375pt;}
.h1d{height:79.174375pt;}
.h11{height:80.625000pt;}
.h4{height:105.826671pt;}
.h1f{height:512.000000pt;}
.hb{height:888.000000pt;}
.h13{height:888.318253pt;}
.ha{height:888.320000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w5{width:28.350667pt;}
.w10{width:50.706667pt;}
.w11{width:50.866667pt;}
.w12{width:50.898667pt;}
.wb{width:51.026667pt;}
.wc{width:51.186667pt;}
.wd{width:51.218667pt;}
.wf{width:55.346667pt;}
.we{width:55.666667pt;}
.w6{width:85.110667pt;}
.wa{width:270.937333pt;}
.w7{width:387.600000pt;}
.w9{width:480.960000pt;}
.w2{width:566.928019pt;}
.w8{width:623.678333pt;}
.w3{width:623.680000pt;}
.w4{width:624.000000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2e{left:4.310667pt;}
.x36{left:5.920000pt;}
.x6{left:7.198667pt;}
.x2c{left:8.768000pt;}
.x34{left:10.546667pt;}
.x30{left:11.506667pt;}
.x35{left:12.960000pt;}
.xa{left:15.026667pt;}
.x39{left:18.706667pt;}
.x3a{left:20.960000pt;}
.x38{left:21.906667pt;}
.x37{left:24.640000pt;}
.x16{left:35.840000pt;}
.x9{left:46.266667pt;}
.x5{left:47.201333pt;}
.x17{left:67.840000pt;}
.x2d{left:71.241333pt;}
.x7{left:75.561333pt;}
.xe{left:82.112000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x18{left:99.813333pt;}
.x19{left:115.813333pt;}
.x1a{left:131.813333pt;}
.xb{left:148.025000pt;}
.xc{left:153.466667pt;}
.x8{left:160.680000pt;}
.x1b{left:163.813333pt;}
.x1c{left:179.813333pt;}
.x4{left:180.874667pt;}
.x1d{left:195.813333pt;}
.x1e{left:211.773333pt;}
.x1f{left:227.773333pt;}
.x20{left:243.773333pt;}
.x21{left:259.773333pt;}
.xd{left:267.586667pt;}
.x22{left:291.773333pt;}
.x23{left:307.773333pt;}
.x14{left:309.506667pt;}
.x11{left:315.266667pt;}
.x12{left:321.346667pt;}
.x24{left:323.773333pt;}
.x13{left:332.253333pt;}
.x25{left:339.746667pt;}
.x2f{left:342.506667pt;}
.x26{left:355.746667pt;}
.x27{left:371.746667pt;}
.x28{left:387.746667pt;}
.x31{left:393.866667pt;}
.x3{left:404.408000pt;}
.x29{left:419.746667pt;}
.xf{left:424.093333pt;}
.x2a{left:435.746667pt;}
.x32{left:445.386667pt;}
.x2b{left:451.706667pt;}
.x33{left:496.933333pt;}
.x10{left:529.893333pt;}
.x15{left:556.613333pt;}
}




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