
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ddc7deff557614eda3e4eb3e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_305bbee1c787f5e378528246.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_49a0e84d1a4023e4a396010b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_81ad6983615187d9a0b7bc7a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_465315fc72bee9ac4b1e48ea.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_b15281db83def46cac62dfbf.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c3fa73cc85733b0b205e138e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ba58c09ac5e769bb50a7473b.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_0205a0ee55cd86a2cd4392c2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.980469;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_dfe036aa3bb53d8aec4b8025.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_972376e7b587aadeae8b4548.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.378906;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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls14{letter-spacing:-0.186600px;}
.ls31{letter-spacing:-0.178800px;}
.ls1f{letter-spacing:-0.160800px;}
.lsd{letter-spacing:-0.153600px;}
.ls21{letter-spacing:-0.142200px;}
.ls9{letter-spacing:-0.135000px;}
.ls15{letter-spacing:-0.121200px;}
.ls20{letter-spacing:-0.093600px;}
.ls16{letter-spacing:-0.092400px;}
.ls8{letter-spacing:-0.090000px;}
.lsc{letter-spacing:-0.084600px;}
.ls17{letter-spacing:-0.063600px;}
.lse{letter-spacing:-0.039000px;}
.ls18{letter-spacing:-0.038880px;}
.ls24{letter-spacing:-0.037800px;}
.ls28{letter-spacing:-0.013320px;}
.ls25{letter-spacing:-0.007560px;}
.ls6{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.009360px;}
.ls1c{letter-spacing:0.020160px;}
.ls10{letter-spacing:0.045360px;}
.ls1e{letter-spacing:0.047160px;}
.ls23{letter-spacing:0.048960px;}
.ls11{letter-spacing:0.064800px;}
.ls4{letter-spacing:0.065520px;}
.lsf{letter-spacing:0.074160px;}
.ls2a{letter-spacing:0.076800px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1a{letter-spacing:0.098400px;}
.ls2b{letter-spacing:0.105600px;}
.ls1b{letter-spacing:0.108600px;}
.ls2c{letter-spacing:0.109200px;}
.ls29{letter-spacing:0.115800px;}
.ls2e{letter-spacing:0.116400px;}
.ls7{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.173400px;}
.ls19{letter-spacing:0.173520px;}
.lsb{letter-spacing:0.174600px;}
.ls3{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.330600px;}
.ls0{letter-spacing:0.360000px;}
.ls2d{letter-spacing:0.369600px;}
.ls5{letter-spacing:0.425520px;}
.ls22{letter-spacing:0.533400px;}
.ls26{letter-spacing:3.333600px;}
.ls2f{letter-spacing:3.693600px;}
.ls27{letter-spacing:22.413600px;}
.ls32{letter-spacing:47.726640px;}
.ls12{letter-spacing:63.566640px;}
.ls30{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1b{word-spacing:-60.229200px;}
.ws1a{word-spacing:-60.196800px;}
.ws15{word-spacing:-60.120000px;}
.ws2{word-spacing:-18.453600px;}
.wsa{word-spacing:-14.372400px;}
.ws8{word-spacing:-13.399800px;}
.ws1e{word-spacing:-13.342800px;}
.ws19{word-spacing:-13.342200px;}
.wse{word-spacing:-13.335000px;}
.ws10{word-spacing:-13.324800px;}
.wsf{word-spacing:-13.246560px;}
.ws4{word-spacing:-13.226400px;}
.ws17{word-spacing:-13.218840px;}
.ws18{word-spacing:-13.213080px;}
.ws16{word-spacing:-13.188600px;}
.wsd{word-spacing:-13.187520px;}
.ws6{word-spacing:-13.187400px;}
.wsc{word-spacing:-13.162800px;}
.wsb{word-spacing:-13.134000px;}
.ws5{word-spacing:-13.072800px;}
.ws12{word-spacing:-13.065600px;}
.ws1f{word-spacing:-13.047600px;}
.ws9{word-spacing:-13.039800px;}
.ws1d{word-spacing:-10.903200px;}
.ws1c{word-spacing:-10.639200px;}
.ws14{word-spacing:-10.580760px;}
.ws11{word-spacing:-10.542960px;}
.ws13{word-spacing:-10.391400px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws3{word-spacing:-8.553600px;}
.ws7{word-spacing:0.000000px;}
._a{margin-left:-4.361160px;}
._9{margin-left:-3.306600px;}
._b{margin-left:-2.164200px;}
._0{margin-left:-1.110000px;}
._3{width:1.267992px;}
._7{width:2.338583px;}
._5{width:3.681563px;}
._c{width:4.773697px;}
._4{width:5.863188px;}
._2{width:7.832088px;}
._1{width:9.169320px;}
._6{width:10.358280px;}
._8{width:11.401181px;}
._12{width:14.909760px;}
._e{width:16.292400px;}
._d{width:18.207360px;}
._21{width:19.899720px;}
._2a{width:22.244400px;}
._2b{width:23.446800px;}
._47{width:24.649200px;}
._10{width:25.671240px;}
._f{width:26.813520px;}
._11{width:27.867000px;}
._13{width:29.278440px;}
._48{width:30.360600px;}
._6b{width:31.382640px;}
._1b{width:32.765400px;}
._17{width:34.208280px;}
._43{width:35.951760px;}
._1c{width:37.094040px;}
._19{width:38.236320px;}
._59{width:39.619080px;}
._22{width:40.881600px;}
._20{width:42.504840px;}
._1d{width:43.887600px;}
._2f{width:45.330480px;}
._4b{width:46.472760px;}
._37{width:47.494800px;}
._30{width:48.877560px;}
._4c{width:50.079960px;}
._4d{width:51.342480px;}
._3e{width:52.544880px;}
._55{width:53.571240px;}
._52{width:54.857280px;}
._25{width:56.031840px;}
._5d{width:57.715200px;}
._50{width:58.857480px;}
._4f{width:59.879520px;}
._3b{width:64.869480px;}
._2d{width:67.154040px;}
._5f{width:70.701120px;}
._36{width:72.144000px;}
._54{width:73.166040px;}
._23{width:75.871440px;}
._63{width:78.697080px;}
._68{width:81.041760px;}
._1e{width:83.335800px;}
._3c{width:84.648960px;}
._53{width:85.731120px;}
._16{width:87.474600px;}
._62{width:89.819280px;}
._44{width:91.820160px;}
._35{width:93.787200px;}
._6a{width:97.695000px;}
._26{width:101.061720px;}
._2e{width:103.045680px;}
._46{width:104.729040px;}
._42{width:105.751080px;}
._40{width:106.793280px;}
._31{width:108.216000px;}
._32{width:110.320200px;}
._24{width:118.917360px;}
._38{width:121.863240px;}
._5a{width:123.005520px;}
._45{width:126.136200px;}
._51{width:130.460400px;}
._28{width:133.586640px;}
._34{width:137.614680px;}
._49{width:142.063560px;}
._58{width:145.370160px;}
._69{width:156.251880px;}
._3f{width:160.520400px;}
._61{width:164.247840px;}
._60{width:165.750840px;}
._27{width:168.080040px;}
._66{width:172.604520px;}
._4e{width:174.287880px;}
._5b{width:178.255800px;}
._39{width:179.398080px;}
._18{width:182.343960px;}
._41{width:187.814880px;}
._15{width:189.317880px;}
._4a{width:191.181480px;}
._57{width:197.614440px;}
._56{width:205.466400px;}
._3a{width:206.933040px;}
._65{width:209.097360px;}
._1f{width:211.381920px;}
._29{width:242.043120px;}
._2c{width:248.115240px;}
._3d{width:251.361720px;}
._33{width:253.766520px;}
._5c{width:262.544040px;}
._64{width:268.135200px;}
._1a{width:277.754400px;}
._5e{width:282.263400px;}
._67{width:348.455520px;}
._14{width:851.165280px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.ydc{bottom:6.210000px;}
.yd4{bottom:6.300000px;}
.y6e{bottom:7.830000px;}
.y74{bottom:7.920000px;}
.yb7{bottom:7.950000px;}
.yf6{bottom:8.280000px;}
.yf5{bottom:10.260000px;}
.yf2{bottom:23.490000px;}
.yf9{bottom:23.520000px;}
.yd7{bottom:23.850000px;}
.yd2{bottom:23.880000px;}
.yd6{bottom:23.940000px;}
.yd3{bottom:23.970000px;}
.ye0{bottom:24.030000px;}
.y6d{bottom:25.380000px;}
.y8c{bottom:25.410000px;}
.y73{bottom:25.470000px;}
.yb6{bottom:25.500000px;}
.yf4{bottom:27.810000px;}
.yef{bottom:41.040000px;}
.ye4{bottom:41.400000px;}
.yda{bottom:41.490000px;}
.yd0{bottom:41.520000px;}
.yd9{bottom:41.580000px;}
.yd1{bottom:41.610000px;}
.y71{bottom:43.020000px;}
.y8b{bottom:43.050000px;}
.y9c{bottom:43.110000px;}
.yf8{bottom:43.140000px;}
.yf0{bottom:58.590000px;}
.ye5{bottom:60.210000px;}
.y8e{bottom:60.570000px;}
.y70{bottom:60.600000px;}
.y7b{bottom:60.660000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y88{bottom:74.280000px;}
.yba{bottom:78.210000px;}
.yed{bottom:98.760000px;}
.y1{bottom:101.640000px;}
.yb4{bottom:108.030000px;}
.yec{bottom:116.310000px;}
.y192{bottom:116.580000px;}
.yb3{bottom:122.070000px;}
.y12a{bottom:126.120000px;}
.y57{bottom:129.630000px;}
.yeb{bottom:133.860000px;}
.y191{bottom:134.130000px;}
.yb2{bottom:134.310000px;}
.y129{bottom:143.670000px;}
.y27{bottom:146.100000px;}
.y56{bottom:147.180000px;}
.yea{bottom:151.500000px;}
.y174{bottom:151.680000px;}
.y14c{bottom:156.900000px;}
.y128{bottom:161.310000px;}
.y26{bottom:164.010000px;}
.y55{bottom:164.820000px;}
.ye9{bottom:169.050000px;}
.y173{bottom:169.320000px;}
.y14b{bottom:174.540000px;}
.y190{bottom:178.320000px;}
.y127{bottom:178.860000px;}
.y54{bottom:182.370000px;}
.y6b{bottom:182.460000px;}
.ye8{bottom:186.690000px;}
.y172{bottom:186.870000px;}
.y14a{bottom:192.090000px;}
.y18f{bottom:195.870000px;}
.y126{bottom:196.500000px;}
.yb1{bottom:196.770000px;}
.y86{bottom:199.920000px;}
.y6a{bottom:200.010000px;}
.y25{bottom:201.090000px;}
.ye7{bottom:204.240000px;}
.y102{bottom:211.800000px;}
.y171{bottom:213.510000px;}
.y125{bottom:214.050000px;}
.y53{bottom:218.010000px;}
.y24{bottom:218.640000px;}
.y149{bottom:218.730000px;}
.ye6{bottom:221.790000px;}
.y18e{bottom:222.510000px;}
.y101{bottom:229.350000px;}
.y170{bottom:231.060000px;}
.y85{bottom:235.470000px;}
.y52{bottom:235.560000px;}
.y69{bottom:235.650000px;}
.y23{bottom:236.190000px;}
.y148{bottom:236.280000px;}
.y18d{bottom:240.060000px;}
.y124{bottom:240.960000px;}
.y95{bottom:242.760000px;}
.y100{bottom:246.990000px;}
.y51{bottom:253.110000px;}
.y22{bottom:253.830000px;}
.ye3{bottom:254.820000px;}
.y94{bottom:256.890000px;}
.y16f{bottom:257.610000px;}
.yff{bottom:264.540000px;}
.y68{bottom:267.870000px;}
.y93{bottom:269.040000px;}
.y50{bottom:270.750000px;}
.y84{bottom:271.110000px;}
.y16e{bottom:275.250000px;}
.yb0{bottom:276.870000px;}
.y147{bottom:280.470000px;}
.yfe{bottom:282.180000px;}
.y18c{bottom:284.250000px;}
.y4f{bottom:288.300000px;}
.y123{bottom:289.200000px;}
.y21{bottom:289.380000px;}
.y16d{bottom:292.800000px;}
.y146{bottom:298.020000px;}
.yfd{bottom:299.730000px;}
.y18b{bottom:301.800000px;}
.y4e{bottom:305.940000px;}
.y83{bottom:306.660000px;}
.y122{bottom:306.840000px;}
.y20{bottom:307.020000px;}
.y145{bottom:315.660000px;}
.ye2{bottom:315.840000px;}
.yfc{bottom:317.280000px;}
.ya8{bottom:318.900000px;}
.y16c{bottom:319.440000px;}
.y4d{bottom:323.490000px;}
.y121{bottom:324.390000px;}
.y1f{bottom:324.570000px;}
.y18a{bottom:328.440000px;}
.y92{bottom:331.590000px;}
.yfb{bottom:334.920000px;}
.ya7{bottom:336.540000px;}
.y16b{bottom:336.990000px;}
.yaf{bottom:339.420000px;}
.y120{bottom:341.940000px;}
.y1e{bottom:342.120000px;}
.y82{bottom:342.210000px;}
.y189{bottom:345.990000px;}
.yc7{bottom:348.960000px;}
.y4c{bottom:350.400000px;}
.ya6{bottom:354.090000px;}
.ye1{bottom:359.220000px;}
.y1d{bottom:359.760000px;}
.y16a{bottom:363.540000px;}
.yc6{bottom:366.600000px;}
.yfa{bottom:369.750000px;}
.ya5{bottom:371.730000px;}
.y188{bottom:372.540000px;}
.y1c{bottom:377.310000px;}
.y11f{bottom:377.580000px;}
.y81{bottom:377.850000px;}
.y169{bottom:381.180000px;}
.yf7{bottom:381.900000px;}
.yc5{bottom:384.150000px;}
.y144{bottom:386.400000px;}
.y187{bottom:390.180000px;}
.y91{bottom:394.080000px;}
.y1b{bottom:394.950000px;}
.y11e{bottom:395.130000px;}
.y4b{bottom:398.640000px;}
.yc4{bottom:401.790000px;}
.yae{bottom:401.910000px;}
.ydf{bottom:402.630000px;}
.y143{bottom:403.950000px;}
.ya4{bottom:406.560000px;}
.y168{bottom:407.730000px;}
.y1a{bottom:412.500000px;}
.y11d{bottom:412.770000px;}
.y80{bottom:413.400000px;}
.yce{bottom:415.560000px;}
.y186{bottom:416.730000px;}
.y4a{bottom:417.090000px;}
.yc3{bottom:419.340000px;}
.ya3{bottom:420.600000px;}
.y167{bottom:425.370000px;}
.y19{bottom:430.050000px;}
.y11c{bottom:430.320000px;}
.y142{bottom:430.590000px;}
.y7f{bottom:431.040000px;}
.ya2{bottom:432.840000px;}
.y185{bottom:434.370000px;}
.y49{bottom:435.450000px;}
.yc2{bottom:436.890000px;}
.yf3{bottom:444.480000px;}
.y18{bottom:447.690000px;}
.y141{bottom:448.140000px;}
.y7e{bottom:448.590000px;}
.ycd{bottom:451.110000px;}
.y166{bottom:451.920000px;}
.yc1{bottom:454.530000px;}
.y48{bottom:463.260000px;}
.yde{bottom:463.650000px;}
.yad{bottom:464.460000px;}
.y11b{bottom:465.870000px;}
.y7d{bottom:466.140000px;}
.ycc{bottom:468.750000px;}
.y165{bottom:469.470000px;}
.yc0{bottom:472.110000px;}
.y90{bottom:474.180000px;}
.y140{bottom:475.080000px;}
.y184{bottom:478.500000px;}
.y17{bottom:483.270000px;}
.y11a{bottom:483.540000px;}
.y7c{bottom:483.810000px;}
.ycb{bottom:486.330000px;}
.y164{bottom:487.140000px;}
.ybf{bottom:489.750000px;}
.yf1{bottom:491.730000px;}
.ya1{bottom:495.330000px;}
.y183{bottom:496.140000px;}
.y47{bottom:500.280000px;}
.y16{bottom:500.910000px;}
.y119{bottom:501.090000px;}
.yca{bottom:503.970000px;}
.ybe{bottom:507.300000px;}
.y163{bottom:513.690000px;}
.y7a{bottom:516.750000px;}
.y46{bottom:517.830000px;}
.y15{bottom:518.460000px;}
.y118{bottom:518.730000px;}
.y13f{bottom:523.320000px;}
.ydd{bottom:524.670000px;}
.ybd{bottom:524.850000px;}
.y162{bottom:531.330000px;}
.y45{bottom:535.470000px;}
.y14{bottom:536.010000px;}
.y117{bottom:536.280000px;}
.yc9{bottom:539.520000px;}
.y182{bottom:540.330000px;}
.ybc{bottom:542.490000px;}
.yac{bottom:544.560000px;}
.y161{bottom:548.880000px;}
.y13e{bottom:550.230000px;}
.y116{bottom:553.830000px;}
.y8f{bottom:554.280000px;}
.ya0{bottom:557.880000px;}
.ydb{bottom:568.140000px;}
.y44{bottom:571.020000px;}
.y13{bottom:571.650000px;}
.yc8{bottom:571.740000px;}
.ybb{bottom:575.430000px;}
.y181{bottom:584.430000px;}
.y13d{bottom:587.310000px;}
.y43{bottom:588.660000px;}
.y12{bottom:589.200000px;}
.y115{bottom:589.470000px;}
.y160{bottom:593.070000px;}
.y79{bottom:596.850000px;}
.y180{bottom:602.070000px;}
.y13c{bottom:604.860000px;}
.y42{bottom:606.210000px;}
.y11{bottom:606.840000px;}
.yab{bottom:607.020000px;}
.yd8{bottom:611.520000px;}
.y15f{bottom:619.620000px;}
.y13b{bottom:622.410000px;}
.y41{bottom:623.760000px;}
.y114{bottom:624.660000px;}
.y17f{bottom:628.620000px;}
.y8d{bottom:634.380000px;}
.y15e{bottom:637.260000px;}
.y9f{bottom:637.980000px;}
.y13a{bottom:640.050000px;}
.y78{bottom:641.760000px;}
.y113{bottom:642.210000px;}
.y10{bottom:642.390000px;}
.y17e{bottom:646.260000px;}
.yee{bottom:651.930000px;}
.y15d{bottom:654.810000px;}
.y139{bottom:657.600000px;}
.y40{bottom:659.400000px;}
.y112{bottom:659.760000px;}
.yf{bottom:659.940000px;}
.y17d{bottom:663.810000px;}
.yaa{bottom:669.570000px;}
.yd5{bottom:672.540000px;}
.y3f{bottom:676.950000px;}
.y111{bottom:677.400000px;}
.ye{bottom:677.580000px;}
.y15c{bottom:681.360000px;}
.y138{bottom:684.510000px;}
.y17c{bottom:690.360000px;}
.y3e{bottom:694.590000px;}
.yd{bottom:695.130000px;}
.y15b{bottom:699.000000px;}
.y9e{bottom:700.440000px;}
.y77{bottom:704.310000px;}
.y17b{bottom:708.000000px;}
.y3d{bottom:712.140000px;}
.y110{bottom:712.950000px;}
.y8a{bottom:714.480000px;}
.ycf{bottom:715.920000px;}
.y15a{bottom:716.550000px;}
.y137{bottom:721.590000px;}
.yc{bottom:722.040000px;}
.y17a{bottom:725.550000px;}
.y10f{bottom:730.590000px;}
.ya9{bottom:732.060000px;}
.y136{bottom:739.140000px;}
.y159{bottom:743.190000px;}
.y3c{bottom:747.690000px;}
.y10e{bottom:748.140000px;}
.y179{bottom:752.190000px;}
.y158{bottom:760.740000px;}
.y3b{bottom:765.330000px;}
.y10d{bottom:765.690000px;}
.y135{bottom:766.050000px;}
.y76{bottom:766.770000px;}
.y178{bottom:769.740000px;}
.yb{bottom:770.280000px;}
.y157{bottom:778.290000px;}
.y9d{bottom:780.540000px;}
.y3a{bottom:782.880000px;}
.y10c{bottom:783.330000px;}
.y177{bottom:787.290000px;}
.y89{bottom:798.390000px;}
.y39{bottom:800.520000px;}
.y10b{bottom:800.880000px;}
.y134{bottom:803.040000px;}
.y156{bottom:804.930000px;}
.ya{bottom:806.100000px;}
.y176{bottom:813.930000px;}
.y67{bottom:822.480000px;}
.y87{bottom:824.940000px;}
.y75{bottom:829.320000px;}
.y133{bottom:829.950000px;}
.y175{bottom:831.480000px;}
.y38{bottom:836.070000px;}
.y10a{bottom:836.520000px;}
.y66{bottom:840.030000px;}
.y9{bottom:842.100000px;}
.y9b{bottom:843.000000px;}
.y155{bottom:849.030000px;}
.y37{bottom:853.620000px;}
.y109{bottom:854.070000px;}
.y65{bottom:857.670000px;}
.y154{bottom:866.670000px;}
.y132{bottom:867.300000px;}
.y36{bottom:871.260000px;}
.y108{bottom:871.620000px;}
.yb9{bottom:878.190000px;}
.y8{bottom:881.880000px;}
.y35{bottom:888.810000px;}
.y107{bottom:889.260000px;}
.y72{bottom:891.780000px;}
.y64{bottom:893.220000px;}
.y7{bottom:899.880000px;}
.y9a{bottom:905.550000px;}
.y106{bottom:906.810000px;}
.y63{bottom:910.860000px;}
.y131{bottom:915.630000px;}
.y34{bottom:924.450000px;}
.y62{bottom:928.410000px;}
.y6{bottom:932.190000px;}
.y130{bottom:933.180000px;}
.y153{bottom:937.410000px;}
.yb8{bottom:940.740000px;}
.y33{bottom:942.000000px;}
.y61{bottom:945.960000px;}
.y5{bottom:951.540000px;}
.y12f{bottom:951.630000px;}
.y6f{bottom:954.330000px;}
.y152{bottom:954.960000px;}
.y32{bottom:959.550000px;}
.y60{bottom:963.600000px;}
.y99{bottom:968.100000px;}
.y12e{bottom:969.180000px;}
.y151{bottom:972.600000px;}
.y31{bottom:977.190000px;}
.y105{bottom:977.550000px;}
.y5f{bottom:981.150000px;}
.y12d{bottom:987.630000px;}
.y4{bottom:989.880000px;}
.y195{bottom:990.150000px;}
.y30{bottom:994.740000px;}
.y104{bottom:995.190000px;}
.y150{bottom:999.150000px;}
.yb5{bottom:1003.200000px;}
.y12c{bottom:1005.180000px;}
.y194{bottom:1007.790000px;}
.y103{bottom:1012.770000px;}
.y3{bottom:1014.570000px;}
.y5e{bottom:1016.820000px;}
.y2f{bottom:1030.320000px;}
.y12b{bottom:1032.930000px;}
.y5d{bottom:1034.370000px;}
.y6c{bottom:1034.460000px;}
.y14f{bottom:1043.370000px;}
.y2e{bottom:1047.960000px;}
.y5c{bottom:1051.920000px;}
.y14e{bottom:1060.920000px;}
.y2d{bottom:1065.510000px;}
.y5b{bottom:1069.560000px;}
.y98{bottom:1069.920000px;}
.y14d{bottom:1078.560000px;}
.y2c{bottom:1083.150000px;}
.y5a{bottom:1087.110000px;}
.y97{bottom:1087.560000px;}
.y193{bottom:1096.110000px;}
.y2b{bottom:1100.700000px;}
.y96{bottom:1105.110000px;}
.y59{bottom:1122.750000px;}
.y2a{bottom:1127.610000px;}
.y58{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h15{height:41.661211px;}
.h1b{height:42.660000px;}
.h1d{height:42.690000px;}
.hc{height:44.100000px;}
.h16{height:44.130000px;}
.hf{height:44.190000px;}
.h18{height:44.220000px;}
.h21{height:46.530000px;}
.hb{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.h1e{height:60.210000px;}
.h1c{height:60.300000px;}
.h1a{height:60.330000px;}
.he{height:61.740000px;}
.h13{height:61.770000px;}
.ha{height:61.793886px;}
.h17{height:61.830000px;}
.h22{height:61.860000px;}
.h20{height:66.343359px;}
.h9{height:68.582109px;}
.h4{height:72.985430px;}
.h14{height:79.290000px;}
.hd{height:79.320000px;}
.h10{height:79.380000px;}
.h1f{height:79.410000px;}
.h19{height:96.930000px;}
.h11{height:893.160000px;}
.h12{height:893.250000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w11{width:36.090000px;}
.wd{width:68.040000px;}
.w20{width:77.940000px;}
.w26{width:84.690000px;}
.w2c{width:88.560000px;}
.w23{width:88.770000px;}
.w25{width:90.720000px;}
.wa{width:91.260000px;}
.w1a{width:108.000000px;}
.w21{width:112.950000px;}
.w15{width:114.750000px;}
.w3{width:114.780000px;}
.w2a{width:115.560000px;}
.w24{width:121.950000px;}
.w1b{width:123.240000px;}
.we{width:126.090000px;}
.w28{width:132.210000px;}
.w1e{width:143.190000px;}
.w6{width:154.530000px;}
.w1f{width:155.280000px;}
.w29{width:159.660000px;}
.w22{width:163.620000px;}
.w10{width:165.060000px;}
.w27{width:172.650000px;}
.wb{width:174.630000px;}
.w2b{width:175.260000px;}
.w12{width:176.070000px;}
.w13{width:183.870000px;}
.wc{width:184.050000px;}
.w17{width:189.360000px;}
.wf{width:194.520000px;}
.w2d{width:196.920000px;}
.w5{width:234.210000px;}
.w18{width:234.750000px;}
.w19{width:241.740000px;}
.w4{width:249.930000px;}
.w16{width:268.410000px;}
.w14{width:278.850000px;}
.w1c{width:287.730000px;}
.w1d{width:343.110000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.w8{width:1262.250000px;}
.w9{width:1262.519981px;}
.w7{width:1262.520000px;}
.x0{left:0.000000px;}
.x7{left:3.960000px;}
.x16{left:7.740000px;}
.x1{left:68.040000px;}
.x1a{left:83.249987px;}
.x4{left:95.039987px;}
.xd{left:107.999981px;}
.x20{left:111.239981px;}
.x34{left:122.039987px;}
.x25{left:123.659987px;}
.x1b{left:129.959987px;}
.x8{left:184.350000px;}
.x22{left:192.810000px;}
.xe{left:200.700000px;}
.x17{left:245.550000px;}
.x2{left:251.759987px;}
.x2d{left:282.090000px;}
.x6{left:285.869987px;}
.x33{left:338.069981px;}
.xf{left:376.050000px;}
.x1c{left:377.850000px;}
.x21{left:392.609981px;}
.x26{left:408.720000px;}
.x2e{left:415.020000px;}
.x18{left:430.140000px;}
.x9{left:435.000000px;}
.xb{left:436.349981px;}
.x23{left:481.350000px;}
.x27{left:487.470000px;}
.x10{left:560.910000px;}
.x1d{left:567.930000px;}
.x15{left:574.139981px;}
.x2f{left:575.400000px;}
.x28{left:601.140000px;}
.x5{left:603.059987px;}
.x24{left:619.889987px;}
.x11{left:629.760000px;}
.xa{left:669.930000px;}
.x30{left:691.680000px;}
.x19{left:709.710000px;}
.x12{left:756.660000px;}
.x29{left:765.480000px;}
.x3{left:800.339987px;}
.x1e{left:803.400000px;}
.x2a{left:854.970000px;}
.x31{left:867.660000px;}
.x13{left:951.990000px;}
.x32{left:956.940000px;}
.x2b{left:977.730000px;}
.x1f{left:1045.860000px;}
.x2c{left:1069.170000px;}
.x14{left:1117.770000px;}
.xc{left:1129.649981px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls14{letter-spacing:-0.165867pt;}
.ls31{letter-spacing:-0.158933pt;}
.ls1f{letter-spacing:-0.142933pt;}
.lsd{letter-spacing:-0.136533pt;}
.ls21{letter-spacing:-0.126400pt;}
.ls9{letter-spacing:-0.120000pt;}
.ls15{letter-spacing:-0.107733pt;}
.ls20{letter-spacing:-0.083200pt;}
.ls16{letter-spacing:-0.082133pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsc{letter-spacing:-0.075200pt;}
.ls17{letter-spacing:-0.056533pt;}
.lse{letter-spacing:-0.034667pt;}
.ls18{letter-spacing:-0.034560pt;}
.ls24{letter-spacing:-0.033600pt;}
.ls28{letter-spacing:-0.011840pt;}
.ls25{letter-spacing:-0.006720pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.008320pt;}
.ls1c{letter-spacing:0.017920pt;}
.ls10{letter-spacing:0.040320pt;}
.ls1e{letter-spacing:0.041920pt;}
.ls23{letter-spacing:0.043520pt;}
.ls11{letter-spacing:0.057600pt;}
.ls4{letter-spacing:0.058240pt;}
.lsf{letter-spacing:0.065920pt;}
.ls2a{letter-spacing:0.068267pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1a{letter-spacing:0.087467pt;}
.ls2b{letter-spacing:0.093867pt;}
.ls1b{letter-spacing:0.096533pt;}
.ls2c{letter-spacing:0.097067pt;}
.ls29{letter-spacing:0.102933pt;}
.ls2e{letter-spacing:0.103467pt;}
.ls7{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.154133pt;}
.ls19{letter-spacing:0.154240pt;}
.lsb{letter-spacing:0.155200pt;}
.ls3{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.293867pt;}
.ls0{letter-spacing:0.320000pt;}
.ls2d{letter-spacing:0.328533pt;}
.ls5{letter-spacing:0.378240pt;}
.ls22{letter-spacing:0.474133pt;}
.ls26{letter-spacing:2.963200pt;}
.ls2f{letter-spacing:3.283200pt;}
.ls27{letter-spacing:19.923200pt;}
.ls32{letter-spacing:42.423680pt;}
.ls12{letter-spacing:56.503680pt;}
.ls30{letter-spacing:71.863680pt;}
.ws1b{word-spacing:-53.537067pt;}
.ws1a{word-spacing:-53.508267pt;}
.ws15{word-spacing:-53.440000pt;}
.ws2{word-spacing:-16.403200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws8{word-spacing:-11.910933pt;}
.ws1e{word-spacing:-11.860267pt;}
.ws19{word-spacing:-11.859733pt;}
.wse{word-spacing:-11.853333pt;}
.ws10{word-spacing:-11.844267pt;}
.wsf{word-spacing:-11.774720pt;}
.ws4{word-spacing:-11.756800pt;}
.ws17{word-spacing:-11.750080pt;}
.ws18{word-spacing:-11.744960pt;}
.ws16{word-spacing:-11.723200pt;}
.wsd{word-spacing:-11.722240pt;}
.ws6{word-spacing:-11.722133pt;}
.wsc{word-spacing:-11.700267pt;}
.wsb{word-spacing:-11.674667pt;}
.ws5{word-spacing:-11.620267pt;}
.ws12{word-spacing:-11.613867pt;}
.ws1f{word-spacing:-11.597867pt;}
.ws9{word-spacing:-11.590933pt;}
.ws1d{word-spacing:-9.691733pt;}
.ws1c{word-spacing:-9.457067pt;}
.ws14{word-spacing:-9.405120pt;}
.ws11{word-spacing:-9.371520pt;}
.ws13{word-spacing:-9.236800pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws3{word-spacing:-7.603200pt;}
.ws7{word-spacing:0.000000pt;}
._a{margin-left:-3.876587pt;}
._9{margin-left:-2.939200pt;}
._b{margin-left:-1.923733pt;}
._0{margin-left:-0.986667pt;}
._3{width:1.127104pt;}
._7{width:2.078740pt;}
._5{width:3.272500pt;}
._c{width:4.243287pt;}
._4{width:5.211723pt;}
._2{width:6.961856pt;}
._1{width:8.150507pt;}
._6{width:9.207360pt;}
._8{width:10.134383pt;}
._12{width:13.253120pt;}
._e{width:14.482133pt;}
._d{width:16.184320pt;}
._21{width:17.688640pt;}
._2a{width:19.772800pt;}
._2b{width:20.841600pt;}
._47{width:21.910400pt;}
._10{width:22.818880pt;}
._f{width:23.834240pt;}
._11{width:24.770667pt;}
._13{width:26.025280pt;}
._48{width:26.987200pt;}
._6b{width:27.895680pt;}
._1b{width:29.124800pt;}
._17{width:30.407360pt;}
._43{width:31.957120pt;}
._1c{width:32.972480pt;}
._19{width:33.987840pt;}
._59{width:35.216960pt;}
._22{width:36.339200pt;}
._20{width:37.782080pt;}
._1d{width:39.011200pt;}
._2f{width:40.293760pt;}
._4b{width:41.309120pt;}
._37{width:42.217600pt;}
._30{width:43.446720pt;}
._4c{width:44.515520pt;}
._4d{width:45.637760pt;}
._3e{width:46.706560pt;}
._55{width:47.618880pt;}
._52{width:48.762027pt;}
._25{width:49.806080pt;}
._5d{width:51.302400pt;}
._50{width:52.317760pt;}
._4f{width:53.226240pt;}
._3b{width:57.661760pt;}
._2d{width:59.692480pt;}
._5f{width:62.845440pt;}
._36{width:64.128000pt;}
._54{width:65.036480pt;}
._23{width:67.441280pt;}
._63{width:69.952960pt;}
._68{width:72.037120pt;}
._1e{width:74.076267pt;}
._3c{width:75.243520pt;}
._53{width:76.205440pt;}
._16{width:77.755200pt;}
._62{width:79.839360pt;}
._44{width:81.617920pt;}
._35{width:83.366400pt;}
._6a{width:86.840000pt;}
._26{width:89.832640pt;}
._2e{width:91.596160pt;}
._46{width:93.092480pt;}
._42{width:94.000960pt;}
._40{width:94.927360pt;}
._31{width:96.192000pt;}
._32{width:98.062400pt;}
._24{width:105.704320pt;}
._38{width:108.322880pt;}
._5a{width:109.338240pt;}
._45{width:112.121067pt;}
._51{width:115.964800pt;}
._28{width:118.743680pt;}
._34{width:122.324160pt;}
._49{width:126.278720pt;}
._58{width:129.217920pt;}
._69{width:138.890560pt;}
._3f{width:142.684800pt;}
._61{width:145.998080pt;}
._60{width:147.334080pt;}
._27{width:149.404480pt;}
._66{width:153.426240pt;}
._4e{width:154.922560pt;}
._5b{width:158.449600pt;}
._39{width:159.464960pt;}
._18{width:162.083520pt;}
._41{width:166.946560pt;}
._15{width:168.282560pt;}
._4a{width:169.939093pt;}
._57{width:175.657280pt;}
._56{width:182.636800pt;}
._3a{width:183.940480pt;}
._65{width:185.864320pt;}
._1f{width:187.895040pt;}
._29{width:215.149440pt;}
._2c{width:220.546880pt;}
._3d{width:223.432640pt;}
._33{width:225.570240pt;}
._5c{width:233.372480pt;}
._64{width:238.342400pt;}
._1a{width:246.892800pt;}
._5e{width:250.900800pt;}
._67{width:309.738240pt;}
._14{width:756.591360pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.ydc{bottom:5.520000pt;}
.yd4{bottom:5.600000pt;}
.y6e{bottom:6.960000pt;}
.y74{bottom:7.040000pt;}
.yb7{bottom:7.066667pt;}
.yf6{bottom:7.360000pt;}
.yf5{bottom:9.120000pt;}
.yf2{bottom:20.880000pt;}
.yf9{bottom:20.906667pt;}
.yd7{bottom:21.200000pt;}
.yd2{bottom:21.226667pt;}
.yd6{bottom:21.280000pt;}
.yd3{bottom:21.306667pt;}
.ye0{bottom:21.360000pt;}
.y6d{bottom:22.560000pt;}
.y8c{bottom:22.586667pt;}
.y73{bottom:22.640000pt;}
.yb6{bottom:22.666667pt;}
.yf4{bottom:24.720000pt;}
.yef{bottom:36.480000pt;}
.ye4{bottom:36.800000pt;}
.yda{bottom:36.880000pt;}
.yd0{bottom:36.906667pt;}
.yd9{bottom:36.960000pt;}
.yd1{bottom:36.986667pt;}
.y71{bottom:38.240000pt;}
.y8b{bottom:38.266667pt;}
.y9c{bottom:38.320000pt;}
.yf8{bottom:38.346667pt;}
.yf0{bottom:52.080000pt;}
.ye5{bottom:53.520000pt;}
.y8e{bottom:53.840000pt;}
.y70{bottom:53.866667pt;}
.y7b{bottom:53.920000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y88{bottom:66.026667pt;}
.yba{bottom:69.520000pt;}
.yed{bottom:87.786667pt;}
.y1{bottom:90.346667pt;}
.yb4{bottom:96.026667pt;}
.yec{bottom:103.386667pt;}
.y192{bottom:103.626667pt;}
.yb3{bottom:108.506667pt;}
.y12a{bottom:112.106667pt;}
.y57{bottom:115.226667pt;}
.yeb{bottom:118.986667pt;}
.y191{bottom:119.226667pt;}
.yb2{bottom:119.386667pt;}
.y129{bottom:127.706667pt;}
.y27{bottom:129.866667pt;}
.y56{bottom:130.826667pt;}
.yea{bottom:134.666667pt;}
.y174{bottom:134.826667pt;}
.y14c{bottom:139.466667pt;}
.y128{bottom:143.386667pt;}
.y26{bottom:145.786667pt;}
.y55{bottom:146.506667pt;}
.ye9{bottom:150.266667pt;}
.y173{bottom:150.506667pt;}
.y14b{bottom:155.146667pt;}
.y190{bottom:158.506667pt;}
.y127{bottom:158.986667pt;}
.y54{bottom:162.106667pt;}
.y6b{bottom:162.186667pt;}
.ye8{bottom:165.946667pt;}
.y172{bottom:166.106667pt;}
.y14a{bottom:170.746667pt;}
.y18f{bottom:174.106667pt;}
.y126{bottom:174.666667pt;}
.yb1{bottom:174.906667pt;}
.y86{bottom:177.706667pt;}
.y6a{bottom:177.786667pt;}
.y25{bottom:178.746667pt;}
.ye7{bottom:181.546667pt;}
.y102{bottom:188.266667pt;}
.y171{bottom:189.786667pt;}
.y125{bottom:190.266667pt;}
.y53{bottom:193.786667pt;}
.y24{bottom:194.346667pt;}
.y149{bottom:194.426667pt;}
.ye6{bottom:197.146667pt;}
.y18e{bottom:197.786667pt;}
.y101{bottom:203.866667pt;}
.y170{bottom:205.386667pt;}
.y85{bottom:209.306667pt;}
.y52{bottom:209.386667pt;}
.y69{bottom:209.466667pt;}
.y23{bottom:209.946667pt;}
.y148{bottom:210.026667pt;}
.y18d{bottom:213.386667pt;}
.y124{bottom:214.186667pt;}
.y95{bottom:215.786667pt;}
.y100{bottom:219.546667pt;}
.y51{bottom:224.986667pt;}
.y22{bottom:225.626667pt;}
.ye3{bottom:226.506667pt;}
.y94{bottom:228.346667pt;}
.y16f{bottom:228.986667pt;}
.yff{bottom:235.146667pt;}
.y68{bottom:238.106667pt;}
.y93{bottom:239.146667pt;}
.y50{bottom:240.666667pt;}
.y84{bottom:240.986667pt;}
.y16e{bottom:244.666667pt;}
.yb0{bottom:246.106667pt;}
.y147{bottom:249.306667pt;}
.yfe{bottom:250.826667pt;}
.y18c{bottom:252.666667pt;}
.y4f{bottom:256.266667pt;}
.y123{bottom:257.066667pt;}
.y21{bottom:257.226667pt;}
.y16d{bottom:260.266667pt;}
.y146{bottom:264.906667pt;}
.yfd{bottom:266.426667pt;}
.y18b{bottom:268.266667pt;}
.y4e{bottom:271.946667pt;}
.y83{bottom:272.586667pt;}
.y122{bottom:272.746667pt;}
.y20{bottom:272.906667pt;}
.y145{bottom:280.586667pt;}
.ye2{bottom:280.746667pt;}
.yfc{bottom:282.026667pt;}
.ya8{bottom:283.466667pt;}
.y16c{bottom:283.946667pt;}
.y4d{bottom:287.546667pt;}
.y121{bottom:288.346667pt;}
.y1f{bottom:288.506667pt;}
.y18a{bottom:291.946667pt;}
.y92{bottom:294.746667pt;}
.yfb{bottom:297.706667pt;}
.ya7{bottom:299.146667pt;}
.y16b{bottom:299.546667pt;}
.yaf{bottom:301.706667pt;}
.y120{bottom:303.946667pt;}
.y1e{bottom:304.106667pt;}
.y82{bottom:304.186667pt;}
.y189{bottom:307.546667pt;}
.yc7{bottom:310.186667pt;}
.y4c{bottom:311.466667pt;}
.ya6{bottom:314.746667pt;}
.ye1{bottom:319.306667pt;}
.y1d{bottom:319.786667pt;}
.y16a{bottom:323.146667pt;}
.yc6{bottom:325.866667pt;}
.yfa{bottom:328.666667pt;}
.ya5{bottom:330.426667pt;}
.y188{bottom:331.146667pt;}
.y1c{bottom:335.386667pt;}
.y11f{bottom:335.626667pt;}
.y81{bottom:335.866667pt;}
.y169{bottom:338.826667pt;}
.yf7{bottom:339.466667pt;}
.yc5{bottom:341.466667pt;}
.y144{bottom:343.466667pt;}
.y187{bottom:346.826667pt;}
.y91{bottom:350.293333pt;}
.y1b{bottom:351.066667pt;}
.y11e{bottom:351.226667pt;}
.y4b{bottom:354.346667pt;}
.yc4{bottom:357.146667pt;}
.yae{bottom:357.253333pt;}
.ydf{bottom:357.893333pt;}
.y143{bottom:359.066667pt;}
.ya4{bottom:361.386667pt;}
.y168{bottom:362.426667pt;}
.y1a{bottom:366.666667pt;}
.y11d{bottom:366.906667pt;}
.y80{bottom:367.466667pt;}
.yce{bottom:369.386667pt;}
.y186{bottom:370.426667pt;}
.y4a{bottom:370.746667pt;}
.yc3{bottom:372.746667pt;}
.ya3{bottom:373.866667pt;}
.y167{bottom:378.106667pt;}
.y19{bottom:382.266667pt;}
.y11c{bottom:382.506667pt;}
.y142{bottom:382.746667pt;}
.y7f{bottom:383.146667pt;}
.ya2{bottom:384.746667pt;}
.y185{bottom:386.106667pt;}
.y49{bottom:387.066667pt;}
.yc2{bottom:388.346667pt;}
.yf3{bottom:395.093333pt;}
.y18{bottom:397.946667pt;}
.y141{bottom:398.346667pt;}
.y7e{bottom:398.746667pt;}
.ycd{bottom:400.986667pt;}
.y166{bottom:401.706667pt;}
.yc1{bottom:404.026667pt;}
.y48{bottom:411.786667pt;}
.yde{bottom:412.133333pt;}
.yad{bottom:412.853333pt;}
.y11b{bottom:414.106667pt;}
.y7d{bottom:414.346667pt;}
.ycc{bottom:416.666667pt;}
.y165{bottom:417.306667pt;}
.yc0{bottom:419.653333pt;}
.y90{bottom:421.493333pt;}
.y140{bottom:422.293333pt;}
.y184{bottom:425.333333pt;}
.y17{bottom:429.573333pt;}
.y11a{bottom:429.813333pt;}
.y7c{bottom:430.053333pt;}
.ycb{bottom:432.293333pt;}
.y164{bottom:433.013333pt;}
.ybf{bottom:435.333333pt;}
.yf1{bottom:437.093333pt;}
.ya1{bottom:440.293333pt;}
.y183{bottom:441.013333pt;}
.y47{bottom:444.693333pt;}
.y16{bottom:445.253333pt;}
.y119{bottom:445.413333pt;}
.yca{bottom:447.973333pt;}
.ybe{bottom:450.933333pt;}
.y163{bottom:456.613333pt;}
.y7a{bottom:459.333333pt;}
.y46{bottom:460.293333pt;}
.y15{bottom:460.853333pt;}
.y118{bottom:461.093333pt;}
.y13f{bottom:465.173333pt;}
.ydd{bottom:466.373333pt;}
.ybd{bottom:466.533333pt;}
.y162{bottom:472.293333pt;}
.y45{bottom:475.973333pt;}
.y14{bottom:476.453333pt;}
.y117{bottom:476.693333pt;}
.yc9{bottom:479.573333pt;}
.y182{bottom:480.293333pt;}
.ybc{bottom:482.213333pt;}
.yac{bottom:484.053333pt;}
.y161{bottom:487.893333pt;}
.y13e{bottom:489.093333pt;}
.y116{bottom:492.293333pt;}
.y8f{bottom:492.693333pt;}
.ya0{bottom:495.893333pt;}
.ydb{bottom:505.013333pt;}
.y44{bottom:507.573333pt;}
.y13{bottom:508.133333pt;}
.yc8{bottom:508.213333pt;}
.ybb{bottom:511.493333pt;}
.y181{bottom:519.493333pt;}
.y13d{bottom:522.053333pt;}
.y43{bottom:523.253333pt;}
.y12{bottom:523.733333pt;}
.y115{bottom:523.973333pt;}
.y160{bottom:527.173333pt;}
.y79{bottom:530.533333pt;}
.y180{bottom:535.173333pt;}
.y13c{bottom:537.653333pt;}
.y42{bottom:538.853333pt;}
.y11{bottom:539.413333pt;}
.yab{bottom:539.573333pt;}
.yd8{bottom:543.573333pt;}
.y15f{bottom:550.773333pt;}
.y13b{bottom:553.253333pt;}
.y41{bottom:554.453333pt;}
.y114{bottom:555.253333pt;}
.y17f{bottom:558.773333pt;}
.y8d{bottom:563.893333pt;}
.y15e{bottom:566.453333pt;}
.y9f{bottom:567.093333pt;}
.y13a{bottom:568.933333pt;}
.y78{bottom:570.453333pt;}
.y113{bottom:570.853333pt;}
.y10{bottom:571.013333pt;}
.y17e{bottom:574.453333pt;}
.yee{bottom:579.493333pt;}
.y15d{bottom:582.053333pt;}
.y139{bottom:584.533333pt;}
.y40{bottom:586.133333pt;}
.y112{bottom:586.453333pt;}
.yf{bottom:586.613333pt;}
.y17d{bottom:590.053333pt;}
.yaa{bottom:595.173333pt;}
.yd5{bottom:597.813333pt;}
.y3f{bottom:601.733333pt;}
.y111{bottom:602.133333pt;}
.ye{bottom:602.293333pt;}
.y15c{bottom:605.653333pt;}
.y138{bottom:608.453333pt;}
.y17c{bottom:613.653333pt;}
.y3e{bottom:617.413333pt;}
.yd{bottom:617.893333pt;}
.y15b{bottom:621.333333pt;}
.y9e{bottom:622.613333pt;}
.y77{bottom:626.053333pt;}
.y17b{bottom:629.333333pt;}
.y3d{bottom:633.013333pt;}
.y110{bottom:633.733333pt;}
.y8a{bottom:635.093333pt;}
.ycf{bottom:636.373333pt;}
.y15a{bottom:636.933333pt;}
.y137{bottom:641.413333pt;}
.yc{bottom:641.813333pt;}
.y17a{bottom:644.933333pt;}
.y10f{bottom:649.413333pt;}
.ya9{bottom:650.720000pt;}
.y136{bottom:657.013333pt;}
.y159{bottom:660.613333pt;}
.y3c{bottom:664.613333pt;}
.y10e{bottom:665.013333pt;}
.y179{bottom:668.613333pt;}
.y158{bottom:676.213333pt;}
.y3b{bottom:680.293333pt;}
.y10d{bottom:680.613333pt;}
.y135{bottom:680.933333pt;}
.y76{bottom:681.573333pt;}
.y178{bottom:684.213333pt;}
.yb{bottom:684.693333pt;}
.y157{bottom:691.813333pt;}
.y9d{bottom:693.813333pt;}
.y3a{bottom:695.893333pt;}
.y10c{bottom:696.293333pt;}
.y177{bottom:699.813333pt;}
.y89{bottom:709.680000pt;}
.y39{bottom:711.573333pt;}
.y10b{bottom:711.893333pt;}
.y134{bottom:713.813333pt;}
.y156{bottom:715.493333pt;}
.ya{bottom:716.533333pt;}
.y176{bottom:723.493333pt;}
.y67{bottom:731.093333pt;}
.y87{bottom:733.280000pt;}
.y75{bottom:737.173333pt;}
.y133{bottom:737.733333pt;}
.y175{bottom:739.093333pt;}
.y38{bottom:743.173333pt;}
.y10a{bottom:743.573333pt;}
.y66{bottom:746.693333pt;}
.y9{bottom:748.533333pt;}
.y9b{bottom:749.333333pt;}
.y155{bottom:754.693333pt;}
.y37{bottom:758.773333pt;}
.y109{bottom:759.173333pt;}
.y65{bottom:762.373333pt;}
.y154{bottom:770.373333pt;}
.y132{bottom:770.933333pt;}
.y36{bottom:774.453333pt;}
.y108{bottom:774.773333pt;}
.yb9{bottom:780.613333pt;}
.y8{bottom:783.893333pt;}
.y35{bottom:790.053333pt;}
.y107{bottom:790.453333pt;}
.y72{bottom:792.693333pt;}
.y64{bottom:793.973333pt;}
.y7{bottom:799.893333pt;}
.y9a{bottom:804.933333pt;}
.y106{bottom:806.053333pt;}
.y63{bottom:809.653333pt;}
.y131{bottom:813.893333pt;}
.y34{bottom:821.733333pt;}
.y62{bottom:825.253333pt;}
.y6{bottom:828.613333pt;}
.y130{bottom:829.493333pt;}
.y153{bottom:833.253333pt;}
.yb8{bottom:836.213333pt;}
.y33{bottom:837.333333pt;}
.y61{bottom:840.853333pt;}
.y5{bottom:845.813333pt;}
.y12f{bottom:845.893333pt;}
.y6f{bottom:848.293333pt;}
.y152{bottom:848.853333pt;}
.y32{bottom:852.933333pt;}
.y60{bottom:856.533333pt;}
.y99{bottom:860.533333pt;}
.y12e{bottom:861.493333pt;}
.y151{bottom:864.533333pt;}
.y31{bottom:868.613333pt;}
.y105{bottom:868.933333pt;}
.y5f{bottom:872.133333pt;}
.y12d{bottom:877.893333pt;}
.y4{bottom:879.893333pt;}
.y195{bottom:880.133333pt;}
.y30{bottom:884.213333pt;}
.y104{bottom:884.613333pt;}
.y150{bottom:888.133333pt;}
.yb5{bottom:891.733333pt;}
.y12c{bottom:893.493333pt;}
.y194{bottom:895.813333pt;}
.y103{bottom:900.240000pt;}
.y3{bottom:901.840000pt;}
.y5e{bottom:903.840000pt;}
.y2f{bottom:915.840000pt;}
.y12b{bottom:918.160000pt;}
.y5d{bottom:919.440000pt;}
.y6c{bottom:919.520000pt;}
.y14f{bottom:927.440000pt;}
.y2e{bottom:931.520000pt;}
.y5c{bottom:935.040000pt;}
.y14e{bottom:943.040000pt;}
.y2d{bottom:947.120000pt;}
.y5b{bottom:950.720000pt;}
.y98{bottom:951.040000pt;}
.y14d{bottom:958.720000pt;}
.y2c{bottom:962.800000pt;}
.y5a{bottom:966.320000pt;}
.y97{bottom:966.720000pt;}
.y193{bottom:974.320000pt;}
.y2b{bottom:978.400000pt;}
.y96{bottom:982.320000pt;}
.y59{bottom:998.000000pt;}
.y2a{bottom:1002.320000pt;}
.y58{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h15{height:37.032187pt;}
.h1b{height:37.920000pt;}
.h1d{height:37.946667pt;}
.hc{height:39.200000pt;}
.h16{height:39.226667pt;}
.hf{height:39.280000pt;}
.h18{height:39.306667pt;}
.h21{height:41.360000pt;}
.hb{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.h1e{height:53.520000pt;}
.h1c{height:53.600000pt;}
.h1a{height:53.626667pt;}
.he{height:54.880000pt;}
.h13{height:54.906667pt;}
.ha{height:54.927899pt;}
.h17{height:54.960000pt;}
.h22{height:54.986667pt;}
.h20{height:58.971875pt;}
.h9{height:60.961875pt;}
.h4{height:64.875937pt;}
.h14{height:70.480000pt;}
.hd{height:70.506667pt;}
.h10{height:70.560000pt;}
.h1f{height:70.586667pt;}
.h19{height:86.160000pt;}
.h11{height:793.920000pt;}
.h12{height:794.000000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w11{width:32.080000pt;}
.wd{width:60.480000pt;}
.w20{width:69.280000pt;}
.w26{width:75.280000pt;}
.w2c{width:78.720000pt;}
.w23{width:78.906667pt;}
.w25{width:80.640000pt;}
.wa{width:81.120000pt;}
.w1a{width:96.000000pt;}
.w21{width:100.400000pt;}
.w15{width:102.000000pt;}
.w3{width:102.026667pt;}
.w2a{width:102.720000pt;}
.w24{width:108.400000pt;}
.w1b{width:109.546667pt;}
.we{width:112.080000pt;}
.w28{width:117.520000pt;}
.w1e{width:127.280000pt;}
.w6{width:137.360000pt;}
.w1f{width:138.026667pt;}
.w29{width:141.920000pt;}
.w22{width:145.440000pt;}
.w10{width:146.720000pt;}
.w27{width:153.466667pt;}
.wb{width:155.226667pt;}
.w2b{width:155.786667pt;}
.w12{width:156.506667pt;}
.w13{width:163.440000pt;}
.wc{width:163.600000pt;}
.w17{width:168.320000pt;}
.wf{width:172.906667pt;}
.w2d{width:175.040000pt;}
.w5{width:208.186667pt;}
.w18{width:208.666667pt;}
.w19{width:214.880000pt;}
.w4{width:222.160000pt;}
.w16{width:238.586667pt;}
.w14{width:247.866667pt;}
.w1c{width:255.760000pt;}
.w1d{width:304.986667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.w8{width:1122.000000pt;}
.w9{width:1122.239983pt;}
.w7{width:1122.240000pt;}
.x0{left:0.000000pt;}
.x7{left:3.520000pt;}
.x16{left:6.880000pt;}
.x1{left:60.480000pt;}
.x1a{left:73.999988pt;}
.x4{left:84.479988pt;}
.xd{left:95.999983pt;}
.x20{left:98.879983pt;}
.x34{left:108.479988pt;}
.x25{left:109.919988pt;}
.x1b{left:115.519988pt;}
.x8{left:163.866667pt;}
.x22{left:171.386667pt;}
.xe{left:178.400000pt;}
.x17{left:218.266667pt;}
.x2{left:223.786655pt;}
.x2d{left:250.746667pt;}
.x6{left:254.106655pt;}
.x33{left:300.506650pt;}
.xf{left:334.266667pt;}
.x1c{left:335.866667pt;}
.x21{left:348.986650pt;}
.x26{left:363.306667pt;}
.x2e{left:368.906667pt;}
.x18{left:382.346667pt;}
.x9{left:386.666667pt;}
.xb{left:387.866650pt;}
.x23{left:427.866667pt;}
.x27{left:433.306667pt;}
.x10{left:498.586667pt;}
.x1d{left:504.826667pt;}
.x15{left:510.346650pt;}
.x2f{left:511.466667pt;}
.x28{left:534.346667pt;}
.x5{left:536.053322pt;}
.x24{left:551.013322pt;}
.x11{left:559.786667pt;}
.xa{left:595.493333pt;}
.x30{left:614.826667pt;}
.x19{left:630.853333pt;}
.x12{left:672.586667pt;}
.x29{left:680.426667pt;}
.x3{left:711.413322pt;}
.x1e{left:714.133333pt;}
.x2a{left:759.973333pt;}
.x31{left:771.253333pt;}
.x13{left:846.213333pt;}
.x32{left:850.613333pt;}
.x2b{left:869.093333pt;}
.x1f{left:929.653333pt;}
.x2c{left:950.373333pt;}
.x14{left:993.573333pt;}
.xc{left:1004.133317pt;}
}




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