
    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_aba3613e2472d54572e2afe7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ae53bea815c6c1ef3b9616be.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_a74d8d74f1159f92f9dd46d0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.977539;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_5ee8c55c5b7f27896ce0667c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.729492;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_657c174d6340bdb1b4cb92f7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.056152;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_440c15c76f2110a93c612980.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.854492;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_21503141e7491c33518fa479.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5df93a4f19e49cd944e5057e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.982422;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_8feabda5c7f3f079cac3d669.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_bcac704fd7b93483ab6eb95b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.196289;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_3aa5fdb825f7bd7ad84fccf3.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_6b2b10899deabddc4ccad52a.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_ac9619cc356b1b81640f63d5.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.800293;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_8b7025dd430484eb4a1c123d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.688477;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_196d876e942dae2edfbcb2b9.woff2')format("woff");}.fff{font-family:fff;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_5e04676fe75e5ffc383fbe3a.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.052734;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);}
.v2{vertical-align:-14.400000px;}
.v1{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:9.360000px;}
.v3{vertical-align:14.400000px;}
.lsc{letter-spacing:-1.080000px;}
.ls1d{letter-spacing:-0.810000px;}
.lsb{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.349200px;}
.ls18{letter-spacing:-0.305400px;}
.lse{letter-spacing:-0.288000px;}
.ls19{letter-spacing:-0.262200px;}
.lsd{letter-spacing:-0.216000px;}
.ls1a{letter-spacing:-0.152400px;}
.ls5{letter-spacing:-0.140400px;}
.ls8{letter-spacing:-0.085200px;}
.ls11{letter-spacing:-0.072000px;}
.ls4{letter-spacing:-0.034560px;}
.ls1{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.056880px;}
.lsf{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.129600px;}
.ls7{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.152400px;}
.ls1c{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.183600px;}
.ls9{letter-spacing:0.252600px;}
.ls14{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.403200px;}
.ls10{letter-spacing:0.504000px;}
.lsa{letter-spacing:0.576000px;}
.ls1b{letter-spacing:0.630000px;}
.ls17{letter-spacing:0.720000px;}
.ls13{letter-spacing:2.801520px;}
.ls12{letter-spacing:18.641520px;}
.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;}
}
.ws1c{word-spacing:-18.576000px;}
.wsf{word-spacing:-18.144000px;}
.wse{word-spacing:-18.072000px;}
.ws12{word-spacing:-18.000000px;}
.ws11{word-spacing:-17.928000px;}
.wsc{word-spacing:-17.784000px;}
.wsd{word-spacing:-17.712000px;}
.ws3{word-spacing:-17.107200px;}
.ws15{word-spacing:-16.712400px;}
.ws1a{word-spacing:-16.407600px;}
.ws19{word-spacing:-16.297800px;}
.ws14{word-spacing:-16.254600px;}
.ws16{word-spacing:-14.940000px;}
.ws2{word-spacing:-14.935680px;}
.ws13{word-spacing:-12.420000px;}
.ws18{word-spacing:-12.060000px;}
.ws1b{word-spacing:-11.754000px;}
.wsa{word-spacing:-11.700000px;}
.ws17{word-spacing:-11.484000px;}
.ws9{word-spacing:-10.865400px;}
.ws10{word-spacing:-10.764000px;}
.ws8{word-spacing:-10.527600px;}
.ws4{word-spacing:-10.472400px;}
.ws1d{word-spacing:-10.314000px;}
.ws6{word-spacing:-10.121040px;}
.ws0{word-spacing:-10.067040px;}
.wsb{word-spacing:-10.044000px;}
.ws5{word-spacing:-9.937440px;}
.ws1{word-spacing:-9.588240px;}
.ws7{word-spacing:0.000000px;}
._25{margin-left:-7.776000px;}
._27{margin-left:-5.371920px;}
._26{margin-left:-3.493680px;}
._15{margin-left:-2.397840px;}
._0{margin-left:-1.134000px;}
._4{width:1.553760px;}
._8{width:2.566800px;}
._7{width:3.645360px;}
._13{width:4.658640px;}
._c{width:5.664000px;}
._a{width:7.111440px;}
._d{width:8.127360px;}
._e{width:10.018800px;}
._6{width:11.126880px;}
._5{width:12.249360px;}
._b{width:13.854240px;}
._1f{width:14.908800px;}
._9{width:15.955920px;}
._10{width:17.430960px;}
._f{width:18.525600px;}
._18{width:19.800000px;}
._1b{width:21.024000px;}
._1c{width:22.462800px;}
._19{width:23.544000px;}
._1a{width:24.670080px;}
._16{width:25.776000px;}
._17{width:26.916480px;}
._1e{width:27.995520px;}
._22{width:29.160000px;}
._2{width:30.870000px;}
._1d{width:32.688000px;}
._14{width:34.643760px;}
._12{width:36.186240px;}
._11{width:37.278000px;}
._20{width:38.880000px;}
._21{width:40.168320px;}
._23{width:41.651760px;}
._2a{width:45.216000px;}
._2b{width:47.340000px;}
._28{width:51.606000px;}
._29{width:52.650000px;}
._24{width:53.976000px;}
._2d{width:109.296000px;}
._2e{width:110.556000px;}
._2c{width:155.448000px;}
._3{width:1091.557200px;}
._1{width:2098.266000px;}
.fc8{color:rgb(0,0,255);}
.fc7{color:transparent;}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(238,78,60);}
.fc6{color:rgb(128,128,128);}
.fc5{color:rgb(166,166,166);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(38,38,38);}
.fs8{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs0{font-size:45.360000px;}
.fs2{font-size:48.240000px;}
.fsa{font-size:51.120000px;}
.fs3{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.y11f{bottom:-12.780000px;}
.y12e{bottom:-12.450000px;}
.y124{bottom:-12.420000px;}
.y12a{bottom:-12.240000px;}
.y13a{bottom:-9.900000px;}
.y11d{bottom:-9.540000px;}
.y152{bottom:-9.360000px;}
.y122{bottom:-9.000000px;}
.y156{bottom:-8.850000px;}
.y0{bottom:0.000000px;}
.y7{bottom:1.260000px;}
.y3b{bottom:1.590000px;}
.y39{bottom:2.670000px;}
.y3d{bottom:2.850000px;}
.y4{bottom:4.320000px;}
.y3{bottom:4.500000px;}
.y7d{bottom:4.680000px;}
.ye9{bottom:6.480000px;}
.y167{bottom:6.825000px;}
.yed{bottom:6.840000px;}
.yeb{bottom:6.885000px;}
.y108{bottom:7.005000px;}
.yef{bottom:7.020000px;}
.y10d{bottom:7.185000px;}
.y106{bottom:7.365000px;}
.y10c{bottom:7.545000px;}
.ycc{bottom:16.200000px;}
.y7c{bottom:16.740000px;}
.ybe{bottom:17.460000px;}
.y45{bottom:22.680000px;}
.y2{bottom:24.660000px;}
.y5{bottom:37.440000px;}
.y3f{bottom:41.940000px;}
.y1{bottom:42.660000px;}
.y6{bottom:62.640000px;}
.y37{bottom:111.780000px;}
.y71{bottom:114.840000px;}
.y112{bottom:126.540000px;}
.y36{bottom:127.980000px;}
.ya6{bottom:128.700000px;}
.ycb{bottom:131.400000px;}
.y149{bottom:132.480000px;}
.y185{bottom:134.100000px;}
.y70{bottom:138.600000px;}
.y174{bottom:142.020000px;}
.y35{bottom:144.180000px;}
.ydf{bottom:145.980000px;}
.y111{bottom:150.300000px;}
.ya5{bottom:152.460000px;}
.yca{bottom:155.160000px;}
.y148{bottom:156.240000px;}
.y184{bottom:157.680000px;}
.y34{bottom:158.400000px;}
.y7b{bottom:162.180000px;}
.y6f{bottom:162.360000px;}
.y173{bottom:165.780000px;}
.y1a3{bottom:166.860000px;}
.y33{bottom:171.360000px;}
.y110{bottom:174.060000px;}
.ya4{bottom:176.220000px;}
.yde{bottom:176.940000px;}
.yc9{bottom:178.920000px;}
.y147{bottom:180.000000px;}
.y183{bottom:181.620000px;}
.y7a{bottom:185.760000px;}
.y6e{bottom:186.120000px;}
.y172{bottom:189.720000px;}
.y1a2{bottom:190.440000px;}
.y32{bottom:192.780000px;}
.y10f{bottom:198.000000px;}
.ya3{bottom:200.160000px;}
.yc8{bottom:202.680000px;}
.y146{bottom:203.760000px;}
.ydd{bottom:208.110000px;}
.y6d{bottom:210.090000px;}
.y171{bottom:213.510000px;}
.y1a1{bottom:214.230000px;}
.y31{bottom:215.490000px;}
.y79{bottom:221.790000px;}
.ya2{bottom:223.950000px;}
.yc7{bottom:226.650000px;}
.y145{bottom:227.730000px;}
.y6c{bottom:233.850000px;}
.y30{bottom:236.550000px;}
.y170{bottom:237.270000px;}
.y10e{bottom:238.905000px;}
.ydc{bottom:239.070000px;}
.y78{bottom:245.370000px;}
.ya1{bottom:247.710000px;}
.y182{bottom:250.230000px;}
.yc6{bottom:250.410000px;}
.y144{bottom:251.490000px;}
.y2f{bottom:256.350000px;}
.y6b{bottom:257.610000px;}
.y1a0{bottom:259.230000px;}
.y16f{bottom:261.030000px;}
.ydb{bottom:263.190000px;}
.y10b{bottom:263.385000px;}
.ya0{bottom:271.470000px;}
.y181{bottom:273.990000px;}
.yc5{bottom:274.170000px;}
.y143{bottom:275.250000px;}
.y2e{bottom:276.150000px;}
.y6a{bottom:281.370000px;}
.y1b5{bottom:282.810000px;}
.y16e{bottom:284.970000px;}
.yda{bottom:287.130000px;}
.y10a{bottom:288.045000px;}
.y9f{bottom:295.230000px;}
.y2d{bottom:295.950000px;}
.yc4{bottom:297.930000px;}
.y142{bottom:299.010000px;}
.y19f{bottom:304.050000px;}
.y77{bottom:305.130000px;}
.y69{bottom:305.310000px;}
.y1b4{bottom:306.750000px;}
.y16d{bottom:308.910000px;}
.y180{bottom:309.630000px;}
.yd9{bottom:310.890000px;}
.y109{bottom:312.525000px;}
.y2c{bottom:315.930000px;}
.y9e{bottom:319.170000px;}
.yc3{bottom:321.870000px;}
.y141{bottom:322.950000px;}
.y19e{bottom:327.630000px;}
.y68{bottom:329.070000px;}
.y1b3{bottom:330.510000px;}
.y16c{bottom:330.690000px;}
.yd8{bottom:334.650000px;}
.y2b{bottom:335.730000px;}
.y107{bottom:337.185000px;}
.y76{bottom:340.950000px;}
.y9d{bottom:342.930000px;}
.y16b{bottom:345.105000px;}
.y17f{bottom:345.450000px;}
.yc2{bottom:345.630000px;}
.y140{bottom:346.710000px;}
.y19d{bottom:351.390000px;}
.y67{bottom:352.830000px;}
.y2a{bottom:355.530000px;}
.yd7{bottom:358.410000px;}
.y105{bottom:361.665000px;}
.y75{bottom:364.710000px;}
.y9c{bottom:366.690000px;}
.y16a{bottom:366.885000px;}
.yc1{bottom:369.390000px;}
.y13f{bottom:370.470000px;}
.y29{bottom:375.330000px;}
.y1b2{bottom:375.510000px;}
.y66{bottom:376.590000px;}
.yd6{bottom:382.350000px;}
.y169{bottom:388.665000px;}
.y9b{bottom:390.450000px;}
.y17e{bottom:393.150000px;}
.y104{bottom:393.330000px;}
.y13e{bottom:394.230000px;}
.y28{bottom:395.130000px;}
.y19c{bottom:396.390000px;}
.y1b1{bottom:399.090000px;}
.yc0{bottom:400.170000px;}
.y65{bottom:400.530000px;}
.y74{bottom:400.710000px;}
.yd5{bottom:406.110000px;}
.y168{bottom:410.445000px;}
.y9a{bottom:414.390000px;}
.y27{bottom:415.110000px;}
.y17d{bottom:417.090000px;}
.y103{bottom:417.450000px;}
.y13d{bottom:417.990000px;}
.y19b{bottom:420.150000px;}
.y1b0{bottom:422.850000px;}
.y64{bottom:424.290000px;}
.yd4{bottom:429.870000px;}
.y166{bottom:432.405000px;}
.y26{bottom:434.910000px;}
.y99{bottom:438.150000px;}
.y13c{bottom:440.670000px;}
.y17c{bottom:440.895000px;}
.y102{bottom:441.255000px;}
.y19a{bottom:443.955000px;}
.ybd{bottom:445.035000px;}
.y63{bottom:448.095000px;}
.yd3{bottom:453.675000px;}
.y165{bottom:454.215000px;}
.y25{bottom:454.755000px;}
.y13b{bottom:460.515000px;}
.y98{bottom:461.955000px;}
.y17b{bottom:464.655000px;}
.y101{bottom:465.015000px;}
.y1af{bottom:467.895000px;}
.ybc{bottom:469.155000px;}
.y62{bottom:471.855000px;}
.y139{bottom:474.195000px;}
.y24{bottom:474.555000px;}
.y164{bottom:475.995000px;}
.yd2{bottom:477.435000px;}
.y138{bottom:483.015000px;}
.y97{bottom:485.715000px;}
.y17a{bottom:488.415000px;}
.y100{bottom:488.955000px;}
.y1ae{bottom:491.475000px;}
.ybb{bottom:493.095000px;}
.y23{bottom:494.355000px;}
.y61{bottom:495.795000px;}
.y163{bottom:497.775000px;}
.yd1{bottom:501.375000px;}
.y162{bottom:506.955000px;}
.y96{bottom:509.655000px;}
.y137{bottom:510.915000px;}
.y179{bottom:512.355000px;}
.y199{bottom:512.535000px;}
.yff{bottom:512.715000px;}
.y161{bottom:512.895000px;}
.y22{bottom:514.335000px;}
.y1ad{bottom:515.415000px;}
.yba{bottom:516.855000px;}
.y60{bottom:519.555000px;}
.yd0{bottom:525.495000px;}
.y136{bottom:532.695000px;}
.y95{bottom:533.415000px;}
.y21{bottom:534.135000px;}
.y160{bottom:534.675000px;}
.y178{bottom:536.115000px;}
.y198{bottom:536.295000px;}
.yfe{bottom:536.475000px;}
.y1ac{bottom:539.175000px;}
.yb9{bottom:540.615000px;}
.y5f{bottom:543.315000px;}
.y15f{bottom:543.855000px;}
.ycf{bottom:549.615000px;}
.y15e{bottom:549.795000px;}
.y20{bottom:553.935000px;}
.y135{bottom:554.475000px;}
.y94{bottom:557.175000px;}
.y177{bottom:559.875000px;}
.y197{bottom:560.055000px;}
.yfd{bottom:560.235000px;}
.y5e{bottom:567.075000px;}
.yb8{bottom:571.395000px;}
.y15d{bottom:571.575000px;}
.y1f{bottom:573.735000px;}
.y134{bottom:576.255000px;}
.y15c{bottom:580.755000px;}
.y93{bottom:580.935000px;}
.y176{bottom:583.635000px;}
.y1b7{bottom:583.995000px;}
.yfc{bottom:584.175000px;}
.y15b{bottom:586.695000px;}
.y5d{bottom:591.015000px;}
.y1e{bottom:593.535000px;}
.y133{bottom:598.035000px;}
.y92{bottom:604.875000px;}
.y196{bottom:605.055000px;}
.y175{bottom:607.575000px;}
.yb7{bottom:607.755000px;}
.yfb{bottom:607.935000px;}
.y15a{bottom:608.475000px;}
.yce{bottom:608.835000px;}
.y1d{bottom:613.515000px;}
.y5c{bottom:614.775000px;}
.y132{bottom:619.995000px;}
.y91{bottom:628.635000px;}
.y195{bottom:628.815000px;}
.y1b6{bottom:628.995000px;}
.y159{bottom:630.255000px;}
.yfa{bottom:630.435000px;}
.yb6{bottom:631.335000px;}
.y1ab{bottom:631.515000px;}
.y1c{bottom:633.315000px;}
.y5b{bottom:638.535000px;}
.y131{bottom:641.775000px;}
.yf9{bottom:650.235000px;}
.y130{bottom:650.595000px;}
.y158{bottom:652.215000px;}
.y90{bottom:652.395000px;}
.y194{bottom:652.575000px;}
.yb5{bottom:655.095000px;}
.y12f{bottom:656.535000px;}
.y5a{bottom:662.295000px;}
.y1b{bottom:662.835000px;}
.yf8{bottom:664.635000px;}
.y157{bottom:673.995000px;}
.y8f{bottom:676.185000px;}
.y193{bottom:676.365000px;}
.y1aa{bottom:676.545000px;}
.y12d{bottom:678.525000px;}
.yb4{bottom:678.885000px;}
.y155{bottom:683.025000px;}
.y1a{bottom:684.465000px;}
.y59{bottom:686.085000px;}
.yf7{bottom:686.625000px;}
.y12c{bottom:687.345000px;}
.y154{bottom:689.145000px;}
.y12b{bottom:693.285000px;}
.y8e{bottom:700.125000px;}
.yb3{bottom:702.645000px;}
.yf6{bottom:708.405000px;}
.y58{bottom:710.025000px;}
.y153{bottom:710.925000px;}
.y19{bottom:711.285000px;}
.y129{bottom:715.065000px;}
.y151{bottom:719.925000px;}
.y192{bottom:721.365000px;}
.y8d{bottom:723.885000px;}
.y128{bottom:724.065000px;}
.yb2{bottom:726.585000px;}
.y127{bottom:730.005000px;}
.yf5{bottom:730.185000px;}
.y18{bottom:732.345000px;}
.y150{bottom:733.065000px;}
.y57{bottom:733.785000px;}
.y191{bottom:744.945000px;}
.y8c{bottom:747.645000px;}
.yb1{bottom:750.345000px;}
.y126{bottom:751.785000px;}
.yf4{bottom:751.965000px;}
.y17{bottom:753.405000px;}
.y14f{bottom:756.825000px;}
.y56{bottom:757.545000px;}
.y190{bottom:768.705000px;}
.y1a9{bottom:768.885000px;}
.y8b{bottom:771.405000px;}
.y125{bottom:773.565000px;}
.yf3{bottom:773.925000px;}
.yb0{bottom:774.105000px;}
.y16{bottom:774.465000px;}
.y55{bottom:781.305000px;}
.y1a8{bottom:792.645000px;}
.y14e{bottom:793.185000px;}
.y8a{bottom:795.165000px;}
.y15{bottom:795.525000px;}
.yf2{bottom:795.705000px;}
.yaf{bottom:797.865000px;}
.y54{bottom:805.245000px;}
.y18f{bottom:813.705000px;}
.y1a7{bottom:816.405000px;}
.y14{bottom:816.585000px;}
.y14d{bottom:816.765000px;}
.y123{bottom:817.305000px;}
.yf1{bottom:817.485000px;}
.y89{bottom:819.105000px;}
.yae{bottom:821.805000px;}
.y121{bottom:826.125000px;}
.y53{bottom:829.005000px;}
.y120{bottom:832.065000px;}
.y18e{bottom:837.465000px;}
.y13{bottom:837.645000px;}
.yf0{bottom:839.265000px;}
.y88{bottom:842.865000px;}
.yad{bottom:845.565000px;}
.y52{bottom:852.765000px;}
.y11e{bottom:853.845000px;}
.y12{bottom:855.105000px;}
.yee{bottom:861.045000px;}
.y18d{bottom:861.225000px;}
.y1a6{bottom:861.405000px;}
.y11c{bottom:862.845000px;}
.y87{bottom:866.625000px;}
.yac{bottom:869.325000px;}
.y11b{bottom:875.805000px;}
.ycd{bottom:876.165000px;}
.y14c{bottom:876.345000px;}
.y51{bottom:876.525000px;}
.y11{bottom:882.645000px;}
.yec{bottom:883.005000px;}
.y1a5{bottom:884.985000px;}
.y86{bottom:890.385000px;}
.yab{bottom:893.085000px;}
.y11a{bottom:899.565000px;}
.ybf{bottom:900.105000px;}
.y50{bottom:900.465000px;}
.y10{bottom:901.005000px;}
.yea{bottom:904.785000px;}
.y18c{bottom:906.225000px;}
.y14b{bottom:912.390000px;}
.y85{bottom:914.370000px;}
.yaa{bottom:917.070000px;}
.yf{bottom:922.290000px;}
.y4f{bottom:924.270000px;}
.ye8{bottom:927.330000px;}
.y18b{bottom:929.850000px;}
.y1a4{bottom:930.030000px;}
.y119{bottom:935.970000px;}
.y84{bottom:938.130000px;}
.ya9{bottom:940.830000px;}
.y4e{bottom:948.030000px;}
.ye{bottom:950.550000px;}
.y18a{bottom:953.610000px;}
.ye7{bottom:957.030000px;}
.y118{bottom:959.730000px;}
.y83{bottom:961.890000px;}
.ya8{bottom:964.590000px;}
.y14a{bottom:971.610000px;}
.y4d{bottom:971.790000px;}
.yd{bottom:973.590000px;}
.ye6{bottom:980.790000px;}
.y3c{bottom:985.500000px;}
.y82{bottom:985.650000px;}
.y38{bottom:986.760000px;}
.y3a{bottom:988.200000px;}
.yc{bottom:993.390000px;}
.ya7{bottom:995.370000px;}
.y117{bottom:995.550000px;}
.y4c{bottom:995.730000px;}
.y189{bottom:998.610000px;}
.ye5{bottom:1004.910000px;}
.y81{bottom:1016.430000px;}
.y116{bottom:1019.310000px;}
.y4b{bottom:1019.490000px;}
.y188{bottom:1022.190000px;}
.yb{bottom:1027.590000px;}
.ye4{bottom:1028.850000px;}
.y4a{bottom:1043.250000px;}
.y187{bottom:1046.130000px;}
.y80{bottom:1047.390000px;}
.y115{bottom:1055.310000px;}
.ye3{bottom:1059.450000px;}
.ya{bottom:1062.870000px;}
.y49{bottom:1067.010000px;}
.y7f{bottom:1078.530000px;}
.y114{bottom:1078.890000px;}
.ye2{bottom:1083.570000px;}
.y48{bottom:1090.950000px;}
.y186{bottom:1091.130000px;}
.y9{bottom:1101.030000px;}
.ye1{bottom:1107.510000px;}
.y113{bottom:1114.530000px;}
.y47{bottom:1114.710000px;}
.y7e{bottom:1114.890000px;}
.ye0{bottom:1138.110000px;}
.y46{bottom:1138.470000px;}
.y8{bottom:1139.190000px;}
.y44{bottom:1169.460000px;}
.y73{bottom:1180.440000px;}
.y43{bottom:1183.500000px;}
.y72{bottom:1196.280000px;}
.y42{bottom:1197.540000px;}
.y3e{bottom:1207.980000px;}
.y41{bottom:1218.960000px;}
.y40{bottom:1235.880000px;}
.h31{height:2.505000px;}
.h2f{height:2.520000px;}
.h36{height:2.685000px;}
.h2e{height:2.700000px;}
.h35{height:2.730000px;}
.h33{height:5.565000px;}
.h30{height:5.925000px;}
.h2d{height:5.940000px;}
.h34{height:6.120000px;}
.h1a{height:13.500000px;}
.h18{height:14.580000px;}
.h1c{height:14.760000px;}
.h2c{height:18.000000px;}
.h21{height:18.180000px;}
.h24{height:21.765000px;}
.h26{height:21.780000px;}
.h37{height:21.801000px;}
.h25{height:21.802500px;}
.h32{height:21.945000px;}
.h27{height:21.960000px;}
.h28{height:21.990000px;}
.h2a{height:23.745000px;}
.h2b{height:23.925000px;}
.h1d{height:24.380859px;}
.h6{height:24.840000px;}
.h16{height:29.664141px;}
.h2{height:38.405391px;}
.h19{height:38.464805px;}
.h8{height:38.469727px;}
.h17{height:40.843828px;}
.h9{height:42.573164px;}
.h5{height:43.057617px;}
.h1e{height:45.509766px;}
.h1b{height:47.650430px;}
.h4{height:49.680000px;}
.h22{height:52.066406px;}
.h7{height:53.709961px;}
.hc{height:54.421875px;}
.h15{height:58.621992px;}
.h12{height:58.651172px;}
.h10{height:59.439023px;}
.h29{height:60.226875px;}
.hf{height:61.189805px;}
.h13{height:65.010937px;}
.h11{height:65.534063px;}
.h14{height:65.837812px;}
.h3{height:65.884219px;}
.h23{height:66.757500px;}
.he{height:67.824844px;}
.hd{height:70.664062px;}
.ha{height:70.995234px;}
.hb{height:71.324297px;}
.h1f{height:71.613281px;}
.h20{height:72.562500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:77.400000px;}
.w9{width:77.580000px;}
.w2{width:90.000000px;}
.w1c{width:99.900000px;}
.wc{width:105.300000px;}
.wf{width:105.321000px;}
.wd{width:105.336000px;}
.we{width:105.465000px;}
.wb{width:105.501000px;}
.w7{width:107.100000px;}
.w1d{width:109.476000px;}
.w1e{width:109.605000px;}
.w4{width:109.800000px;}
.w16{width:117.525000px;}
.w15{width:117.576000px;}
.wa{width:122.209500px;}
.w5{width:134.100000px;}
.w17{width:134.481000px;}
.w13{width:162.375000px;}
.w10{width:162.889500px;}
.w1f{width:171.015000px;}
.w11{width:173.355000px;}
.w12{width:173.550000px;}
.w1b{width:182.719500px;}
.w14{width:196.039500px;}
.w20{width:209.370000px;}
.w22{width:219.090000px;}
.w6{width:221.400000px;}
.w18{width:224.670000px;}
.w1a{width:235.110000px;}
.w21{width:501.724500px;}
.w19{width:538.264500px;}
.w3{width:626.400000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:7.729500px;}
.x14{left:10.836000px;}
.x17{left:14.940000px;}
.x12{left:17.070000px;}
.x3{left:19.230000px;}
.x16{left:45.615000px;}
.x4{left:93.960000px;}
.x1{left:108.036000px;}
.x27{left:110.386500px;}
.xf{left:117.396000px;}
.x13{left:119.700000px;}
.xb{left:123.516000px;}
.x7{left:128.736000px;}
.x31{left:162.030000px;}
.x6{left:171.210000px;}
.x18{left:174.090000px;}
.x1a{left:222.870000px;}
.x1f{left:230.265000px;}
.x1b{left:252.210000px;}
.x24{left:272.025000px;}
.x2c{left:293.115000px;}
.x28{left:306.435000px;}
.xe{left:320.475000px;}
.xa{left:322.095000px;}
.x20{left:335.775000px;}
.xc{left:344.775000px;}
.x15{left:347.220000px;}
.x2d{left:393.015000px;}
.x8{left:402.555000px;}
.x10{left:410.115000px;}
.x29{left:413.535000px;}
.xd{left:441.255000px;}
.x25{left:446.115000px;}
.x5{left:454.965000px;}
.x2e{left:502.500000px;}
.x2a{left:531.120000px;}
.x19{left:542.085000px;}
.x21{left:546.420000px;}
.x2f{left:612.120000px;}
.x26{left:620.400000px;}
.x2b{left:648.660000px;}
.x22{left:651.900000px;}
.x11{left:686.160000px;}
.x33{left:708.840000px;}
.x30{left:718.380000px;}
.x1e{left:719.460000px;}
.x1c{left:721.800000px;}
.x1d{left:723.960000px;}
.x32{left:726.840000px;}
.x9{left:785.130000px;}
.x2{left:802.980000px;}
@media print{
.v2{vertical-align:-12.800000pt;}
.v1{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:8.320000pt;}
.v3{vertical-align:12.800000pt;}
.lsc{letter-spacing:-0.960000pt;}
.ls1d{letter-spacing:-0.720000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.310400pt;}
.ls18{letter-spacing:-0.271467pt;}
.lse{letter-spacing:-0.256000pt;}
.ls19{letter-spacing:-0.233067pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls1a{letter-spacing:-0.135467pt;}
.ls5{letter-spacing:-0.124800pt;}
.ls8{letter-spacing:-0.075733pt;}
.ls11{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:-0.030720pt;}
.ls1{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.050560pt;}
.lsf{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.115200pt;}
.ls7{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.135467pt;}
.ls1c{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.163200pt;}
.ls9{letter-spacing:0.224533pt;}
.ls14{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.358400pt;}
.ls10{letter-spacing:0.448000pt;}
.lsa{letter-spacing:0.512000pt;}
.ls1b{letter-spacing:0.560000pt;}
.ls17{letter-spacing:0.640000pt;}
.ls13{letter-spacing:2.490240pt;}
.ls12{letter-spacing:16.570240pt;}
.ws1c{word-spacing:-16.512000pt;}
.wsf{word-spacing:-16.128000pt;}
.wse{word-spacing:-16.064000pt;}
.ws12{word-spacing:-16.000000pt;}
.ws11{word-spacing:-15.936000pt;}
.wsc{word-spacing:-15.808000pt;}
.wsd{word-spacing:-15.744000pt;}
.ws3{word-spacing:-15.206400pt;}
.ws15{word-spacing:-14.855467pt;}
.ws1a{word-spacing:-14.584533pt;}
.ws19{word-spacing:-14.486933pt;}
.ws14{word-spacing:-14.448533pt;}
.ws16{word-spacing:-13.280000pt;}
.ws2{word-spacing:-13.276160pt;}
.ws13{word-spacing:-11.040000pt;}
.ws18{word-spacing:-10.720000pt;}
.ws1b{word-spacing:-10.448000pt;}
.wsa{word-spacing:-10.400000pt;}
.ws17{word-spacing:-10.208000pt;}
.ws9{word-spacing:-9.658133pt;}
.ws10{word-spacing:-9.568000pt;}
.ws8{word-spacing:-9.357867pt;}
.ws4{word-spacing:-9.308800pt;}
.ws1d{word-spacing:-9.168000pt;}
.ws6{word-spacing:-8.996480pt;}
.ws0{word-spacing:-8.948480pt;}
.wsb{word-spacing:-8.928000pt;}
.ws5{word-spacing:-8.833280pt;}
.ws1{word-spacing:-8.522880pt;}
.ws7{word-spacing:0.000000pt;}
._25{margin-left:-6.912000pt;}
._27{margin-left:-4.775040pt;}
._26{margin-left:-3.105493pt;}
._15{margin-left:-2.131413pt;}
._0{margin-left:-1.008000pt;}
._4{width:1.381120pt;}
._8{width:2.281600pt;}
._7{width:3.240320pt;}
._13{width:4.141013pt;}
._c{width:5.034667pt;}
._a{width:6.321280pt;}
._d{width:7.224320pt;}
._e{width:8.905600pt;}
._6{width:9.890560pt;}
._5{width:10.888320pt;}
._b{width:12.314880pt;}
._1f{width:13.252267pt;}
._9{width:14.183040pt;}
._10{width:15.494187pt;}
._f{width:16.467200pt;}
._18{width:17.600000pt;}
._1b{width:18.688000pt;}
._1c{width:19.966933pt;}
._19{width:20.928000pt;}
._1a{width:21.928960pt;}
._16{width:22.912000pt;}
._17{width:23.925760pt;}
._1e{width:24.884907pt;}
._22{width:25.920000pt;}
._2{width:27.440000pt;}
._1d{width:29.056000pt;}
._14{width:30.794453pt;}
._12{width:32.165547pt;}
._11{width:33.136000pt;}
._20{width:34.560000pt;}
._21{width:35.705173pt;}
._23{width:37.023787pt;}
._2a{width:40.192000pt;}
._2b{width:42.080000pt;}
._28{width:45.872000pt;}
._29{width:46.800000pt;}
._24{width:47.978667pt;}
._2d{width:97.152000pt;}
._2e{width:98.272000pt;}
._2c{width:138.176000pt;}
._3{width:970.273067pt;}
._1{width:1865.125333pt;}
.fs8{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs0{font-size:40.320000pt;}
.fs2{font-size:42.880000pt;}
.fsa{font-size:45.440000pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.y11f{bottom:-11.360000pt;}
.y12e{bottom:-11.066667pt;}
.y124{bottom:-11.040000pt;}
.y12a{bottom:-10.880000pt;}
.y13a{bottom:-8.800000pt;}
.y11d{bottom:-8.480000pt;}
.y152{bottom:-8.320000pt;}
.y122{bottom:-8.000000pt;}
.y156{bottom:-7.866667pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:1.120000pt;}
.y3b{bottom:1.413333pt;}
.y39{bottom:2.373333pt;}
.y3d{bottom:2.533333pt;}
.y4{bottom:3.840000pt;}
.y3{bottom:4.000000pt;}
.y7d{bottom:4.160000pt;}
.ye9{bottom:5.760000pt;}
.y167{bottom:6.066667pt;}
.yed{bottom:6.080000pt;}
.yeb{bottom:6.120000pt;}
.y108{bottom:6.226667pt;}
.yef{bottom:6.240000pt;}
.y10d{bottom:6.386667pt;}
.y106{bottom:6.546667pt;}
.y10c{bottom:6.706667pt;}
.ycc{bottom:14.400000pt;}
.y7c{bottom:14.880000pt;}
.ybe{bottom:15.520000pt;}
.y45{bottom:20.160000pt;}
.y2{bottom:21.920000pt;}
.y5{bottom:33.280000pt;}
.y3f{bottom:37.280000pt;}
.y1{bottom:37.920000pt;}
.y6{bottom:55.680000pt;}
.y37{bottom:99.360000pt;}
.y71{bottom:102.080000pt;}
.y112{bottom:112.480000pt;}
.y36{bottom:113.760000pt;}
.ya6{bottom:114.400000pt;}
.ycb{bottom:116.800000pt;}
.y149{bottom:117.760000pt;}
.y185{bottom:119.200000pt;}
.y70{bottom:123.200000pt;}
.y174{bottom:126.240000pt;}
.y35{bottom:128.160000pt;}
.ydf{bottom:129.760000pt;}
.y111{bottom:133.600000pt;}
.ya5{bottom:135.520000pt;}
.yca{bottom:137.920000pt;}
.y148{bottom:138.880000pt;}
.y184{bottom:140.160000pt;}
.y34{bottom:140.800000pt;}
.y7b{bottom:144.160000pt;}
.y6f{bottom:144.320000pt;}
.y173{bottom:147.360000pt;}
.y1a3{bottom:148.320000pt;}
.y33{bottom:152.320000pt;}
.y110{bottom:154.720000pt;}
.ya4{bottom:156.640000pt;}
.yde{bottom:157.280000pt;}
.yc9{bottom:159.040000pt;}
.y147{bottom:160.000000pt;}
.y183{bottom:161.440000pt;}
.y7a{bottom:165.120000pt;}
.y6e{bottom:165.440000pt;}
.y172{bottom:168.640000pt;}
.y1a2{bottom:169.280000pt;}
.y32{bottom:171.360000pt;}
.y10f{bottom:176.000000pt;}
.ya3{bottom:177.920000pt;}
.yc8{bottom:180.160000pt;}
.y146{bottom:181.120000pt;}
.ydd{bottom:184.986667pt;}
.y6d{bottom:186.746667pt;}
.y171{bottom:189.786667pt;}
.y1a1{bottom:190.426667pt;}
.y31{bottom:191.546667pt;}
.y79{bottom:197.146667pt;}
.ya2{bottom:199.066667pt;}
.yc7{bottom:201.466667pt;}
.y145{bottom:202.426667pt;}
.y6c{bottom:207.866667pt;}
.y30{bottom:210.266667pt;}
.y170{bottom:210.906667pt;}
.y10e{bottom:212.360000pt;}
.ydc{bottom:212.506667pt;}
.y78{bottom:218.106667pt;}
.ya1{bottom:220.186667pt;}
.y182{bottom:222.426667pt;}
.yc6{bottom:222.586667pt;}
.y144{bottom:223.546667pt;}
.y2f{bottom:227.866667pt;}
.y6b{bottom:228.986667pt;}
.y1a0{bottom:230.426667pt;}
.y16f{bottom:232.026667pt;}
.ydb{bottom:233.946667pt;}
.y10b{bottom:234.120000pt;}
.ya0{bottom:241.306667pt;}
.y181{bottom:243.546667pt;}
.yc5{bottom:243.706667pt;}
.y143{bottom:244.666667pt;}
.y2e{bottom:245.466667pt;}
.y6a{bottom:250.106667pt;}
.y1b5{bottom:251.386667pt;}
.y16e{bottom:253.306667pt;}
.yda{bottom:255.226667pt;}
.y10a{bottom:256.040000pt;}
.y9f{bottom:262.426667pt;}
.y2d{bottom:263.066667pt;}
.yc4{bottom:264.826667pt;}
.y142{bottom:265.786667pt;}
.y19f{bottom:270.266667pt;}
.y77{bottom:271.226667pt;}
.y69{bottom:271.386667pt;}
.y1b4{bottom:272.666667pt;}
.y16d{bottom:274.586667pt;}
.y180{bottom:275.226667pt;}
.yd9{bottom:276.346667pt;}
.y109{bottom:277.800000pt;}
.y2c{bottom:280.826667pt;}
.y9e{bottom:283.706667pt;}
.yc3{bottom:286.106667pt;}
.y141{bottom:287.066667pt;}
.y19e{bottom:291.226667pt;}
.y68{bottom:292.506667pt;}
.y1b3{bottom:293.786667pt;}
.y16c{bottom:293.946667pt;}
.yd8{bottom:297.466667pt;}
.y2b{bottom:298.426667pt;}
.y107{bottom:299.720000pt;}
.y76{bottom:303.066667pt;}
.y9d{bottom:304.826667pt;}
.y16b{bottom:306.760000pt;}
.y17f{bottom:307.066667pt;}
.yc2{bottom:307.226667pt;}
.y140{bottom:308.186667pt;}
.y19d{bottom:312.346667pt;}
.y67{bottom:313.626667pt;}
.y2a{bottom:316.026667pt;}
.yd7{bottom:318.586667pt;}
.y105{bottom:321.480000pt;}
.y75{bottom:324.186667pt;}
.y9c{bottom:325.946667pt;}
.y16a{bottom:326.120000pt;}
.yc1{bottom:328.346667pt;}
.y13f{bottom:329.306667pt;}
.y29{bottom:333.626667pt;}
.y1b2{bottom:333.786667pt;}
.y66{bottom:334.746667pt;}
.yd6{bottom:339.866667pt;}
.y169{bottom:345.480000pt;}
.y9b{bottom:347.066667pt;}
.y17e{bottom:349.466667pt;}
.y104{bottom:349.626667pt;}
.y13e{bottom:350.426667pt;}
.y28{bottom:351.226667pt;}
.y19c{bottom:352.346667pt;}
.y1b1{bottom:354.746667pt;}
.yc0{bottom:355.706667pt;}
.y65{bottom:356.026667pt;}
.y74{bottom:356.186667pt;}
.yd5{bottom:360.986667pt;}
.y168{bottom:364.840000pt;}
.y9a{bottom:368.346667pt;}
.y27{bottom:368.986667pt;}
.y17d{bottom:370.746667pt;}
.y103{bottom:371.066667pt;}
.y13d{bottom:371.546667pt;}
.y19b{bottom:373.466667pt;}
.y1b0{bottom:375.866667pt;}
.y64{bottom:377.146667pt;}
.yd4{bottom:382.106667pt;}
.y166{bottom:384.360000pt;}
.y26{bottom:386.586667pt;}
.y99{bottom:389.466667pt;}
.y13c{bottom:391.706667pt;}
.y17c{bottom:391.906667pt;}
.y102{bottom:392.226667pt;}
.y19a{bottom:394.626667pt;}
.ybd{bottom:395.586667pt;}
.y63{bottom:398.306667pt;}
.yd3{bottom:403.266667pt;}
.y165{bottom:403.746667pt;}
.y25{bottom:404.226667pt;}
.y13b{bottom:409.346667pt;}
.y98{bottom:410.626667pt;}
.y17b{bottom:413.026667pt;}
.y101{bottom:413.346667pt;}
.y1af{bottom:415.906667pt;}
.ybc{bottom:417.026667pt;}
.y62{bottom:419.426667pt;}
.y139{bottom:421.506667pt;}
.y24{bottom:421.826667pt;}
.y164{bottom:423.106667pt;}
.yd2{bottom:424.386667pt;}
.y138{bottom:429.346667pt;}
.y97{bottom:431.746667pt;}
.y17a{bottom:434.146667pt;}
.y100{bottom:434.626667pt;}
.y1ae{bottom:436.866667pt;}
.ybb{bottom:438.306667pt;}
.y23{bottom:439.426667pt;}
.y61{bottom:440.706667pt;}
.y163{bottom:442.466667pt;}
.yd1{bottom:445.666667pt;}
.y162{bottom:450.626667pt;}
.y96{bottom:453.026667pt;}
.y137{bottom:454.146667pt;}
.y179{bottom:455.426667pt;}
.y199{bottom:455.586667pt;}
.yff{bottom:455.746667pt;}
.y161{bottom:455.906667pt;}
.y22{bottom:457.186667pt;}
.y1ad{bottom:458.146667pt;}
.yba{bottom:459.426667pt;}
.y60{bottom:461.826667pt;}
.yd0{bottom:467.106667pt;}
.y136{bottom:473.506667pt;}
.y95{bottom:474.146667pt;}
.y21{bottom:474.786667pt;}
.y160{bottom:475.266667pt;}
.y178{bottom:476.546667pt;}
.y198{bottom:476.706667pt;}
.yfe{bottom:476.866667pt;}
.y1ac{bottom:479.266667pt;}
.yb9{bottom:480.546667pt;}
.y5f{bottom:482.946667pt;}
.y15f{bottom:483.426667pt;}
.ycf{bottom:488.546667pt;}
.y15e{bottom:488.706667pt;}
.y20{bottom:492.386667pt;}
.y135{bottom:492.866667pt;}
.y94{bottom:495.266667pt;}
.y177{bottom:497.666667pt;}
.y197{bottom:497.826667pt;}
.yfd{bottom:497.986667pt;}
.y5e{bottom:504.066667pt;}
.yb8{bottom:507.906667pt;}
.y15d{bottom:508.066667pt;}
.y1f{bottom:509.986667pt;}
.y134{bottom:512.226667pt;}
.y15c{bottom:516.226667pt;}
.y93{bottom:516.386667pt;}
.y176{bottom:518.786667pt;}
.y1b7{bottom:519.106667pt;}
.yfc{bottom:519.266667pt;}
.y15b{bottom:521.506667pt;}
.y5d{bottom:525.346667pt;}
.y1e{bottom:527.586667pt;}
.y133{bottom:531.586667pt;}
.y92{bottom:537.666667pt;}
.y196{bottom:537.826667pt;}
.y175{bottom:540.066667pt;}
.yb7{bottom:540.226667pt;}
.yfb{bottom:540.386667pt;}
.y15a{bottom:540.866667pt;}
.yce{bottom:541.186667pt;}
.y1d{bottom:545.346667pt;}
.y5c{bottom:546.466667pt;}
.y132{bottom:551.106667pt;}
.y91{bottom:558.786667pt;}
.y195{bottom:558.946667pt;}
.y1b6{bottom:559.106667pt;}
.y159{bottom:560.226667pt;}
.yfa{bottom:560.386667pt;}
.yb6{bottom:561.186667pt;}
.y1ab{bottom:561.346667pt;}
.y1c{bottom:562.946667pt;}
.y5b{bottom:567.586667pt;}
.y131{bottom:570.466667pt;}
.yf9{bottom:577.986667pt;}
.y130{bottom:578.306667pt;}
.y158{bottom:579.746667pt;}
.y90{bottom:579.906667pt;}
.y194{bottom:580.066667pt;}
.yb5{bottom:582.306667pt;}
.y12f{bottom:583.586667pt;}
.y5a{bottom:588.706667pt;}
.y1b{bottom:589.186667pt;}
.yf8{bottom:590.786667pt;}
.y157{bottom:599.106667pt;}
.y8f{bottom:601.053333pt;}
.y193{bottom:601.213333pt;}
.y1aa{bottom:601.373333pt;}
.y12d{bottom:603.133333pt;}
.yb4{bottom:603.453333pt;}
.y155{bottom:607.133333pt;}
.y1a{bottom:608.413333pt;}
.y59{bottom:609.853333pt;}
.yf7{bottom:610.333333pt;}
.y12c{bottom:610.973333pt;}
.y154{bottom:612.573333pt;}
.y12b{bottom:616.253333pt;}
.y8e{bottom:622.333333pt;}
.yb3{bottom:624.573333pt;}
.yf6{bottom:629.693333pt;}
.y58{bottom:631.133333pt;}
.y153{bottom:631.933333pt;}
.y19{bottom:632.253333pt;}
.y129{bottom:635.613333pt;}
.y151{bottom:639.933333pt;}
.y192{bottom:641.213333pt;}
.y8d{bottom:643.453333pt;}
.y128{bottom:643.613333pt;}
.yb2{bottom:645.853333pt;}
.y127{bottom:648.893333pt;}
.yf5{bottom:649.053333pt;}
.y18{bottom:650.973333pt;}
.y150{bottom:651.613333pt;}
.y57{bottom:652.253333pt;}
.y191{bottom:662.173333pt;}
.y8c{bottom:664.573333pt;}
.yb1{bottom:666.973333pt;}
.y126{bottom:668.253333pt;}
.yf4{bottom:668.413333pt;}
.y17{bottom:669.693333pt;}
.y14f{bottom:672.733333pt;}
.y56{bottom:673.373333pt;}
.y190{bottom:683.293333pt;}
.y1a9{bottom:683.453333pt;}
.y8b{bottom:685.693333pt;}
.y125{bottom:687.613333pt;}
.yf3{bottom:687.933333pt;}
.yb0{bottom:688.093333pt;}
.y16{bottom:688.413333pt;}
.y55{bottom:694.493333pt;}
.y1a8{bottom:704.573333pt;}
.y14e{bottom:705.053333pt;}
.y8a{bottom:706.813333pt;}
.y15{bottom:707.133333pt;}
.yf2{bottom:707.293333pt;}
.yaf{bottom:709.213333pt;}
.y54{bottom:715.773333pt;}
.y18f{bottom:723.293333pt;}
.y1a7{bottom:725.693333pt;}
.y14{bottom:725.853333pt;}
.y14d{bottom:726.013333pt;}
.y123{bottom:726.493333pt;}
.yf1{bottom:726.653333pt;}
.y89{bottom:728.093333pt;}
.yae{bottom:730.493333pt;}
.y121{bottom:734.333333pt;}
.y53{bottom:736.893333pt;}
.y120{bottom:739.613333pt;}
.y18e{bottom:744.413333pt;}
.y13{bottom:744.573333pt;}
.yf0{bottom:746.013333pt;}
.y88{bottom:749.213333pt;}
.yad{bottom:751.613333pt;}
.y52{bottom:758.013333pt;}
.y11e{bottom:758.973333pt;}
.y12{bottom:760.093333pt;}
.yee{bottom:765.373333pt;}
.y18d{bottom:765.533333pt;}
.y1a6{bottom:765.693333pt;}
.y11c{bottom:766.973333pt;}
.y87{bottom:770.333333pt;}
.yac{bottom:772.733333pt;}
.y11b{bottom:778.493333pt;}
.ycd{bottom:778.813333pt;}
.y14c{bottom:778.973333pt;}
.y51{bottom:779.133333pt;}
.y11{bottom:784.573333pt;}
.yec{bottom:784.893333pt;}
.y1a5{bottom:786.653333pt;}
.y86{bottom:791.453333pt;}
.yab{bottom:793.853333pt;}
.y11a{bottom:799.613333pt;}
.ybf{bottom:800.093333pt;}
.y50{bottom:800.413333pt;}
.y10{bottom:800.893333pt;}
.yea{bottom:804.253333pt;}
.y18c{bottom:805.533333pt;}
.y14b{bottom:811.013333pt;}
.y85{bottom:812.773333pt;}
.yaa{bottom:815.173333pt;}
.yf{bottom:819.813333pt;}
.y4f{bottom:821.573333pt;}
.ye8{bottom:824.293333pt;}
.y18b{bottom:826.533333pt;}
.y1a4{bottom:826.693333pt;}
.y119{bottom:831.973333pt;}
.y84{bottom:833.893333pt;}
.ya9{bottom:836.293333pt;}
.y4e{bottom:842.693333pt;}
.ye{bottom:844.933333pt;}
.y18a{bottom:847.653333pt;}
.ye7{bottom:850.693333pt;}
.y118{bottom:853.093333pt;}
.y83{bottom:855.013333pt;}
.ya8{bottom:857.413333pt;}
.y14a{bottom:863.653333pt;}
.y4d{bottom:863.813333pt;}
.yd{bottom:865.413333pt;}
.ye6{bottom:871.813333pt;}
.y3c{bottom:876.000000pt;}
.y82{bottom:876.133333pt;}
.y38{bottom:877.120000pt;}
.y3a{bottom:878.400000pt;}
.yc{bottom:883.013333pt;}
.ya7{bottom:884.773333pt;}
.y117{bottom:884.933333pt;}
.y4c{bottom:885.093333pt;}
.y189{bottom:887.653333pt;}
.ye5{bottom:893.253333pt;}
.y81{bottom:903.493333pt;}
.y116{bottom:906.053333pt;}
.y4b{bottom:906.213333pt;}
.y188{bottom:908.613333pt;}
.yb{bottom:913.413333pt;}
.ye4{bottom:914.533333pt;}
.y4a{bottom:927.333333pt;}
.y187{bottom:929.893333pt;}
.y80{bottom:931.013333pt;}
.y115{bottom:938.053333pt;}
.ye3{bottom:941.733333pt;}
.ya{bottom:944.773333pt;}
.y49{bottom:948.453333pt;}
.y7f{bottom:958.693333pt;}
.y114{bottom:959.013333pt;}
.ye2{bottom:963.173333pt;}
.y48{bottom:969.733333pt;}
.y186{bottom:969.893333pt;}
.y9{bottom:978.693333pt;}
.ye1{bottom:984.453333pt;}
.y113{bottom:990.693333pt;}
.y47{bottom:990.853333pt;}
.y7e{bottom:991.013333pt;}
.ye0{bottom:1011.653333pt;}
.y46{bottom:1011.973333pt;}
.y8{bottom:1012.613333pt;}
.y44{bottom:1039.520000pt;}
.y73{bottom:1049.280000pt;}
.y43{bottom:1052.000000pt;}
.y72{bottom:1063.360000pt;}
.y42{bottom:1064.480000pt;}
.y3e{bottom:1073.760000pt;}
.y41{bottom:1083.520000pt;}
.y40{bottom:1098.560000pt;}
.h31{height:2.226667pt;}
.h2f{height:2.240000pt;}
.h36{height:2.386667pt;}
.h2e{height:2.400000pt;}
.h35{height:2.426667pt;}
.h33{height:4.946667pt;}
.h30{height:5.266667pt;}
.h2d{height:5.280000pt;}
.h34{height:5.440000pt;}
.h1a{height:12.000000pt;}
.h18{height:12.960000pt;}
.h1c{height:13.120000pt;}
.h2c{height:16.000000pt;}
.h21{height:16.160000pt;}
.h24{height:19.346667pt;}
.h26{height:19.360000pt;}
.h37{height:19.378667pt;}
.h25{height:19.380000pt;}
.h32{height:19.506667pt;}
.h27{height:19.520000pt;}
.h28{height:19.546667pt;}
.h2a{height:21.106667pt;}
.h2b{height:21.266667pt;}
.h1d{height:21.671875pt;}
.h6{height:22.080000pt;}
.h16{height:26.368125pt;}
.h2{height:34.138125pt;}
.h19{height:34.190937pt;}
.h8{height:34.195312pt;}
.h17{height:36.305625pt;}
.h9{height:37.842813pt;}
.h5{height:38.273438pt;}
.h1e{height:40.453125pt;}
.h1b{height:42.355937pt;}
.h4{height:44.160000pt;}
.h22{height:46.281250pt;}
.h7{height:47.742188pt;}
.hc{height:48.375000pt;}
.h15{height:52.108438pt;}
.h12{height:52.134375pt;}
.h10{height:52.834688pt;}
.h29{height:53.535000pt;}
.hf{height:54.390938pt;}
.h13{height:57.787500pt;}
.h11{height:58.252500pt;}
.h14{height:58.522500pt;}
.h3{height:58.563750pt;}
.h23{height:59.340000pt;}
.he{height:60.288750pt;}
.hd{height:62.812500pt;}
.ha{height:63.106875pt;}
.hb{height:63.399375pt;}
.h1f{height:63.656250pt;}
.h20{height:64.500000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:68.800000pt;}
.w9{width:68.960000pt;}
.w2{width:80.000000pt;}
.w1c{width:88.800000pt;}
.wc{width:93.600000pt;}
.wf{width:93.618667pt;}
.wd{width:93.632000pt;}
.we{width:93.746667pt;}
.wb{width:93.778667pt;}
.w7{width:95.200000pt;}
.w1d{width:97.312000pt;}
.w1e{width:97.426667pt;}
.w4{width:97.600000pt;}
.w16{width:104.466667pt;}
.w15{width:104.512000pt;}
.wa{width:108.630667pt;}
.w5{width:119.200000pt;}
.w17{width:119.538667pt;}
.w13{width:144.333333pt;}
.w10{width:144.790667pt;}
.w1f{width:152.013333pt;}
.w11{width:154.093333pt;}
.w12{width:154.266667pt;}
.w1b{width:162.417333pt;}
.w14{width:174.257333pt;}
.w20{width:186.106667pt;}
.w22{width:194.746667pt;}
.w6{width:196.800000pt;}
.w18{width:199.706667pt;}
.w1a{width:208.986667pt;}
.w21{width:445.977333pt;}
.w19{width:478.457333pt;}
.w3{width:556.800000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:6.870667pt;}
.x14{left:9.632000pt;}
.x17{left:13.280000pt;}
.x12{left:15.173333pt;}
.x3{left:17.093333pt;}
.x16{left:40.546667pt;}
.x4{left:83.520000pt;}
.x1{left:96.032000pt;}
.x27{left:98.121333pt;}
.xf{left:104.352000pt;}
.x13{left:106.400000pt;}
.xb{left:109.792000pt;}
.x7{left:114.432000pt;}
.x31{left:144.026667pt;}
.x6{left:152.186667pt;}
.x18{left:154.746667pt;}
.x1a{left:198.106667pt;}
.x1f{left:204.680000pt;}
.x1b{left:224.186667pt;}
.x24{left:241.800000pt;}
.x2c{left:260.546667pt;}
.x28{left:272.386667pt;}
.xe{left:284.866667pt;}
.xa{left:286.306667pt;}
.x20{left:298.466667pt;}
.xc{left:306.466667pt;}
.x15{left:308.640000pt;}
.x2d{left:349.346667pt;}
.x8{left:357.826667pt;}
.x10{left:364.546667pt;}
.x29{left:367.586667pt;}
.xd{left:392.226667pt;}
.x25{left:396.546667pt;}
.x5{left:404.413333pt;}
.x2e{left:446.666667pt;}
.x2a{left:472.106667pt;}
.x19{left:481.853333pt;}
.x21{left:485.706667pt;}
.x2f{left:544.106667pt;}
.x26{left:551.466667pt;}
.x2b{left:576.586667pt;}
.x22{left:579.466667pt;}
.x11{left:609.920000pt;}
.x33{left:630.080000pt;}
.x30{left:638.560000pt;}
.x1e{left:639.520000pt;}
.x1c{left:641.600000pt;}
.x1d{left:643.520000pt;}
.x32{left:646.080000pt;}
.x9{left:697.893333pt;}
.x2{left:713.760000pt;}
}




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