
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_cf6a3a9e146b09d921b724eb.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_de81870202270d523942dbc9.woff')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_9f8cf2f2beced884e4960be2.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_49cedfa4197a2f2fdc81c61e.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c5d5817d17155c892f439d41.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f970337e51aad272f62f298f.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_897764c2e79d33c90af4e935.woff')format("woff");}.ff8{font-family:ff8;line-height:1.055176;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_41829d5441c4bade3e275e08.woff')format("woff");}.ff9{font-family:ff9;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_94b602b4eb160691a77e2b51.woff')format("woff");}.ffa{font-family:ffa;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;}
.m2{transform:matrix(0.000000,-0.249262,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249262,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249262,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250740,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;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls19{letter-spacing:-0.931245px;}
.ls1a{letter-spacing:-0.833425px;}
.ls1b{letter-spacing:-0.512576px;}
.lsf{letter-spacing:-0.444600px;}
.ls1f{letter-spacing:-0.367800px;}
.ls23{letter-spacing:-0.243600px;}
.ls24{letter-spacing:-0.199200px;}
.lsc{letter-spacing:-0.186600px;}
.lse{letter-spacing:-0.178800px;}
.ls10{letter-spacing:-0.162000px;}
.ls22{letter-spacing:-0.160800px;}
.ls25{letter-spacing:-0.153600px;}
.ls9{letter-spacing:-0.135000px;}
.ls2c{letter-spacing:-0.125400px;}
.ls8{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls1d{letter-spacing:-0.064800px;}
.ls1c{letter-spacing:-0.063600px;}
.ls21{letter-spacing:-0.014760px;}
.ls1e{letter-spacing:-0.007560px;}
.ls6{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.048960px;}
.ls13{letter-spacing:0.053280px;}
.lsd{letter-spacing:0.068400px;}
.ls3{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls26{letter-spacing:0.105600px;}
.ls12{letter-spacing:0.113400px;}
.ls11{letter-spacing:0.116400px;}
.ls2b{letter-spacing:0.121800px;}
.ls7{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.173400px;}
.ls2a{letter-spacing:0.180000px;}
.ls20{letter-spacing:0.199200px;}
.ls14{letter-spacing:0.232811px;}
.ls4{letter-spacing:0.239040px;}
.ls28{letter-spacing:0.300000px;}
.ls0{letter-spacing:0.360000px;}
.ls15{letter-spacing:1.440000px;}
.ls29{letter-spacing:48.446640px;}
.ls17{letter-spacing:71.126640px;}
.ls5{letter-spacing:72.045360px;}
.ls18{letter-spacing:80.126640px;}
.ls27{letter-spacing:81.566640px;}
.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;}
}
.ws12{word-spacing:-13.425600px;}
.ws3{word-spacing:-13.399800px;}
.ws19{word-spacing:-13.348200px;}
.ws8{word-spacing:-13.342800px;}
.ws17{word-spacing:-13.339800px;}
.ws18{word-spacing:-13.332000px;}
.ws9{word-spacing:-13.279680px;}
.wsd{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws10{word-spacing:-13.218840px;}
.ws13{word-spacing:-13.211640px;}
.wse{word-spacing:-13.162800px;}
.wsf{word-spacing:-13.161600px;}
.ws1a{word-spacing:-13.101000px;}
.ws16{word-spacing:-13.072800px;}
.ws14{word-spacing:-13.065600px;}
.ws6{word-spacing:-13.064400px;}
.ws5{word-spacing:-13.047600px;}
.ws4{word-spacing:-13.039800px;}
.ws15{word-spacing:-12.982800px;}
.ws11{word-spacing:-12.858600px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wsa{word-spacing:-8.439368px;}
.wsb{word-spacing:-8.414459px;}
.wsc{word-spacing:-8.392939px;}
.ws7{word-spacing:0.000000px;}
._c{margin-left:-4.648200px;}
._d{margin-left:-3.499106px;}
._a{margin-left:-2.441400px;}
._0{margin-left:-1.110000px;}
._1{width:1.174152px;}
._8{width:2.248943px;}
._6{width:3.306600px;}
._7{width:4.389000px;}
._2{width:5.831400px;}
._3{width:7.336203px;}
._4{width:8.356800px;}
._5{width:9.946320px;}
._9{width:11.355241px;}
._e{width:14.428800px;}
._f{width:15.479088px;}
._11{width:17.226192px;}
._b{width:18.336600px;}
._12{width:19.418760px;}
._10{width:20.681280px;}
._41{width:21.703320px;}
._3e{width:23.206320px;}
._81{width:24.228360px;}
._2c{width:25.250400px;}
._56{width:26.813520px;}
._65{width:28.617120px;}
._25{width:30.060000px;}
._1e{width:31.142160px;}
._7e{width:32.164200px;}
._3d{width:33.246360px;}
._46{width:35.110080px;}
._55{width:36.793440px;}
._37{width:38.356560px;}
._45{width:40.220280px;}
._3a{width:41.603040px;}
._2b{width:42.625080px;}
._5a{width:43.827480px;}
._4a{width:44.849520px;}
._19{width:46.593000px;}
._5e{width:47.676720px;}
._36{width:48.817440px;}
._78{width:50.079960px;}
._1c{width:51.162120px;}
._6a{width:53.266320px;}
._28{width:54.468720px;}
._6e{width:55.611000px;}
._8e{width:56.813400px;}
._75{width:57.955680px;}
._24{width:59.037840px;}
._1b{width:60.480720px;}
._87{width:61.650840px;}
._42{width:62.765280px;}
._31{width:64.689120px;}
._44{width:66.853440px;}
._7c{width:67.875480px;}
._1a{width:69.378480px;}
._6c{width:70.968240px;}
._14{width:72.865440px;}
._8f{width:73.887480px;}
._23{width:74.969640px;}
._32{width:76.172040px;}
._2d{width:78.156000px;}
._18{width:80.320320px;}
._20{width:82.544760px;}
._2f{width:83.626920px;}
._53{width:85.430520px;}
._6f{width:87.594840px;}
._84{width:89.097840px;}
._48{width:90.540720px;}
._5b{width:91.683000px;}
._21{width:92.885400px;}
._30{width:94.809240px;}
._7f{width:95.951520px;}
._80{width:97.033680px;}
._69{width:100.909200px;}
._57{width:104.187960px;}
._15{width:105.510600px;}
._7d{width:109.238040px;}
._33{width:110.260080px;}
._43{width:111.282120px;}
._8c{width:112.364280px;}
._64{width:113.386320px;}
._6b{width:114.528600px;}
._6d{width:115.971480px;}
._4e{width:117.113760px;}
._3b{width:119.037600px;}
._66{width:121.021560px;}
._73{width:123.426360px;}
._62{width:124.688880px;}
._68{width:125.738760px;}
._3c{width:127.815120px;}
._86{width:129.258000px;}
._7a{width:130.941360px;}
._94{width:132.684840px;}
._27{width:134.187840px;}
._70{width:135.510480px;}
._85{width:136.532520px;}
._88{width:138.516480px;}
._1f{width:141.101640px;}
._35{width:143.065080px;}
._17{width:145.129680px;}
._49{width:146.933280px;}
._9a{width:148.496400px;}
._7b{width:150.720840px;}
._54{width:155.590560px;}
._8d{width:157.394160px;}
._2a{width:159.165480px;}
._16{width:160.881120px;}
._77{width:162.444240px;}
._8b{width:164.067480px;}
._39{width:167.794920px;}
._4d{width:171.342000px;}
._50{width:173.205720px;}
._38{width:174.408120px;}
._51{width:177.534360px;}
._47{width:178.704480px;}
._82{width:182.341800px;}
._71{width:184.989240px;}
._58{width:186.612480px;}
._93{width:188.957160px;}
._4c{width:193.073160px;}
._3f{width:198.516240px;}
._61{width:200.019240px;}
._1d{width:202.303800px;}
._5c{width:203.385960px;}
._60{width:208.075320px;}
._63{width:212.584320px;}
._4f{width:217.935000px;}
._79{width:219.438000px;}
._26{width:224.067240px;}
._74{width:225.209520px;}
._97{width:230.800680px;}
._59{width:233.325720px;}
._76{width:235.189440px;}
._90{width:243.383760px;}
._96{width:247.213440px;}
._72{width:249.077160px;}
._22{width:251.121240px;}
._9c{width:257.253480px;}
._95{width:263.325600px;}
._99{width:265.790520px;}
._9b{width:277.032960px;}
._92{width:280.580040px;}
._52{width:284.127120px;}
._83{width:285.690240px;}
._29{width:298.736280px;}
._34{width:301.381560px;}
._4b{width:302.884560px;}
._98{width:306.852480px;}
._5f{width:309.738240px;}
._91{width:319.718160px;}
._8a{width:322.002720px;}
._89{width:327.293280px;}
._5d{width:357.593760px;}
._67{width:365.770080px;}
._2e{width:367.032600px;}
._40{width:383.685840px;}
._13{width:850.739640px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:38.149723px;}
.fs8{font-size:38.247543px;}
.fs7{font-size:38.360765px;}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yf9{bottom:3.330000px;}
.y12a{bottom:3.420000px;}
.yef{bottom:7.830000px;}
.ydc{bottom:7.920000px;}
.y6d{bottom:9.879732px;}
.yf8{bottom:20.970000px;}
.y112{bottom:25.380000px;}
.yee{bottom:25.470000px;}
.y12f{bottom:25.500000px;}
.y55{bottom:30.397435px;}
.yf7{bottom:38.520000px;}
.y6c{bottom:40.546240px;}
.yed{bottom:43.020000px;}
.y120{bottom:43.050000px;}
.yfb{bottom:43.110000px;}
.y70{bottom:47.295806px;}
.yf6{bottom:56.070000px;}
.y6b{bottom:57.346791px;}
.y102{bottom:60.570000px;}
.y11f{bottom:60.600000px;}
.yec{bottom:60.660000px;}
.y12e{bottom:60.690000px;}
.y2{bottom:73.380000px;}
.yf5{bottom:73.710000px;}
.y2b{bottom:74.190000px;}
.yeb{bottom:78.210000px;}
.yfd{bottom:78.240000px;}
.y6a{bottom:84.711881px;}
.yf3{bottom:95.760000px;}
.yea{bottom:95.790000px;}
.y10a{bottom:95.850000px;}
.y1{bottom:101.640000px;}
.y101{bottom:113.310000px;}
.y11e{bottom:113.340000px;}
.yf2{bottom:113.400000px;}
.ye9{bottom:113.430000px;}
.ycb{bottom:113.520000px;}
.y10c{bottom:115.680000px;}
.yf4{bottom:115.950000px;}
.y129{bottom:117.570000px;}
.y18b{bottom:125.130000px;}
.y69{bottom:125.792285px;}
.y86{bottom:129.720000px;}
.y29{bottom:130.710000px;}
.yf1{bottom:130.950000px;}
.ye8{bottom:130.980000px;}
.y109{bottom:131.040000px;}
.y12d{bottom:135.480000px;}
.y161{bottom:136.740000px;}
.y18a{bottom:142.680000px;}
.yca{bottom:145.740000px;}
.y85{bottom:147.360000px;}
.y28{bottom:148.350000px;}
.y100{bottom:148.500000px;}
.y10f{bottom:148.530000px;}
.yf0{bottom:148.590000px;}
.ye7{bottom:148.620000px;}
.y12c{bottom:153.120000px;}
.y160{bottom:154.290000px;}
.y135{bottom:156.090000px;}
.y68{bottom:157.730451px;}
.y114{bottom:160.590000px;}
.y84{bottom:164.910000px;}
.y27{bottom:165.900000px;}
.y111{bottom:166.050000px;}
.yff{bottom:166.140000px;}
.ye6{bottom:166.170000px;}
.y189{bottom:169.320000px;}
.y67{bottom:175.778204px;}
.y15f{bottom:180.840000px;}
.y83{bottom:182.460000px;}
.y26{bottom:183.540000px;}
.y11c{bottom:183.690000px;}
.ye5{bottom:183.720000px;}
.y108{bottom:183.780000px;}
.y134{bottom:183.810000px;}
.y188{bottom:186.870000px;}
.y66{bottom:195.469331px;}
.y15e{bottom:198.480000px;}
.y25{bottom:201.090000px;}
.y128{bottom:201.240000px;}
.y107{bottom:201.330000px;}
.ye4{bottom:201.360000px;}
.y63{bottom:206.933812px;}
.y65{bottom:207.207707px;}
.y82{bottom:209.100000px;}
.y95{bottom:211.890000px;}
.y187{bottom:213.510000px;}
.y15d{bottom:216.030000px;}
.y24{bottom:218.640000px;}
.y11b{bottom:218.880000px;}
.ye3{bottom:218.910000px;}
.y64{bottom:218.965647px;}
.y106{bottom:218.970000px;}
.y54{bottom:227.231421px;}
.y62{bottom:228.532424px;}
.y94{bottom:229.440000px;}
.y186{bottom:231.060000px;}
.y23{bottom:236.280000px;}
.ye2{bottom:236.460000px;}
.y105{bottom:236.520000px;}
.ya2{bottom:238.350000px;}
.y81{bottom:241.680000px;}
.y15c{bottom:242.580000px;}
.y93{bottom:247.080000px;}
.y22{bottom:253.830000px;}
.y104{bottom:254.070000px;}
.ye1{bottom:254.100000px;}
.ya1{bottom:255.990000px;}
.y185{bottom:257.610000px;}
.y61{bottom:259.071767px;}
.y6f{bottom:259.903235px;}
.y15b{bottom:260.220000px;}
.y10b{bottom:266.070000px;}
.y121{bottom:268.050000px;}
.y11a{bottom:271.620000px;}
.ye0{bottom:271.650000px;}
.y131{bottom:271.710000px;}
.ya0{bottom:273.540000px;}
.y92{bottom:273.630000px;}
.y184{bottom:275.250000px;}
.y80{bottom:277.230000px;}
.y15a{bottom:277.770000px;}
.y60{bottom:281.276862px;}
.y127{bottom:289.200000px;}
.y119{bottom:289.260000px;}
.ydf{bottom:289.290000px;}
.y21{bottom:289.380000px;}
.y183{bottom:292.800000px;}
.y7f{bottom:294.870000px;}
.y9f{bottom:300.090000px;}
.y159{bottom:304.410000px;}
.y118{bottom:306.810000px;}
.yde{bottom:306.840000px;}
.y20{bottom:307.020000px;}
.y91{bottom:309.180000px;}
.y5f{bottom:311.258631px;}
.y182{bottom:319.440000px;}
.y5d{bottom:321.529711px;}
.y7e{bottom:321.780000px;}
.y158{bottom:321.960000px;}
.y126{bottom:324.390000px;}
.y117{bottom:324.480000px;}
.y1f{bottom:324.570000px;}
.y9e{bottom:332.760000px;}
.y181{bottom:336.990000px;}
.y90{bottom:341.400000px;}
.y133{bottom:341.670000px;}
.y116{bottom:342.030000px;}
.y1e{bottom:342.210000px;}
.y5e{bottom:348.479066px;}
.y157{bottom:348.510000px;}
.y5c{bottom:348.704052px;}
.y115{bottom:359.580000px;}
.y1d{bottom:359.760000px;}
.y180{bottom:363.540000px;}
.y156{bottom:366.150000px;}
.y9d{bottom:368.310000px;}
.y7d{bottom:370.020000px;}
.y5a{bottom:375.134963px;}
.ydd{bottom:377.130000px;}
.y1c{bottom:377.310000px;}
.yb1{bottom:377.400000px;}
.y17f{bottom:381.180000px;}
.y155{bottom:383.700000px;}
.y7c{bottom:387.570000px;}
.y125{bottom:394.770000px;}
.y1b{bottom:394.950000px;}
.y9c{bottom:400.530000px;}
.yc0{bottom:403.140000px;}
.y7b{bottom:405.210000px;}
.y17e{bottom:407.730000px;}
.y154{bottom:410.340000px;}
.y124{bottom:412.320000px;}
.y1a{bottom:412.500000px;}
.y51{bottom:413.580000px;}
.y5b{bottom:419.329950px;}
.ybf{bottom:420.690000px;}
.y7a{bottom:422.760000px;}
.y17d{bottom:425.370000px;}
.y153{bottom:427.890000px;}
.y123{bottom:429.960000px;}
.y19{bottom:430.140000px;}
.y53{bottom:430.725957px;}
.y50{bottom:431.130000px;}
.ybe{bottom:438.330000px;}
.y79{bottom:440.400000px;}
.y122{bottom:447.510000px;}
.y59{bottom:447.550963px;}
.yb0{bottom:447.690000px;}
.y4f{bottom:448.770000px;}
.y17c{bottom:451.920000px;}
.y6e{bottom:454.251619px;}
.y152{bottom:454.440000px;}
.ybd{bottom:455.880000px;}
.y18{bottom:457.050000px;}
.y78{bottom:457.950000px;}
.y58{bottom:459.308903px;}
.yaf{bottom:465.330000px;}
.y4e{bottom:466.320000px;}
.y17b{bottom:469.470000px;}
.y151{bottom:472.110000px;}
.ybc{bottom:473.460000px;}
.y77{bottom:475.530000px;}
.yae{bottom:482.910000px;}
.y4d{bottom:483.900000px;}
.y103{bottom:486.870000px;}
.y57{bottom:489.192853px;}
.ybb{bottom:491.100000px;}
.y76{bottom:493.170000px;}
.y17a{bottom:496.140000px;}
.y150{bottom:498.660000px;}
.y56{bottom:500.960575px;}
.y4c{bottom:501.540000px;}
.y17{bottom:505.680000px;}
.yba{bottom:508.650000px;}
.yad{bottom:509.460000px;}
.y75{bottom:510.720000px;}
.y179{bottom:513.690000px;}
.y14f{bottom:516.300000px;}
.y4b{bottom:519.090000px;}
.y74{bottom:528.360000px;}
.y178{bottom:531.330000px;}
.y14e{bottom:533.850000px;}
.yb9{bottom:535.290000px;}
.yc9{bottom:537.450000px;}
.y113{bottom:539.700000px;}
.y16{bottom:542.670000px;}
.y132{bottom:544.920000px;}
.yac{bottom:545.100000px;}
.y73{bottom:545.910000px;}
.y4a{bottom:546.000000px;}
.yc8{bottom:555.090000px;}
.y177{bottom:557.880000px;}
.y15{bottom:560.220000px;}
.y14d{bottom:560.400000px;}
.yab{bottom:562.650000px;}
.yb8{bottom:570.840000px;}
.yc7{bottom:572.640000px;}
.y176{bottom:575.430000px;}
.y14{bottom:577.860000px;}
.y14c{bottom:578.040000px;}
.yaa{bottom:580.290000px;}
.y72{bottom:581.460000px;}
.yb7{bottom:588.390000px;}
.yc6{bottom:590.190000px;}
.y49{bottom:594.330000px;}
.y13{bottom:595.410000px;}
.y14b{bottom:595.590000px;}
.ya9{bottom:597.840000px;}
.y175{bottom:602.070000px;}
.yb6{bottom:606.030000px;}
.yc5{bottom:607.830000px;}
.y48{bottom:611.880000px;}
.y12{bottom:612.960000px;}
.y71{bottom:613.680000px;}
.y52{bottom:615.131133px;}
.ya8{bottom:615.390000px;}
.y174{bottom:619.620000px;}
.y14a{bottom:622.500000px;}
.yb5{bottom:623.580000px;}
.yc4{bottom:625.380000px;}
.y47{bottom:629.430000px;}
.y11{bottom:630.600000px;}
.ya7{bottom:633.030000px;}
.y193{bottom:637.260000px;}
.y8f{bottom:637.350000px;}
.yb4{bottom:641.220000px;}
.y173{bottom:646.260000px;}
.y46{bottom:647.070000px;}
.y10{bottom:648.150000px;}
.ya6{bottom:650.580000px;}
.yc3{bottom:652.020000px;}
.y192{bottom:654.810000px;}
.y8e{bottom:654.900000px;}
.y172{bottom:663.810000px;}
.y45{bottom:664.620000px;}
.yf{bottom:665.790000px;}
.ya5{bottom:668.220000px;}
.y149{bottom:670.830000px;}
.y8d{bottom:672.540000px;}
.yb3{bottom:676.770000px;}
.y171{bottom:681.360000px;}
.y44{bottom:682.260000px;}
.ye{bottom:683.340000px;}
.yc2{bottom:687.570000px;}
.y130{bottom:695.310000px;}
.y148{bottom:697.650000px;}
.y191{bottom:699.000000px;}
.y8c{bottom:699.090000px;}
.y43{bottom:699.810000px;}
.yd{bottom:700.890000px;}
.ydb{bottom:703.410000px;}
.ya4{bottom:703.770000px;}
.y110{bottom:707.730000px;}
.y170{bottom:708.000000px;}
.yb2{bottom:708.990000px;}
.y190{bottom:716.550000px;}
.y42{bottom:717.360000px;}
.yc{bottom:718.530000px;}
.yc1{bottom:719.790000px;}
.y16f{bottom:725.550000px;}
.y8b{bottom:734.640000px;}
.y41{bottom:735.000000px;}
.ya3{bottom:735.990000px;}
.yb{bottom:736.080000px;}
.y16e{bottom:743.190000px;}
.yda{bottom:752.190000px;}
.y9b{bottom:752.640000px;}
.yfe{bottom:760.470000px;}
.y18f{bottom:760.740000px;}
.ya{bottom:763.080000px;}
.y8a{bottom:766.860000px;}
.y16d{bottom:769.740000px;}
.y9a{bottom:770.280000px;}
.y40{bottom:770.550000px;}
.y18e{bottom:778.290000px;}
.y147{bottom:783.330000px;}
.y16c{bottom:787.290000px;}
.yd9{bottom:787.740000px;}
.y99{bottom:787.830000px;}
.y3f{bottom:788.190000px;}
.y146{bottom:800.880000px;}
.y18d{bottom:804.930000px;}
.yd8{bottom:805.290000px;}
.y3e{bottom:805.740000px;}
.y9{bottom:809.790000px;}
.y16b{bottom:813.930000px;}
.y98{bottom:814.470000px;}
.y145{bottom:818.520000px;}
.y18c{bottom:822.480000px;}
.yd7{bottom:822.930000px;}
.y3d{bottom:823.290000px;}
.y16a{bottom:831.480000px;}
.y144{bottom:836.070000px;}
.yd6{bottom:840.480000px;}
.y3c{bottom:840.930000px;}
.y8{bottom:845.610000px;}
.y169{bottom:849.030000px;}
.y97{bottom:850.020000px;}
.y143{bottom:853.620000px;}
.yd5{bottom:858.030000px;}
.y3b{bottom:858.480000px;}
.y168{bottom:866.670000px;}
.y142{bottom:871.260000px;}
.yd4{bottom:875.670000px;}
.y3a{bottom:876.030000px;}
.y7{bottom:881.610000px;}
.y96{bottom:882.240000px;}
.y167{bottom:893.220000px;}
.y10e{bottom:893.310000px;}
.y39{bottom:893.670000px;}
.y141{bottom:906.810000px;}
.y166{bottom:910.860000px;}
.y38{bottom:911.220000px;}
.y6{bottom:917.610000px;}
.y140{bottom:924.450000px;}
.y165{bottom:928.410000px;}
.y37{bottom:928.860000px;}
.y5{bottom:935.610000px;}
.y13f{bottom:942.000000px;}
.yfc{bottom:946.050000px;}
.yd3{bottom:946.410000px;}
.y164{bottom:954.960000px;}
.y13e{bottom:959.550000px;}
.yd2{bottom:963.960000px;}
.y36{bottom:964.410000px;}
.y4{bottom:971.700000px;}
.y163{bottom:972.600000px;}
.y11d{bottom:973.410000px;}
.y13d{bottom:977.190000px;}
.yd1{bottom:981.600000px;}
.y35{bottom:981.960000px;}
.y12b{bottom:986.460000px;}
.y13c{bottom:994.740000px;}
.yd0{bottom:999.150000px;}
.y34{bottom:999.600000px;}
.y3{bottom:1009.980000px;}
.y13b{bottom:1012.320000px;}
.ycf{bottom:1016.820000px;}
.y33{bottom:1017.180000px;}
.yce{bottom:1034.370000px;}
.y32{bottom:1034.820000px;}
.y13a{bottom:1047.960000px;}
.ycd{bottom:1051.920000px;}
.y31{bottom:1052.370000px;}
.y162{bottom:1060.920000px;}
.y139{bottom:1065.510000px;}
.ycc{bottom:1069.560000px;}
.y30{bottom:1069.920000px;}
.y89{bottom:1078.560000px;}
.y138{bottom:1083.150000px;}
.y2f{bottom:1087.560000px;}
.y88{bottom:1096.110000px;}
.yfa{bottom:1096.470000px;}
.y137{bottom:1100.700000px;}
.y2e{bottom:1105.110000px;}
.y87{bottom:1113.750000px;}
.y10d{bottom:1114.110000px;}
.y2d{bottom:1122.750000px;}
.y136{bottom:1127.610000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.h12{height:26.640000px;}
.h2{height:30.022383px;}
.he{height:32.300596px;}
.hf{height:32.383418px;}
.hb{height:32.479281px;}
.hd{height:33.194730px;}
.hc{height:33.279844px;}
.h3{height:39.155273px;}
.h1c{height:39.690000px;}
.h20{height:44.190000px;}
.h6{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.h16{height:57.330000px;}
.h11{height:59.973223px;}
.h27{height:61.793886px;}
.h10{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:72.985430px;}
.h15{height:92.430000px;}
.h1b{height:149.670000px;}
.h17{height:149.700000px;}
.h1e{height:167.220000px;}
.h14{height:167.310000px;}
.h24{height:167.340000px;}
.h21{height:180.390000px;}
.h1d{height:184.770000px;}
.h18{height:184.860000px;}
.h26{height:202.530000px;}
.h1a{height:220.080000px;}
.h22{height:237.600000px;}
.h19{height:272.790000px;}
.h25{height:290.430000px;}
.h13{height:325.560000px;}
.h1f{height:378.300000px;}
.h23{height:466.230000px;}
.ha{height:537.764366px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:56.610000px;}
.w7{width:142.590000px;}
.w5{width:178.140000px;}
.w8{width:181.260000px;}
.w6{width:194.130000px;}
.w3{width:473.868278px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2d{left:3.960000px;}
.x33{left:5.760000px;}
.x5{left:13.565711px;}
.xa{left:34.561117px;}
.x31{left:37.800000px;}
.xc{left:47.094589px;}
.x35{left:54.450000px;}
.x2f{left:56.100000px;}
.x1{left:68.040000px;}
.x8{left:79.985757px;}
.x36{left:111.419987px;}
.x2e{left:126.180000px;}
.x9{left:132.871615px;}
.xe{left:138.022358px;}
.x13{left:143.565537px;}
.xd{left:148.863444px;}
.x16{left:153.621748px;}
.x14{left:159.282659px;}
.x18{left:170.496561px;}
.x17{left:187.027990px;}
.xb{left:189.127531px;}
.x6{left:193.257935px;}
.x7{left:197.790589px;}
.x2{left:201.539987px;}
.x4{left:209.760348px;}
.x15{left:233.551455px;}
.x11{left:239.859888px;}
.xf{left:245.815127px;}
.x10{left:260.256827px;}
.x12{left:264.210635px;}
.x29{left:296.219987px;}
.x30{left:305.040000px;}
.x25{left:328.799987px;}
.x27{left:336.719987px;}
.x23{left:343.019987px;}
.x21{left:346.439987px;}
.x2b{left:348.419987px;}
.x1f{left:355.619987px;}
.x1d{left:362.729987px;}
.x19{left:380.666462px;}
.x1a{left:394.519506px;}
.x1b{left:407.528809px;}
.x32{left:499.890000px;}
.x34{left:643.200000px;}
.x1c{left:685.049987px;}
.x1e{left:694.139987px;}
.x22{left:698.639987px;}
.x20{left:708.809987px;}
.x24{left:718.889987px;}
.x2c{left:737.159987px;}
.x26{left:776.309987px;}
.x2a{left:788.999987px;}
.x3{left:792.059987px;}
.x28{left:796.559987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls19{letter-spacing:-0.827773pt;}
.ls1a{letter-spacing:-0.740822pt;}
.ls1b{letter-spacing:-0.455623pt;}
.lsf{letter-spacing:-0.395200pt;}
.ls1f{letter-spacing:-0.326933pt;}
.ls23{letter-spacing:-0.216533pt;}
.ls24{letter-spacing:-0.177067pt;}
.lsc{letter-spacing:-0.165867pt;}
.lse{letter-spacing:-0.158933pt;}
.ls10{letter-spacing:-0.144000pt;}
.ls22{letter-spacing:-0.142933pt;}
.ls25{letter-spacing:-0.136533pt;}
.ls9{letter-spacing:-0.120000pt;}
.ls2c{letter-spacing:-0.111467pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls1d{letter-spacing:-0.057600pt;}
.ls1c{letter-spacing:-0.056533pt;}
.ls21{letter-spacing:-0.013120pt;}
.ls1e{letter-spacing:-0.006720pt;}
.ls6{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.043520pt;}
.ls13{letter-spacing:0.047360pt;}
.lsd{letter-spacing:0.060800pt;}
.ls3{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls26{letter-spacing:0.093867pt;}
.ls12{letter-spacing:0.100800pt;}
.ls11{letter-spacing:0.103467pt;}
.ls2b{letter-spacing:0.108267pt;}
.ls7{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.154133pt;}
.ls2a{letter-spacing:0.160000pt;}
.ls20{letter-spacing:0.177067pt;}
.ls14{letter-spacing:0.206943pt;}
.ls4{letter-spacing:0.212480pt;}
.ls28{letter-spacing:0.266667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls15{letter-spacing:1.280000pt;}
.ls29{letter-spacing:43.063680pt;}
.ls17{letter-spacing:63.223680pt;}
.ls5{letter-spacing:64.040320pt;}
.ls18{letter-spacing:71.223680pt;}
.ls27{letter-spacing:72.503680pt;}
.ws12{word-spacing:-11.933867pt;}
.ws3{word-spacing:-11.910933pt;}
.ws19{word-spacing:-11.865067pt;}
.ws8{word-spacing:-11.860267pt;}
.ws17{word-spacing:-11.857600pt;}
.ws18{word-spacing:-11.850667pt;}
.ws9{word-spacing:-11.804160pt;}
.wsd{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws10{word-spacing:-11.750080pt;}
.ws13{word-spacing:-11.743680pt;}
.wse{word-spacing:-11.700267pt;}
.wsf{word-spacing:-11.699200pt;}
.ws1a{word-spacing:-11.645333pt;}
.ws16{word-spacing:-11.620267pt;}
.ws14{word-spacing:-11.613867pt;}
.ws6{word-spacing:-11.612800pt;}
.ws5{word-spacing:-11.597867pt;}
.ws4{word-spacing:-11.590933pt;}
.ws15{word-spacing:-11.540267pt;}
.ws11{word-spacing:-11.429867pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wsa{word-spacing:-7.501661pt;}
.wsb{word-spacing:-7.479520pt;}
.wsc{word-spacing:-7.460390pt;}
.ws7{word-spacing:0.000000pt;}
._c{margin-left:-4.131733pt;}
._d{margin-left:-3.110317pt;}
._a{margin-left:-2.170133pt;}
._0{margin-left:-0.986667pt;}
._1{width:1.043691pt;}
._8{width:1.999060pt;}
._6{width:2.939200pt;}
._7{width:3.901334pt;}
._2{width:5.183466pt;}
._3{width:6.521069pt;}
._4{width:7.428267pt;}
._5{width:8.841173pt;}
._9{width:10.093548pt;}
._e{width:12.825600pt;}
._f{width:13.759189pt;}
._11{width:15.312171pt;}
._b{width:16.299200pt;}
._12{width:17.261120pt;}
._10{width:18.383360pt;}
._41{width:19.291840pt;}
._3e{width:20.627840pt;}
._81{width:21.536320pt;}
._2c{width:22.444800pt;}
._56{width:23.834240pt;}
._65{width:25.437440pt;}
._25{width:26.720000pt;}
._1e{width:27.681920pt;}
._7e{width:28.590400pt;}
._3d{width:29.552320pt;}
._46{width:31.208960pt;}
._55{width:32.705280pt;}
._37{width:34.094720pt;}
._45{width:35.751360pt;}
._3a{width:36.980480pt;}
._2b{width:37.888960pt;}
._5a{width:38.957760pt;}
._4a{width:39.866240pt;}
._19{width:41.416000pt;}
._5e{width:42.379307pt;}
._36{width:43.393280pt;}
._78{width:44.515520pt;}
._1c{width:45.477440pt;}
._6a{width:47.347840pt;}
._28{width:48.416640pt;}
._6e{width:49.432000pt;}
._8e{width:50.500800pt;}
._75{width:51.516160pt;}
._24{width:52.478080pt;}
._1b{width:53.760640pt;}
._87{width:54.800747pt;}
._42{width:55.791360pt;}
._31{width:57.501440pt;}
._44{width:59.425280pt;}
._7c{width:60.333760pt;}
._1a{width:61.669760pt;}
._6c{width:63.082880pt;}
._14{width:64.769280pt;}
._8f{width:65.677760pt;}
._23{width:66.639680pt;}
._32{width:67.708480pt;}
._2d{width:69.472000pt;}
._18{width:71.395840pt;}
._20{width:73.373120pt;}
._2f{width:74.335040pt;}
._53{width:75.938240pt;}
._6f{width:77.862080pt;}
._84{width:79.198080pt;}
._48{width:80.480640pt;}
._5b{width:81.496000pt;}
._21{width:82.564800pt;}
._30{width:84.274880pt;}
._7f{width:85.290240pt;}
._80{width:86.252160pt;}
._69{width:89.697067pt;}
._57{width:92.611520pt;}
._15{width:93.787200pt;}
._7d{width:97.100480pt;}
._33{width:98.008960pt;}
._43{width:98.917440pt;}
._8c{width:99.879360pt;}
._64{width:100.787840pt;}
._6b{width:101.803200pt;}
._6d{width:103.085760pt;}
._4e{width:104.101120pt;}
._3b{width:105.811200pt;}
._66{width:107.574720pt;}
._73{width:109.712320pt;}
._62{width:110.834560pt;}
._68{width:111.767787pt;}
._3c{width:113.613440pt;}
._86{width:114.896000pt;}
._7a{width:116.392320pt;}
._94{width:117.942080pt;}
._27{width:119.278080pt;}
._70{width:120.453760pt;}
._85{width:121.362240pt;}
._88{width:123.125760pt;}
._1f{width:125.423680pt;}
._35{width:127.168960pt;}
._17{width:129.004160pt;}
._49{width:130.607360pt;}
._9a{width:131.996800pt;}
._7b{width:133.974080pt;}
._54{width:138.302720pt;}
._8d{width:139.905920pt;}
._2a{width:141.480427pt;}
._16{width:143.005440pt;}
._77{width:144.394880pt;}
._8b{width:145.837760pt;}
._39{width:149.151040pt;}
._4d{width:152.304000pt;}
._50{width:153.960640pt;}
._38{width:155.029440pt;}
._51{width:157.808320pt;}
._47{width:158.848427pt;}
._82{width:162.081600pt;}
._71{width:164.434880pt;}
._58{width:165.877760pt;}
._93{width:167.961920pt;}
._4c{width:171.620587pt;}
._3f{width:176.458880pt;}
._61{width:177.794880pt;}
._1d{width:179.825600pt;}
._5c{width:180.787520pt;}
._60{width:184.955840pt;}
._63{width:188.963840pt;}
._4f{width:193.720000pt;}
._79{width:195.056000pt;}
._26{width:199.170880pt;}
._74{width:200.186240pt;}
._97{width:205.156160pt;}
._59{width:207.400640pt;}
._76{width:209.057280pt;}
._90{width:216.341120pt;}
._96{width:219.745280pt;}
._72{width:221.401920pt;}
._22{width:223.218880pt;}
._9c{width:228.669760pt;}
._95{width:234.067200pt;}
._99{width:236.258240pt;}
._9b{width:246.251520pt;}
._92{width:249.404480pt;}
._52{width:252.557440pt;}
._83{width:253.946880pt;}
._29{width:265.543360pt;}
._34{width:267.894720pt;}
._4b{width:269.230720pt;}
._98{width:272.757760pt;}
._5f{width:275.322880pt;}
._91{width:284.193920pt;}
._8a{width:286.224640pt;}
._89{width:290.927360pt;}
._5d{width:317.861120pt;}
._67{width:325.128960pt;}
._2e{width:326.251200pt;}
._40{width:341.054080pt;}
._13{width:756.213013pt;}
.fs9{font-size:33.910865pt;}
.fs8{font-size:33.997816pt;}
.fs7{font-size:34.098458pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yf9{bottom:2.960000pt;}
.y12a{bottom:3.040000pt;}
.yef{bottom:6.960000pt;}
.ydc{bottom:7.040000pt;}
.y6d{bottom:8.781984pt;}
.yf8{bottom:18.640000pt;}
.y112{bottom:22.560000pt;}
.yee{bottom:22.640000pt;}
.y12f{bottom:22.666667pt;}
.y55{bottom:27.019942pt;}
.yf7{bottom:34.240000pt;}
.y6c{bottom:36.041102pt;}
.yed{bottom:38.240000pt;}
.y120{bottom:38.266667pt;}
.yfb{bottom:38.320000pt;}
.y70{bottom:42.040717pt;}
.yf6{bottom:49.840000pt;}
.y6b{bottom:50.974925pt;}
.y102{bottom:53.840000pt;}
.y11f{bottom:53.866667pt;}
.yec{bottom:53.920000pt;}
.y12e{bottom:53.946667pt;}
.y2{bottom:65.226667pt;}
.yf5{bottom:65.520000pt;}
.y2b{bottom:65.946667pt;}
.yeb{bottom:69.520000pt;}
.yfd{bottom:69.546667pt;}
.y6a{bottom:75.299450pt;}
.yf3{bottom:85.120000pt;}
.yea{bottom:85.146667pt;}
.y10a{bottom:85.200000pt;}
.y1{bottom:90.346667pt;}
.y101{bottom:100.720000pt;}
.y11e{bottom:100.746667pt;}
.yf2{bottom:100.800000pt;}
.ye9{bottom:100.826667pt;}
.ycb{bottom:100.906667pt;}
.y10c{bottom:102.826667pt;}
.yf4{bottom:103.066667pt;}
.y129{bottom:104.506667pt;}
.y18b{bottom:111.226667pt;}
.y69{bottom:111.815365pt;}
.y86{bottom:115.306667pt;}
.y29{bottom:116.186667pt;}
.yf1{bottom:116.400000pt;}
.ye8{bottom:116.426667pt;}
.y109{bottom:116.480000pt;}
.y12d{bottom:120.426667pt;}
.y161{bottom:121.546667pt;}
.y18a{bottom:126.826667pt;}
.yca{bottom:129.546667pt;}
.y85{bottom:130.986667pt;}
.y28{bottom:131.866667pt;}
.y100{bottom:132.000000pt;}
.y10f{bottom:132.026667pt;}
.yf0{bottom:132.080000pt;}
.ye7{bottom:132.106667pt;}
.y12c{bottom:136.106667pt;}
.y160{bottom:137.146667pt;}
.y135{bottom:138.746667pt;}
.y68{bottom:140.204845pt;}
.y114{bottom:142.746667pt;}
.y84{bottom:146.586667pt;}
.y27{bottom:147.466667pt;}
.y111{bottom:147.600000pt;}
.yff{bottom:147.680000pt;}
.ye6{bottom:147.706667pt;}
.y189{bottom:150.506667pt;}
.y67{bottom:156.247293pt;}
.y15f{bottom:160.746667pt;}
.y83{bottom:162.186667pt;}
.y26{bottom:163.146667pt;}
.y11c{bottom:163.280000pt;}
.ye5{bottom:163.306667pt;}
.y108{bottom:163.360000pt;}
.y134{bottom:163.386667pt;}
.y188{bottom:166.106667pt;}
.y66{bottom:173.750516pt;}
.y15e{bottom:176.426667pt;}
.y25{bottom:178.746667pt;}
.y128{bottom:178.880000pt;}
.y107{bottom:178.960000pt;}
.ye4{bottom:178.986667pt;}
.y63{bottom:183.941166pt;}
.y65{bottom:184.184629pt;}
.y82{bottom:185.866667pt;}
.y95{bottom:188.346667pt;}
.y187{bottom:189.786667pt;}
.y15d{bottom:192.026667pt;}
.y24{bottom:194.346667pt;}
.y11b{bottom:194.560000pt;}
.ye3{bottom:194.586667pt;}
.y64{bottom:194.636131pt;}
.y106{bottom:194.640000pt;}
.y54{bottom:201.983485pt;}
.y62{bottom:203.139933pt;}
.y94{bottom:203.946667pt;}
.y186{bottom:205.386667pt;}
.y23{bottom:210.026667pt;}
.ye2{bottom:210.186667pt;}
.y105{bottom:210.240000pt;}
.ya2{bottom:211.866667pt;}
.y81{bottom:214.826667pt;}
.y15c{bottom:215.626667pt;}
.y93{bottom:219.626667pt;}
.y22{bottom:225.626667pt;}
.y104{bottom:225.840000pt;}
.ye1{bottom:225.866667pt;}
.ya1{bottom:227.546667pt;}
.y185{bottom:228.986667pt;}
.y61{bottom:230.286015pt;}
.y6f{bottom:231.025098pt;}
.y15b{bottom:231.306667pt;}
.y10b{bottom:236.506667pt;}
.y121{bottom:238.266667pt;}
.y11a{bottom:241.440000pt;}
.ye0{bottom:241.466667pt;}
.y131{bottom:241.520000pt;}
.ya0{bottom:243.146667pt;}
.y92{bottom:243.226667pt;}
.y184{bottom:244.666667pt;}
.y80{bottom:246.426667pt;}
.y15a{bottom:246.906667pt;}
.y60{bottom:250.023877pt;}
.y127{bottom:257.066667pt;}
.y119{bottom:257.120000pt;}
.ydf{bottom:257.146667pt;}
.y21{bottom:257.226667pt;}
.y183{bottom:260.266667pt;}
.y7f{bottom:262.106667pt;}
.y9f{bottom:266.746667pt;}
.y159{bottom:270.586667pt;}
.y118{bottom:272.720000pt;}
.yde{bottom:272.746667pt;}
.y20{bottom:272.906667pt;}
.y91{bottom:274.826667pt;}
.y5f{bottom:276.674339pt;}
.y182{bottom:283.946667pt;}
.y5d{bottom:285.804187pt;}
.y7e{bottom:286.026667pt;}
.y158{bottom:286.186667pt;}
.y126{bottom:288.346667pt;}
.y117{bottom:288.426667pt;}
.y1f{bottom:288.506667pt;}
.y9e{bottom:295.786667pt;}
.y181{bottom:299.546667pt;}
.y90{bottom:303.466667pt;}
.y133{bottom:303.706667pt;}
.y116{bottom:304.026667pt;}
.y1e{bottom:304.186667pt;}
.y5e{bottom:309.759170pt;}
.y157{bottom:309.786667pt;}
.y5c{bottom:309.959157pt;}
.y115{bottom:319.626667pt;}
.y1d{bottom:319.786667pt;}
.y180{bottom:323.146667pt;}
.y156{bottom:325.466667pt;}
.y9d{bottom:327.386667pt;}
.y7d{bottom:328.906667pt;}
.y5a{bottom:333.453300pt;}
.ydd{bottom:335.226667pt;}
.y1c{bottom:335.386667pt;}
.yb1{bottom:335.466667pt;}
.y17f{bottom:338.826667pt;}
.y155{bottom:341.066667pt;}
.y7c{bottom:344.506667pt;}
.y125{bottom:350.906667pt;}
.y1b{bottom:351.066667pt;}
.y9c{bottom:356.026667pt;}
.yc0{bottom:358.346667pt;}
.y7b{bottom:360.186667pt;}
.y17e{bottom:362.426667pt;}
.y154{bottom:364.746667pt;}
.y124{bottom:366.506667pt;}
.y1a{bottom:366.666667pt;}
.y51{bottom:367.626667pt;}
.y5b{bottom:372.737733pt;}
.ybf{bottom:373.946667pt;}
.y7a{bottom:375.786667pt;}
.y17d{bottom:378.106667pt;}
.y153{bottom:380.346667pt;}
.y123{bottom:382.186667pt;}
.y19{bottom:382.346667pt;}
.y53{bottom:382.867517pt;}
.y50{bottom:383.226667pt;}
.ybe{bottom:389.626667pt;}
.y79{bottom:391.466667pt;}
.y122{bottom:397.786667pt;}
.y59{bottom:397.823078pt;}
.yb0{bottom:397.946667pt;}
.y4f{bottom:398.906667pt;}
.y17c{bottom:401.706667pt;}
.y6e{bottom:403.779217pt;}
.y152{bottom:403.946667pt;}
.ybd{bottom:405.226667pt;}
.y18{bottom:406.266667pt;}
.y78{bottom:407.066667pt;}
.y58{bottom:408.274580pt;}
.yaf{bottom:413.626667pt;}
.y4e{bottom:414.506667pt;}
.y17b{bottom:417.306667pt;}
.y151{bottom:419.653333pt;}
.ybc{bottom:420.853333pt;}
.y77{bottom:422.693333pt;}
.yae{bottom:429.253333pt;}
.y4d{bottom:430.133333pt;}
.y103{bottom:432.773333pt;}
.y57{bottom:434.838091pt;}
.ybb{bottom:436.533333pt;}
.y76{bottom:438.373333pt;}
.y17a{bottom:441.013333pt;}
.y150{bottom:443.253333pt;}
.y56{bottom:445.298289pt;}
.y4c{bottom:445.813333pt;}
.y17{bottom:449.493333pt;}
.yba{bottom:452.133333pt;}
.yad{bottom:452.853333pt;}
.y75{bottom:453.973333pt;}
.y179{bottom:456.613333pt;}
.y14f{bottom:458.933333pt;}
.y4b{bottom:461.413333pt;}
.y74{bottom:469.653333pt;}
.y178{bottom:472.293333pt;}
.y14e{bottom:474.533333pt;}
.yb9{bottom:475.813333pt;}
.yc9{bottom:477.733333pt;}
.y113{bottom:479.733333pt;}
.y16{bottom:482.373333pt;}
.y132{bottom:484.373333pt;}
.yac{bottom:484.533333pt;}
.y73{bottom:485.253333pt;}
.y4a{bottom:485.333333pt;}
.yc8{bottom:493.413333pt;}
.y177{bottom:495.893333pt;}
.y15{bottom:497.973333pt;}
.y14d{bottom:498.133333pt;}
.yab{bottom:500.133333pt;}
.yb8{bottom:507.413333pt;}
.yc7{bottom:509.013333pt;}
.y176{bottom:511.493333pt;}
.y14{bottom:513.653333pt;}
.y14c{bottom:513.813333pt;}
.yaa{bottom:515.813333pt;}
.y72{bottom:516.853333pt;}
.yb7{bottom:523.013333pt;}
.yc6{bottom:524.613333pt;}
.y49{bottom:528.293333pt;}
.y13{bottom:529.253333pt;}
.y14b{bottom:529.413333pt;}
.ya9{bottom:531.413333pt;}
.y175{bottom:535.173333pt;}
.yb6{bottom:538.693333pt;}
.yc5{bottom:540.293333pt;}
.y48{bottom:543.893333pt;}
.y12{bottom:544.853333pt;}
.y71{bottom:545.493333pt;}
.y52{bottom:546.783229pt;}
.ya8{bottom:547.013333pt;}
.y174{bottom:550.773333pt;}
.y14a{bottom:553.333333pt;}
.yb5{bottom:554.293333pt;}
.yc4{bottom:555.893333pt;}
.y47{bottom:559.493333pt;}
.y11{bottom:560.533333pt;}
.ya7{bottom:562.693333pt;}
.y193{bottom:566.453333pt;}
.y8f{bottom:566.533333pt;}
.yb4{bottom:569.973333pt;}
.y173{bottom:574.453333pt;}
.y46{bottom:575.173333pt;}
.y10{bottom:576.133333pt;}
.ya6{bottom:578.293333pt;}
.yc3{bottom:579.573333pt;}
.y192{bottom:582.053333pt;}
.y8e{bottom:582.133333pt;}
.y172{bottom:590.053333pt;}
.y45{bottom:590.773333pt;}
.yf{bottom:591.813333pt;}
.ya5{bottom:593.973333pt;}
.y149{bottom:596.293333pt;}
.y8d{bottom:597.813333pt;}
.yb3{bottom:601.573333pt;}
.y171{bottom:605.653333pt;}
.y44{bottom:606.453333pt;}
.ye{bottom:607.413333pt;}
.yc2{bottom:611.173333pt;}
.y130{bottom:618.053333pt;}
.y148{bottom:620.133333pt;}
.y191{bottom:621.333333pt;}
.y8c{bottom:621.413333pt;}
.y43{bottom:622.053333pt;}
.yd{bottom:623.013333pt;}
.ydb{bottom:625.253333pt;}
.ya4{bottom:625.573333pt;}
.y110{bottom:629.093333pt;}
.y170{bottom:629.333333pt;}
.yb2{bottom:630.213333pt;}
.y190{bottom:636.933333pt;}
.y42{bottom:637.653333pt;}
.yc{bottom:638.693333pt;}
.yc1{bottom:639.813333pt;}
.y16f{bottom:644.933333pt;}
.y8b{bottom:653.013333pt;}
.y41{bottom:653.333333pt;}
.ya3{bottom:654.213333pt;}
.yb{bottom:654.293333pt;}
.y16e{bottom:660.613333pt;}
.yda{bottom:668.613333pt;}
.y9b{bottom:669.013333pt;}
.yfe{bottom:675.973333pt;}
.y18f{bottom:676.213333pt;}
.ya{bottom:678.293333pt;}
.y8a{bottom:681.653333pt;}
.y16d{bottom:684.213333pt;}
.y9a{bottom:684.693333pt;}
.y40{bottom:684.933333pt;}
.y18e{bottom:691.813333pt;}
.y147{bottom:696.293333pt;}
.y16c{bottom:699.813333pt;}
.yd9{bottom:700.213333pt;}
.y99{bottom:700.293333pt;}
.y3f{bottom:700.613333pt;}
.y146{bottom:711.893333pt;}
.y18d{bottom:715.493333pt;}
.yd8{bottom:715.813333pt;}
.y3e{bottom:716.213333pt;}
.y9{bottom:719.813333pt;}
.y16b{bottom:723.493333pt;}
.y98{bottom:723.973333pt;}
.y145{bottom:727.573333pt;}
.y18c{bottom:731.093333pt;}
.yd7{bottom:731.493333pt;}
.y3d{bottom:731.813333pt;}
.y16a{bottom:739.093333pt;}
.y144{bottom:743.173333pt;}
.yd6{bottom:747.093333pt;}
.y3c{bottom:747.493333pt;}
.y8{bottom:751.653333pt;}
.y169{bottom:754.693333pt;}
.y97{bottom:755.573333pt;}
.y143{bottom:758.773333pt;}
.yd5{bottom:762.693333pt;}
.y3b{bottom:763.093333pt;}
.y168{bottom:770.373333pt;}
.y142{bottom:774.453333pt;}
.yd4{bottom:778.373333pt;}
.y3a{bottom:778.693333pt;}
.y7{bottom:783.653333pt;}
.y96{bottom:784.213333pt;}
.y167{bottom:793.973333pt;}
.y10e{bottom:794.053333pt;}
.y39{bottom:794.373333pt;}
.y141{bottom:806.053333pt;}
.y166{bottom:809.653333pt;}
.y38{bottom:809.973333pt;}
.y6{bottom:815.653333pt;}
.y140{bottom:821.733333pt;}
.y165{bottom:825.253333pt;}
.y37{bottom:825.653333pt;}
.y5{bottom:831.653333pt;}
.y13f{bottom:837.333333pt;}
.yfc{bottom:840.933333pt;}
.yd3{bottom:841.253333pt;}
.y164{bottom:848.853333pt;}
.y13e{bottom:852.933333pt;}
.yd2{bottom:856.853333pt;}
.y36{bottom:857.253333pt;}
.y4{bottom:863.733333pt;}
.y163{bottom:864.533333pt;}
.y11d{bottom:865.253333pt;}
.y13d{bottom:868.613333pt;}
.yd1{bottom:872.533333pt;}
.y35{bottom:872.853333pt;}
.y12b{bottom:876.853333pt;}
.y13c{bottom:884.213333pt;}
.yd0{bottom:888.133333pt;}
.y34{bottom:888.533333pt;}
.y3{bottom:897.760000pt;}
.y13b{bottom:899.840000pt;}
.ycf{bottom:903.840000pt;}
.y33{bottom:904.160000pt;}
.yce{bottom:919.440000pt;}
.y32{bottom:919.840000pt;}
.y13a{bottom:931.520000pt;}
.ycd{bottom:935.040000pt;}
.y31{bottom:935.440000pt;}
.y162{bottom:943.040000pt;}
.y139{bottom:947.120000pt;}
.ycc{bottom:950.720000pt;}
.y30{bottom:951.040000pt;}
.y89{bottom:958.720000pt;}
.y138{bottom:962.800000pt;}
.y2f{bottom:966.720000pt;}
.y88{bottom:974.320000pt;}
.yfa{bottom:974.640000pt;}
.y137{bottom:978.400000pt;}
.y2e{bottom:982.320000pt;}
.y87{bottom:990.000000pt;}
.y10d{bottom:990.320000pt;}
.y2d{bottom:998.000000pt;}
.y136{bottom:1002.320000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.h12{height:23.680000pt;}
.h2{height:26.686562pt;}
.he{height:28.711641pt;}
.hf{height:28.785260pt;}
.hb{height:28.870472pt;}
.hd{height:29.506426pt;}
.hc{height:29.582084pt;}
.h3{height:34.804688pt;}
.h1c{height:35.280000pt;}
.h20{height:39.280000pt;}
.h6{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.h16{height:50.960000pt;}
.h11{height:53.309531pt;}
.h27{height:54.927899pt;}
.h10{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:64.875937pt;}
.h15{height:82.160000pt;}
.h1b{height:133.040000pt;}
.h17{height:133.066667pt;}
.h1e{height:148.640000pt;}
.h14{height:148.720000pt;}
.h24{height:148.746667pt;}
.h21{height:160.346667pt;}
.h1d{height:164.240000pt;}
.h18{height:164.320000pt;}
.h26{height:180.026667pt;}
.h1a{height:195.626667pt;}
.h22{height:211.200000pt;}
.h19{height:242.480000pt;}
.h25{height:258.160000pt;}
.h13{height:289.386667pt;}
.h1f{height:336.266667pt;}
.h23{height:414.426667pt;}
.ha{height:478.012770pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:50.320000pt;}
.w7{width:126.746667pt;}
.w5{width:158.346667pt;}
.w8{width:161.120000pt;}
.w6{width:172.560000pt;}
.w3{width:421.216247pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2d{left:3.520000pt;}
.x33{left:5.120000pt;}
.x5{left:12.058410pt;}
.xa{left:30.720993pt;}
.x31{left:33.600000pt;}
.xc{left:41.861857pt;}
.x35{left:48.400000pt;}
.x2f{left:49.866667pt;}
.x1{left:60.480000pt;}
.x8{left:71.098451pt;}
.x36{left:99.039988pt;}
.x2e{left:112.160000pt;}
.x9{left:118.108103pt;}
.xe{left:122.686540pt;}
.x13{left:127.613811pt;}
.xd{left:132.323061pt;}
.x16{left:136.552665pt;}
.x14{left:141.584586pt;}
.x18{left:151.552498pt;}
.x17{left:166.247102pt;}
.xb{left:168.113361pt;}
.x6{left:171.784831pt;}
.x7{left:175.813856pt;}
.x2{left:179.146655pt;}
.x4{left:186.453642pt;}
.x15{left:207.601294pt;}
.x11{left:213.208790pt;}
.xf{left:218.502335pt;}
.x10{left:231.339402pt;}
.x12{left:234.853898pt;}
.x29{left:263.306655pt;}
.x30{left:271.146667pt;}
.x25{left:292.266655pt;}
.x27{left:299.306655pt;}
.x23{left:304.906655pt;}
.x21{left:307.946655pt;}
.x2b{left:309.706655pt;}
.x1f{left:316.106655pt;}
.x1d{left:322.426655pt;}
.x19{left:338.370189pt;}
.x1a{left:350.684005pt;}
.x1b{left:362.247830pt;}
.x32{left:444.346667pt;}
.x34{left:571.733333pt;}
.x1c{left:608.933322pt;}
.x1e{left:617.013322pt;}
.x22{left:621.013322pt;}
.x20{left:630.053322pt;}
.x24{left:639.013322pt;}
.x2c{left:655.253322pt;}
.x26{left:690.053322pt;}
.x2a{left:701.333322pt;}
.x3{left:704.053322pt;}
.x28{left:708.053322pt;}
}




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