
    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_252362571545f10f38e4c90e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.101015;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_30d89c8cc84fcf50b53f4138.woff')format("woff");}.ff2{font-family:ff2;line-height:1.101015;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_28447014ee6bf5c5ce138f3d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.101000;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_71c87ff85c4b7f260ccf7d7f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.101000;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_228e8fe33c218947b38b6248.woff')format("woff");}.ff5{font-family:ff5;line-height:1.106000;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_8fccd958afbb28ea5747b19e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff7{font-family:ff7;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b4feb020e884746ba36338c3.woff')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b2ed39f3bfecbeebcdeba3d8.woff')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d2112f1f437ceed3e4028f86.woff')format("woff");}.ffa{font-family:ffa;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ffc{font-family:ffc;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_439efccd18221edf44c4efbd.woff')format("woff");}.ffd{font-family:ffd;line-height:0.887695;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_d3a5cb3427a7db99caa28436.woff')format("woff");}.ffe{font-family:ffe;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_a7c473daeebdf0ac6c1c935b.woff')format("woff");}.fff{font-family:fff;line-height:0.740723;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:-23.760000px;}
.v0{vertical-align:0.000000px;}
.ls20{letter-spacing:-19.140000px;}
.ls37{letter-spacing:-15.900000px;}
.ls1f{letter-spacing:-2.232000px;}
.ls12{letter-spacing:-1.512000px;}
.ls36{letter-spacing:-1.422000px;}
.ls1d{letter-spacing:-0.792000px;}
.ls1a{letter-spacing:-0.720000px;}
.ls1e{letter-spacing:-0.648000px;}
.ls25{letter-spacing:-0.504000px;}
.ls6{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.342600px;}
.ls15{letter-spacing:-0.310200px;}
.ls24{letter-spacing:-0.308400px;}
.ls11{letter-spacing:-0.288000px;}
.ls2{letter-spacing:-0.279600px;}
.ls3b{letter-spacing:-0.269400px;}
.ls4{letter-spacing:-0.219000px;}
.ls5{letter-spacing:-0.210000px;}
.ls3{letter-spacing:-0.190200px;}
.ls28{letter-spacing:-0.180000px;}
.ls23{letter-spacing:-0.132600px;}
.ls17{letter-spacing:-0.064800px;}
.ls2b{letter-spacing:-0.047520px;}
.ls13{letter-spacing:-0.039600px;}
.lsf{letter-spacing:-0.032400px;}
.ls27{letter-spacing:-0.025920px;}
.ls1{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.000003px;}
.ls3d{letter-spacing:0.050400px;}
.ls10{letter-spacing:0.072000px;}
.ls30{letter-spacing:0.072600px;}
.ls18{letter-spacing:0.109200px;}
.lsa{letter-spacing:0.144000px;}
.ls35{letter-spacing:0.147000px;}
.ls2c{letter-spacing:0.151200px;}
.ls32{letter-spacing:0.155400px;}
.ls16{letter-spacing:0.198000px;}
.lsb{letter-spacing:0.216000px;}
.ls31{letter-spacing:0.234000px;}
.ls22{letter-spacing:0.238800px;}
.ls34{letter-spacing:0.259920px;}
.lsd{letter-spacing:0.262080px;}
.ls33{letter-spacing:0.288000px;}
.ls3c{letter-spacing:0.299400px;}
.ls0{letter-spacing:0.303600px;}
.ls1c{letter-spacing:0.305280px;}
.ls19{letter-spacing:0.305400px;}
.ls29{letter-spacing:0.309600px;}
.ls21{letter-spacing:0.310800px;}
.ls2a{letter-spacing:0.331200px;}
.ls9{letter-spacing:0.360000px;}
.ls38{letter-spacing:0.450720px;}
.ls2f{letter-spacing:0.598320px;}
.ls26{letter-spacing:0.684000px;}
.ls3a{letter-spacing:1.020000px;}
.ls39{letter-spacing:1.080000px;}
.lsc{letter-spacing:11.213280px;}
.ls8{letter-spacing:23.328000px;}
.ls14{letter-spacing:54.840000px;}
.ls7{letter-spacing:841.656000px;}
.ls2e{letter-spacing:843.636000px;}
.ls2d{letter-spacing:846.180000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf{word-spacing:-72.000000px;}
.ws11{word-spacing:-66.240000px;}
.wse{word-spacing:-27.174240px;}
.wsb{word-spacing:-26.831640px;}
.ws4{word-spacing:-20.340000px;}
.wsc{word-spacing:-18.414720px;}
.wsa{word-spacing:-17.856000px;}
.ws1d{word-spacing:-17.784000px;}
.ws9{word-spacing:-17.712000px;}
.ws8{word-spacing:-17.496000px;}
.wsd{word-spacing:-17.208000px;}
.ws13{word-spacing:-16.865400px;}
.ws16{word-spacing:-16.848000px;}
.ws10{word-spacing:-16.669200px;}
.ws22{word-spacing:-16.613280px;}
.ws12{word-spacing:-16.560000px;}
.ws15{word-spacing:-16.272000px;}
.ws5{word-spacing:-16.096320px;}
.ws7{word-spacing:-15.886320px;}
.ws6{word-spacing:-15.877320px;}
.ws14{word-spacing:-15.840000px;}
.ws0{word-spacing:-15.816720px;}
.ws20{word-spacing:-15.541680px;}
.ws1{word-spacing:-14.825280px;}
.ws23{word-spacing:-14.821080px;}
.ws1b{word-spacing:-14.677080px;}
.ws1f{word-spacing:-14.668680px;}
.ws1c{word-spacing:-14.594280px;}
.ws24{word-spacing:-14.572080px;}
.ws2{word-spacing:-14.521680px;}
.ws21{word-spacing:-14.252280px;}
.ws1e{word-spacing:-13.099680px;}
.ws1a{word-spacing:-11.609280px;}
.ws17{word-spacing:-10.147680px;}
.ws18{word-spacing:-9.967680px;}
.ws19{word-spacing:-9.437760px;}
.ws3{word-spacing:0.000000px;}
._2f{margin-left:-22.601280px;}
._34{margin-left:-18.324720px;}
._19{margin-left:-16.476000px;}
._18{margin-left:-15.402240px;}
._16{margin-left:-11.977920px;}
._5{margin-left:-10.102320px;}
._17{margin-left:-7.677600px;}
._4{margin-left:-6.231120px;}
._3{margin-left:-4.510800px;}
._2{margin-left:-3.113280px;}
._1{margin-left:-1.391040px;}
._0{width:1.109280px;}
._b{width:2.411040px;}
._14{width:3.813120px;}
._13{width:5.025600px;}
._1f{width:6.071040px;}
._33{width:7.080960px;}
._c{width:8.105280px;}
._9{width:9.216000px;}
._a{width:10.224000px;}
._7{width:11.921040px;}
._1a{width:13.613040px;}
._6{width:15.191040px;}
._8{width:16.361280px;}
._30{width:17.684640px;}
._22{width:18.688320px;}
._23{width:20.343120px;}
._1d{width:21.928320px;}
._1e{width:23.302080px;}
._2e{width:24.329040px;}
._20{width:25.629840px;}
._21{width:26.666640px;}
._32{width:27.936000px;}
._31{width:28.963440px;}
._2a{width:30.757440px;}
._1b{width:32.040000px;}
._1c{width:33.373440px;}
._e{width:35.015040px;}
._d{width:37.031040px;}
._15{width:38.460480px;}
._10{width:39.720000px;}
._2c{width:40.728480px;}
._f{width:41.817120px;}
._24{width:43.210560px;}
._39{width:44.730960px;}
._25{width:46.036800px;}
._26{width:47.295360px;}
._27{width:48.458160px;}
._2d{width:49.885200px;}
._41{width:59.836320px;}
._2b{width:64.702080px;}
._12{width:69.012000px;}
._11{width:70.341120px;}
._29{width:81.276480px;}
._28{width:82.468800px;}
._3e{width:105.356880px;}
._47{width:133.596720px;}
._3b{width:144.150240px;}
._3c{width:145.339680px;}
._3a{width:151.257600px;}
._40{width:152.363760px;}
._3f{width:153.434640px;}
._44{width:155.311920px;}
._38{width:164.340000px;}
._37{width:165.670320px;}
._42{width:217.705680px;}
._43{width:218.961840px;}
._46{width:271.190880px;}
._45{width:272.688240px;}
._3d{width:278.123040px;}
._35{width:461.048400px;}
._36{width:462.499200px;}
._48{width:647.200800px;}
.fc5{color:rgb(5,99,193);}
.fc4{color:rgb(238,0,0);}
.fc3{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:23.760000px;}
.fs9{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fsa{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:90.000000px;}
.fs6{font-size:95.760000px;}
.fs5{font-size:120.240000px;}
.fs3{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.960000px;}
.yf{bottom:6.480000px;}
.y2f{bottom:23.580000px;}
.ye{bottom:26.820000px;}
.yd{bottom:47.010000px;}
.y2e{bottom:55.260000px;}
.ya{bottom:56.880000px;}
.yc{bottom:67.350000px;}
.y20{bottom:73.800000px;}
.y9{bottom:86.796000px;}
.y8{bottom:106.236000px;}
.y6a{bottom:119.016000px;}
.y69{bottom:122.796000px;}
.y3{bottom:124.590000px;}
.y7{bottom:125.676000px;}
.y17d{bottom:127.476000px;}
.yb5{bottom:130.176000px;}
.yc7{bottom:131.976000px;}
.yb4{bottom:133.956000px;}
.y1f{bottom:135.750000px;}
.y68{bottom:138.996000px;}
.y67{bottom:142.776000px;}
.yb3{bottom:143.136000px;}
.y6{bottom:145.116000px;}
.y197{bottom:145.476000px;}
.yda{bottom:150.150000px;}
.y82{bottom:152.130000px;}
.y17c{bottom:153.750000px;}
.yd9{bottom:153.930000px;}
.y66{bottom:159.150000px;}
.y65{bottom:162.930000px;}
.yd8{bottom:163.290000px;}
.y5{bottom:164.370000px;}
.y120{bottom:170.310000px;}
.y196{bottom:171.750000px;}
.ye9{bottom:172.290000px;}
.y9d{bottom:179.310000px;}
.y17b{bottom:180.210000px;}
.y64{bottom:181.290000px;}
.y11f{bottom:181.470000px;}
.y9c{bottom:183.090000px;}
.y11e{bottom:185.250000px;}
.y1a1{bottom:189.210000px;}
.y11d{bottom:194.430000px;}
.y81{bottom:195.330000px;}
.y106{bottom:195.870000px;}
.yfd{bottom:198.210000px;}
.y9b{bottom:199.290000px;}
.y155{bottom:201.450000px;}
.y9a{bottom:203.070000px;}
.yfe{bottom:205.050000px;}
.y154{bottom:205.230000px;}
.y1e{bottom:209.730000px;}
.y138{bottom:210.450000px;}
.yd7{bottom:211.890000px;}
.y99{bottom:212.430000px;}
.y137{bottom:214.230000px;}
.y17a{bottom:215.670000px;}
.y30{bottom:216.750000px;}
.yc6{bottom:220.890000px;}
.y153{bottom:221.610000px;}
.y136{bottom:223.590000px;}
.y195{bottom:224.670000px;}
.y105{bottom:225.030000px;}
.y152{bottom:225.390000px;}
.y4d{bottom:225.570000px;}
.y80{bottom:227.190000px;}
.y63{bottom:228.630000px;}
.yfc{bottom:229.890000px;}
.y151{bottom:241.590000px;}
.y179{bottom:242.130000px;}
.yd6{bottom:243.750000px;}
.y150{bottom:245.370000px;}
.yb1{bottom:247.170000px;}
.y2d{bottom:248.070000px;}
.y1a0{bottom:251.130000px;}
.yc5{bottom:252.570000px;}
.yb2{bottom:253.110000px;}
.y104{bottom:254.190000px;}
.y7f{bottom:258.870000px;}
.y194{bottom:260.130000px;}
.y62{bottom:260.490000px;}
.yfb{bottom:261.750000px;}
.y14f{bottom:265.530000px;}
.y135{bottom:266.070000px;}
.ye8{bottom:266.250000px;}
.y178{bottom:268.590000px;}
.y1a4{bottom:269.490000px;}
.y97{bottom:271.830000px;}
.y4c{bottom:274.170000px;}
.yd5{bottom:275.430000px;}
.y19f{bottom:277.590000px;}
.y98{bottom:277.770000px;}
.yb0{bottom:278.850000px;}
.y14e{bottom:281.910000px;}
.yc4{bottom:284.250000px;}
.y14d{bottom:285.690000px;}
.y193{bottom:286.590000px;}
.y7e{bottom:290.550000px;}
.y61{bottom:292.170000px;}
.yfa{bottom:293.430000px;}
.y134{bottom:297.750000px;}
.ye7{bottom:297.930000px;}
.y14c{bottom:302.070000px;}
.y96{bottom:303.510000px;}
.y11c{bottom:303.870000px;}
.y177{bottom:304.050000px;}
.y14b{bottom:305.850000px;}
.yd4{bottom:307.110000px;}
.y1a3{bottom:310.170000px;}
.yaf{bottom:310.710000px;}
.y192{bottom:313.050000px;}
.y14a{bottom:315.030000px;}
.yc3{bottom:315.930000px;}
.y4b{bottom:319.215000px;}
.y7d{bottom:322.275000px;}
.y60{bottom:323.895000px;}
.yf9{bottom:325.155000px;}
.y133{bottom:329.475000px;}
.y176{bottom:330.555000px;}
.y95{bottom:335.235000px;}
.yd3{bottom:338.835000px;}
.y19e{bottom:339.555000px;}
.y11a{bottom:341.715000px;}
.yae{bottom:342.435000px;}
.ye6{bottom:344.775000px;}
.y11b{bottom:347.655000px;}
.yc2{bottom:347.835000px;}
.y191{bottom:348.555000px;}
.y7c{bottom:354.135000px;}
.y5f{bottom:355.575000px;}
.yf8{bottom:356.835000px;}
.y175{bottom:357.015000px;}
.y2c{bottom:357.555000px;}
.y4a{bottom:359.895000px;}
.y103{bottom:365.835000px;}
.y19d{bottom:366.015000px;}
.y93{bottom:367.995000px;}
.y131{bottom:370.155000px;}
.ye5{bottom:370.515000px;}
.y119{bottom:370.875000px;}
.y1c{bottom:372.315000px;}
.y94{bottom:373.935000px;}
.yad{bottom:374.115000px;}
.y190{bottom:375.015000px;}
.y132{bottom:376.095000px;}
.yc1{bottom:379.515000px;}
.yd2{bottom:379.695000px;}
.y174{bottom:383.295000px;}
.y7b{bottom:385.635000px;}
.y5e{bottom:387.255000px;}
.yf7{bottom:388.695000px;}
.y1a2{bottom:392.295000px;}
.y102{bottom:397.515000px;}
.y2b{bottom:398.415000px;}
.y92{bottom:399.855000px;}
.y49{bottom:400.575000px;}
.y18f{bottom:401.295000px;}
.ye4{bottom:402.195000px;}
.yac{bottom:405.795000px;}
.yc0{bottom:411.195000px;}
.yd1{bottom:411.375000px;}
.y130{bottom:411.915000px;}
.y148{bottom:418.575000px;}
.y173{bottom:418.755000px;}
.y1b{bottom:421.095000px;}
.y149{bottom:424.515000px;}
.y19c{bottom:427.755000px;}
.yf6{bottom:429.375000px;}
.y91{bottom:431.355000px;}
.ye3{bottom:433.875000px;}
.y7a{bottom:436.395000px;}
.y18e{bottom:436.755000px;}
.yab{bottom:437.655000px;}
.y5d{bottom:437.835000px;}
.y118{bottom:439.275000px;}
.y48{bottom:441.255000px;}
.y101{bottom:443.055000px;}
.y12f{bottom:443.595000px;}
.y172{bottom:445.215000px;}
.y147{bottom:450.975000px;}
.ybf{bottom:451.875000px;}
.yd0{bottom:452.055000px;}
.y19b{bottom:454.215000px;}
.yf5{bottom:461.055000px;}
.y1d{bottom:461.775000px;}
.y18d{bottom:463.215000px;}
.y8f{bottom:464.295000px;}
.ye2{bottom:465.735000px;}
.yaa{bottom:469.335000px;}
.y1a{bottom:469.695000px;}
.y90{bottom:470.235000px;}
.y12e{bottom:475.455000px;}
.y116{bottom:478.695000px;}
.y171{bottom:480.675000px;}
.y47{bottom:482.115000px;}
.ybe{bottom:483.735000px;}
.y117{bottom:484.635000px;}
.y18c{bottom:489.675000px;}
.yff{bottom:492.735000px;}
.y8e{bottom:495.975000px;}
.ye1{bottom:497.415000px;}
.y146{bottom:497.595000px;}
.y100{bottom:498.675000px;}
.ya9{bottom:501.015000px;}
.yf4{bottom:501.735000px;}
.y78{bottom:506.415000px;}
.y170{bottom:507.135000px;}
.y115{bottom:507.855000px;}
.y5b{bottom:508.035000px;}
.y79{bottom:512.355000px;}
.y5c{bottom:513.975000px;}
.y12c{bottom:516.135000px;}
.y19{bottom:518.295000px;}
.y12d{bottom:522.075000px;}
.y46{bottom:522.795000px;}
.ybc{bottom:524.415000px;}
.y2a{bottom:524.775000px;}
.y8d{bottom:527.655000px;}
.ye0{bottom:529.095000px;}
.ycf{bottom:529.275000px;}
.ybd{bottom:530.355000px;}
.ya8{bottom:532.695000px;}
.yf3{bottom:533.415000px;}
.y16f{bottom:533.595000px;}
.y3c{bottom:534.135000px;}
.y114{bottom:536.835000px;}
.y77{bottom:538.095000px;}
.y5a{bottom:539.715000px;}
.y19a{bottom:542.595000px;}
.y18b{bottom:551.595000px;}
.ybb{bottom:556.095000px;}
.y12b{bottom:556.815000px;}
.y160{bottom:558.795000px;}
.y8b{bottom:560.415000px;}
.ydf{bottom:560.775000px;}
.y145{bottom:560.955000px;}
.y45{bottom:563.475000px;}
.y113{bottom:565.995000px;}
.y8c{bottom:566.355000px;}
.y29{bottom:568.545000px;}
.y16e{bottom:569.085000px;}
.y59{bottom:571.425000px;}
.ya7{bottom:573.585000px;}
.y3b{bottom:574.665000px;}
.y18a{bottom:578.085000px;}
.y76{bottom:578.805000px;}
.yf2{bottom:578.985000px;}
.yce{bottom:584.745000px;}
.y18{bottom:585.285000px;}
.yba{bottom:587.805000px;}
.y12a{bottom:588.525000px;}
.y15f{bottom:590.505000px;}
.y8a{bottom:592.125000px;}
.y112{bottom:595.005000px;}
.y16d{bottom:595.545000px;}
.yde{bottom:601.665000px;}
.y58{bottom:603.105000px;}
.y44{bottom:604.185000px;}
.y189{bottom:604.545000px;}
.ya6{bottom:605.265000px;}
.y28{bottom:606.705000px;}
.y144{bottom:607.605000px;}
.y75{bottom:610.665000px;}
.yb9{bottom:619.665000px;}
.y3a{bottom:619.845000px;}
.y129{bottom:620.385000px;}
.y16c{bottom:621.825000px;}
.y15e{bottom:622.365000px;}
.y89{bottom:623.805000px;}
.y111{bottom:624.165000px;}
.yf0{bottom:628.665000px;}
.y199{bottom:630.825000px;}
.ydd{bottom:633.345000px;}
.yf1{bottom:634.605000px;}
.y57{bottom:634.965000px;}
.ya5{bottom:636.945000px;}
.y188{bottom:639.825000px;}
.y74{bottom:642.345000px;}
.y143{bottom:643.425000px;}
.y43{bottom:645.045000px;}
.y27{bottom:649.545000px;}
.yb8{bottom:651.345000px;}
.y39{bottom:651.525000px;}
.y17{bottom:651.705000px;}
.y110{bottom:653.325000px;}
.y87{bottom:656.565000px;}
.y16b{bottom:657.285000px;}
.yef{bottom:660.345000px;}
.y127{bottom:660.885000px;}
.y88{bottom:662.505000px;}
.y15c{bottom:662.865000px;}
.ydc{bottom:665.025000px;}
.y187{bottom:666.285000px;}
.y128{bottom:666.825000px;}
.ya4{bottom:668.625000px;}
.y15d{bottom:668.805000px;}
.y73{bottom:674.025000px;}
.y142{bottom:675.105000px;}
.y55{bottom:675.645000px;}
.y56{bottom:681.585000px;}
.yb7{bottom:683.025000px;}
.y38{bottom:683.205000px;}
.y162{bottom:683.565000px;}
.y16a{bottom:683.745000px;}
.y42{bottom:685.725000px;}
.y86{bottom:688.245000px;}
.yee{bottom:692.025000px;}
.y16{bottom:692.565000px;}
.y186{bottom:692.745000px;}
.y26{bottom:698.145000px;}
.y15b{bottom:704.805000px;}
.ycd{bottom:705.705000px;}
.y141{bottom:706.965000px;}
.y54{bottom:707.325000px;}
.y126{bottom:707.505000px;}
.ya3{bottom:709.485000px;}
.y169{bottom:710.205000px;}
.ydb{bottom:711.645000px;}
.y72{bottom:714.705000px;}
.y37{bottom:714.885000px;}
.y185{bottom:719.205000px;}
.y85{bottom:719.925000px;}
.yed{bottom:723.705000px;}
.y10f{bottom:724.245000px;}
.y161{bottom:725.325000px;}
.y41{bottom:726.405000px;}
.y15{bottom:733.245000px;}
.y15a{bottom:736.485000px;}
.y168{bottom:736.665000px;}
.ycc{bottom:737.565000px;}
.y53{bottom:739.005000px;}
.ya2{bottom:741.165000px;}
.y198{bottom:745.665000px;}
.y71{bottom:746.565000px;}
.y36{bottom:746.745000px;}
.y25{bottom:746.925000px;}
.y13f{bottom:747.465000px;}
.y140{bottom:753.405000px;}
.y184{bottom:754.665000px;}
.yec{bottom:755.565000px;}
.y125{bottom:757.005000px;}
.y84{bottom:761.865000px;}
.y10d{bottom:763.845000px;}
.y40{bottom:767.085000px;}
.y159{bottom:768.165000px;}
.ycb{bottom:769.245000px;}
.y10e{bottom:769.785000px;}
.y52{bottom:770.865000px;}
.y167{bottom:772.125000px;}
.y14{bottom:773.925000px;}
.y70{bottom:778.245000px;}
.y35{bottom:778.425000px;}
.y183{bottom:781.125000px;}
.yeb{bottom:787.245000px;}
.y124{bottom:788.865000px;}
.y13e{bottom:789.405000px;}
.ya1{bottom:791.745000px;}
.y10c{bottom:792.825000px;}
.y83{bottom:793.365000px;}
.y24{bottom:795.525000px;}
.y166{bottom:798.585000px;}
.y158{bottom:799.845000px;}
.yca{bottom:800.925000px;}
.y51{bottom:802.545000px;}
.y182{bottom:807.585000px;}
.y3f{bottom:807.945000px;}
.y6f{bottom:809.925000px;}
.y34{bottom:810.105000px;}
.y13{bottom:814.605000px;}
.yea{bottom:818.925000px;}
.y123{bottom:820.590000px;}
.y13d{bottom:821.130000px;}
.y10b{bottom:822.030000px;}
.y165{bottom:834.090000px;}
.y50{bottom:834.270000px;}
.y156{bottom:840.570000px;}
.yb6{bottom:841.650000px;}
.y33{bottom:841.830000px;}
.y23{bottom:844.170000px;}
.y157{bottom:846.510000px;}
.y3e{bottom:848.670000px;}
.y6d{bottom:850.650000px;}
.y10a{bottom:851.010000px;}
.y122{bottom:852.270000px;}
.y13c{bottom:852.810000px;}
.y12{bottom:855.510000px;}
.y6e{bottom:856.590000px;}
.y164{bottom:860.370000px;}
.y4f{bottom:865.950000px;}
.y181{bottom:869.370000px;}
.ya0{bottom:869.910000px;}
.yc9{bottom:873.510000px;}
.y32{bottom:873.690000px;}
.y109{bottom:880.170000px;}
.y3d{bottom:882.510000px;}
.y121{bottom:883.950000px;}
.y163{bottom:886.830000px;}
.y9f{bottom:888.810000px;}
.y22{bottom:892.950000px;}
.y13a{bottom:893.490000px;}
.y180{bottom:895.830000px;}
.y11{bottom:896.190000px;}
.y13b{bottom:899.430000px;}
.y31{bottom:905.370000px;}
.y6c{bottom:914.190000px;}
.y4e{bottom:916.530000px;}
.y108{bottom:918.150000px;}
.yc8{bottom:920.130000px;}
.y17f{bottom:922.290000px;}
.y9e{bottom:934.530000px;}
.y10{bottom:936.870000px;}
.y139{bottom:940.110000px;}
.y21{bottom:941.550000px;}
.y6b{bottom:945.870000px;}
.y107{bottom:947.310000px;}
.y17e{bottom:948.750000px;}
.y4{bottom:967.110000px;}
.y1{bottom:984.210000px;}
.yb{bottom:1040.910000px;}
.hf{height:22.073040px;}
.he{height:29.158594px;}
.h12{height:33.683203px;}
.h10{height:36.119520px;}
.hd{height:38.795040px;}
.h13{height:43.128000px;}
.h11{height:46.251562px;}
.h5{height:55.517040px;}
.h3{height:61.536960px;}
.h14{height:62.402344px;}
.h2{height:66.888000px;}
.hc{height:71.613281px;}
.ha{height:81.396000px;}
.h4{height:81.576000px;}
.h7{height:83.610000px;}
.hb{height:88.961040px;}
.h9{height:111.702960px;}
.h1{height:150.690000px;}
.h6{height:167.220000px;}
.h8{height:302.070000px;}
.h0{height:1188.000000px;}
.w2{width:116.856000px;}
.w1{width:122.580000px;}
.w4{width:449.385000px;}
.w6{width:700.665000px;}
.w5{width:917.999973px;}
.w3{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x5{left:10.800000px;}
.x7{left:23.759973px;}
.x1{left:108.036000px;}
.x15{left:110.375986px;}
.x16{left:111.635986px;}
.x2b{left:112.715986px;}
.x27{left:113.975986px;}
.x3f{left:115.235986px;}
.xd{left:126.035986px;}
.x1b{left:135.035986px;}
.x5d{left:140.075986px;}
.x13{left:146.195973px;}
.x14{left:151.409986px;}
.x1c{left:162.029986px;}
.x28{left:171.929986px;}
.x8{left:216.209973px;}
.x3{left:230.610000px;}
.x19{left:234.929973px;}
.x1a{left:240.149986px;}
.xb{left:243.389986px;}
.x9{left:251.309973px;}
.x40{left:280.829973px;}
.xc{left:291.134986px;}
.x41{left:292.394986px;}
.x34{left:294.194973px;}
.x35{left:304.634986px;}
.x3a{left:307.154973px;}
.xf{left:317.234973px;}
.x10{left:321.554986px;}
.x11{left:324.074973px;}
.x12{left:329.294986px;}
.x42{left:333.074973px;}
.x43{left:344.954986px;}
.x23{left:355.754973px;}
.x24{left:361.874986px;}
.x29{left:366.014973px;}
.x2c{left:368.894973px;}
.x38{left:371.594973px;}
.x2a{left:376.454986px;}
.x2d{left:379.334986px;}
.x1d{left:380.594973px;}
.x39{left:382.034986px;}
.x25{left:385.274973px;}
.x1e{left:386.714986px;}
.x26{left:395.714986px;}
.xa{left:423.974986px;}
.x4e{left:426.674973px;}
.x50{left:438.194973px;}
.x4f{left:440.354986px;}
.x5e{left:448.094986px;}
.x2e{left:449.894986px;}
.x33{left:451.694986px;}
.xe{left:453.314986px;}
.x6{left:459.074986px;}
.x44{left:464.474973px;}
.x51{left:467.894973px;}
.x5b{left:472.574986px;}
.x45{left:477.434986px;}
.x52{left:481.244986px;}
.x46{left:482.504973px;}
.x4a{left:490.604973px;}
.x47{left:495.284986px;}
.x48{left:502.124973px;}
.x4b{left:503.744986px;}
.x49{left:514.724986px;}
.x1f{left:518.504973px;}
.x4c{left:521.384973px;}
.x20{left:524.264986px;}
.x3d{left:527.684973px;}
.x4d{left:534.164986px;}
.x3e{left:540.464986px;}
.x5c{left:553.964986px;}
.x53{left:623.984973px;}
.x54{left:637.844986px;}
.x55{left:644.864973px;}
.x56{left:658.904986px;}
.x57{left:664.124973px;}
.x58{left:678.029986px;}
.x59{left:683.249973px;}
.x2f{left:691.529973px;}
.x5a{left:696.749986px;}
.x30{left:701.969986px;}
.x3b{left:711.869973px;}
.x17{left:714.569973px;}
.x18{left:719.789986px;}
.x3c{left:724.109986px;}
.x21{left:727.709973px;}
.x22{left:734.009986px;}
.x36{left:743.909973px;}
.x37{left:754.349986px;}
.x31{left:776.669973px;}
.x32{left:787.109986px;}
.x4{left:810.149986px;}
@media print{
.v1{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.ls20{letter-spacing:-17.013333pt;}
.ls37{letter-spacing:-14.133333pt;}
.ls1f{letter-spacing:-1.984000pt;}
.ls12{letter-spacing:-1.344000pt;}
.ls36{letter-spacing:-1.264000pt;}
.ls1d{letter-spacing:-0.704000pt;}
.ls1a{letter-spacing:-0.640000pt;}
.ls1e{letter-spacing:-0.576000pt;}
.ls25{letter-spacing:-0.448000pt;}
.ls6{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.304533pt;}
.ls15{letter-spacing:-0.275733pt;}
.ls24{letter-spacing:-0.274133pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:-0.248533pt;}
.ls3b{letter-spacing:-0.239467pt;}
.ls4{letter-spacing:-0.194667pt;}
.ls5{letter-spacing:-0.186667pt;}
.ls3{letter-spacing:-0.169067pt;}
.ls28{letter-spacing:-0.160000pt;}
.ls23{letter-spacing:-0.117867pt;}
.ls17{letter-spacing:-0.057600pt;}
.ls2b{letter-spacing:-0.042240pt;}
.ls13{letter-spacing:-0.035200pt;}
.lsf{letter-spacing:-0.028800pt;}
.ls27{letter-spacing:-0.023040pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.000003pt;}
.ls3d{letter-spacing:0.044800pt;}
.ls10{letter-spacing:0.064000pt;}
.ls30{letter-spacing:0.064533pt;}
.ls18{letter-spacing:0.097067pt;}
.lsa{letter-spacing:0.128000pt;}
.ls35{letter-spacing:0.130667pt;}
.ls2c{letter-spacing:0.134400pt;}
.ls32{letter-spacing:0.138133pt;}
.ls16{letter-spacing:0.176000pt;}
.lsb{letter-spacing:0.192000pt;}
.ls31{letter-spacing:0.208000pt;}
.ls22{letter-spacing:0.212267pt;}
.ls34{letter-spacing:0.231040pt;}
.lsd{letter-spacing:0.232960pt;}
.ls33{letter-spacing:0.256000pt;}
.ls3c{letter-spacing:0.266133pt;}
.ls0{letter-spacing:0.269867pt;}
.ls1c{letter-spacing:0.271360pt;}
.ls19{letter-spacing:0.271467pt;}
.ls29{letter-spacing:0.275200pt;}
.ls21{letter-spacing:0.276267pt;}
.ls2a{letter-spacing:0.294400pt;}
.ls9{letter-spacing:0.320000pt;}
.ls38{letter-spacing:0.400640pt;}
.ls2f{letter-spacing:0.531840pt;}
.ls26{letter-spacing:0.608000pt;}
.ls3a{letter-spacing:0.906667pt;}
.ls39{letter-spacing:0.960000pt;}
.lsc{letter-spacing:9.967360pt;}
.ls8{letter-spacing:20.736000pt;}
.ls14{letter-spacing:48.746667pt;}
.ls7{letter-spacing:748.138667pt;}
.ls2e{letter-spacing:749.898667pt;}
.ls2d{letter-spacing:752.160000pt;}
.wsf{word-spacing:-64.000000pt;}
.ws11{word-spacing:-58.880000pt;}
.wse{word-spacing:-24.154880pt;}
.wsb{word-spacing:-23.850347pt;}
.ws4{word-spacing:-18.080000pt;}
.wsc{word-spacing:-16.368640pt;}
.wsa{word-spacing:-15.872000pt;}
.ws1d{word-spacing:-15.808000pt;}
.ws9{word-spacing:-15.744000pt;}
.ws8{word-spacing:-15.552000pt;}
.wsd{word-spacing:-15.296000pt;}
.ws13{word-spacing:-14.991467pt;}
.ws16{word-spacing:-14.976000pt;}
.ws10{word-spacing:-14.817067pt;}
.ws22{word-spacing:-14.767360pt;}
.ws12{word-spacing:-14.720000pt;}
.ws15{word-spacing:-14.464000pt;}
.ws5{word-spacing:-14.307840pt;}
.ws7{word-spacing:-14.121173pt;}
.ws6{word-spacing:-14.113173pt;}
.ws14{word-spacing:-14.080000pt;}
.ws0{word-spacing:-14.059307pt;}
.ws20{word-spacing:-13.814827pt;}
.ws1{word-spacing:-13.178027pt;}
.ws23{word-spacing:-13.174293pt;}
.ws1b{word-spacing:-13.046293pt;}
.ws1f{word-spacing:-13.038827pt;}
.ws1c{word-spacing:-12.972693pt;}
.ws24{word-spacing:-12.952960pt;}
.ws2{word-spacing:-12.908160pt;}
.ws21{word-spacing:-12.668693pt;}
.ws1e{word-spacing:-11.644160pt;}
.ws1a{word-spacing:-10.319360pt;}
.ws17{word-spacing:-9.020160pt;}
.ws18{word-spacing:-8.860160pt;}
.ws19{word-spacing:-8.389120pt;}
.ws3{word-spacing:0.000000pt;}
._2f{margin-left:-20.090027pt;}
._34{margin-left:-16.288640pt;}
._19{margin-left:-14.645333pt;}
._18{margin-left:-13.690880pt;}
._16{margin-left:-10.647040pt;}
._5{margin-left:-8.979840pt;}
._17{margin-left:-6.824533pt;}
._4{margin-left:-5.538773pt;}
._3{margin-left:-4.009600pt;}
._2{margin-left:-2.767360pt;}
._1{margin-left:-1.236480pt;}
._0{width:0.986027pt;}
._b{width:2.143147pt;}
._14{width:3.389440pt;}
._13{width:4.467200pt;}
._1f{width:5.396480pt;}
._33{width:6.294187pt;}
._c{width:7.204693pt;}
._9{width:8.192000pt;}
._a{width:9.088000pt;}
._7{width:10.596480pt;}
._1a{width:12.100480pt;}
._6{width:13.503147pt;}
._8{width:14.543360pt;}
._30{width:15.719680pt;}
._22{width:16.611840pt;}
._23{width:18.082773pt;}
._1d{width:19.491840pt;}
._1e{width:20.712960pt;}
._2e{width:21.625813pt;}
._20{width:22.782080pt;}
._21{width:23.703680pt;}
._32{width:24.832000pt;}
._31{width:25.745280pt;}
._2a{width:27.339947pt;}
._1b{width:28.480000pt;}
._1c{width:29.665280pt;}
._e{width:31.124480pt;}
._d{width:32.916480pt;}
._15{width:34.187093pt;}
._10{width:35.306667pt;}
._2c{width:36.203093pt;}
._f{width:37.170773pt;}
._24{width:38.409387pt;}
._39{width:39.760853pt;}
._25{width:40.921600pt;}
._26{width:42.040320pt;}
._27{width:43.073920pt;}
._2d{width:44.342400pt;}
._41{width:53.187840pt;}
._2b{width:57.512960pt;}
._12{width:61.344000pt;}
._11{width:62.525440pt;}
._29{width:72.245760pt;}
._28{width:73.305600pt;}
._3e{width:93.650560pt;}
._47{width:118.752640pt;}
._3b{width:128.133547pt;}
._3c{width:129.190827pt;}
._3a{width:134.451200pt;}
._40{width:135.434453pt;}
._3f{width:136.386347pt;}
._44{width:138.055040pt;}
._38{width:146.080000pt;}
._37{width:147.262507pt;}
._42{width:193.516160pt;}
._43{width:194.632747pt;}
._46{width:241.058560pt;}
._45{width:242.389547pt;}
._3d{width:247.220480pt;}
._35{width:409.820800pt;}
._36{width:411.110400pt;}
._48{width:575.289600pt;}
.fs8{font-size:21.120000pt;}
.fs9{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fsa{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:80.000000pt;}
.fs6{font-size:85.120000pt;}
.fs5{font-size:106.880000pt;}
.fs3{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.520000pt;}
.yf{bottom:5.760000pt;}
.y2f{bottom:20.960000pt;}
.ye{bottom:23.840000pt;}
.yd{bottom:41.786667pt;}
.y2e{bottom:49.120000pt;}
.ya{bottom:50.560000pt;}
.yc{bottom:59.866667pt;}
.y20{bottom:65.600000pt;}
.y9{bottom:77.152000pt;}
.y8{bottom:94.432000pt;}
.y6a{bottom:105.792000pt;}
.y69{bottom:109.152000pt;}
.y3{bottom:110.746667pt;}
.y7{bottom:111.712000pt;}
.y17d{bottom:113.312000pt;}
.yb5{bottom:115.712000pt;}
.yc7{bottom:117.312000pt;}
.yb4{bottom:119.072000pt;}
.y1f{bottom:120.666667pt;}
.y68{bottom:123.552000pt;}
.y67{bottom:126.912000pt;}
.yb3{bottom:127.232000pt;}
.y6{bottom:128.992000pt;}
.y197{bottom:129.312000pt;}
.yda{bottom:133.466667pt;}
.y82{bottom:135.226667pt;}
.y17c{bottom:136.666667pt;}
.yd9{bottom:136.826667pt;}
.y66{bottom:141.466667pt;}
.y65{bottom:144.826667pt;}
.yd8{bottom:145.146667pt;}
.y5{bottom:146.106667pt;}
.y120{bottom:151.386667pt;}
.y196{bottom:152.666667pt;}
.ye9{bottom:153.146667pt;}
.y9d{bottom:159.386667pt;}
.y17b{bottom:160.186667pt;}
.y64{bottom:161.146667pt;}
.y11f{bottom:161.306667pt;}
.y9c{bottom:162.746667pt;}
.y11e{bottom:164.666667pt;}
.y1a1{bottom:168.186667pt;}
.y11d{bottom:172.826667pt;}
.y81{bottom:173.626667pt;}
.y106{bottom:174.106667pt;}
.yfd{bottom:176.186667pt;}
.y9b{bottom:177.146667pt;}
.y155{bottom:179.066667pt;}
.y9a{bottom:180.506667pt;}
.yfe{bottom:182.266667pt;}
.y154{bottom:182.426667pt;}
.y1e{bottom:186.426667pt;}
.y138{bottom:187.066667pt;}
.yd7{bottom:188.346667pt;}
.y99{bottom:188.826667pt;}
.y137{bottom:190.426667pt;}
.y17a{bottom:191.706667pt;}
.y30{bottom:192.666667pt;}
.yc6{bottom:196.346667pt;}
.y153{bottom:196.986667pt;}
.y136{bottom:198.746667pt;}
.y195{bottom:199.706667pt;}
.y105{bottom:200.026667pt;}
.y152{bottom:200.346667pt;}
.y4d{bottom:200.506667pt;}
.y80{bottom:201.946667pt;}
.y63{bottom:203.226667pt;}
.yfc{bottom:204.346667pt;}
.y151{bottom:214.746667pt;}
.y179{bottom:215.226667pt;}
.yd6{bottom:216.666667pt;}
.y150{bottom:218.106667pt;}
.yb1{bottom:219.706667pt;}
.y2d{bottom:220.506667pt;}
.y1a0{bottom:223.226667pt;}
.yc5{bottom:224.506667pt;}
.yb2{bottom:224.986667pt;}
.y104{bottom:225.946667pt;}
.y7f{bottom:230.106667pt;}
.y194{bottom:231.226667pt;}
.y62{bottom:231.546667pt;}
.yfb{bottom:232.666667pt;}
.y14f{bottom:236.026667pt;}
.y135{bottom:236.506667pt;}
.ye8{bottom:236.666667pt;}
.y178{bottom:238.746667pt;}
.y1a4{bottom:239.546667pt;}
.y97{bottom:241.626667pt;}
.y4c{bottom:243.706667pt;}
.yd5{bottom:244.826667pt;}
.y19f{bottom:246.746667pt;}
.y98{bottom:246.906667pt;}
.yb0{bottom:247.866667pt;}
.y14e{bottom:250.586667pt;}
.yc4{bottom:252.666667pt;}
.y14d{bottom:253.946667pt;}
.y193{bottom:254.746667pt;}
.y7e{bottom:258.266667pt;}
.y61{bottom:259.706667pt;}
.yfa{bottom:260.826667pt;}
.y134{bottom:264.666667pt;}
.ye7{bottom:264.826667pt;}
.y14c{bottom:268.506667pt;}
.y96{bottom:269.786667pt;}
.y11c{bottom:270.106667pt;}
.y177{bottom:270.266667pt;}
.y14b{bottom:271.866667pt;}
.yd4{bottom:272.986667pt;}
.y1a3{bottom:275.706667pt;}
.yaf{bottom:276.186667pt;}
.y192{bottom:278.266667pt;}
.y14a{bottom:280.026667pt;}
.yc3{bottom:280.826667pt;}
.y4b{bottom:283.746667pt;}
.y7d{bottom:286.466667pt;}
.y60{bottom:287.906667pt;}
.yf9{bottom:289.026667pt;}
.y133{bottom:292.866667pt;}
.y176{bottom:293.826667pt;}
.y95{bottom:297.986667pt;}
.yd3{bottom:301.186667pt;}
.y19e{bottom:301.826667pt;}
.y11a{bottom:303.746667pt;}
.yae{bottom:304.386667pt;}
.ye6{bottom:306.466667pt;}
.y11b{bottom:309.026667pt;}
.yc2{bottom:309.186667pt;}
.y191{bottom:309.826667pt;}
.y7c{bottom:314.786667pt;}
.y5f{bottom:316.066667pt;}
.yf8{bottom:317.186667pt;}
.y175{bottom:317.346667pt;}
.y2c{bottom:317.826667pt;}
.y4a{bottom:319.906667pt;}
.y103{bottom:325.186667pt;}
.y19d{bottom:325.346667pt;}
.y93{bottom:327.106667pt;}
.y131{bottom:329.026667pt;}
.ye5{bottom:329.346667pt;}
.y119{bottom:329.666667pt;}
.y1c{bottom:330.946667pt;}
.y94{bottom:332.386667pt;}
.yad{bottom:332.546667pt;}
.y190{bottom:333.346667pt;}
.y132{bottom:334.306667pt;}
.yc1{bottom:337.346667pt;}
.yd2{bottom:337.506667pt;}
.y174{bottom:340.706667pt;}
.y7b{bottom:342.786667pt;}
.y5e{bottom:344.226667pt;}
.yf7{bottom:345.506667pt;}
.y1a2{bottom:348.706667pt;}
.y102{bottom:353.346667pt;}
.y2b{bottom:354.146667pt;}
.y92{bottom:355.426667pt;}
.y49{bottom:356.066667pt;}
.y18f{bottom:356.706667pt;}
.ye4{bottom:357.506667pt;}
.yac{bottom:360.706667pt;}
.yc0{bottom:365.506667pt;}
.yd1{bottom:365.666667pt;}
.y130{bottom:366.146667pt;}
.y148{bottom:372.066667pt;}
.y173{bottom:372.226667pt;}
.y1b{bottom:374.306667pt;}
.y149{bottom:377.346667pt;}
.y19c{bottom:380.226667pt;}
.yf6{bottom:381.666667pt;}
.y91{bottom:383.426667pt;}
.ye3{bottom:385.666667pt;}
.y7a{bottom:387.906667pt;}
.y18e{bottom:388.226667pt;}
.yab{bottom:389.026667pt;}
.y5d{bottom:389.186667pt;}
.y118{bottom:390.466667pt;}
.y48{bottom:392.226667pt;}
.y101{bottom:393.826667pt;}
.y12f{bottom:394.306667pt;}
.y172{bottom:395.746667pt;}
.y147{bottom:400.866667pt;}
.ybf{bottom:401.666667pt;}
.yd0{bottom:401.826667pt;}
.y19b{bottom:403.746667pt;}
.yf5{bottom:409.826667pt;}
.y1d{bottom:410.466667pt;}
.y18d{bottom:411.746667pt;}
.y8f{bottom:412.706667pt;}
.ye2{bottom:413.986667pt;}
.yaa{bottom:417.186667pt;}
.y1a{bottom:417.506667pt;}
.y90{bottom:417.986667pt;}
.y12e{bottom:422.626667pt;}
.y116{bottom:425.506667pt;}
.y171{bottom:427.266667pt;}
.y47{bottom:428.546667pt;}
.ybe{bottom:429.986667pt;}
.y117{bottom:430.786667pt;}
.y18c{bottom:435.266667pt;}
.yff{bottom:437.986667pt;}
.y8e{bottom:440.866667pt;}
.ye1{bottom:442.146667pt;}
.y146{bottom:442.306667pt;}
.y100{bottom:443.266667pt;}
.ya9{bottom:445.346667pt;}
.yf4{bottom:445.986667pt;}
.y78{bottom:450.146667pt;}
.y170{bottom:450.786667pt;}
.y115{bottom:451.426667pt;}
.y5b{bottom:451.586667pt;}
.y79{bottom:455.426667pt;}
.y5c{bottom:456.866667pt;}
.y12c{bottom:458.786667pt;}
.y19{bottom:460.706667pt;}
.y12d{bottom:464.066667pt;}
.y46{bottom:464.706667pt;}
.ybc{bottom:466.146667pt;}
.y2a{bottom:466.466667pt;}
.y8d{bottom:469.026667pt;}
.ye0{bottom:470.306667pt;}
.ycf{bottom:470.466667pt;}
.ybd{bottom:471.426667pt;}
.ya8{bottom:473.506667pt;}
.yf3{bottom:474.146667pt;}
.y16f{bottom:474.306667pt;}
.y3c{bottom:474.786667pt;}
.y114{bottom:477.186667pt;}
.y77{bottom:478.306667pt;}
.y5a{bottom:479.746667pt;}
.y19a{bottom:482.306667pt;}
.y18b{bottom:490.306667pt;}
.ybb{bottom:494.306667pt;}
.y12b{bottom:494.946667pt;}
.y160{bottom:496.706667pt;}
.y8b{bottom:498.146667pt;}
.ydf{bottom:498.466667pt;}
.y145{bottom:498.626667pt;}
.y45{bottom:500.866667pt;}
.y113{bottom:503.106667pt;}
.y8c{bottom:503.426667pt;}
.y29{bottom:505.373333pt;}
.y16e{bottom:505.853333pt;}
.y59{bottom:507.933333pt;}
.ya7{bottom:509.853333pt;}
.y3b{bottom:510.813333pt;}
.y18a{bottom:513.853333pt;}
.y76{bottom:514.493333pt;}
.yf2{bottom:514.653333pt;}
.yce{bottom:519.773333pt;}
.y18{bottom:520.253333pt;}
.yba{bottom:522.493333pt;}
.y12a{bottom:523.133333pt;}
.y15f{bottom:524.893333pt;}
.y8a{bottom:526.333333pt;}
.y112{bottom:528.893333pt;}
.y16d{bottom:529.373333pt;}
.yde{bottom:534.813333pt;}
.y58{bottom:536.093333pt;}
.y44{bottom:537.053333pt;}
.y189{bottom:537.373333pt;}
.ya6{bottom:538.013333pt;}
.y28{bottom:539.293333pt;}
.y144{bottom:540.093333pt;}
.y75{bottom:542.813333pt;}
.yb9{bottom:550.813333pt;}
.y3a{bottom:550.973333pt;}
.y129{bottom:551.453333pt;}
.y16c{bottom:552.733333pt;}
.y15e{bottom:553.213333pt;}
.y89{bottom:554.493333pt;}
.y111{bottom:554.813333pt;}
.yf0{bottom:558.813333pt;}
.y199{bottom:560.733333pt;}
.ydd{bottom:562.973333pt;}
.yf1{bottom:564.093333pt;}
.y57{bottom:564.413333pt;}
.ya5{bottom:566.173333pt;}
.y188{bottom:568.733333pt;}
.y74{bottom:570.973333pt;}
.y143{bottom:571.933333pt;}
.y43{bottom:573.373333pt;}
.y27{bottom:577.373333pt;}
.yb8{bottom:578.973333pt;}
.y39{bottom:579.133333pt;}
.y17{bottom:579.293333pt;}
.y110{bottom:580.733333pt;}
.y87{bottom:583.613333pt;}
.y16b{bottom:584.253333pt;}
.yef{bottom:586.973333pt;}
.y127{bottom:587.453333pt;}
.y88{bottom:588.893333pt;}
.y15c{bottom:589.213333pt;}
.ydc{bottom:591.133333pt;}
.y187{bottom:592.253333pt;}
.y128{bottom:592.733333pt;}
.ya4{bottom:594.333333pt;}
.y15d{bottom:594.493333pt;}
.y73{bottom:599.133333pt;}
.y142{bottom:600.093333pt;}
.y55{bottom:600.573333pt;}
.y56{bottom:605.853333pt;}
.yb7{bottom:607.133333pt;}
.y38{bottom:607.293333pt;}
.y162{bottom:607.613333pt;}
.y16a{bottom:607.773333pt;}
.y42{bottom:609.533333pt;}
.y86{bottom:611.773333pt;}
.yee{bottom:615.133333pt;}
.y16{bottom:615.613333pt;}
.y186{bottom:615.773333pt;}
.y26{bottom:620.573333pt;}
.y15b{bottom:626.493333pt;}
.ycd{bottom:627.293333pt;}
.y141{bottom:628.413333pt;}
.y54{bottom:628.733333pt;}
.y126{bottom:628.893333pt;}
.ya3{bottom:630.653333pt;}
.y169{bottom:631.293333pt;}
.ydb{bottom:632.573333pt;}
.y72{bottom:635.293333pt;}
.y37{bottom:635.453333pt;}
.y185{bottom:639.293333pt;}
.y85{bottom:639.933333pt;}
.yed{bottom:643.293333pt;}
.y10f{bottom:643.773333pt;}
.y161{bottom:644.733333pt;}
.y41{bottom:645.693333pt;}
.y15{bottom:651.773333pt;}
.y15a{bottom:654.653333pt;}
.y168{bottom:654.813333pt;}
.ycc{bottom:655.613333pt;}
.y53{bottom:656.893333pt;}
.ya2{bottom:658.813333pt;}
.y198{bottom:662.813333pt;}
.y71{bottom:663.613333pt;}
.y36{bottom:663.773333pt;}
.y25{bottom:663.933333pt;}
.y13f{bottom:664.413333pt;}
.y140{bottom:669.693333pt;}
.y184{bottom:670.813333pt;}
.yec{bottom:671.613333pt;}
.y125{bottom:672.893333pt;}
.y84{bottom:677.213333pt;}
.y10d{bottom:678.973333pt;}
.y40{bottom:681.853333pt;}
.y159{bottom:682.813333pt;}
.ycb{bottom:683.773333pt;}
.y10e{bottom:684.253333pt;}
.y52{bottom:685.213333pt;}
.y167{bottom:686.333333pt;}
.y14{bottom:687.933333pt;}
.y70{bottom:691.773333pt;}
.y35{bottom:691.933333pt;}
.y183{bottom:694.333333pt;}
.yeb{bottom:699.773333pt;}
.y124{bottom:701.213333pt;}
.y13e{bottom:701.693333pt;}
.ya1{bottom:703.773333pt;}
.y10c{bottom:704.733333pt;}
.y83{bottom:705.213333pt;}
.y24{bottom:707.133333pt;}
.y166{bottom:709.853333pt;}
.y158{bottom:710.973333pt;}
.yca{bottom:711.933333pt;}
.y51{bottom:713.373333pt;}
.y182{bottom:717.853333pt;}
.y3f{bottom:718.173333pt;}
.y6f{bottom:719.933333pt;}
.y34{bottom:720.093333pt;}
.y13{bottom:724.093333pt;}
.yea{bottom:727.933333pt;}
.y123{bottom:729.413333pt;}
.y13d{bottom:729.893333pt;}
.y10b{bottom:730.693333pt;}
.y165{bottom:741.413333pt;}
.y50{bottom:741.573333pt;}
.y156{bottom:747.173333pt;}
.yb6{bottom:748.133333pt;}
.y33{bottom:748.293333pt;}
.y23{bottom:750.373333pt;}
.y157{bottom:752.453333pt;}
.y3e{bottom:754.373333pt;}
.y6d{bottom:756.133333pt;}
.y10a{bottom:756.453333pt;}
.y122{bottom:757.573333pt;}
.y13c{bottom:758.053333pt;}
.y12{bottom:760.453333pt;}
.y6e{bottom:761.413333pt;}
.y164{bottom:764.773333pt;}
.y4f{bottom:769.733333pt;}
.y181{bottom:772.773333pt;}
.ya0{bottom:773.253333pt;}
.yc9{bottom:776.453333pt;}
.y32{bottom:776.613333pt;}
.y109{bottom:782.373333pt;}
.y3d{bottom:784.453333pt;}
.y121{bottom:785.733333pt;}
.y163{bottom:788.293333pt;}
.y9f{bottom:790.053333pt;}
.y22{bottom:793.733333pt;}
.y13a{bottom:794.213333pt;}
.y180{bottom:796.293333pt;}
.y11{bottom:796.613333pt;}
.y13b{bottom:799.493333pt;}
.y31{bottom:804.773333pt;}
.y6c{bottom:812.613333pt;}
.y4e{bottom:814.693333pt;}
.y108{bottom:816.133333pt;}
.yc8{bottom:817.893333pt;}
.y17f{bottom:819.813333pt;}
.y9e{bottom:830.693333pt;}
.y10{bottom:832.773333pt;}
.y139{bottom:835.653333pt;}
.y21{bottom:836.933333pt;}
.y6b{bottom:840.773333pt;}
.y107{bottom:842.053333pt;}
.y17e{bottom:843.333333pt;}
.y4{bottom:859.653333pt;}
.y1{bottom:874.853333pt;}
.yb{bottom:925.253333pt;}
.hf{height:19.620480pt;}
.he{height:25.918750pt;}
.h12{height:29.940625pt;}
.h10{height:32.106240pt;}
.hd{height:34.484480pt;}
.h13{height:38.336000pt;}
.h11{height:41.112500pt;}
.h5{height:49.348480pt;}
.h3{height:54.699520pt;}
.h14{height:55.468750pt;}
.h2{height:59.456000pt;}
.hc{height:63.656250pt;}
.ha{height:72.352000pt;}
.h4{height:72.512000pt;}
.h7{height:74.320000pt;}
.hb{height:79.076480pt;}
.h9{height:99.291520pt;}
.h1{height:133.946667pt;}
.h6{height:148.640000pt;}
.h8{height:268.506667pt;}
.h0{height:1056.000000pt;}
.w2{width:103.872000pt;}
.w1{width:108.960000pt;}
.w4{width:399.453333pt;}
.w6{width:622.813333pt;}
.w5{width:815.999976pt;}
.w3{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x5{left:9.600000pt;}
.x7{left:21.119976pt;}
.x1{left:96.032000pt;}
.x15{left:98.111988pt;}
.x16{left:99.231988pt;}
.x2b{left:100.191988pt;}
.x27{left:101.311988pt;}
.x3f{left:102.431988pt;}
.xd{left:112.031988pt;}
.x1b{left:120.031988pt;}
.x5d{left:124.511988pt;}
.x13{left:129.951976pt;}
.x14{left:134.586655pt;}
.x1c{left:144.026655pt;}
.x28{left:152.826655pt;}
.x8{left:192.186642pt;}
.x3{left:204.986667pt;}
.x19{left:208.826642pt;}
.x1a{left:213.466655pt;}
.xb{left:216.346655pt;}
.x9{left:223.386642pt;}
.x40{left:249.626642pt;}
.xc{left:258.786655pt;}
.x41{left:259.906655pt;}
.x34{left:261.506642pt;}
.x35{left:270.786655pt;}
.x3a{left:273.026642pt;}
.xf{left:281.986642pt;}
.x10{left:285.826655pt;}
.x11{left:288.066642pt;}
.x12{left:292.706655pt;}
.x42{left:296.066642pt;}
.x43{left:306.626655pt;}
.x23{left:316.226642pt;}
.x24{left:321.666655pt;}
.x29{left:325.346642pt;}
.x2c{left:327.906642pt;}
.x38{left:330.306642pt;}
.x2a{left:334.626655pt;}
.x2d{left:337.186655pt;}
.x1d{left:338.306642pt;}
.x39{left:339.586655pt;}
.x25{left:342.466642pt;}
.x1e{left:343.746655pt;}
.x26{left:351.746655pt;}
.xa{left:376.866655pt;}
.x4e{left:379.266642pt;}
.x50{left:389.506642pt;}
.x4f{left:391.426655pt;}
.x5e{left:398.306655pt;}
.x2e{left:399.906655pt;}
.x33{left:401.506655pt;}
.xe{left:402.946655pt;}
.x6{left:408.066655pt;}
.x44{left:412.866642pt;}
.x51{left:415.906642pt;}
.x5b{left:420.066655pt;}
.x45{left:424.386655pt;}
.x52{left:427.773321pt;}
.x46{left:428.893309pt;}
.x4a{left:436.093309pt;}
.x47{left:440.253321pt;}
.x48{left:446.333309pt;}
.x4b{left:447.773321pt;}
.x49{left:457.533321pt;}
.x1f{left:460.893309pt;}
.x4c{left:463.453309pt;}
.x20{left:466.013321pt;}
.x3d{left:469.053309pt;}
.x4d{left:474.813321pt;}
.x3e{left:480.413321pt;}
.x5c{left:492.413321pt;}
.x53{left:554.653309pt;}
.x54{left:566.973321pt;}
.x55{left:573.213309pt;}
.x56{left:585.693321pt;}
.x57{left:590.333309pt;}
.x58{left:602.693321pt;}
.x59{left:607.333309pt;}
.x2f{left:614.693309pt;}
.x5a{left:619.333321pt;}
.x30{left:623.973321pt;}
.x3b{left:632.773309pt;}
.x17{left:635.173309pt;}
.x18{left:639.813321pt;}
.x3c{left:643.653321pt;}
.x21{left:646.853309pt;}
.x22{left:652.453321pt;}
.x36{left:661.253309pt;}
.x37{left:670.533321pt;}
.x31{left:690.373309pt;}
.x32{left:699.653321pt;}
.x4{left:720.133321pt;}
}




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