
    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_71d0e44fa7f8e6c1c722704e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7d75117b3997318ab30aebf3.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f39f1afb3399edb53974bcbd.woff')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b111ab321c1d265e9eebefff.woff')format("woff");}.ff4{font-family:ff4;line-height:0.758789;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_59b6adf1fc07d9f79fe7b701.woff')format("woff");}.ff5{font-family:ff5;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_950d8d8a5a408372b8b68bcc.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_0a9eac6f8bb24511e0a35963.woff')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_86b6ff07a9bd608f740f6ab3.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_9d6e09af6d8e9874071c4af8.woff')format("woff");}.ff9{font-family:ff9;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v7{vertical-align:-70.560000px;}
.v2{vertical-align:-69.120000px;}
.v1{vertical-align:-67.800000px;}
.va{vertical-align:-50.400000px;}
.v6{vertical-align:-30.240000px;}
.v8{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:8.640000px;}
.v3{vertical-align:21.600000px;}
.v4{vertical-align:30.240000px;}
.v9{vertical-align:50.400000px;}
.ls52{letter-spacing:-2.880000px;}
.ls5a{letter-spacing:-2.052000px;}
.ls58{letter-spacing:-2.028000px;}
.ls54{letter-spacing:-1.926000px;}
.ls37{letter-spacing:-1.908000px;}
.ls38{letter-spacing:-1.764000px;}
.ls56{letter-spacing:-1.554000px;}
.ls15{letter-spacing:-1.512000px;}
.ls30{letter-spacing:-1.470000px;}
.ls2c{letter-spacing:-1.458000px;}
.ls14{letter-spacing:-1.440000px;}
.ls2b{letter-spacing:-1.422000px;}
.ls5f{letter-spacing:-1.314000px;}
.ls1a{letter-spacing:-1.296000px;}
.ls53{letter-spacing:-1.278000px;}
.ls2e{letter-spacing:-1.014000px;}
.ls20{letter-spacing:-0.996000px;}
.ls1f{letter-spacing:-0.972000px;}
.ls3a{letter-spacing:-0.954000px;}
.ls1e{letter-spacing:-0.936000px;}
.ls24{letter-spacing:-0.852000px;}
.ls25{letter-spacing:-0.828000px;}
.ls39{letter-spacing:-0.810000px;}
.ls45{letter-spacing:-0.792000px;}
.ls36{letter-spacing:-0.720000px;}
.ls59{letter-spacing:-0.586800px;}
.ls57{letter-spacing:-0.570600px;}
.ls17{letter-spacing:-0.507000px;}
.ls1d{letter-spacing:-0.486600px;}
.ls19{letter-spacing:-0.466800px;}
.ls1b{letter-spacing:-0.363000px;}
.ls5b{letter-spacing:-0.342600px;}
.ls18{letter-spacing:-0.322800px;}
.ls13{letter-spacing:-0.072000px;}
.ls2f{letter-spacing:-0.027780px;}
.ls55{letter-spacing:-0.020160px;}
.ls11{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.020160px;}
.ls49{letter-spacing:0.024960px;}
.ls3b{letter-spacing:0.072000px;}
.ls2d{letter-spacing:0.116400px;}
.ls0{letter-spacing:0.120000px;}
.ls22{letter-spacing:0.144000px;}
.ls3d{letter-spacing:0.164400px;}
.ls12{letter-spacing:0.288000px;}
.ls48{letter-spacing:0.360000px;}
.ls47{letter-spacing:0.372000px;}
.ls16{letter-spacing:0.426600px;}
.ls46{letter-spacing:0.442800px;}
.ls9{letter-spacing:0.466800px;}
.ls5e{letter-spacing:0.486600px;}
.ls23{letter-spacing:0.507000px;}
.ls1c{letter-spacing:0.612000px;}
.ls5d{letter-spacing:0.630000px;}
.lsa{letter-spacing:0.720000px;}
.ls34{letter-spacing:0.768000px;}
.ls35{letter-spacing:0.840000px;}
.ls51{letter-spacing:0.864000px;}
.ls3c{letter-spacing:1.368000px;}
.ls26{letter-spacing:1.440000px;}
.ls2a{letter-spacing:1.458000px;}
.ls21{letter-spacing:1.944000px;}
.lsb{letter-spacing:2.160000px;}
.ls10{letter-spacing:3.600000px;}
.ls27{letter-spacing:5.004000px;}
.ls29{letter-spacing:6.444000px;}
.ls3{letter-spacing:6.480000px;}
.lsf{letter-spacing:7.884000px;}
.ls2{letter-spacing:7.920000px;}
.ls7{letter-spacing:9.360000px;}
.ls41{letter-spacing:10.800000px;}
.ls40{letter-spacing:12.252000px;}
.ls4b{letter-spacing:13.680000px;}
.ls32{letter-spacing:16.306560px;}
.lsc{letter-spacing:16.560000px;}
.ls6{letter-spacing:18.000000px;}
.ls44{letter-spacing:19.080000px;}
.lse{letter-spacing:19.404000px;}
.ls43{letter-spacing:20.880000px;}
.ls4e{letter-spacing:23.760000px;}
.ls4f{letter-spacing:30.706560px;}
.ls8{letter-spacing:38.124000px;}
.ls1{letter-spacing:43.666560px;}
.ls50{letter-spacing:43.920000px;}
.ls5c{letter-spacing:46.800000px;}
.ls42{letter-spacing:49.860000px;}
.ls4d{letter-spacing:60.946560px;}
.ls28{letter-spacing:162.000000px;}
.ls3f{letter-spacing:199.186560px;}
.ls5{letter-spacing:199.198560px;}
.ls31{letter-spacing:199.306560px;}
.ls4a{letter-spacing:209.664000px;}
.ls4{letter-spacing:329.184000px;}
.ls3e{letter-spacing:342.144000px;}
.ls4c{letter-spacing:513.480000px;}
.ls33{letter-spacing:1006.116000px;}
.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;}
}
.ws22{word-spacing:-60.624000px;}
.ws4{word-spacing:-60.480000px;}
.ws1{word-spacing:-36.288000px;}
.ws2{word-spacing:-35.964000px;}
.ws36{word-spacing:-34.191936px;}
.ws21{word-spacing:-34.110720px;}
.ws14{word-spacing:-17.064000px;}
.ws1b{word-spacing:-16.578000px;}
.ws19{word-spacing:-16.560000px;}
.ws2d{word-spacing:-16.524000px;}
.ws3d{word-spacing:-15.750000px;}
.wse{word-spacing:-15.732000px;}
.ws16{word-spacing:-15.627000px;}
.ws3e{word-spacing:-15.606600px;}
.ws30{word-spacing:-15.598800px;}
.ws7{word-spacing:-15.586800px;}
.ws6{word-spacing:-15.582600px;}
.ws2e{word-spacing:-15.284400px;}
.ws1f{word-spacing:-15.272400px;}
.ws15{word-spacing:-15.264000px;}
.ws2c{word-spacing:-15.228000px;}
.ws1e{word-spacing:-15.156000px;}
.ws8{word-spacing:-15.140160px;}
.ws23{word-spacing:-15.128220px;}
.ws0{word-spacing:-15.120000px;}
.ws35{word-spacing:-15.099840px;}
.ws25{word-spacing:-15.084000px;}
.wsa{word-spacing:-14.797200px;}
.ws3c{word-spacing:-14.777400px;}
.wsd{word-spacing:-14.757000px;}
.wsb{word-spacing:-14.653200px;}
.wsf{word-spacing:-14.633400px;}
.ws9{word-spacing:-14.613000px;}
.ws38{word-spacing:-14.585400px;}
.ws3a{word-spacing:-14.569200px;}
.ws2f{word-spacing:-14.328000px;}
.ws2a{word-spacing:-14.310000px;}
.ws17{word-spacing:-14.304000px;}
.ws18{word-spacing:-14.292000px;}
.ws11{word-spacing:-14.184000px;}
.ws2b{word-spacing:-14.166000px;}
.ws13{word-spacing:-14.160000px;}
.ws12{word-spacing:-14.148000px;}
.ws20{word-spacing:-14.142000px;}
.ws33{word-spacing:-13.842000px;}
.wsc{word-spacing:-13.824000px;}
.ws3f{word-spacing:-13.806000px;}
.ws1c{word-spacing:-13.698000px;}
.ws24{word-spacing:-13.686000px;}
.ws3{word-spacing:-13.680000px;}
.ws1d{word-spacing:-13.662000px;}
.ws5{word-spacing:-13.644000px;}
.ws37{word-spacing:-13.602000px;}
.ws29{word-spacing:-13.356000px;}
.ws28{word-spacing:-13.212000px;}
.ws34{word-spacing:-13.194000px;}
.ws39{word-spacing:-13.128000px;}
.ws3b{word-spacing:-13.104000px;}
.ws32{word-spacing:-12.240000px;}
.ws31{word-spacing:-10.584000px;}
.ws27{word-spacing:-10.440000px;}
.ws10{word-spacing:-9.720000px;}
.ws26{word-spacing:-9.000000px;}
.ws1a{word-spacing:0.000000px;}
._24{margin-left:-4.419840px;}
._6{margin-left:-2.957280px;}
._0{margin-left:-1.935360px;}
._1{width:1.270080px;}
._4{width:2.973120px;}
._13{width:4.107120px;}
._14{width:5.607360px;}
._8{width:7.056480px;}
._9{width:8.485440px;}
._1e{width:10.257120px;}
._11{width:11.741760px;}
._12{width:12.905760px;}
._20{width:13.996800px;}
._b{width:16.362624px;}
._a{width:17.792208px;}
._c{width:18.885744px;}
._10{width:19.915200px;}
._f{width:20.975040px;}
._1f{width:22.067040px;}
._17{width:23.433120px;}
._16{width:24.546720px;}
._15{width:25.723680px;}
._1d{width:27.135840px;}
._21{width:28.185600px;}
._1c{width:29.532000px;}
._28{width:31.628640px;}
._29{width:33.513600px;}
._22{width:35.268960px;}
._1b{width:37.186080px;}
._1a{width:38.912160px;}
._27{width:40.242096px;}
._18{width:41.668320px;}
._19{width:43.003680px;}
._2d{width:44.221920px;}
._2b{width:45.275040px;}
._2a{width:46.583040px;}
._e{width:47.798880px;}
._d{width:48.891360px;}
._2c{width:50.335680px;}
._30{width:51.938400px;}
._25{width:53.123520px;}
._26{width:54.139680px;}
._2e{width:98.018400px;}
._2f{width:99.220320px;}
._2{width:155.416800px;}
._23{width:156.438720px;}
._5{width:163.076160px;}
._3{width:201.060000px;}
._7{width:246.168000px;}
.fc3{color:transparent;}
.fc2{color:rgb(79,129,189);}
.fc4{color:rgb(34,34,34);}
.fc1{color:rgb(31,31,31);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs5{font-size:39.024000px;}
.fs0{font-size:60.480000px;}
.fs3{font-size:60.624000px;}
.fs6{font-size:72.000000px;}
.fs1{font-size:144.000000px;}
.fs2{font-size:144.144000px;}
.y0{bottom:0.000000px;}
.ya9{bottom:3.060000px;}
.ye1{bottom:3.276000px;}
.yc7{bottom:3.345000px;}
.y11e{bottom:3.390000px;}
.y11a{bottom:3.420000px;}
.y10b{bottom:3.450000px;}
.yf7{bottom:3.525000px;}
.yab{bottom:11.370000px;}
.ye9{bottom:11.916000px;}
.ya7{bottom:20.010000px;}
.ye0{bottom:20.556000px;}
.yc6{bottom:20.625000px;}
.y11d{bottom:20.670000px;}
.y119{bottom:20.700000px;}
.y10a{bottom:20.775000px;}
.yf6{bottom:20.805000px;}
.ya5{bottom:28.650000px;}
.ye8{bottom:29.196000px;}
.y10d{bottom:29.415000px;}
.yfd{bottom:29.445000px;}
.ya6{bottom:37.290000px;}
.ydf{bottom:37.836000px;}
.yc5{bottom:37.905000px;}
.y118{bottom:37.980000px;}
.y109{bottom:38.055000px;}
.yf5{bottom:38.085000px;}
.yaa{bottom:45.930000px;}
.ye7{bottom:46.476000px;}
.y102{bottom:46.695000px;}
.yfc{bottom:46.725000px;}
.ya8{bottom:54.570000px;}
.yde{bottom:55.110000px;}
.yc4{bottom:55.185000px;}
.y117{bottom:55.260000px;}
.y105{bottom:55.335000px;}
.yf4{bottom:55.365000px;}
.y4{bottom:57.240000px;}
.ye6{bottom:63.750000px;}
.ycd{bottom:63.825000px;}
.y101{bottom:63.975000px;}
.yfb{bottom:64.005000px;}
.y112{bottom:72.180000px;}
.y104{bottom:72.255000px;}
.ydd{bottom:72.390000px;}
.yc3{bottom:72.465000px;}
.yf3{bottom:72.645000px;}
.y3{bottom:74.556000px;}
.y100{bottom:80.895000px;}
.yd5{bottom:81.030000px;}
.ycb{bottom:81.105000px;}
.yed{bottom:81.285000px;}
.y111{bottom:89.460000px;}
.y103{bottom:89.535000px;}
.ydc{bottom:89.670000px;}
.yc2{bottom:89.745000px;}
.yeb{bottom:89.925000px;}
.y137{bottom:92.916000px;}
.y3d{bottom:94.356000px;}
.yff{bottom:98.175000px;}
.yd4{bottom:98.355000px;}
.yca{bottom:98.385000px;}
.yec{bottom:98.565000px;}
.ya1{bottom:99.036000px;}
.y175{bottom:100.836000px;}
.yce{bottom:102.600000px;}
.y68{bottom:104.436000px;}
.y110{bottom:106.770000px;}
.y108{bottom:106.815000px;}
.yd1{bottom:106.995000px;}
.yc1{bottom:107.070000px;}
.yf2{bottom:107.205000px;}
.y195{bottom:108.396000px;}
.y136{bottom:110.196000px;}
.y3c{bottom:111.636000px;}
.ya0{bottom:112.716000px;}
.y10c{bottom:115.455000px;}
.ycf{bottom:115.635000px;}
.yb5{bottom:115.710000px;}
.yfa{bottom:115.890000px;}
.y174{bottom:118.116000px;}
.y67{bottom:121.716000px;}
.y10f{bottom:124.050000px;}
.y107{bottom:124.095000px;}
.yd0{bottom:124.275000px;}
.yc0{bottom:124.350000px;}
.yf1{bottom:124.530000px;}
.y194{bottom:125.676000px;}
.y135{bottom:127.476000px;}
.y3b{bottom:128.916000px;}
.yf9{bottom:132.810000px;}
.yd3{bottom:132.915000px;}
.yb4{bottom:132.990000px;}
.y173{bottom:135.396000px;}
.y66{bottom:138.996000px;}
.y116{bottom:141.330000px;}
.y106{bottom:141.405000px;}
.yf0{bottom:141.450000px;}
.ydb{bottom:141.555000px;}
.ybf{bottom:141.630000px;}
.y193{bottom:142.596000px;}
.y134{bottom:144.396000px;}
.y3a{bottom:146.196000px;}
.yb3{bottom:149.910000px;}
.yf8{bottom:150.090000px;}
.yd2{bottom:150.195000px;}
.y13f{bottom:151.950000px;}
.y172{bottom:152.310000px;}
.yaf{bottom:158.550000px;}
.y115{bottom:158.610000px;}
.yef{bottom:158.730000px;}
.yda{bottom:158.835000px;}
.y192{bottom:159.870000px;}
.y133{bottom:161.670000px;}
.y39{bottom:163.470000px;}
.y65{bottom:163.830000px;}
.yad{bottom:167.190000px;}
.ye5{bottom:167.475000px;}
.y13e{bottom:169.230000px;}
.y171{bottom:169.590000px;}
.yd9{bottom:175.755000px;}
.yae{bottom:175.830000px;}
.y114{bottom:175.890000px;}
.yee{bottom:176.010000px;}
.y191{bottom:177.150000px;}
.y132{bottom:178.950000px;}
.y38{bottom:180.750000px;}
.ye4{bottom:184.395000px;}
.yb2{bottom:184.470000px;}
.y13d{bottom:186.510000px;}
.y170{bottom:186.870000px;}
.yd8{bottom:193.035000px;}
.ybe{bottom:193.110000px;}
.y113{bottom:193.170000px;}
.y190{bottom:194.475000px;}
.y131{bottom:196.275000px;}
.y37{bottom:197.715000px;}
.y64{bottom:198.075000px;}
.ye3{bottom:201.675000px;}
.yb1{bottom:201.750000px;}
.y13c{bottom:203.835000px;}
.y16f{bottom:204.195000px;}
.yd7{bottom:210.315000px;}
.ybd{bottom:210.390000px;}
.y18f{bottom:211.755000px;}
.y130{bottom:213.555000px;}
.y63{bottom:215.355000px;}
.ye2{bottom:218.985000px;}
.yb0{bottom:219.030000px;}
.y13b{bottom:221.115000px;}
.y16e{bottom:221.475000px;}
.yd6{bottom:227.625000px;}
.ybc{bottom:227.700000px;}
.y18e{bottom:229.035000px;}
.y12f{bottom:230.835000px;}
.y36{bottom:232.275000px;}
.y62{bottom:232.635000px;}
.yc9{bottom:236.340000px;}
.y13a{bottom:238.395000px;}
.y16d{bottom:238.755000px;}
.ybb{bottom:244.980000px;}
.y18d{bottom:246.315000px;}
.y35{bottom:249.555000px;}
.y61{bottom:249.915000px;}
.yc8{bottom:253.620000px;}
.y12e{bottom:255.675000px;}
.y16c{bottom:256.035000px;}
.yba{bottom:262.260000px;}
.y18c{bottom:263.595000px;}
.y34{bottom:266.835000px;}
.ycc{bottom:270.900000px;}
.y12d{bottom:272.955000px;}
.y16b{bottom:273.315000px;}
.y60{bottom:274.755000px;}
.yb9{bottom:279.540000px;}
.y18b{bottom:280.875000px;}
.y33{bottom:283.755000px;}
.y12c{bottom:290.235000px;}
.y16a{bottom:290.595000px;}
.y5f{bottom:292.035000px;}
.yb8{bottom:296.820000px;}
.y18a{bottom:298.155000px;}
.y32{bottom:301.035000px;}
.y12b{bottom:307.155000px;}
.y169{bottom:307.875000px;}
.y5e{bottom:309.315000px;}
.yb7{bottom:314.100000px;}
.y189{bottom:315.435000px;}
.y31{bottom:318.315000px;}
.y12a{bottom:324.465000px;}
.y168{bottom:324.825000px;}
.y5d{bottom:326.625000px;}
.yb6{bottom:331.380000px;}
.y188{bottom:332.385000px;}
.y30{bottom:335.625000px;}
.y129{bottom:341.745000px;}
.yac{bottom:344.880000px;}
.y5c{bottom:347.865000px;}
.y187{bottom:349.665000px;}
.y2f{bottom:352.905000px;}
.y128{bottom:359.025000px;}
.y167{bottom:359.385000px;}
.y5b{bottom:365.145000px;}
.y186{bottom:366.945000px;}
.y2e{bottom:370.185000px;}
.y127{bottom:376.305000px;}
.y166{bottom:376.665000px;}
.y185{bottom:384.225000px;}
.y2d{bottom:387.465000px;}
.y5a{bottom:389.985000px;}
.y126{bottom:393.585000px;}
.y165{bottom:393.945000px;}
.y184{bottom:401.505000px;}
.y2c{bottom:404.745000px;}
.y59{bottom:407.265000px;}
.y125{bottom:410.865000px;}
.y164{bottom:411.225000px;}
.y183{bottom:418.785000px;}
.y2b{bottom:422.025000px;}
.y58{bottom:424.545000px;}
.y124{bottom:428.145000px;}
.y163{bottom:428.505000px;}
.y182{bottom:436.065000px;}
.y2a{bottom:439.305000px;}
.y123{bottom:445.425000px;}
.y162{bottom:445.785000px;}
.y57{bottom:449.430000px;}
.y181{bottom:453.390000px;}
.y29{bottom:456.270000px;}
.y122{bottom:462.750000px;}
.y161{bottom:463.110000px;}
.y56{bottom:466.710000px;}
.y180{bottom:470.670000px;}
.y28{bottom:473.550000px;}
.y121{bottom:480.030000px;}
.y160{bottom:480.390000px;}
.y55{bottom:483.630000px;}
.y17f{bottom:487.950000px;}
.y27{bottom:490.830000px;}
.y120{bottom:496.950000px;}
.y139{bottom:497.310000px;}
.y15f{bottom:497.670000px;}
.y54{bottom:500.910000px;}
.y17e{bottom:505.230000px;}
.y26{bottom:508.110000px;}
.y138{bottom:514.230000px;}
.y15e{bottom:514.950000px;}
.y17d{bottom:522.150000px;}
.y25{bottom:525.390000px;}
.y53{bottom:525.750000px;}
.y11f{bottom:531.150000px;}
.y15d{bottom:532.230000px;}
.y17c{bottom:539.430000px;}
.y24{bottom:542.670000px;}
.y52{bottom:543.030000px;}
.y11c{bottom:546.120000px;}
.y15c{bottom:549.150000px;}
.y17b{bottom:556.710000px;}
.y23{bottom:559.950000px;}
.y51{bottom:560.310000px;}
.y15b{bottom:566.430000px;}
.y17a{bottom:574.020000px;}
.y22{bottom:577.260000px;}
.y50{bottom:577.620000px;}
.y15a{bottom:583.740000px;}
.y11b{bottom:585.900000px;}
.y179{bottom:591.300000px;}
.y21{bottom:594.540000px;}
.y4f{bottom:594.900000px;}
.y159{bottom:601.020000px;}
.y10e{bottom:603.000000px;}
.y178{bottom:608.580000px;}
.y20{bottom:611.820000px;}
.y4e{bottom:612.180000px;}
.y158{bottom:618.300000px;}
.y177{bottom:625.860000px;}
.y1f{bottom:629.100000px;}
.y4d{bottom:629.460000px;}
.y157{bottom:635.580000px;}
.y9f{bottom:643.140000px;}
.y1e{bottom:646.020000px;}
.y4c{bottom:646.380000px;}
.y156{bottom:652.860000px;}
.y9e{bottom:660.420000px;}
.y1d{bottom:663.300000px;}
.y4b{bottom:663.660000px;}
.y155{bottom:670.140000px;}
.y9d{bottom:677.700000px;}
.y1c{bottom:680.580000px;}
.y4a{bottom:680.940000px;}
.y81{bottom:685.260000px;}
.y154{bottom:687.420000px;}
.ya4{bottom:690.840000px;}
.y9c{bottom:694.980000px;}
.y1b{bottom:697.860000px;}
.y49{bottom:698.220000px;}
.y80{bottom:702.570000px;}
.y153{bottom:704.730000px;}
.y9b{bottom:712.290000px;}
.y1a{bottom:715.170000px;}
.y48{bottom:715.530000px;}
.y7f{bottom:719.850000px;}
.y152{bottom:722.010000px;}
.y9a{bottom:729.210000px;}
.y19{bottom:732.450000px;}
.y47{bottom:732.810000px;}
.y7e{bottom:737.130000px;}
.y151{bottom:739.290000px;}
.y99{bottom:746.490000px;}
.y18{bottom:749.730000px;}
.y46{bottom:750.090000px;}
.y7d{bottom:754.410000px;}
.y150{bottom:756.210000px;}
.y98{bottom:763.770000px;}
.y17{bottom:767.010000px;}
.y45{bottom:767.370000px;}
.y7c{bottom:771.330000px;}
.y14f{bottom:773.490000px;}
.y97{bottom:781.050000px;}
.y16{bottom:784.290000px;}
.y44{bottom:784.650000px;}
.y14e{bottom:790.770000px;}
.y96{bottom:798.330000px;}
.y15{bottom:801.570000px;}
.y43{bottom:801.930000px;}
.y7b{bottom:806.250000px;}
.y14d{bottom:808.050000px;}
.yfe{bottom:810.720000px;}
.y95{bottom:815.610000px;}
.y14{bottom:818.850000px;}
.y42{bottom:819.210000px;}
.y7a{bottom:823.530000px;}
.y14c{bottom:825.375000px;}
.y94{bottom:832.935000px;}
.y13{bottom:836.175000px;}
.y41{bottom:836.535000px;}
.y79{bottom:840.495000px;}
.y14b{bottom:842.655000px;}
.y93{bottom:850.215000px;}
.y12{bottom:853.095000px;}
.y40{bottom:853.455000px;}
.y78{bottom:857.775000px;}
.y14a{bottom:859.935000px;}
.y176{bottom:867.135000px;}
.y92{bottom:867.495000px;}
.y11{bottom:870.375000px;}
.y3f{bottom:870.735000px;}
.y77{bottom:875.055000px;}
.y149{bottom:877.215000px;}
.y91{bottom:884.775000px;}
.y10{bottom:887.655000px;}
.y3e{bottom:888.015000px;}
.y76{bottom:892.335000px;}
.y148{bottom:894.495000px;}
.y90{bottom:902.055000px;}
.yf{bottom:904.935000px;}
.y75{bottom:909.615000px;}
.y147{bottom:911.775000px;}
.y8f{bottom:918.975000px;}
.ye{bottom:922.215000px;}
.y146{bottom:929.055000px;}
.y74{bottom:934.455000px;}
.y8e{bottom:936.255000px;}
.y145{bottom:945.975000px;}
.y73{bottom:951.765000px;}
.y8d{bottom:953.565000px;}
.yd{bottom:956.805000px;}
.y144{bottom:963.285000px;}
.yea{bottom:966.600000px;}
.y72{bottom:969.045000px;}
.y8c{bottom:970.845000px;}
.yc{bottom:974.445000px;}
.y143{bottom:980.565000px;}
.y71{bottom:986.325000px;}
.y8b{bottom:988.125000px;}
.yb{bottom:991.725000px;}
.y142{bottom:997.845000px;}
.y70{bottom:1003.245000px;}
.y8a{bottom:1005.405000px;}
.ya{bottom:1009.005000px;}
.y141{bottom:1015.125000px;}
.y6f{bottom:1020.525000px;}
.y89{bottom:1022.685000px;}
.y9{bottom:1026.285000px;}
.y140{bottom:1032.405000px;}
.y88{bottom:1039.965000px;}
.y6e{bottom:1041.765000px;}
.y8{bottom:1043.205000px;}
.y87{bottom:1057.245000px;}
.y6d{bottom:1059.405000px;}
.y7{bottom:1060.485000px;}
.y86{bottom:1074.525000px;}
.y6{bottom:1082.850000px;}
.y6c{bottom:1084.290000px;}
.y85{bottom:1091.850000px;}
.y6b{bottom:1101.570000px;}
.y84{bottom:1109.130000px;}
.y6a{bottom:1118.850000px;}
.y5{bottom:1124.250000px;}
.ya3{bottom:1125.690000px;}
.y83{bottom:1126.050000px;}
.y69{bottom:1136.130000px;}
.ya2{bottom:1142.970000px;}
.y82{bottom:1143.330000px;}
.y2{bottom:1169.250000px;}
.y1{bottom:1195.170000px;}
.h16{height:34.560000px;}
.h2{height:59.357813px;}
.h9{height:59.499141px;}
.hd{height:59.758594px;}
.h10{height:59.899922px;}
.h6{height:60.952500px;}
.h5{height:61.097625px;}
.h7{height:62.163910px;}
.hc{height:62.960625px;}
.he{height:68.760000px;}
.h15{height:70.664062px;}
.h17{height:88.558594px;}
.h8{height:89.597812px;}
.hb{height:89.739141px;}
.ha{height:89.919141px;}
.h3{height:141.328125px;}
.h4{height:141.469453px;}
.h13{height:155.160000px;}
.h12{height:189.720000px;}
.h14{height:207.000000px;}
.h11{height:241.560000px;}
.hf{height:344.880000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:35.640000px;}
.w5{width:80.280000px;}
.w8{width:95.400000px;}
.w9{width:100.080000px;}
.w7{width:105.480000px;}
.w4{width:107.640000px;}
.wa{width:115.200000px;}
.w6{width:155.520000px;}
.wb{width:799.200000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x15{left:8.316000px;}
.x2b{left:9.570000px;}
.x27{left:10.875000px;}
.x1f{left:12.780000px;}
.x1d{left:14.145000px;}
.x1a{left:16.275000px;}
.x34{left:17.565000px;}
.x21{left:18.570000px;}
.x28{left:19.905000px;}
.x17{left:21.996000px;}
.x2a{left:23.580000px;}
.x29{left:25.380000px;}
.x30{left:26.745000px;}
.x1b{left:28.155000px;}
.x26{left:30.675000px;}
.x35{left:32.685000px;}
.x25{left:34.125000px;}
.x32{left:35.385000px;}
.x31{left:36.615000px;}
.x18{left:37.836000px;}
.x2e{left:40.035000px;}
.x23{left:41.295000px;}
.x2d{left:43.125000px;}
.x14{left:46.440000px;}
.x33{left:47.730000px;}
.x2c{left:49.965000px;}
.x1{left:54.035987px;}
.x2{left:57.635987px;}
.x12{left:63.035987px;}
.x2f{left:77.550000px;}
.xd{left:81.035987px;}
.x16{left:82.800000px;}
.xe{left:87.875987px;}
.x38{left:94.715987px;}
.x5{left:140.111987px;}
.x6{left:143.711987px;}
.x3{left:145.151987px;}
.x7{left:185.114987px;}
.x19{left:191.160000px;}
.x8{left:236.624987px;}
.x1c{left:272.160000px;}
.x13{left:364.109987px;}
.x1e{left:428.400000px;}
.x4{left:446.579987px;}
.xf{left:473.579987px;}
.xb{left:488.699987px;}
.xa{left:497.699987px;}
.x10{left:507.419987px;}
.x37{left:514.259987px;}
.x20{left:534.600000px;}
.xc{left:540.929987px;}
.x9{left:557.489987px;}
.x22{left:630.720000px;}
.x36{left:656.174987px;}
.x24{left:731.520000px;}
.x11{left:775.364987px;}
@media print{
.v7{vertical-align:-62.720000pt;}
.v2{vertical-align:-61.440000pt;}
.v1{vertical-align:-60.266667pt;}
.va{vertical-align:-44.800000pt;}
.v6{vertical-align:-26.880000pt;}
.v8{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:7.680000pt;}
.v3{vertical-align:19.200000pt;}
.v4{vertical-align:26.880000pt;}
.v9{vertical-align:44.800000pt;}
.ls52{letter-spacing:-2.560000pt;}
.ls5a{letter-spacing:-1.824000pt;}
.ls58{letter-spacing:-1.802667pt;}
.ls54{letter-spacing:-1.712000pt;}
.ls37{letter-spacing:-1.696000pt;}
.ls38{letter-spacing:-1.568000pt;}
.ls56{letter-spacing:-1.381333pt;}
.ls15{letter-spacing:-1.344000pt;}
.ls30{letter-spacing:-1.306667pt;}
.ls2c{letter-spacing:-1.296000pt;}
.ls14{letter-spacing:-1.280000pt;}
.ls2b{letter-spacing:-1.264000pt;}
.ls5f{letter-spacing:-1.168000pt;}
.ls1a{letter-spacing:-1.152000pt;}
.ls53{letter-spacing:-1.136000pt;}
.ls2e{letter-spacing:-0.901333pt;}
.ls20{letter-spacing:-0.885333pt;}
.ls1f{letter-spacing:-0.864000pt;}
.ls3a{letter-spacing:-0.848000pt;}
.ls1e{letter-spacing:-0.832000pt;}
.ls24{letter-spacing:-0.757333pt;}
.ls25{letter-spacing:-0.736000pt;}
.ls39{letter-spacing:-0.720000pt;}
.ls45{letter-spacing:-0.704000pt;}
.ls36{letter-spacing:-0.640000pt;}
.ls59{letter-spacing:-0.521600pt;}
.ls57{letter-spacing:-0.507200pt;}
.ls17{letter-spacing:-0.450667pt;}
.ls1d{letter-spacing:-0.432533pt;}
.ls19{letter-spacing:-0.414933pt;}
.ls1b{letter-spacing:-0.322667pt;}
.ls5b{letter-spacing:-0.304533pt;}
.ls18{letter-spacing:-0.286933pt;}
.ls13{letter-spacing:-0.064000pt;}
.ls2f{letter-spacing:-0.024693pt;}
.ls55{letter-spacing:-0.017920pt;}
.ls11{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.017920pt;}
.ls49{letter-spacing:0.022187pt;}
.ls3b{letter-spacing:0.064000pt;}
.ls2d{letter-spacing:0.103467pt;}
.ls0{letter-spacing:0.106667pt;}
.ls22{letter-spacing:0.128000pt;}
.ls3d{letter-spacing:0.146133pt;}
.ls12{letter-spacing:0.256000pt;}
.ls48{letter-spacing:0.320000pt;}
.ls47{letter-spacing:0.330667pt;}
.ls16{letter-spacing:0.379200pt;}
.ls46{letter-spacing:0.393600pt;}
.ls9{letter-spacing:0.414933pt;}
.ls5e{letter-spacing:0.432533pt;}
.ls23{letter-spacing:0.450667pt;}
.ls1c{letter-spacing:0.544000pt;}
.ls5d{letter-spacing:0.560000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls34{letter-spacing:0.682667pt;}
.ls35{letter-spacing:0.746667pt;}
.ls51{letter-spacing:0.768000pt;}
.ls3c{letter-spacing:1.216000pt;}
.ls26{letter-spacing:1.280000pt;}
.ls2a{letter-spacing:1.296000pt;}
.ls21{letter-spacing:1.728000pt;}
.lsb{letter-spacing:1.920000pt;}
.ls10{letter-spacing:3.200000pt;}
.ls27{letter-spacing:4.448000pt;}
.ls29{letter-spacing:5.728000pt;}
.ls3{letter-spacing:5.760000pt;}
.lsf{letter-spacing:7.008000pt;}
.ls2{letter-spacing:7.040000pt;}
.ls7{letter-spacing:8.320000pt;}
.ls41{letter-spacing:9.600000pt;}
.ls40{letter-spacing:10.890667pt;}
.ls4b{letter-spacing:12.160000pt;}
.ls32{letter-spacing:14.494720pt;}
.lsc{letter-spacing:14.720000pt;}
.ls6{letter-spacing:16.000000pt;}
.ls44{letter-spacing:16.960000pt;}
.lse{letter-spacing:17.248000pt;}
.ls43{letter-spacing:18.560000pt;}
.ls4e{letter-spacing:21.120000pt;}
.ls4f{letter-spacing:27.294720pt;}
.ls8{letter-spacing:33.888000pt;}
.ls1{letter-spacing:38.814720pt;}
.ls50{letter-spacing:39.040000pt;}
.ls5c{letter-spacing:41.600000pt;}
.ls42{letter-spacing:44.320000pt;}
.ls4d{letter-spacing:54.174720pt;}
.ls28{letter-spacing:144.000000pt;}
.ls3f{letter-spacing:177.054720pt;}
.ls5{letter-spacing:177.065387pt;}
.ls31{letter-spacing:177.161387pt;}
.ls4a{letter-spacing:186.368000pt;}
.ls4{letter-spacing:292.608000pt;}
.ls3e{letter-spacing:304.128000pt;}
.ls4c{letter-spacing:456.426667pt;}
.ls33{letter-spacing:894.325333pt;}
.ws22{word-spacing:-53.888000pt;}
.ws4{word-spacing:-53.760000pt;}
.ws1{word-spacing:-32.256000pt;}
.ws2{word-spacing:-31.968000pt;}
.ws36{word-spacing:-30.392832pt;}
.ws21{word-spacing:-30.320640pt;}
.ws14{word-spacing:-15.168000pt;}
.ws1b{word-spacing:-14.736000pt;}
.ws19{word-spacing:-14.720000pt;}
.ws2d{word-spacing:-14.688000pt;}
.ws3d{word-spacing:-14.000000pt;}
.wse{word-spacing:-13.984000pt;}
.ws16{word-spacing:-13.890667pt;}
.ws3e{word-spacing:-13.872533pt;}
.ws30{word-spacing:-13.865600pt;}
.ws7{word-spacing:-13.854933pt;}
.ws6{word-spacing:-13.851200pt;}
.ws2e{word-spacing:-13.586133pt;}
.ws1f{word-spacing:-13.575467pt;}
.ws15{word-spacing:-13.568000pt;}
.ws2c{word-spacing:-13.536000pt;}
.ws1e{word-spacing:-13.472000pt;}
.ws8{word-spacing:-13.457920pt;}
.ws23{word-spacing:-13.447307pt;}
.ws0{word-spacing:-13.440000pt;}
.ws35{word-spacing:-13.422080pt;}
.ws25{word-spacing:-13.408000pt;}
.wsa{word-spacing:-13.153067pt;}
.ws3c{word-spacing:-13.135467pt;}
.wsd{word-spacing:-13.117333pt;}
.wsb{word-spacing:-13.025067pt;}
.wsf{word-spacing:-13.007467pt;}
.ws9{word-spacing:-12.989333pt;}
.ws38{word-spacing:-12.964800pt;}
.ws3a{word-spacing:-12.950400pt;}
.ws2f{word-spacing:-12.736000pt;}
.ws2a{word-spacing:-12.720000pt;}
.ws17{word-spacing:-12.714667pt;}
.ws18{word-spacing:-12.704000pt;}
.ws11{word-spacing:-12.608000pt;}
.ws2b{word-spacing:-12.592000pt;}
.ws13{word-spacing:-12.586667pt;}
.ws12{word-spacing:-12.576000pt;}
.ws20{word-spacing:-12.570667pt;}
.ws33{word-spacing:-12.304000pt;}
.wsc{word-spacing:-12.288000pt;}
.ws3f{word-spacing:-12.272000pt;}
.ws1c{word-spacing:-12.176000pt;}
.ws24{word-spacing:-12.165333pt;}
.ws3{word-spacing:-12.160000pt;}
.ws1d{word-spacing:-12.144000pt;}
.ws5{word-spacing:-12.128000pt;}
.ws37{word-spacing:-12.090667pt;}
.ws29{word-spacing:-11.872000pt;}
.ws28{word-spacing:-11.744000pt;}
.ws34{word-spacing:-11.728000pt;}
.ws39{word-spacing:-11.669333pt;}
.ws3b{word-spacing:-11.648000pt;}
.ws32{word-spacing:-10.880000pt;}
.ws31{word-spacing:-9.408000pt;}
.ws27{word-spacing:-9.280000pt;}
.ws10{word-spacing:-8.640000pt;}
.ws26{word-spacing:-8.000000pt;}
.ws1a{word-spacing:0.000000pt;}
._24{margin-left:-3.928747pt;}
._6{margin-left:-2.628693pt;}
._0{margin-left:-1.720320pt;}
._1{width:1.128960pt;}
._4{width:2.642773pt;}
._13{width:3.650773pt;}
._14{width:4.984320pt;}
._8{width:6.272427pt;}
._9{width:7.542613pt;}
._1e{width:9.117440pt;}
._11{width:10.437120pt;}
._12{width:11.471787pt;}
._20{width:12.441600pt;}
._b{width:14.544555pt;}
._a{width:15.815296pt;}
._c{width:16.787328pt;}
._10{width:17.702400pt;}
._f{width:18.644480pt;}
._1f{width:19.615147pt;}
._17{width:20.829440pt;}
._16{width:21.819307pt;}
._15{width:22.865493pt;}
._1d{width:24.120747pt;}
._21{width:25.053867pt;}
._1c{width:26.250667pt;}
._28{width:28.114347pt;}
._29{width:29.789867pt;}
._22{width:31.350187pt;}
._1b{width:33.054293pt;}
._1a{width:34.588587pt;}
._27{width:35.770752pt;}
._18{width:37.038507pt;}
._19{width:38.225493pt;}
._2d{width:39.308373pt;}
._2b{width:40.244480pt;}
._2a{width:41.407147pt;}
._e{width:42.487893pt;}
._d{width:43.458987pt;}
._2c{width:44.742827pt;}
._30{width:46.167467pt;}
._25{width:47.220907pt;}
._26{width:48.124160pt;}
._2e{width:87.127467pt;}
._2f{width:88.195840pt;}
._2{width:138.148267pt;}
._23{width:139.056640pt;}
._5{width:144.956587pt;}
._3{width:178.720000pt;}
._7{width:218.816000pt;}
.fs4{font-size:34.560000pt;}
.fs5{font-size:34.688000pt;}
.fs0{font-size:53.760000pt;}
.fs3{font-size:53.888000pt;}
.fs6{font-size:64.000000pt;}
.fs1{font-size:128.000000pt;}
.fs2{font-size:128.128000pt;}
.y0{bottom:0.000000pt;}
.ya9{bottom:2.720000pt;}
.ye1{bottom:2.912000pt;}
.yc7{bottom:2.973333pt;}
.y11e{bottom:3.013333pt;}
.y11a{bottom:3.040000pt;}
.y10b{bottom:3.066667pt;}
.yf7{bottom:3.133333pt;}
.yab{bottom:10.106667pt;}
.ye9{bottom:10.592000pt;}
.ya7{bottom:17.786667pt;}
.ye0{bottom:18.272000pt;}
.yc6{bottom:18.333333pt;}
.y11d{bottom:18.373333pt;}
.y119{bottom:18.400000pt;}
.y10a{bottom:18.466667pt;}
.yf6{bottom:18.493333pt;}
.ya5{bottom:25.466667pt;}
.ye8{bottom:25.952000pt;}
.y10d{bottom:26.146667pt;}
.yfd{bottom:26.173333pt;}
.ya6{bottom:33.146667pt;}
.ydf{bottom:33.632000pt;}
.yc5{bottom:33.693333pt;}
.y118{bottom:33.760000pt;}
.y109{bottom:33.826667pt;}
.yf5{bottom:33.853333pt;}
.yaa{bottom:40.826667pt;}
.ye7{bottom:41.312000pt;}
.y102{bottom:41.506667pt;}
.yfc{bottom:41.533333pt;}
.ya8{bottom:48.506667pt;}
.yde{bottom:48.986667pt;}
.yc4{bottom:49.053333pt;}
.y117{bottom:49.120000pt;}
.y105{bottom:49.186667pt;}
.yf4{bottom:49.213333pt;}
.y4{bottom:50.880000pt;}
.ye6{bottom:56.666667pt;}
.ycd{bottom:56.733333pt;}
.y101{bottom:56.866667pt;}
.yfb{bottom:56.893333pt;}
.y112{bottom:64.160000pt;}
.y104{bottom:64.226667pt;}
.ydd{bottom:64.346667pt;}
.yc3{bottom:64.413333pt;}
.yf3{bottom:64.573333pt;}
.y3{bottom:66.272000pt;}
.y100{bottom:71.906667pt;}
.yd5{bottom:72.026667pt;}
.ycb{bottom:72.093333pt;}
.yed{bottom:72.253333pt;}
.y111{bottom:79.520000pt;}
.y103{bottom:79.586667pt;}
.ydc{bottom:79.706667pt;}
.yc2{bottom:79.773333pt;}
.yeb{bottom:79.933333pt;}
.y137{bottom:82.592000pt;}
.y3d{bottom:83.872000pt;}
.yff{bottom:87.266667pt;}
.yd4{bottom:87.426667pt;}
.yca{bottom:87.453333pt;}
.yec{bottom:87.613333pt;}
.ya1{bottom:88.032000pt;}
.y175{bottom:89.632000pt;}
.yce{bottom:91.200000pt;}
.y68{bottom:92.832000pt;}
.y110{bottom:94.906667pt;}
.y108{bottom:94.946667pt;}
.yd1{bottom:95.106667pt;}
.yc1{bottom:95.173333pt;}
.yf2{bottom:95.293333pt;}
.y195{bottom:96.352000pt;}
.y136{bottom:97.952000pt;}
.y3c{bottom:99.232000pt;}
.ya0{bottom:100.192000pt;}
.y10c{bottom:102.626667pt;}
.ycf{bottom:102.786667pt;}
.yb5{bottom:102.853333pt;}
.yfa{bottom:103.013333pt;}
.y174{bottom:104.992000pt;}
.y67{bottom:108.192000pt;}
.y10f{bottom:110.266667pt;}
.y107{bottom:110.306667pt;}
.yd0{bottom:110.466667pt;}
.yc0{bottom:110.533333pt;}
.yf1{bottom:110.693333pt;}
.y194{bottom:111.712000pt;}
.y135{bottom:113.312000pt;}
.y3b{bottom:114.592000pt;}
.yf9{bottom:118.053333pt;}
.yd3{bottom:118.146667pt;}
.yb4{bottom:118.213333pt;}
.y173{bottom:120.352000pt;}
.y66{bottom:123.552000pt;}
.y116{bottom:125.626667pt;}
.y106{bottom:125.693333pt;}
.yf0{bottom:125.733333pt;}
.ydb{bottom:125.826667pt;}
.ybf{bottom:125.893333pt;}
.y193{bottom:126.752000pt;}
.y134{bottom:128.352000pt;}
.y3a{bottom:129.952000pt;}
.yb3{bottom:133.253333pt;}
.yf8{bottom:133.413333pt;}
.yd2{bottom:133.506667pt;}
.y13f{bottom:135.066667pt;}
.y172{bottom:135.386667pt;}
.yaf{bottom:140.933333pt;}
.y115{bottom:140.986667pt;}
.yef{bottom:141.093333pt;}
.yda{bottom:141.186667pt;}
.y192{bottom:142.106667pt;}
.y133{bottom:143.706667pt;}
.y39{bottom:145.306667pt;}
.y65{bottom:145.626667pt;}
.yad{bottom:148.613333pt;}
.ye5{bottom:148.866667pt;}
.y13e{bottom:150.426667pt;}
.y171{bottom:150.746667pt;}
.yd9{bottom:156.226667pt;}
.yae{bottom:156.293333pt;}
.y114{bottom:156.346667pt;}
.yee{bottom:156.453333pt;}
.y191{bottom:157.466667pt;}
.y132{bottom:159.066667pt;}
.y38{bottom:160.666667pt;}
.ye4{bottom:163.906667pt;}
.yb2{bottom:163.973333pt;}
.y13d{bottom:165.786667pt;}
.y170{bottom:166.106667pt;}
.yd8{bottom:171.586667pt;}
.ybe{bottom:171.653333pt;}
.y113{bottom:171.706667pt;}
.y190{bottom:172.866667pt;}
.y131{bottom:174.466667pt;}
.y37{bottom:175.746667pt;}
.y64{bottom:176.066667pt;}
.ye3{bottom:179.266667pt;}
.yb1{bottom:179.333333pt;}
.y13c{bottom:181.186667pt;}
.y16f{bottom:181.506667pt;}
.yd7{bottom:186.946667pt;}
.ybd{bottom:187.013333pt;}
.y18f{bottom:188.226667pt;}
.y130{bottom:189.826667pt;}
.y63{bottom:191.426667pt;}
.ye2{bottom:194.653333pt;}
.yb0{bottom:194.693333pt;}
.y13b{bottom:196.546667pt;}
.y16e{bottom:196.866667pt;}
.yd6{bottom:202.333333pt;}
.ybc{bottom:202.400000pt;}
.y18e{bottom:203.586667pt;}
.y12f{bottom:205.186667pt;}
.y36{bottom:206.466667pt;}
.y62{bottom:206.786667pt;}
.yc9{bottom:210.080000pt;}
.y13a{bottom:211.906667pt;}
.y16d{bottom:212.226667pt;}
.ybb{bottom:217.760000pt;}
.y18d{bottom:218.946667pt;}
.y35{bottom:221.826667pt;}
.y61{bottom:222.146667pt;}
.yc8{bottom:225.440000pt;}
.y12e{bottom:227.266667pt;}
.y16c{bottom:227.586667pt;}
.yba{bottom:233.120000pt;}
.y18c{bottom:234.306667pt;}
.y34{bottom:237.186667pt;}
.ycc{bottom:240.800000pt;}
.y12d{bottom:242.626667pt;}
.y16b{bottom:242.946667pt;}
.y60{bottom:244.226667pt;}
.yb9{bottom:248.480000pt;}
.y18b{bottom:249.666667pt;}
.y33{bottom:252.226667pt;}
.y12c{bottom:257.986667pt;}
.y16a{bottom:258.306667pt;}
.y5f{bottom:259.586667pt;}
.yb8{bottom:263.840000pt;}
.y18a{bottom:265.026667pt;}
.y32{bottom:267.586667pt;}
.y12b{bottom:273.026667pt;}
.y169{bottom:273.666667pt;}
.y5e{bottom:274.946667pt;}
.yb7{bottom:279.200000pt;}
.y189{bottom:280.386667pt;}
.y31{bottom:282.946667pt;}
.y12a{bottom:288.413333pt;}
.y168{bottom:288.733333pt;}
.y5d{bottom:290.333333pt;}
.yb6{bottom:294.560000pt;}
.y188{bottom:295.453333pt;}
.y30{bottom:298.333333pt;}
.y129{bottom:303.773333pt;}
.yac{bottom:306.560000pt;}
.y5c{bottom:309.213333pt;}
.y187{bottom:310.813333pt;}
.y2f{bottom:313.693333pt;}
.y128{bottom:319.133333pt;}
.y167{bottom:319.453333pt;}
.y5b{bottom:324.573333pt;}
.y186{bottom:326.173333pt;}
.y2e{bottom:329.053333pt;}
.y127{bottom:334.493333pt;}
.y166{bottom:334.813333pt;}
.y185{bottom:341.533333pt;}
.y2d{bottom:344.413333pt;}
.y5a{bottom:346.653333pt;}
.y126{bottom:349.853333pt;}
.y165{bottom:350.173333pt;}
.y184{bottom:356.893333pt;}
.y2c{bottom:359.773333pt;}
.y59{bottom:362.013333pt;}
.y125{bottom:365.213333pt;}
.y164{bottom:365.533333pt;}
.y183{bottom:372.253333pt;}
.y2b{bottom:375.133333pt;}
.y58{bottom:377.373333pt;}
.y124{bottom:380.573333pt;}
.y163{bottom:380.893333pt;}
.y182{bottom:387.613333pt;}
.y2a{bottom:390.493333pt;}
.y123{bottom:395.933333pt;}
.y162{bottom:396.253333pt;}
.y57{bottom:399.493333pt;}
.y181{bottom:403.013333pt;}
.y29{bottom:405.573333pt;}
.y122{bottom:411.333333pt;}
.y161{bottom:411.653333pt;}
.y56{bottom:414.853333pt;}
.y180{bottom:418.373333pt;}
.y28{bottom:420.933333pt;}
.y121{bottom:426.693333pt;}
.y160{bottom:427.013333pt;}
.y55{bottom:429.893333pt;}
.y17f{bottom:433.733333pt;}
.y27{bottom:436.293333pt;}
.y120{bottom:441.733333pt;}
.y139{bottom:442.053333pt;}
.y15f{bottom:442.373333pt;}
.y54{bottom:445.253333pt;}
.y17e{bottom:449.093333pt;}
.y26{bottom:451.653333pt;}
.y138{bottom:457.093333pt;}
.y15e{bottom:457.733333pt;}
.y17d{bottom:464.133333pt;}
.y25{bottom:467.013333pt;}
.y53{bottom:467.333333pt;}
.y11f{bottom:472.133333pt;}
.y15d{bottom:473.093333pt;}
.y17c{bottom:479.493333pt;}
.y24{bottom:482.373333pt;}
.y52{bottom:482.693333pt;}
.y11c{bottom:485.440000pt;}
.y15c{bottom:488.133333pt;}
.y17b{bottom:494.853333pt;}
.y23{bottom:497.733333pt;}
.y51{bottom:498.053333pt;}
.y15b{bottom:503.493333pt;}
.y17a{bottom:510.240000pt;}
.y22{bottom:513.120000pt;}
.y50{bottom:513.440000pt;}
.y15a{bottom:518.880000pt;}
.y11b{bottom:520.800000pt;}
.y179{bottom:525.600000pt;}
.y21{bottom:528.480000pt;}
.y4f{bottom:528.800000pt;}
.y159{bottom:534.240000pt;}
.y10e{bottom:536.000000pt;}
.y178{bottom:540.960000pt;}
.y20{bottom:543.840000pt;}
.y4e{bottom:544.160000pt;}
.y158{bottom:549.600000pt;}
.y177{bottom:556.320000pt;}
.y1f{bottom:559.200000pt;}
.y4d{bottom:559.520000pt;}
.y157{bottom:564.960000pt;}
.y9f{bottom:571.680000pt;}
.y1e{bottom:574.240000pt;}
.y4c{bottom:574.560000pt;}
.y156{bottom:580.320000pt;}
.y9e{bottom:587.040000pt;}
.y1d{bottom:589.600000pt;}
.y4b{bottom:589.920000pt;}
.y155{bottom:595.680000pt;}
.y9d{bottom:602.400000pt;}
.y1c{bottom:604.960000pt;}
.y4a{bottom:605.280000pt;}
.y81{bottom:609.120000pt;}
.y154{bottom:611.040000pt;}
.ya4{bottom:614.080000pt;}
.y9c{bottom:617.760000pt;}
.y1b{bottom:620.320000pt;}
.y49{bottom:620.640000pt;}
.y80{bottom:624.506667pt;}
.y153{bottom:626.426667pt;}
.y9b{bottom:633.146667pt;}
.y1a{bottom:635.706667pt;}
.y48{bottom:636.026667pt;}
.y7f{bottom:639.866667pt;}
.y152{bottom:641.786667pt;}
.y9a{bottom:648.186667pt;}
.y19{bottom:651.066667pt;}
.y47{bottom:651.386667pt;}
.y7e{bottom:655.226667pt;}
.y151{bottom:657.146667pt;}
.y99{bottom:663.546667pt;}
.y18{bottom:666.426667pt;}
.y46{bottom:666.746667pt;}
.y7d{bottom:670.586667pt;}
.y150{bottom:672.186667pt;}
.y98{bottom:678.906667pt;}
.y17{bottom:681.786667pt;}
.y45{bottom:682.106667pt;}
.y7c{bottom:685.626667pt;}
.y14f{bottom:687.546667pt;}
.y97{bottom:694.266667pt;}
.y16{bottom:697.146667pt;}
.y44{bottom:697.466667pt;}
.y14e{bottom:702.906667pt;}
.y96{bottom:709.626667pt;}
.y15{bottom:712.506667pt;}
.y43{bottom:712.826667pt;}
.y7b{bottom:716.666667pt;}
.y14d{bottom:718.266667pt;}
.yfe{bottom:720.640000pt;}
.y95{bottom:724.986667pt;}
.y14{bottom:727.866667pt;}
.y42{bottom:728.186667pt;}
.y7a{bottom:732.026667pt;}
.y14c{bottom:733.666667pt;}
.y94{bottom:740.386667pt;}
.y13{bottom:743.266667pt;}
.y41{bottom:743.586667pt;}
.y79{bottom:747.106667pt;}
.y14b{bottom:749.026667pt;}
.y93{bottom:755.746667pt;}
.y12{bottom:758.306667pt;}
.y40{bottom:758.626667pt;}
.y78{bottom:762.466667pt;}
.y14a{bottom:764.386667pt;}
.y176{bottom:770.786667pt;}
.y92{bottom:771.106667pt;}
.y11{bottom:773.666667pt;}
.y3f{bottom:773.986667pt;}
.y77{bottom:777.826667pt;}
.y149{bottom:779.746667pt;}
.y91{bottom:786.466667pt;}
.y10{bottom:789.026667pt;}
.y3e{bottom:789.346667pt;}
.y76{bottom:793.186667pt;}
.y148{bottom:795.106667pt;}
.y90{bottom:801.826667pt;}
.yf{bottom:804.386667pt;}
.y75{bottom:808.546667pt;}
.y147{bottom:810.466667pt;}
.y8f{bottom:816.866667pt;}
.ye{bottom:819.746667pt;}
.y146{bottom:825.826667pt;}
.y74{bottom:830.626667pt;}
.y8e{bottom:832.226667pt;}
.y145{bottom:840.866667pt;}
.y73{bottom:846.013333pt;}
.y8d{bottom:847.613333pt;}
.yd{bottom:850.493333pt;}
.y144{bottom:856.253333pt;}
.yea{bottom:859.200000pt;}
.y72{bottom:861.373333pt;}
.y8c{bottom:862.973333pt;}
.yc{bottom:866.173333pt;}
.y143{bottom:871.613333pt;}
.y71{bottom:876.733333pt;}
.y8b{bottom:878.333333pt;}
.yb{bottom:881.533333pt;}
.y142{bottom:886.973333pt;}
.y70{bottom:891.773333pt;}
.y8a{bottom:893.693333pt;}
.ya{bottom:896.893333pt;}
.y141{bottom:902.333333pt;}
.y6f{bottom:907.133333pt;}
.y89{bottom:909.053333pt;}
.y9{bottom:912.253333pt;}
.y140{bottom:917.693333pt;}
.y88{bottom:924.413333pt;}
.y6e{bottom:926.013333pt;}
.y8{bottom:927.293333pt;}
.y87{bottom:939.773333pt;}
.y6d{bottom:941.693333pt;}
.y7{bottom:942.653333pt;}
.y86{bottom:955.133333pt;}
.y6{bottom:962.533333pt;}
.y6c{bottom:963.813333pt;}
.y85{bottom:970.533333pt;}
.y6b{bottom:979.173333pt;}
.y84{bottom:985.893333pt;}
.y6a{bottom:994.533333pt;}
.y5{bottom:999.333333pt;}
.ya3{bottom:1000.613333pt;}
.y83{bottom:1000.933333pt;}
.y69{bottom:1009.893333pt;}
.ya2{bottom:1015.973333pt;}
.y82{bottom:1016.293333pt;}
.y2{bottom:1039.333333pt;}
.y1{bottom:1062.373333pt;}
.h16{height:30.720000pt;}
.h2{height:52.762500pt;}
.h9{height:52.888125pt;}
.hd{height:53.118750pt;}
.h10{height:53.244375pt;}
.h6{height:54.180000pt;}
.h5{height:54.309000pt;}
.h7{height:55.256809pt;}
.hc{height:55.965000pt;}
.he{height:61.120000pt;}
.h15{height:62.812500pt;}
.h17{height:78.718750pt;}
.h8{height:79.642500pt;}
.hb{height:79.768125pt;}
.ha{height:79.928125pt;}
.h3{height:125.625000pt;}
.h4{height:125.750625pt;}
.h13{height:137.920000pt;}
.h12{height:168.640000pt;}
.h14{height:184.000000pt;}
.h11{height:214.720000pt;}
.hf{height:306.560000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:31.680000pt;}
.w5{width:71.360000pt;}
.w8{width:84.800000pt;}
.w9{width:88.960000pt;}
.w7{width:93.760000pt;}
.w4{width:95.680000pt;}
.wa{width:102.400000pt;}
.w6{width:138.240000pt;}
.wb{width:710.400000pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x15{left:7.392000pt;}
.x2b{left:8.506667pt;}
.x27{left:9.666667pt;}
.x1f{left:11.360000pt;}
.x1d{left:12.573333pt;}
.x1a{left:14.466667pt;}
.x34{left:15.613333pt;}
.x21{left:16.506667pt;}
.x28{left:17.693333pt;}
.x17{left:19.552000pt;}
.x2a{left:20.960000pt;}
.x29{left:22.560000pt;}
.x30{left:23.773333pt;}
.x1b{left:25.026667pt;}
.x26{left:27.266667pt;}
.x35{left:29.053333pt;}
.x25{left:30.333333pt;}
.x32{left:31.453333pt;}
.x31{left:32.546667pt;}
.x18{left:33.632000pt;}
.x2e{left:35.586667pt;}
.x23{left:36.706667pt;}
.x2d{left:38.333333pt;}
.x14{left:41.280000pt;}
.x33{left:42.426667pt;}
.x2c{left:44.413333pt;}
.x1{left:48.031988pt;}
.x2{left:51.231988pt;}
.x12{left:56.031988pt;}
.x2f{left:68.933333pt;}
.xd{left:72.031988pt;}
.x16{left:73.600000pt;}
.xe{left:78.111988pt;}
.x38{left:84.191988pt;}
.x5{left:124.543988pt;}
.x6{left:127.743988pt;}
.x3{left:129.023988pt;}
.x7{left:164.546655pt;}
.x19{left:169.920000pt;}
.x8{left:210.333322pt;}
.x1c{left:241.920000pt;}
.x13{left:323.653322pt;}
.x1e{left:380.800000pt;}
.x4{left:396.959988pt;}
.xf{left:420.959988pt;}
.xb{left:434.399988pt;}
.xa{left:442.399988pt;}
.x10{left:451.039988pt;}
.x37{left:457.119988pt;}
.x20{left:475.200000pt;}
.xc{left:480.826655pt;}
.x9{left:495.546655pt;}
.x22{left:560.640000pt;}
.x36{left:583.266655pt;}
.x24{left:650.240000pt;}
.x11{left:689.213322pt;}
}




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