
    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_7201195b3c726064be463a9c.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_fe63a3e793480dd51592dd0e.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_8952de550e9a1e478a146fcb.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_35bcb671ea00ba13b7c3c90f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_24680d00ab75fc4ce6956ec5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_f5e0e7298e59a19c080cdcc4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5ece4b5957202e8ebdb4beff.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3ca9e927e485a4219c5e64b6.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_2c87d70034de48282d0a8740.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.003906;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_89c3d292be884b8302bab866.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.010254;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_86c71a28333e535e60b6933b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.010254;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_ca88b9a02a982421a2937e48.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.987793;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_1b64c24f9f7ee0b0808e24f2.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.050293;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_e906f6dafc34123d319ac4bc.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.690918;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_104a3c6850cfdfe78fc49209.woff2')format("woff");}.fff{font-family:fff;line-height:1.060059;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_abcab0f42e877a628accc5f4.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_d50cf4560e4f69bb05e43e19.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_4f6cdaa599a9846c29d5e289.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.005371;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);}
.v4{vertical-align:-149.040000px;}
.v5{vertical-align:-121.680000px;}
.v1{vertical-align:-79.920000px;}
.v3{vertical-align:-78.480000px;}
.v6{vertical-align:-70.560000px;}
.v2{vertical-align:-69.120000px;}
.v8{vertical-align:-27.540000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:15.120000px;}
.v7{vertical-align:27.360000px;}
.ls22{letter-spacing:-0.666000px;}
.ls21{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.342600px;}
.lsa{letter-spacing:-0.252000px;}
.ls26{letter-spacing:-0.171600px;}
.lsf{letter-spacing:-0.109200px;}
.ls9{letter-spacing:-0.106800px;}
.ls11{letter-spacing:-0.053280px;}
.ls10{letter-spacing:-0.041760px;}
.ls8{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.012960px;}
.ls16{letter-spacing:0.053280px;}
.ls1c{letter-spacing:0.106800px;}
.lsc{letter-spacing:0.180000px;}
.ls1d{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.288000px;}
.ls1a{letter-spacing:0.298800px;}
.lsd{letter-spacing:0.305280px;}
.ls1e{letter-spacing:0.306600px;}
.ls7{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.513600px;}
.ls29{letter-spacing:0.582000px;}
.ls1b{letter-spacing:0.666000px;}
.ls17{letter-spacing:0.828000px;}
.ls19{letter-spacing:0.900000px;}
.ls20{letter-spacing:1.620000px;}
.ls28{letter-spacing:3.060000px;}
.lse{letter-spacing:5.940000px;}
.ls18{letter-spacing:10.026720px;}
.ls6{letter-spacing:14.580000px;}
.ls25{letter-spacing:16.506720px;}
.ls15{letter-spacing:19.386720px;}
.ls13{letter-spacing:22.986720px;}
.ls24{letter-spacing:41.400000px;}
.ls23{letter-spacing:46.026720px;}
.ls14{letter-spacing:66.186720px;}
.ls1f{letter-spacing:185.916000px;}
.ls5{letter-spacing:551.100000px;}
.ls3{letter-spacing:595.260000px;}
.ls4{letter-spacing:937.020000px;}
.ls2{letter-spacing:1202.736000px;}
.ls0{letter-spacing:2104.296000px;}
.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;}
}
.ws7{word-spacing:-66.240000px;}
.ws10{word-spacing:-59.760000px;}
.ws2{word-spacing:-27.288000px;}
.ws1{word-spacing:-26.748000px;}
.ws4{word-spacing:-20.016000px;}
.ws9{word-spacing:-18.414720px;}
.ws8{word-spacing:-18.305520px;}
.ws0{word-spacing:-16.506480px;}
.wsf{word-spacing:-15.768000px;}
.ws11{word-spacing:-15.606000px;}
.ws1c{word-spacing:-15.522000px;}
.wsd{word-spacing:-15.300000px;}
.ws17{word-spacing:-15.246600px;}
.ws15{word-spacing:-15.238800px;}
.ws13{word-spacing:-15.199800px;}
.ws12{word-spacing:-15.046800px;}
.wse{word-spacing:-14.993280px;}
.wsa{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.898240px;}
.wsc{word-spacing:-14.886720px;}
.ws18{word-spacing:-14.833200px;}
.ws1a{word-spacing:-14.768400px;}
.ws16{word-spacing:-14.580000px;}
.ws19{word-spacing:-14.274000px;}
.ws5{word-spacing:-13.868760px;}
.ws14{word-spacing:-13.147200px;}
.ws1b{word-spacing:-9.732960px;}
.ws3{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._17{margin-left:-12.060000px;}
._4{margin-left:-1.792800px;}
._0{width:1.254960px;}
._2{width:2.640000px;}
._5{width:3.834960px;}
._d{width:4.988880px;}
._c{width:6.025440px;}
._f{width:7.789440px;}
._a{width:8.801040px;}
._9{width:10.159200px;}
._b{width:11.354400px;}
._14{width:12.370320px;}
._6{width:13.387680px;}
._e{width:16.846800px;}
._13{width:18.387600px;}
._15{width:19.858800px;}
._16{width:21.085200px;}
._10{width:22.290480px;}
._11{width:23.466720px;}
._12{width:24.539520px;}
._7{width:26.451360px;}
._3{width:28.092000px;}
._29{width:29.148480px;}
._1e{width:30.734880px;}
._19{width:32.131920px;}
._18{width:33.166800px;}
._1a{width:34.851600px;}
._27{width:37.708560px;}
._28{width:39.453600px;}
._1b{width:41.712480px;}
._1f{width:43.863840px;}
._22{width:45.762000px;}
._2a{width:52.409520px;}
._25{width:57.309840px;}
._26{width:58.448640px;}
._20{width:70.935120px;}
._2b{width:78.584400px;}
._2e{width:84.401040px;}
._2d{width:85.678320px;}
._2c{width:96.858480px;}
._24{width:199.190640px;}
._23{width:200.375280px;}
._21{width:236.355600px;}
._1c{width:257.016000px;}
._1{width:358.688400px;}
._8{width:1008.747840px;}
._1d{width:1128.627360px;}
.fc4{color:transparent;}
.fc5{color:rgb(5,99,193);}
.fc3{color:rgb(0,32,96);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(77,77,77);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs4{font-size:51.120000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yeb{bottom:3.420000px;}
.y110{bottom:3.600000px;}
.yee{bottom:3.780000px;}
.y102{bottom:9.720000px;}
.y11c{bottom:20.520000px;}
.yea{bottom:20.700000px;}
.y101{bottom:27.000000px;}
.y11d{bottom:37.800000px;}
.y10b{bottom:37.980000px;}
.y2{bottom:54.000000px;}
.y1{bottom:71.820000px;}
.yd2{bottom:115.380000px;}
.y161{bottom:119.160000px;}
.y137{bottom:122.040000px;}
.y108{bottom:127.980000px;}
.y5b{bottom:128.700000px;}
.y193{bottom:129.420000px;}
.yd1{bottom:132.660000px;}
.y160{bottom:137.880000px;}
.y136{bottom:139.320000px;}
.y107{bottom:145.260000px;}
.y5a{bottom:145.980000px;}
.y1b2{bottom:147.420000px;}
.y192{bottom:148.140000px;}
.yd0{bottom:149.940000px;}
.y97{bottom:152.820000px;}
.y15f{bottom:156.420000px;}
.y135{bottom:156.600000px;}
.y106{bottom:160.920000px;}
.y59{bottom:163.080000px;}
.y1b1{bottom:166.140000px;}
.y191{bottom:166.680000px;}
.ycf{bottom:167.220000px;}
.y96{bottom:170.100000px;}
.y134{bottom:173.880000px;}
.y15e{bottom:175.140000px;}
.y105{bottom:178.200000px;}
.y58{bottom:180.360000px;}
.yce{bottom:184.500000px;}
.y1b0{bottom:184.860000px;}
.y190{bottom:185.400000px;}
.y95{bottom:187.200000px;}
.y133{bottom:190.980000px;}
.y15d{bottom:193.680000px;}
.y104{bottom:195.480000px;}
.y57{bottom:197.640000px;}
.ycd{bottom:201.600000px;}
.y1af{bottom:203.400000px;}
.y18f{bottom:203.940000px;}
.y94{bottom:204.480000px;}
.y132{bottom:208.290000px;}
.y15c{bottom:212.430000px;}
.y56{bottom:214.950000px;}
.ycc{bottom:218.550000px;}
.y93{bottom:221.790000px;}
.y1ae{bottom:222.150000px;}
.y18e{bottom:222.690000px;}
.y131{bottom:225.570000px;}
.y15b{bottom:230.970000px;}
.y55{bottom:232.230000px;}
.ycb{bottom:235.830000px;}
.y103{bottom:238.530000px;}
.y92{bottom:239.070000px;}
.y1ad{bottom:240.690000px;}
.y18d{bottom:241.230000px;}
.y130{bottom:242.850000px;}
.y54{bottom:249.510000px;}
.y15a{bottom:249.690000px;}
.yca{bottom:253.110000px;}
.y91{bottom:256.350000px;}
.y1ac{bottom:259.410000px;}
.y18c{bottom:259.950000px;}
.y12f{bottom:260.130000px;}
.y100{bottom:261.570000px;}
.y53{bottom:266.610000px;}
.y159{bottom:268.230000px;}
.yc9{bottom:270.750000px;}
.y90{bottom:273.630000px;}
.y12e{bottom:277.410000px;}
.y1ab{bottom:277.950000px;}
.y18b{bottom:278.490000px;}
.yff{bottom:279.030000px;}
.y52{bottom:283.890000px;}
.y158{bottom:286.950000px;}
.yc8{bottom:288.030000px;}
.y8f{bottom:290.730000px;}
.y12d{bottom:294.510000px;}
.y1aa{bottom:296.670000px;}
.yfe{bottom:297.030000px;}
.y18a{bottom:297.210000px;}
.y51{bottom:301.170000px;}
.yc7{bottom:305.130000px;}
.y157{bottom:305.670000px;}
.y8e{bottom:308.010000px;}
.y12c{bottom:311.790000px;}
.yfd{bottom:313.950000px;}
.y1a9{bottom:315.210000px;}
.y189{bottom:315.930000px;}
.y50{bottom:318.450000px;}
.yc6{bottom:322.410000px;}
.y156{bottom:324.210000px;}
.y8d{bottom:325.290000px;}
.y12b{bottom:329.070000px;}
.yfc{bottom:331.590000px;}
.y1a8{bottom:333.930000px;}
.y188{bottom:334.470000px;}
.y4f{bottom:335.730000px;}
.yc5{bottom:339.690000px;}
.y8c{bottom:342.570000px;}
.y155{bottom:342.930000px;}
.y12a{bottom:345.990000px;}
.yfb{bottom:348.690000px;}
.y1a7{bottom:352.650000px;}
.y4e{bottom:352.830000px;}
.y187{bottom:353.190000px;}
.yc4{bottom:356.970000px;}
.y8b{bottom:359.850000px;}
.y154{bottom:361.470000px;}
.y129{bottom:363.270000px;}
.yfa{bottom:365.970000px;}
.y4d{bottom:370.110000px;}
.y1a6{bottom:371.190000px;}
.y186{bottom:371.730000px;}
.yc3{bottom:374.250000px;}
.y8a{bottom:377.130000px;}
.y153{bottom:380.190000px;}
.y128{bottom:380.910000px;}
.yf9{bottom:383.250000px;}
.y4c{bottom:387.390000px;}
.y1a5{bottom:389.910000px;}
.y185{bottom:390.450000px;}
.yc2{bottom:391.530000px;}
.y89{bottom:394.230000px;}
.y127{bottom:398.010000px;}
.y152{bottom:398.730000px;}
.yf8{bottom:400.530000px;}
.y4b{bottom:404.670000px;}
.y1a4{bottom:408.450000px;}
.yc1{bottom:408.630000px;}
.y184{bottom:408.990000px;}
.y88{bottom:411.510000px;}
.y126{bottom:415.290000px;}
.y151{bottom:417.450000px;}
.yf7{bottom:417.810000px;}
.y25{bottom:421.050000px;}
.y4a{bottom:421.950000px;}
.yc0{bottom:425.910000px;}
.y1a3{bottom:427.170000px;}
.y183{bottom:427.710000px;}
.y87{bottom:428.790000px;}
.y125{bottom:432.570000px;}
.yf6{bottom:435.090000px;}
.y150{bottom:435.990000px;}
.y49{bottom:439.230000px;}
.ybf{bottom:443.235000px;}
.y24{bottom:445.215000px;}
.y1a2{bottom:445.755000px;}
.y86{bottom:446.115000px;}
.y182{bottom:446.295000px;}
.y124{bottom:448.455000px;}
.yf5{bottom:452.235000px;}
.y14f{bottom:454.755000px;}
.y23{bottom:456.375000px;}
.ybe{bottom:460.515000px;}
.y85{bottom:463.395000px;}
.y1a1{bottom:464.475000px;}
.y181{bottom:465.015000px;}
.y123{bottom:465.555000px;}
.yf4{bottom:469.515000px;}
.y14e{bottom:473.475000px;}
.y48{bottom:473.655000px;}
.y22{bottom:474.375000px;}
.ybd{bottom:477.795000px;}
.y84{bottom:480.135000px;}
.y122{bottom:482.835000px;}
.y1a0{bottom:483.015000px;}
.y180{bottom:483.735000px;}
.yf3{bottom:486.795000px;}
.y47{bottom:490.935000px;}
.y21{bottom:491.115000px;}
.y14d{bottom:492.015000px;}
.ybc{bottom:494.895000px;}
.y83{bottom:497.415000px;}
.y121{bottom:500.115000px;}
.y19f{bottom:501.735000px;}
.y17f{bottom:502.275000px;}
.yf2{bottom:504.075000px;}
.y46{bottom:508.215000px;}
.y20{bottom:508.395000px;}
.y14c{bottom:510.735000px;}
.ybb{bottom:512.175000px;}
.y82{bottom:515.055000px;}
.y120{bottom:517.395000px;}
.y19e{bottom:520.455000px;}
.yf1{bottom:520.995000px;}
.y45{bottom:525.495000px;}
.y1f{bottom:525.675000px;}
.y14b{bottom:529.275000px;}
.yba{bottom:529.455000px;}
.y81{bottom:532.335000px;}
.y11f{bottom:534.675000px;}
.yf0{bottom:537.015000px;}
.y19d{bottom:538.995000px;}
.y17e{bottom:539.535000px;}
.y44{bottom:542.775000px;}
.y1e{bottom:543.135000px;}
.yb9{bottom:546.375000px;}
.y14a{bottom:547.995000px;}
.y80{bottom:549.615000px;}
.y11e{bottom:551.955000px;}
.yef{bottom:554.295000px;}
.y19c{bottom:557.715000px;}
.y17d{bottom:558.255000px;}
.y1d{bottom:558.435000px;}
.y43{bottom:559.515000px;}
.yb8{bottom:563.655000px;}
.y149{bottom:565.815000px;}
.y7f{bottom:566.895000px;}
.y11b{bottom:571.395000px;}
.yed{bottom:571.575000px;}
.y1c{bottom:573.735000px;}
.y19b{bottom:576.255000px;}
.y42{bottom:576.795000px;}
.yb7{bottom:581.295000px;}
.y7e{bottom:583.995000px;}
.y148{bottom:584.535000px;}
.y1b{bottom:588.855000px;}
.ye9{bottom:591.015000px;}
.y19a{bottom:594.975000px;}
.y17c{bottom:595.515000px;}
.y41{bottom:595.695000px;}
.yb6{bottom:598.395000px;}
.y7d{bottom:601.275000px;}
.y147{bottom:601.635000px;}
.y1a{bottom:604.155000px;}
.yec{bottom:608.295000px;}
.y199{bottom:613.515000px;}
.y17b{bottom:614.055000px;}
.y40{bottom:615.135000px;}
.yb5{bottom:615.675000px;}
.y7c{bottom:618.555000px;}
.y146{bottom:618.915000px;}
.y19{bottom:619.455000px;}
.y11a{bottom:628.815000px;}
.ye8{bottom:631.155000px;}
.y198{bottom:632.235000px;}
.y17a{bottom:632.775000px;}
.yb4{bottom:632.955000px;}
.y18{bottom:634.755000px;}
.y7b{bottom:635.835000px;}
.y145{bottom:636.195000px;}
.y3f{bottom:643.575000px;}
.y119{bottom:646.275000px;}
.ye7{bottom:648.795000px;}
.y17{bottom:650.055000px;}
.yb3{bottom:650.235000px;}
.y197{bottom:650.775000px;}
.y179{bottom:651.495000px;}
.y7a{bottom:653.115000px;}
.y144{bottom:653.475000px;}
.y3e{bottom:663.015000px;}
.y118{bottom:663.195000px;}
.y16{bottom:665.355000px;}
.ye6{bottom:666.795000px;}
.yb2{bottom:667.515000px;}
.y196{bottom:669.495000px;}
.y178{bottom:670.035000px;}
.y79{bottom:670.395000px;}
.y143{bottom:670.755000px;}
.y15{bottom:680.685000px;}
.y117{bottom:680.865000px;}
.y3d{bottom:682.485000px;}
.ye5{bottom:683.565000px;}
.yb1{bottom:684.825000px;}
.y78{bottom:687.525000px;}
.y142{bottom:687.885000px;}
.y195{bottom:688.245000px;}
.y177{bottom:688.785000px;}
.y14{bottom:697.965000px;}
.y116{bottom:698.145000px;}
.ye4{bottom:700.845000px;}
.yb0{bottom:701.565000px;}
.y3c{bottom:701.745000px;}
.y77{bottom:704.805000px;}
.y141{bottom:705.165000px;}
.y194{bottom:706.785000px;}
.y176{bottom:707.325000px;}
.y115{bottom:715.425000px;}
.y13{bottom:715.605000px;}
.ye3{bottom:718.485000px;}
.yaf{bottom:718.845000px;}
.y3b{bottom:721.185000px;}
.y76{bottom:722.085000px;}
.y140{bottom:722.445000px;}
.y175{bottom:725.505000px;}
.y114{bottom:732.705000px;}
.ye2{bottom:735.765000px;}
.y12{bottom:736.305000px;}
.yae{bottom:736.485000px;}
.y75{bottom:739.365000px;}
.y3a{bottom:740.625000px;}
.y174{bottom:744.045000px;}
.y113{bottom:748.365000px;}
.ye1{bottom:753.045000px;}
.yad{bottom:753.765000px;}
.y74{bottom:756.645000px;}
.y11{bottom:757.005000px;}
.y39{bottom:760.065000px;}
.y173{bottom:762.765000px;}
.y112{bottom:765.645000px;}
.ye0{bottom:769.965000px;}
.yac{bottom:771.045000px;}
.y73{bottom:773.925000px;}
.y13f{bottom:774.285000px;}
.y10{bottom:777.345000px;}
.y38{bottom:779.505000px;}
.y172{bottom:781.305000px;}
.y111{bottom:782.925000px;}
.ydf{bottom:787.425000px;}
.yab{bottom:788.145000px;}
.y72{bottom:790.665000px;}
.y13e{bottom:791.385000px;}
.yf{bottom:794.265000px;}
.y37{bottom:798.945000px;}
.y171{bottom:800.025000px;}
.y10f{bottom:800.205000px;}
.yde{bottom:804.705000px;}
.yaa{bottom:805.425000px;}
.y71{bottom:807.945000px;}
.y13d{bottom:808.665000px;}
.y10e{bottom:817.305000px;}
.y36{bottom:818.385000px;}
.y170{bottom:818.565000px;}
.ydd{bottom:821.985000px;}
.ya9{bottom:822.705000px;}
.y70{bottom:825.585000px;}
.y13c{bottom:825.945000px;}
.ye{bottom:829.185000px;}
.y10d{bottom:834.585000px;}
.y16f{bottom:837.285000px;}
.y35{bottom:837.825000px;}
.ydc{bottom:838.905000px;}
.ya8{bottom:839.985000px;}
.y6f{bottom:842.865000px;}
.y13b{bottom:843.225000px;}
.y10c{bottom:851.865000px;}
.y16e{bottom:856.005000px;}
.y34{bottom:857.085000px;}
.ya7{bottom:857.265000px;}
.ydb{bottom:857.625000px;}
.y6e{bottom:860.145000px;}
.y13a{bottom:860.505000px;}
.y10a{bottom:871.305000px;}
.ya6{bottom:874.545000px;}
.yda{bottom:875.625000px;}
.y33{bottom:876.525000px;}
.y6d{bottom:876.885000px;}
.y139{bottom:877.425000px;}
.yd{bottom:883.185000px;}
.ya5{bottom:891.645000px;}
.y16d{bottom:893.265000px;}
.yd9{bottom:893.445000px;}
.y6c{bottom:894.525000px;}
.y32{bottom:895.965000px;}
.ya4{bottom:908.925000px;}
.yd8{bottom:911.490000px;}
.y6b{bottom:911.850000px;}
.y138{bottom:912.210000px;}
.yc{bottom:914.190000px;}
.y31{bottom:915.270000px;}
.ya3{bottom:926.250000px;}
.y6a{bottom:928.770000px;}
.yd7{bottom:929.490000px;}
.y16c{bottom:930.570000px;}
.y30{bottom:933.810000px;}
.ya2{bottom:943.170000px;}
.yb{bottom:945.330000px;}
.y69{bottom:946.410000px;}
.y109{bottom:946.770000px;}
.y16b{bottom:949.110000px;}
.y2f{bottom:951.450000px;}
.ya1{bottom:960.450000px;}
.y68{bottom:963.690000px;}
.yd6{bottom:964.050000px;}
.y16a{bottom:967.830000px;}
.y2e{bottom:968.730000px;}
.ya0{bottom:978.090000px;}
.y67{bottom:980.970000px;}
.yd5{bottom:981.330000px;}
.y169{bottom:986.370000px;}
.ya{bottom:990.870000px;}
.y2d{bottom:992.670000px;}
.y9f{bottom:995.190000px;}
.y66{bottom:998.430000px;}
.y2c{bottom:1002.750000px;}
.y168{bottom:1005.090000px;}
.y9{bottom:1008.870000px;}
.y9e{bottom:1012.470000px;}
.y65{bottom:1015.710000px;}
.y2b{bottom:1021.290000px;}
.y167{bottom:1023.810000px;}
.y9d{bottom:1029.750000px;}
.y8{bottom:1030.470000px;}
.y64{bottom:1032.990000px;}
.y166{bottom:1042.350000px;}
.y2a{bottom:1045.590000px;}
.y9c{bottom:1047.030000px;}
.yd4{bottom:1049.910000px;}
.y63{bottom:1050.270000px;}
.y165{bottom:1061.070000px;}
.y9b{bottom:1064.310000px;}
.y62{bottom:1067.550000px;}
.y7{bottom:1072.050000px;}
.y29{bottom:1078.350000px;}
.y164{bottom:1079.610000px;}
.y9a{bottom:1082.490000px;}
.y61{bottom:1084.650000px;}
.y6{bottom:1089.330000px;}
.y28{bottom:1098.330000px;}
.y99{bottom:1100.850000px;}
.y60{bottom:1101.930000px;}
.y5{bottom:1106.430000px;}
.y163{bottom:1116.870000px;}
.y27{bottom:1118.130000px;}
.y5f{bottom:1119.210000px;}
.y4{bottom:1123.710000px;}
.y26{bottom:1133.430000px;}
.y98{bottom:1135.410000px;}
.y162{bottom:1135.590000px;}
.yd3{bottom:1136.130000px;}
.y5e{bottom:1136.490000px;}
.y3{bottom:1140.990000px;}
.y5d{bottom:1154.880000px;}
.y5c{bottom:1171.980000px;}
.h17{height:17.100000px;}
.h11{height:17.280000px;}
.h14{height:17.316000px;}
.h13{height:23.580000px;}
.h10{height:34.560000px;}
.h8{height:38.158594px;}
.h12{height:40.860000px;}
.hd{height:43.506914px;}
.he{height:49.868086px;}
.hf{height:50.597578px;}
.h18{height:51.660000px;}
.h15{height:51.876000px;}
.h7{height:53.316562px;}
.h6{height:58.651172px;}
.h4{height:60.226875px;}
.h3{height:62.327813px;}
.h16{height:65.518594px;}
.hc{height:66.543750px;}
.ha{height:69.086250px;}
.h9{height:71.613281px;}
.h2{height:75.093750px;}
.hb{height:84.898125px;}
.h5{height:108.843750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:36.180000px;}
.w8{width:38.700000px;}
.wc{width:45.000000px;}
.w13{width:47.160000px;}
.wf{width:58.536000px;}
.w16{width:60.696000px;}
.w21{width:60.876000px;}
.we{width:78.840000px;}
.w15{width:81.000000px;}
.w1b{width:85.500000px;}
.w1c{width:86.580000px;}
.w20{width:87.660000px;}
.w9{width:88.956000px;}
.w6{width:90.576000px;}
.w10{width:92.160000px;}
.w17{width:93.420000px;}
.w1a{width:100.296000px;}
.w4{width:100.836000px;}
.w1f{width:102.456000px;}
.wd{width:112.536000px;}
.w14{width:114.876000px;}
.w19{width:119.196000px;}
.w5{width:119.520000px;}
.w1e{width:121.536000px;}
.wb{width:146.376000px;}
.w12{width:148.536000px;}
.wa{width:158.760000px;}
.w11{width:159.840000px;}
.w18{width:172.080000px;}
.w1d{width:173.340000px;}
.w7{width:228.450000px;}
.w2{width:235.110000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x12{left:7.020000px;}
.x14{left:8.100000px;}
.x2b{left:10.800000px;}
.x26{left:12.960000px;}
.x39{left:19.620000px;}
.x22{left:21.600000px;}
.x2f{left:27.000000px;}
.x40{left:31.680000px;}
.x4c{left:33.480000px;}
.x28{left:34.740000px;}
.x38{left:38.370000px;}
.x45{left:40.905000px;}
.x31{left:45.750000px;}
.x23{left:47.745000px;}
.x4b{left:50.040000px;}
.x3a{left:53.310000px;}
.x35{left:55.620000px;}
.x3b{left:64.665000px;}
.x2d{left:67.905000px;}
.x37{left:72.225000px;}
.x36{left:79.605000px;}
.x20{left:101.016000px;}
.xc{left:106.956000px;}
.x2{left:108.036000px;}
.x18{left:110.556000px;}
.xe{left:121.536000px;}
.xd{left:128.376000px;}
.x4e{left:135.036000px;}
.xf{left:141.696000px;}
.x1f{left:154.290000px;}
.x11{left:155.370000px;}
.x1a{left:158.250000px;}
.x4d{left:162.030000px;}
.x3c{left:168.150000px;}
.x5{left:187.770000px;}
.x9{left:224.490000px;}
.x2c{left:260.850000px;}
.x21{left:261.930000px;}
.x44{left:279.390000px;}
.x3d{left:280.470000px;}
.x7{left:350.895000px;}
.xb{left:358.815000px;}
.xa{left:378.975000px;}
.x10{left:381.675000px;}
.x1b{left:386.715000px;}
.x13{left:390.495000px;}
.x46{left:400.935000px;}
.x3e{left:402.015000px;}
.x2e{left:409.395000px;}
.x24{left:410.475000px;}
.x19{left:412.275000px;}
.x1c{left:425.415000px;}
.x15{left:426.675000px;}
.x6{left:429.915000px;}
.x4{left:445.935000px;}
.x47{left:448.095000px;}
.x3f{left:449.175000px;}
.x30{left:456.555000px;}
.x25{left:457.815000px;}
.x3{left:504.645000px;}
.x1d{left:526.245000px;}
.x16{left:527.505000px;}
.x48{left:550.545000px;}
.x41{left:551.625000px;}
.x32{left:571.425000px;}
.x27{left:572.505000px;}
.x49{left:638.205000px;}
.x42{left:639.465000px;}
.x1e{left:645.765000px;}
.x17{left:647.025000px;}
.x33{left:652.425000px;}
.x29{left:653.505000px;}
.x4a{left:699.090000px;}
.x43{left:700.170000px;}
.x34{left:713.130000px;}
.x2a{left:714.390000px;}
.x8{left:776.850000px;}
.x1{left:784.950000px;}
@media print{
.v4{vertical-align:-132.480000pt;}
.v5{vertical-align:-108.160000pt;}
.v1{vertical-align:-71.040000pt;}
.v3{vertical-align:-69.760000pt;}
.v6{vertical-align:-62.720000pt;}
.v2{vertical-align:-61.440000pt;}
.v8{vertical-align:-24.480000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:13.440000pt;}
.v7{vertical-align:24.320000pt;}
.ls22{letter-spacing:-0.592000pt;}
.ls21{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.304533pt;}
.lsa{letter-spacing:-0.224000pt;}
.ls26{letter-spacing:-0.152533pt;}
.lsf{letter-spacing:-0.097067pt;}
.ls9{letter-spacing:-0.094933pt;}
.ls11{letter-spacing:-0.047360pt;}
.ls10{letter-spacing:-0.037120pt;}
.ls8{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.011520pt;}
.ls16{letter-spacing:0.047360pt;}
.ls1c{letter-spacing:0.094933pt;}
.lsc{letter-spacing:0.160000pt;}
.ls1d{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.256000pt;}
.ls1a{letter-spacing:0.265600pt;}
.lsd{letter-spacing:0.271360pt;}
.ls1e{letter-spacing:0.272533pt;}
.ls7{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.456533pt;}
.ls29{letter-spacing:0.517333pt;}
.ls1b{letter-spacing:0.592000pt;}
.ls17{letter-spacing:0.736000pt;}
.ls19{letter-spacing:0.800000pt;}
.ls20{letter-spacing:1.440000pt;}
.ls28{letter-spacing:2.720000pt;}
.lse{letter-spacing:5.280000pt;}
.ls18{letter-spacing:8.912640pt;}
.ls6{letter-spacing:12.960000pt;}
.ls25{letter-spacing:14.672640pt;}
.ls15{letter-spacing:17.232640pt;}
.ls13{letter-spacing:20.432640pt;}
.ls24{letter-spacing:36.800000pt;}
.ls23{letter-spacing:40.912640pt;}
.ls14{letter-spacing:58.832640pt;}
.ls1f{letter-spacing:165.258667pt;}
.ls5{letter-spacing:489.866667pt;}
.ls3{letter-spacing:529.120000pt;}
.ls4{letter-spacing:832.906667pt;}
.ls2{letter-spacing:1069.098667pt;}
.ls0{letter-spacing:1870.485333pt;}
.ws7{word-spacing:-58.880000pt;}
.ws10{word-spacing:-53.120000pt;}
.ws2{word-spacing:-24.256000pt;}
.ws1{word-spacing:-23.776000pt;}
.ws4{word-spacing:-17.792000pt;}
.ws9{word-spacing:-16.368640pt;}
.ws8{word-spacing:-16.271573pt;}
.ws0{word-spacing:-14.672427pt;}
.wsf{word-spacing:-14.016000pt;}
.ws11{word-spacing:-13.872000pt;}
.ws1c{word-spacing:-13.797333pt;}
.wsd{word-spacing:-13.600000pt;}
.ws17{word-spacing:-13.552533pt;}
.ws15{word-spacing:-13.545600pt;}
.ws13{word-spacing:-13.510933pt;}
.ws12{word-spacing:-13.374933pt;}
.wse{word-spacing:-13.327360pt;}
.wsa{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.242880pt;}
.wsc{word-spacing:-13.232640pt;}
.ws18{word-spacing:-13.185067pt;}
.ws1a{word-spacing:-13.127467pt;}
.ws16{word-spacing:-12.960000pt;}
.ws19{word-spacing:-12.688000pt;}
.ws5{word-spacing:-12.327787pt;}
.ws14{word-spacing:-11.686400pt;}
.ws1b{word-spacing:-8.651520pt;}
.ws3{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._17{margin-left:-10.720000pt;}
._4{margin-left:-1.593600pt;}
._0{width:1.115520pt;}
._2{width:2.346667pt;}
._5{width:3.408853pt;}
._d{width:4.434560pt;}
._c{width:5.355947pt;}
._f{width:6.923947pt;}
._a{width:7.823147pt;}
._9{width:9.030400pt;}
._b{width:10.092800pt;}
._14{width:10.995840pt;}
._6{width:11.900160pt;}
._e{width:14.974933pt;}
._13{width:16.344533pt;}
._15{width:17.652267pt;}
._16{width:18.742400pt;}
._10{width:19.813760pt;}
._11{width:20.859307pt;}
._12{width:21.812907pt;}
._7{width:23.512320pt;}
._3{width:24.970667pt;}
._29{width:25.909760pt;}
._1e{width:27.319893pt;}
._19{width:28.561707pt;}
._18{width:29.481600pt;}
._1a{width:30.979200pt;}
._27{width:33.518720pt;}
._28{width:35.069867pt;}
._1b{width:37.077760pt;}
._1f{width:38.990080pt;}
._22{width:40.677333pt;}
._2a{width:46.586240pt;}
._25{width:50.942080pt;}
._26{width:51.954347pt;}
._20{width:63.053440pt;}
._2b{width:69.852800pt;}
._2e{width:75.023147pt;}
._2d{width:76.158507pt;}
._2c{width:86.096427pt;}
._24{width:177.058347pt;}
._23{width:178.111360pt;}
._21{width:210.093867pt;}
._1c{width:228.458667pt;}
._1{width:318.834133pt;}
._8{width:896.664747pt;}
._1d{width:1003.224320pt;}
.fs3{font-size:34.560000pt;}
.fs4{font-size:45.440000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yeb{bottom:3.040000pt;}
.y110{bottom:3.200000pt;}
.yee{bottom:3.360000pt;}
.y102{bottom:8.640000pt;}
.y11c{bottom:18.240000pt;}
.yea{bottom:18.400000pt;}
.y101{bottom:24.000000pt;}
.y11d{bottom:33.600000pt;}
.y10b{bottom:33.760000pt;}
.y2{bottom:48.000000pt;}
.y1{bottom:63.840000pt;}
.yd2{bottom:102.560000pt;}
.y161{bottom:105.920000pt;}
.y137{bottom:108.480000pt;}
.y108{bottom:113.760000pt;}
.y5b{bottom:114.400000pt;}
.y193{bottom:115.040000pt;}
.yd1{bottom:117.920000pt;}
.y160{bottom:122.560000pt;}
.y136{bottom:123.840000pt;}
.y107{bottom:129.120000pt;}
.y5a{bottom:129.760000pt;}
.y1b2{bottom:131.040000pt;}
.y192{bottom:131.680000pt;}
.yd0{bottom:133.280000pt;}
.y97{bottom:135.840000pt;}
.y15f{bottom:139.040000pt;}
.y135{bottom:139.200000pt;}
.y106{bottom:143.040000pt;}
.y59{bottom:144.960000pt;}
.y1b1{bottom:147.680000pt;}
.y191{bottom:148.160000pt;}
.ycf{bottom:148.640000pt;}
.y96{bottom:151.200000pt;}
.y134{bottom:154.560000pt;}
.y15e{bottom:155.680000pt;}
.y105{bottom:158.400000pt;}
.y58{bottom:160.320000pt;}
.yce{bottom:164.000000pt;}
.y1b0{bottom:164.320000pt;}
.y190{bottom:164.800000pt;}
.y95{bottom:166.400000pt;}
.y133{bottom:169.760000pt;}
.y15d{bottom:172.160000pt;}
.y104{bottom:173.760000pt;}
.y57{bottom:175.680000pt;}
.ycd{bottom:179.200000pt;}
.y1af{bottom:180.800000pt;}
.y18f{bottom:181.280000pt;}
.y94{bottom:181.760000pt;}
.y132{bottom:185.146667pt;}
.y15c{bottom:188.826667pt;}
.y56{bottom:191.066667pt;}
.ycc{bottom:194.266667pt;}
.y93{bottom:197.146667pt;}
.y1ae{bottom:197.466667pt;}
.y18e{bottom:197.946667pt;}
.y131{bottom:200.506667pt;}
.y15b{bottom:205.306667pt;}
.y55{bottom:206.426667pt;}
.ycb{bottom:209.626667pt;}
.y103{bottom:212.026667pt;}
.y92{bottom:212.506667pt;}
.y1ad{bottom:213.946667pt;}
.y18d{bottom:214.426667pt;}
.y130{bottom:215.866667pt;}
.y54{bottom:221.786667pt;}
.y15a{bottom:221.946667pt;}
.yca{bottom:224.986667pt;}
.y91{bottom:227.866667pt;}
.y1ac{bottom:230.586667pt;}
.y18c{bottom:231.066667pt;}
.y12f{bottom:231.226667pt;}
.y100{bottom:232.506667pt;}
.y53{bottom:236.986667pt;}
.y159{bottom:238.426667pt;}
.yc9{bottom:240.666667pt;}
.y90{bottom:243.226667pt;}
.y12e{bottom:246.586667pt;}
.y1ab{bottom:247.066667pt;}
.y18b{bottom:247.546667pt;}
.yff{bottom:248.026667pt;}
.y52{bottom:252.346667pt;}
.y158{bottom:255.066667pt;}
.yc8{bottom:256.026667pt;}
.y8f{bottom:258.426667pt;}
.y12d{bottom:261.786667pt;}
.y1aa{bottom:263.706667pt;}
.yfe{bottom:264.026667pt;}
.y18a{bottom:264.186667pt;}
.y51{bottom:267.706667pt;}
.yc7{bottom:271.226667pt;}
.y157{bottom:271.706667pt;}
.y8e{bottom:273.786667pt;}
.y12c{bottom:277.146667pt;}
.yfd{bottom:279.066667pt;}
.y1a9{bottom:280.186667pt;}
.y189{bottom:280.826667pt;}
.y50{bottom:283.066667pt;}
.yc6{bottom:286.586667pt;}
.y156{bottom:288.186667pt;}
.y8d{bottom:289.146667pt;}
.y12b{bottom:292.506667pt;}
.yfc{bottom:294.746667pt;}
.y1a8{bottom:296.826667pt;}
.y188{bottom:297.306667pt;}
.y4f{bottom:298.426667pt;}
.yc5{bottom:301.946667pt;}
.y8c{bottom:304.506667pt;}
.y155{bottom:304.826667pt;}
.y12a{bottom:307.546667pt;}
.yfb{bottom:309.946667pt;}
.y1a7{bottom:313.466667pt;}
.y4e{bottom:313.626667pt;}
.y187{bottom:313.946667pt;}
.yc4{bottom:317.306667pt;}
.y8b{bottom:319.866667pt;}
.y154{bottom:321.306667pt;}
.y129{bottom:322.906667pt;}
.yfa{bottom:325.306667pt;}
.y4d{bottom:328.986667pt;}
.y1a6{bottom:329.946667pt;}
.y186{bottom:330.426667pt;}
.yc3{bottom:332.666667pt;}
.y8a{bottom:335.226667pt;}
.y153{bottom:337.946667pt;}
.y128{bottom:338.586667pt;}
.yf9{bottom:340.666667pt;}
.y4c{bottom:344.346667pt;}
.y1a5{bottom:346.586667pt;}
.y185{bottom:347.066667pt;}
.yc2{bottom:348.026667pt;}
.y89{bottom:350.426667pt;}
.y127{bottom:353.786667pt;}
.y152{bottom:354.426667pt;}
.yf8{bottom:356.026667pt;}
.y4b{bottom:359.706667pt;}
.y1a4{bottom:363.066667pt;}
.yc1{bottom:363.226667pt;}
.y184{bottom:363.546667pt;}
.y88{bottom:365.786667pt;}
.y126{bottom:369.146667pt;}
.y151{bottom:371.066667pt;}
.yf7{bottom:371.386667pt;}
.y25{bottom:374.266667pt;}
.y4a{bottom:375.066667pt;}
.yc0{bottom:378.586667pt;}
.y1a3{bottom:379.706667pt;}
.y183{bottom:380.186667pt;}
.y87{bottom:381.146667pt;}
.y125{bottom:384.506667pt;}
.yf6{bottom:386.746667pt;}
.y150{bottom:387.546667pt;}
.y49{bottom:390.426667pt;}
.ybf{bottom:393.986667pt;}
.y24{bottom:395.746667pt;}
.y1a2{bottom:396.226667pt;}
.y86{bottom:396.546667pt;}
.y182{bottom:396.706667pt;}
.y124{bottom:398.626667pt;}
.yf5{bottom:401.986667pt;}
.y14f{bottom:404.226667pt;}
.y23{bottom:405.666667pt;}
.ybe{bottom:409.346667pt;}
.y85{bottom:411.906667pt;}
.y1a1{bottom:412.866667pt;}
.y181{bottom:413.346667pt;}
.y123{bottom:413.826667pt;}
.yf4{bottom:417.346667pt;}
.y14e{bottom:420.866667pt;}
.y48{bottom:421.026667pt;}
.y22{bottom:421.666667pt;}
.ybd{bottom:424.706667pt;}
.y84{bottom:426.786667pt;}
.y122{bottom:429.186667pt;}
.y1a0{bottom:429.346667pt;}
.y180{bottom:429.986667pt;}
.yf3{bottom:432.706667pt;}
.y47{bottom:436.386667pt;}
.y21{bottom:436.546667pt;}
.y14d{bottom:437.346667pt;}
.ybc{bottom:439.906667pt;}
.y83{bottom:442.146667pt;}
.y121{bottom:444.546667pt;}
.y19f{bottom:445.986667pt;}
.y17f{bottom:446.466667pt;}
.yf2{bottom:448.066667pt;}
.y46{bottom:451.746667pt;}
.y20{bottom:451.906667pt;}
.y14c{bottom:453.986667pt;}
.ybb{bottom:455.266667pt;}
.y82{bottom:457.826667pt;}
.y120{bottom:459.906667pt;}
.y19e{bottom:462.626667pt;}
.yf1{bottom:463.106667pt;}
.y45{bottom:467.106667pt;}
.y1f{bottom:467.266667pt;}
.y14b{bottom:470.466667pt;}
.yba{bottom:470.626667pt;}
.y81{bottom:473.186667pt;}
.y11f{bottom:475.266667pt;}
.yf0{bottom:477.346667pt;}
.y19d{bottom:479.106667pt;}
.y17e{bottom:479.586667pt;}
.y44{bottom:482.466667pt;}
.y1e{bottom:482.786667pt;}
.yb9{bottom:485.666667pt;}
.y14a{bottom:487.106667pt;}
.y80{bottom:488.546667pt;}
.y11e{bottom:490.626667pt;}
.yef{bottom:492.706667pt;}
.y19c{bottom:495.746667pt;}
.y17d{bottom:496.226667pt;}
.y1d{bottom:496.386667pt;}
.y43{bottom:497.346667pt;}
.yb8{bottom:501.026667pt;}
.y149{bottom:502.946667pt;}
.y7f{bottom:503.906667pt;}
.y11b{bottom:507.906667pt;}
.yed{bottom:508.066667pt;}
.y1c{bottom:509.986667pt;}
.y19b{bottom:512.226667pt;}
.y42{bottom:512.706667pt;}
.yb7{bottom:516.706667pt;}
.y7e{bottom:519.106667pt;}
.y148{bottom:519.586667pt;}
.y1b{bottom:523.426667pt;}
.ye9{bottom:525.346667pt;}
.y19a{bottom:528.866667pt;}
.y17c{bottom:529.346667pt;}
.y41{bottom:529.506667pt;}
.yb6{bottom:531.906667pt;}
.y7d{bottom:534.466667pt;}
.y147{bottom:534.786667pt;}
.y1a{bottom:537.026667pt;}
.yec{bottom:540.706667pt;}
.y199{bottom:545.346667pt;}
.y17b{bottom:545.826667pt;}
.y40{bottom:546.786667pt;}
.yb5{bottom:547.266667pt;}
.y7c{bottom:549.826667pt;}
.y146{bottom:550.146667pt;}
.y19{bottom:550.626667pt;}
.y11a{bottom:558.946667pt;}
.ye8{bottom:561.026667pt;}
.y198{bottom:561.986667pt;}
.y17a{bottom:562.466667pt;}
.yb4{bottom:562.626667pt;}
.y18{bottom:564.226667pt;}
.y7b{bottom:565.186667pt;}
.y145{bottom:565.506667pt;}
.y3f{bottom:572.066667pt;}
.y119{bottom:574.466667pt;}
.ye7{bottom:576.706667pt;}
.y17{bottom:577.826667pt;}
.yb3{bottom:577.986667pt;}
.y197{bottom:578.466667pt;}
.y179{bottom:579.106667pt;}
.y7a{bottom:580.546667pt;}
.y144{bottom:580.866667pt;}
.y3e{bottom:589.346667pt;}
.y118{bottom:589.506667pt;}
.y16{bottom:591.426667pt;}
.ye6{bottom:592.706667pt;}
.yb2{bottom:593.346667pt;}
.y196{bottom:595.106667pt;}
.y178{bottom:595.586667pt;}
.y79{bottom:595.906667pt;}
.y143{bottom:596.226667pt;}
.y15{bottom:605.053333pt;}
.y117{bottom:605.213333pt;}
.y3d{bottom:606.653333pt;}
.ye5{bottom:607.613333pt;}
.yb1{bottom:608.733333pt;}
.y78{bottom:611.133333pt;}
.y142{bottom:611.453333pt;}
.y195{bottom:611.773333pt;}
.y177{bottom:612.253333pt;}
.y14{bottom:620.413333pt;}
.y116{bottom:620.573333pt;}
.ye4{bottom:622.973333pt;}
.yb0{bottom:623.613333pt;}
.y3c{bottom:623.773333pt;}
.y77{bottom:626.493333pt;}
.y141{bottom:626.813333pt;}
.y194{bottom:628.253333pt;}
.y176{bottom:628.733333pt;}
.y115{bottom:635.933333pt;}
.y13{bottom:636.093333pt;}
.ye3{bottom:638.653333pt;}
.yaf{bottom:638.973333pt;}
.y3b{bottom:641.053333pt;}
.y76{bottom:641.853333pt;}
.y140{bottom:642.173333pt;}
.y175{bottom:644.893333pt;}
.y114{bottom:651.293333pt;}
.ye2{bottom:654.013333pt;}
.y12{bottom:654.493333pt;}
.yae{bottom:654.653333pt;}
.y75{bottom:657.213333pt;}
.y3a{bottom:658.333333pt;}
.y174{bottom:661.373333pt;}
.y113{bottom:665.213333pt;}
.ye1{bottom:669.373333pt;}
.yad{bottom:670.013333pt;}
.y74{bottom:672.573333pt;}
.y11{bottom:672.893333pt;}
.y39{bottom:675.613333pt;}
.y173{bottom:678.013333pt;}
.y112{bottom:680.573333pt;}
.ye0{bottom:684.413333pt;}
.yac{bottom:685.373333pt;}
.y73{bottom:687.933333pt;}
.y13f{bottom:688.253333pt;}
.y10{bottom:690.973333pt;}
.y38{bottom:692.893333pt;}
.y172{bottom:694.493333pt;}
.y111{bottom:695.933333pt;}
.ydf{bottom:699.933333pt;}
.yab{bottom:700.573333pt;}
.y72{bottom:702.813333pt;}
.y13e{bottom:703.453333pt;}
.yf{bottom:706.013333pt;}
.y37{bottom:710.173333pt;}
.y171{bottom:711.133333pt;}
.y10f{bottom:711.293333pt;}
.yde{bottom:715.293333pt;}
.yaa{bottom:715.933333pt;}
.y71{bottom:718.173333pt;}
.y13d{bottom:718.813333pt;}
.y10e{bottom:726.493333pt;}
.y36{bottom:727.453333pt;}
.y170{bottom:727.613333pt;}
.ydd{bottom:730.653333pt;}
.ya9{bottom:731.293333pt;}
.y70{bottom:733.853333pt;}
.y13c{bottom:734.173333pt;}
.ye{bottom:737.053333pt;}
.y10d{bottom:741.853333pt;}
.y16f{bottom:744.253333pt;}
.y35{bottom:744.733333pt;}
.ydc{bottom:745.693333pt;}
.ya8{bottom:746.653333pt;}
.y6f{bottom:749.213333pt;}
.y13b{bottom:749.533333pt;}
.y10c{bottom:757.213333pt;}
.y16e{bottom:760.893333pt;}
.y34{bottom:761.853333pt;}
.ya7{bottom:762.013333pt;}
.ydb{bottom:762.333333pt;}
.y6e{bottom:764.573333pt;}
.y13a{bottom:764.893333pt;}
.y10a{bottom:774.493333pt;}
.ya6{bottom:777.373333pt;}
.yda{bottom:778.333333pt;}
.y33{bottom:779.133333pt;}
.y6d{bottom:779.453333pt;}
.y139{bottom:779.933333pt;}
.yd{bottom:785.053333pt;}
.ya5{bottom:792.573333pt;}
.y16d{bottom:794.013333pt;}
.yd9{bottom:794.173333pt;}
.y6c{bottom:795.133333pt;}
.y32{bottom:796.413333pt;}
.ya4{bottom:807.933333pt;}
.yd8{bottom:810.213333pt;}
.y6b{bottom:810.533333pt;}
.y138{bottom:810.853333pt;}
.yc{bottom:812.613333pt;}
.y31{bottom:813.573333pt;}
.ya3{bottom:823.333333pt;}
.y6a{bottom:825.573333pt;}
.yd7{bottom:826.213333pt;}
.y16c{bottom:827.173333pt;}
.y30{bottom:830.053333pt;}
.ya2{bottom:838.373333pt;}
.yb{bottom:840.293333pt;}
.y69{bottom:841.253333pt;}
.y109{bottom:841.573333pt;}
.y16b{bottom:843.653333pt;}
.y2f{bottom:845.733333pt;}
.ya1{bottom:853.733333pt;}
.y68{bottom:856.613333pt;}
.yd6{bottom:856.933333pt;}
.y16a{bottom:860.293333pt;}
.y2e{bottom:861.093333pt;}
.ya0{bottom:869.413333pt;}
.y67{bottom:871.973333pt;}
.yd5{bottom:872.293333pt;}
.y169{bottom:876.773333pt;}
.ya{bottom:880.773333pt;}
.y2d{bottom:882.373333pt;}
.y9f{bottom:884.613333pt;}
.y66{bottom:887.493333pt;}
.y2c{bottom:891.333333pt;}
.y168{bottom:893.413333pt;}
.y9{bottom:896.773333pt;}
.y9e{bottom:899.973333pt;}
.y65{bottom:902.853333pt;}
.y2b{bottom:907.813333pt;}
.y167{bottom:910.053333pt;}
.y9d{bottom:915.333333pt;}
.y8{bottom:915.973333pt;}
.y64{bottom:918.213333pt;}
.y166{bottom:926.533333pt;}
.y2a{bottom:929.413333pt;}
.y9c{bottom:930.693333pt;}
.yd4{bottom:933.253333pt;}
.y63{bottom:933.573333pt;}
.y165{bottom:943.173333pt;}
.y9b{bottom:946.053333pt;}
.y62{bottom:948.933333pt;}
.y7{bottom:952.933333pt;}
.y29{bottom:958.533333pt;}
.y164{bottom:959.653333pt;}
.y9a{bottom:962.213333pt;}
.y61{bottom:964.133333pt;}
.y6{bottom:968.293333pt;}
.y28{bottom:976.293333pt;}
.y99{bottom:978.533333pt;}
.y60{bottom:979.493333pt;}
.y5{bottom:983.493333pt;}
.y163{bottom:992.773333pt;}
.y27{bottom:993.893333pt;}
.y5f{bottom:994.853333pt;}
.y4{bottom:998.853333pt;}
.y26{bottom:1007.493333pt;}
.y98{bottom:1009.253333pt;}
.y162{bottom:1009.413333pt;}
.yd3{bottom:1009.893333pt;}
.y5e{bottom:1010.213333pt;}
.y3{bottom:1014.213333pt;}
.y5d{bottom:1026.560000pt;}
.y5c{bottom:1041.760000pt;}
.h17{height:15.200000pt;}
.h11{height:15.360000pt;}
.h14{height:15.392000pt;}
.h13{height:20.960000pt;}
.h10{height:30.720000pt;}
.h8{height:33.918750pt;}
.h12{height:36.320000pt;}
.hd{height:38.672812pt;}
.he{height:44.327188pt;}
.hf{height:44.975625pt;}
.h18{height:45.920000pt;}
.h15{height:46.112000pt;}
.h7{height:47.392500pt;}
.h6{height:52.134375pt;}
.h4{height:53.535000pt;}
.h3{height:55.402500pt;}
.h16{height:58.238750pt;}
.hc{height:59.150000pt;}
.ha{height:61.410000pt;}
.h9{height:63.656250pt;}
.h2{height:66.750000pt;}
.hb{height:75.465000pt;}
.h5{height:96.750000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:32.160000pt;}
.w8{width:34.400000pt;}
.wc{width:40.000000pt;}
.w13{width:41.920000pt;}
.wf{width:52.032000pt;}
.w16{width:53.952000pt;}
.w21{width:54.112000pt;}
.we{width:70.080000pt;}
.w15{width:72.000000pt;}
.w1b{width:76.000000pt;}
.w1c{width:76.960000pt;}
.w20{width:77.920000pt;}
.w9{width:79.072000pt;}
.w6{width:80.512000pt;}
.w10{width:81.920000pt;}
.w17{width:83.040000pt;}
.w1a{width:89.152000pt;}
.w4{width:89.632000pt;}
.w1f{width:91.072000pt;}
.wd{width:100.032000pt;}
.w14{width:102.112000pt;}
.w19{width:105.952000pt;}
.w5{width:106.240000pt;}
.w1e{width:108.032000pt;}
.wb{width:130.112000pt;}
.w12{width:132.032000pt;}
.wa{width:141.120000pt;}
.w11{width:142.080000pt;}
.w18{width:152.960000pt;}
.w1d{width:154.080000pt;}
.w7{width:203.066667pt;}
.w2{width:208.986667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x12{left:6.240000pt;}
.x14{left:7.200000pt;}
.x2b{left:9.600000pt;}
.x26{left:11.520000pt;}
.x39{left:17.440000pt;}
.x22{left:19.200000pt;}
.x2f{left:24.000000pt;}
.x40{left:28.160000pt;}
.x4c{left:29.760000pt;}
.x28{left:30.880000pt;}
.x38{left:34.106667pt;}
.x45{left:36.360000pt;}
.x31{left:40.666667pt;}
.x23{left:42.440000pt;}
.x4b{left:44.480000pt;}
.x3a{left:47.386667pt;}
.x35{left:49.440000pt;}
.x3b{left:57.480000pt;}
.x2d{left:60.360000pt;}
.x37{left:64.200000pt;}
.x36{left:70.760000pt;}
.x20{left:89.792000pt;}
.xc{left:95.072000pt;}
.x2{left:96.032000pt;}
.x18{left:98.272000pt;}
.xe{left:108.032000pt;}
.xd{left:114.112000pt;}
.x4e{left:120.032000pt;}
.xf{left:125.952000pt;}
.x1f{left:137.146667pt;}
.x11{left:138.106667pt;}
.x1a{left:140.666667pt;}
.x4d{left:144.026667pt;}
.x3c{left:149.466667pt;}
.x5{left:166.906667pt;}
.x9{left:199.546667pt;}
.x2c{left:231.866667pt;}
.x21{left:232.826667pt;}
.x44{left:248.346667pt;}
.x3d{left:249.306667pt;}
.x7{left:311.906667pt;}
.xb{left:318.946667pt;}
.xa{left:336.866667pt;}
.x10{left:339.266667pt;}
.x1b{left:343.746667pt;}
.x13{left:347.106667pt;}
.x46{left:356.386667pt;}
.x3e{left:357.346667pt;}
.x2e{left:363.906667pt;}
.x24{left:364.866667pt;}
.x19{left:366.466667pt;}
.x1c{left:378.146667pt;}
.x15{left:379.266667pt;}
.x6{left:382.146667pt;}
.x4{left:396.386667pt;}
.x47{left:398.306667pt;}
.x3f{left:399.266667pt;}
.x30{left:405.826667pt;}
.x25{left:406.946667pt;}
.x3{left:448.573333pt;}
.x1d{left:467.773333pt;}
.x16{left:468.893333pt;}
.x48{left:489.373333pt;}
.x41{left:490.333333pt;}
.x32{left:507.933333pt;}
.x27{left:508.893333pt;}
.x49{left:567.293333pt;}
.x42{left:568.413333pt;}
.x1e{left:574.013333pt;}
.x17{left:575.133333pt;}
.x33{left:579.933333pt;}
.x29{left:580.893333pt;}
.x4a{left:621.413333pt;}
.x43{left:622.373333pt;}
.x34{left:633.893333pt;}
.x2a{left:635.013333pt;}
.x8{left:690.533333pt;}
.x1{left:697.733333pt;}
}




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