
    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_d4b0c04146e11cc24393a481.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.905762;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_63173f454cb61cb9f474169f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.762000;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_d57daa214bfdc2ce0f594486.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.888000;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_cca9553dae0e2739b1db1e69.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.931000;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_0a85f0c6730add6f48aae152.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.700000;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_94ee9d385bc6bf245d534278.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.951000;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_b89631e5a4a5191e0076b5f5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938000;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_7a7b5b3a449a7aa3a1e5740b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.901855;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_7de7db00c994a0b0ecd49bd6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.894531;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_d93b8cf7ff1e7c53e7e78571.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.907227;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_ae413d30cc349586522d46a3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_dd2e2f25add1a041bea67098.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.075195;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;}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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:-16.200000px;}
.v3{vertical-align:-13.200000px;}
.v4{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:13.200000px;}
.v1{vertical-align:18.000000px;}
.ls54{letter-spacing:-14.175000px;}
.ls5e{letter-spacing:-13.320000px;}
.ls60{letter-spacing:-12.870000px;}
.ls3f{letter-spacing:-10.845000px;}
.ls5f{letter-spacing:-10.350000px;}
.ls40{letter-spacing:-9.990000px;}
.ls5c{letter-spacing:-9.495000px;}
.ls42{letter-spacing:-9.180000px;}
.ls5d{letter-spacing:-8.685000px;}
.ls55{letter-spacing:-8.595000px;}
.ls52{letter-spacing:-4.995000px;}
.ls41{letter-spacing:-3.555000px;}
.ls32{letter-spacing:-1.320000px;}
.ls30{letter-spacing:-1.188000px;}
.ls31{letter-spacing:-0.924000px;}
.ls33{letter-spacing:-0.858000px;}
.ls1f{letter-spacing:-0.660000px;}
.ls2c{letter-spacing:-0.594000px;}
.ls21{letter-spacing:-0.528000px;}
.ls2b{letter-spacing:-0.396000px;}
.ls22{letter-spacing:-0.264000px;}
.ls1e{letter-spacing:-0.198000px;}
.ls23{letter-spacing:-0.171600px;}
.ls20{letter-spacing:-0.066000px;}
.lsa{letter-spacing:0.000000px;}
.ls48{letter-spacing:0.000600px;}
.ls45{letter-spacing:0.007200px;}
.ls49{letter-spacing:0.007800px;}
.ls46{letter-spacing:0.009000px;}
.ls47{letter-spacing:0.009600px;}
.ls44{letter-spacing:0.010200px;}
.ls24{letter-spacing:0.042900px;}
.ls8{letter-spacing:0.054000px;}
.ls26{letter-spacing:0.060000px;}
.lsf{letter-spacing:0.066000px;}
.ls2d{letter-spacing:0.120000px;}
.ls1d{letter-spacing:0.132000px;}
.ls51{letter-spacing:0.175800px;}
.ls34{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.198000px;}
.ls2e{letter-spacing:0.198600px;}
.ls6{letter-spacing:0.216000px;}
.ls25{letter-spacing:0.240000px;}
.ls1c{letter-spacing:0.264000px;}
.ls50{letter-spacing:0.270000px;}
.ls4f{letter-spacing:0.285000px;}
.ls29{letter-spacing:0.300000px;}
.ls4b{letter-spacing:0.315000px;}
.ls4c{letter-spacing:0.317400px;}
.ls7{letter-spacing:0.324000px;}
.ls17{letter-spacing:0.330000px;}
.ls4a{letter-spacing:0.334200px;}
.ls3{letter-spacing:0.336000px;}
.ls35{letter-spacing:0.360000px;}
.ls57{letter-spacing:0.361200px;}
.ls5b{letter-spacing:0.365400px;}
.ls19{letter-spacing:0.396000px;}
.ls28{letter-spacing:0.420000px;}
.ls9{letter-spacing:0.432000px;}
.ls37{letter-spacing:0.462000px;}
.ls2a{letter-spacing:0.480000px;}
.ls5a{letter-spacing:0.480600px;}
.ls10{letter-spacing:0.528000px;}
.ls4d{letter-spacing:0.576600px;}
.ls4e{letter-spacing:0.585000px;}
.lse{letter-spacing:0.594000px;}
.ls56{letter-spacing:0.600000px;}
.ls2{letter-spacing:0.630000px;}
.ls11{letter-spacing:0.660000px;}
.lsd{letter-spacing:0.726000px;}
.ls1a{letter-spacing:0.792000px;}
.lsc{letter-spacing:0.858000px;}
.ls27{letter-spacing:0.900000px;}
.ls3d{letter-spacing:0.945000px;}
.ls3e{letter-spacing:0.960000px;}
.ls3c{letter-spacing:0.960600px;}
.ls13{letter-spacing:1.056000px;}
.ls18{letter-spacing:1.122000px;}
.ls12{letter-spacing:1.188000px;}
.ls15{letter-spacing:1.254000px;}
.ls4{letter-spacing:1.260000px;}
.ls16{letter-spacing:1.320000px;}
.ls58{letter-spacing:1.341600px;}
.ls59{letter-spacing:1.350000px;}
.ls39{letter-spacing:1.440000px;}
.ls38{letter-spacing:1.441200px;}
.ls14{letter-spacing:1.782000px;}
.ls3b{letter-spacing:2.070000px;}
.ls3a{letter-spacing:2.083800px;}
.ls43{letter-spacing:2.100000px;}
.ls2f{letter-spacing:2.112000px;}
.ls36{letter-spacing:4.554000px;}
.ls53{letter-spacing:7.860000px;}
.ls1{letter-spacing:10.656000px;}
.ls5{letter-spacing:12.510000px;}
.lsb{letter-spacing:1341.729600px;}
.ls0{letter-spacing:1890.921600px;}
.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;}
}
.ws6{word-spacing:-17.556000px;}
.ws5{word-spacing:-17.358000px;}
.wsc{word-spacing:-16.566000px;}
.ws7{word-spacing:-16.500000px;}
.ws8{word-spacing:-16.236000px;}
.wsb{word-spacing:-15.840000px;}
.wsf{word-spacing:-15.480000px;}
.ws20{word-spacing:-15.360000px;}
.wse{word-spacing:-15.300000px;}
.ws4{word-spacing:-15.000000px;}
.ws16{word-spacing:-13.320000px;}
.ws13{word-spacing:-12.690000px;}
.ws21{word-spacing:-12.600000px;}
.ws17{word-spacing:-12.195000px;}
.ws1c{word-spacing:-11.835000px;}
.ws1f{word-spacing:-11.610000px;}
.ws19{word-spacing:-11.565000px;}
.ws1d{word-spacing:-11.520000px;}
.ws1e{word-spacing:-11.430000px;}
.wsd{word-spacing:-10.767900px;}
.wsa{word-spacing:-10.725000px;}
.ws0{word-spacing:-10.584000px;}
.ws9{word-spacing:-10.553400px;}
.ws10{word-spacing:-9.867000px;}
.ws1{word-spacing:-9.750000px;}
.ws2{word-spacing:-8.775000px;}
.ws14{word-spacing:-7.695000px;}
.ws18{word-spacing:-6.255000px;}
.ws3{word-spacing:0.000000px;}
.ws1b{word-spacing:6.480000px;}
.ws27{word-spacing:6.570000px;}
.ws15{word-spacing:7.110000px;}
.ws23{word-spacing:7.425000px;}
.ws12{word-spacing:8.730000px;}
.ws22{word-spacing:9.045000px;}
.ws25{word-spacing:9.900000px;}
.ws11{word-spacing:10.440000px;}
.ws26{word-spacing:14.940000px;}
.ws24{word-spacing:15.390000px;}
.ws1a{word-spacing:17.100000px;}
._13{margin-left:-1709.849811px;}
._d{margin-left:-16.500000px;}
._1{margin-left:-10.662600px;}
._6{margin-left:-9.324000px;}
._15{margin-left:-7.828832px;}
._12{margin-left:-4.158000px;}
._b{margin-left:-2.362705px;}
._5{margin-left:-1.253400px;}
._9{width:1.674000px;}
._3{width:2.688000px;}
._4{width:4.662000px;}
._8{width:5.742000px;}
._7{width:6.754105px;}
._a{width:8.308800px;}
._f{width:9.520800px;}
._2{width:11.676000px;}
._0{width:13.344000px;}
._11{width:14.904000px;}
._14{width:29.607000px;}
._10{width:44.798400px;}
._e{width:46.023095px;}
._c{width:1157.565600px;}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:27.000000px;}
.fsa{font-size:35.100000px;}
.fs0{font-size:36.000000px;}
.fs9{font-size:39.000000px;}
.fs5{font-size:42.000000px;}
.fsf{font-size:42.900000px;}
.fs6{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fsd{font-size:51.000000px;}
.fsb{font-size:54.000000px;}
.fsc{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fse{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs7{font-size:90.000000px;}
.fs2{font-size:139.800000px;}
.y0{bottom:0.000000px;}
.y1b1{bottom:85.039050px;}
.y1{bottom:85.039350px;}
.y30{bottom:85.039500px;}
.y14e{bottom:85.039650px;}
.y120{bottom:85.039800px;}
.y11{bottom:119.055150px;}
.y1b0{bottom:119.055600px;}
.ye8{bottom:119.060100px;}
.y112{bottom:119.418450px;}
.y185{bottom:119.652150px;}
.y14d{bottom:119.674950px;}
.ydc{bottom:119.996850px;}
.ycd{bottom:120.517500px;}
.ya8{bottom:120.575550px;}
.y160{bottom:120.933900px;}
.y11f{bottom:121.032900px;}
.y5c{bottom:129.369000px;}
.y10{bottom:131.055150px;}
.ye7{bottom:135.047100px;}
.ydb{bottom:135.983700px;}
.y111{bottom:136.623450px;}
.y14c{bottom:136.669950px;}
.y15f{bottom:136.920750px;}
.y11e{bottom:137.019900px;}
.y1af{bottom:137.345700px;}
.y184{bottom:137.467650px;}
.ycc{bottom:138.114000px;}
.ya7{bottom:138.172050px;}
.y5b{bottom:146.965500px;}
.yf{bottom:149.433000px;}
.ye6{bottom:151.034100px;}
.yda{bottom:151.970700px;}
.y15e{bottom:152.907750px;}
.y11d{bottom:153.006900px;}
.y14b{bottom:153.664950px;}
.y110{bottom:153.828450px;}
.y183{bottom:155.283150px;}
.y1ae{bottom:155.635800px;}
.ycb{bottom:155.710500px;}
.ya6{bottom:155.768550px;}
.y5a{bottom:164.562000px;}
.y81{bottom:164.803200px;}
.ye5{bottom:167.021100px;}
.ye{bottom:167.811000px;}
.yd9{bottom:167.957700px;}
.y15d{bottom:168.894750px;}
.y11c{bottom:168.993900px;}
.y14a{bottom:170.659950px;}
.y10f{bottom:171.033450px;}
.y182{bottom:173.098650px;}
.yca{bottom:173.307000px;}
.ya5{bottom:173.365050px;}
.y1ad{bottom:173.925900px;}
.y59{bottom:182.158500px;}
.y80{bottom:182.399700px;}
.ye4{bottom:183.008100px;}
.yd8{bottom:183.944700px;}
.yd{bottom:184.062900px;}
.y15c{bottom:184.881750px;}
.y11b{bottom:184.980900px;}
.y149{bottom:187.654950px;}
.y10e{bottom:188.238450px;}
.yc9{bottom:190.903500px;}
.y181{bottom:190.914150px;}
.ya4{bottom:190.961550px;}
.y1ac{bottom:192.216150px;}
.yc{bottom:196.062900px;}
.ye3{bottom:198.994950px;}
.y58{bottom:199.755000px;}
.yd7{bottom:199.931700px;}
.y7f{bottom:199.996200px;}
.y15b{bottom:200.868750px;}
.y11a{bottom:200.967900px;}
.y148{bottom:204.649950px;}
.y10d{bottom:205.443450px;}
.yb{bottom:208.062900px;}
.yc8{bottom:208.500000px;}
.ya3{bottom:208.558050px;}
.y180{bottom:208.729650px;}
.y1ab{bottom:210.506250px;}
.ye2{bottom:214.981950px;}
.yd6{bottom:215.918700px;}
.y15a{bottom:216.855750px;}
.y119{bottom:216.954900px;}
.y57{bottom:217.351500px;}
.y7e{bottom:217.592700px;}
.y147{bottom:221.644950px;}
.y10c{bottom:222.648450px;}
.yc7{bottom:226.096500px;}
.ya2{bottom:226.154550px;}
.ya{bottom:226.440900px;}
.y17f{bottom:226.545150px;}
.y1aa{bottom:228.796350px;}
.ye1{bottom:230.968950px;}
.yd5{bottom:231.905700px;}
.y159{bottom:232.842750px;}
.y118{bottom:232.941900px;}
.y56{bottom:234.948000px;}
.y7d{bottom:235.189200px;}
.y9{bottom:238.440900px;}
.y146{bottom:238.639950px;}
.y10b{bottom:239.853450px;}
.yc6{bottom:243.693000px;}
.ya1{bottom:243.751050px;}
.y17e{bottom:244.360650px;}
.ye0{bottom:246.955950px;}
.y1a9{bottom:247.086450px;}
.yd4{bottom:247.892700px;}
.y158{bottom:248.829750px;}
.y117{bottom:248.928900px;}
.y8{bottom:250.440900px;}
.y55{bottom:252.544500px;}
.y7c{bottom:252.785700px;}
.y145{bottom:255.634950px;}
.y10a{bottom:257.058450px;}
.yc5{bottom:261.289500px;}
.ya0{bottom:261.347550px;}
.y17d{bottom:262.176150px;}
.ydf{bottom:262.942950px;}
.yd3{bottom:263.879700px;}
.y157{bottom:264.816750px;}
.y116{bottom:264.915750px;}
.y1a8{bottom:265.376700px;}
.y54{bottom:270.141000px;}
.y7b{bottom:270.382200px;}
.y144{bottom:272.629950px;}
.y109{bottom:274.263450px;}
.yc4{bottom:278.886000px;}
.yde{bottom:278.929950px;}
.y9f{bottom:278.944050px;}
.yd2{bottom:279.866550px;}
.y17c{bottom:279.991650px;}
.y156{bottom:280.803750px;}
.y115{bottom:280.902750px;}
.y2f{bottom:282.933000px;}
.y1a7{bottom:283.666800px;}
.y53{bottom:287.737500px;}
.y143{bottom:289.624950px;}
.y108{bottom:291.468450px;}
.ydd{bottom:294.916950px;}
.yd1{bottom:295.853550px;}
.yc3{bottom:296.482500px;}
.y9e{bottom:296.540550px;}
.y7a{bottom:296.776050px;}
.y155{bottom:296.790600px;}
.y114{bottom:296.889750px;}
.y17b{bottom:297.807150px;}
.y2e{bottom:298.920000px;}
.y1a6{bottom:301.956900px;}
.y52{bottom:305.334000px;}
.y142{bottom:306.619950px;}
.y107{bottom:308.673450px;}
.yd0{bottom:311.840550px;}
.y154{bottom:312.777600px;}
.y113{bottom:312.876750px;}
.yc2{bottom:314.079000px;}
.y17a{bottom:315.622650px;}
.y1a5{bottom:320.247150px;}
.y2d{bottom:322.900650px;}
.y51{bottom:322.930500px;}
.y9d{bottom:322.934400px;}
.y141{bottom:323.614950px;}
.y106{bottom:325.878450px;}
.ycf{bottom:327.827550px;}
.y153{bottom:328.764600px;}
.yc1{bottom:331.675500px;}
.y1a4{bottom:338.537250px;}
.y2c{bottom:338.887650px;}
.y140{bottom:340.609950px;}
.y79{bottom:340.764450px;}
.y105{bottom:343.083450px;}
.yce{bottom:343.814550px;}
.y152{bottom:344.751600px;}
.y50{bottom:349.324350px;}
.y179{bottom:351.032850px;}
.y2b{bottom:354.874650px;}
.y1a3{bottom:356.827350px;}
.y13f{bottom:357.604950px;}
.yc0{bottom:358.069350px;}
.y78{bottom:358.360950px;}
.y104{bottom:360.288450px;}
.y151{bottom:360.738600px;}
.y4f{bottom:366.920850px;}
.y9c{bottom:366.922800px;}
.y1d1{bottom:370.591200px;}
.y2a{bottom:370.861650px;}
.y13e{bottom:374.599950px;}
.y1a2{bottom:375.117450px;}
.ybf{bottom:375.665850px;}
.y77{bottom:375.957450px;}
.y150{bottom:376.725600px;}
.y103{bottom:377.493450px;}
.y4e{bottom:384.517350px;}
.y9b{bottom:384.519300px;}
.y29{bottom:386.848650px;}
.y1d0{bottom:388.406550px;}
.y13d{bottom:391.594950px;}
.y14f{bottom:392.712600px;}
.ybe{bottom:393.262350px;}
.y1a1{bottom:393.407700px;}
.y76{bottom:393.553950px;}
.y102{bottom:394.698450px;}
.y4d{bottom:402.113850px;}
.y9a{bottom:402.115800px;}
.y28{bottom:402.835650px;}
.y1cf{bottom:406.222200px;}
.ybd{bottom:410.858850px;}
.y178{bottom:411.148950px;}
.y75{bottom:411.150450px;}
.y1a0{bottom:411.697800px;}
.y101{bottom:411.903450px;}
.y13c{bottom:417.387300px;}
.y27{bottom:418.822650px;}
.y4c{bottom:419.710350px;}
.y99{bottom:419.712300px;}
.y1ce{bottom:424.037700px;}
.ybc{bottom:428.455350px;}
.y177{bottom:428.745450px;}
.y74{bottom:428.746950px;}
.y19f{bottom:429.987900px;}
.y13b{bottom:434.382300px;}
.y26{bottom:434.809800px;}
.y4b{bottom:437.306850px;}
.y98{bottom:437.308800px;}
.y100{bottom:437.905800px;}
.y1cd{bottom:441.853200px;}
.ybb{bottom:446.051850px;}
.y176{bottom:446.341950px;}
.y73{bottom:446.343450px;}
.y19e{bottom:448.278150px;}
.y13a{bottom:451.377300px;}
.y4a{bottom:454.903350px;}
.y97{bottom:454.905300px;}
.y1cc{bottom:459.668700px;}
.yba{bottom:463.648350px;}
.y175{bottom:463.938450px;}
.y72{bottom:463.939950px;}
.y19d{bottom:466.568250px;}
.y25{bottom:466.784100px;}
.y139{bottom:468.372300px;}
.y49{bottom:472.499850px;}
.y96{bottom:472.501800px;}
.y1cb{bottom:477.484200px;}
.yb9{bottom:481.244850px;}
.yff{bottom:481.502700px;}
.y174{bottom:481.534950px;}
.y71{bottom:481.536450px;}
.y24{bottom:482.771100px;}
.y19c{bottom:484.858350px;}
.y138{bottom:485.367300px;}
.y48{bottom:490.096350px;}
.y95{bottom:490.098300px;}
.y1ca{bottom:495.299700px;}
.yfe{bottom:498.707700px;}
.yb8{bottom:498.841350px;}
.y173{bottom:499.131450px;}
.y70{bottom:499.132950px;}
.y137{bottom:502.362300px;}
.y19b{bottom:503.148450px;}
.y23{bottom:506.751900px;}
.y47{bottom:507.692850px;}
.y94{bottom:507.694800px;}
.y1c9{bottom:513.115200px;}
.yfd{bottom:515.912700px;}
.yb7{bottom:516.437850px;}
.y172{bottom:516.727950px;}
.y6f{bottom:516.729450px;}
.y136{bottom:519.357300px;}
.y19a{bottom:521.438700px;}
.y22{bottom:522.738900px;}
.y46{bottom:525.289350px;}
.y93{bottom:525.291300px;}
.y1c8{bottom:530.930700px;}
.yfc{bottom:533.117700px;}
.yb6{bottom:534.034350px;}
.y171{bottom:534.324450px;}
.y6e{bottom:534.325950px;}
.y21{bottom:538.725900px;}
.y199{bottom:539.728800px;}
.y45{bottom:542.885850px;}
.y92{bottom:542.887800px;}
.y135{bottom:545.149650px;}
.y1c7{bottom:548.746050px;}
.yfb{bottom:550.322700px;}
.yb5{bottom:551.630850px;}
.y170{bottom:551.920950px;}
.y6d{bottom:551.922450px;}
.y20{bottom:554.712900px;}
.y198{bottom:558.018900px;}
.y44{bottom:560.482350px;}
.y91{bottom:560.484300px;}
.y134{bottom:562.144650px;}
.y1c6{bottom:566.561700px;}
.yfa{bottom:567.527700px;}
.yb4{bottom:569.227350px;}
.y16f{bottom:569.517450px;}
.y6c{bottom:569.518950px;}
.y1f{bottom:570.699900px;}
.y197{bottom:576.309150px;}
.y43{bottom:578.078850px;}
.y1c5{bottom:584.377050px;}
.yf9{bottom:584.732700px;}
.y1e{bottom:586.686900px;}
.yb3{bottom:586.823850px;}
.y90{bottom:586.878150px;}
.y16e{bottom:587.113950px;}
.y6b{bottom:587.115450px;}
.y196{bottom:594.599250px;}
.y42{bottom:595.675350px;}
.yf8{bottom:601.937700px;}
.y1c4{bottom:602.192700px;}
.y1d{bottom:602.673900px;}
.yb2{bottom:604.420350px;}
.y16d{bottom:604.710450px;}
.y6a{bottom:604.711950px;}
.y133{bottom:605.531550px;}
.y195{bottom:612.889350px;}
.y41{bottom:613.271850px;}
.y1c{bottom:618.660900px;}
.yf7{bottom:619.142700px;}
.y1c3{bottom:620.008050px;}
.yb1{bottom:622.016850px;}
.y16c{bottom:622.306950px;}
.y69{bottom:622.308450px;}
.y132{bottom:622.526700px;}
.y8f{bottom:630.866550px;}
.y40{bottom:630.868350px;}
.y194{bottom:631.179450px;}
.y1b{bottom:634.647900px;}
.yf6{bottom:636.347700px;}
.y1c2{bottom:637.823700px;}
.y131{bottom:639.521550px;}
.y68{bottom:639.904950px;}
.yb0{bottom:648.410700px;}
.y8e{bottom:648.463050px;}
.y193{bottom:649.469550px;}
.yf5{bottom:653.552700px;}
.y1c1{bottom:655.639200px;}
.y130{bottom:656.516550px;}
.y3f{bottom:657.262200px;}
.y16b{bottom:657.498150px;}
.yaf{bottom:666.007200px;}
.y8d{bottom:666.059550px;}
.y67{bottom:666.298800px;}
.y192{bottom:667.759800px;}
.yf4{bottom:670.757700px;}
.y1c0{bottom:673.454700px;}
.y3e{bottom:674.858700px;}
.y12f{bottom:682.308900px;}
.y8c{bottom:683.656200px;}
.y191{bottom:686.049900px;}
.yf3{bottom:687.962700px;}
.y1bf{bottom:691.270050px;}
.y3d{bottom:692.455200px;}
.yae{bottom:696.946350px;}
.y12e{bottom:699.303900px;}
.y8b{bottom:701.252550px;}
.y66{bottom:701.490000px;}
.y190{bottom:704.340000px;}
.yf2{bottom:705.167700px;}
.y1a{bottom:705.708600px;}
.y1be{bottom:709.085700px;}
.y3c{bottom:710.051700px;}
.y16a{bottom:710.283900px;}
.y12d{bottom:716.298900px;}
.y8a{bottom:718.849050px;}
.y19{bottom:721.695600px;}
.yf1{bottom:722.372700px;}
.y18f{bottom:722.630250px;}
.y1bd{bottom:726.901200px;}
.y3b{bottom:727.648200px;}
.y169{bottom:727.880400px;}
.y12c{bottom:733.293900px;}
.y89{bottom:736.445550px;}
.y18{bottom:737.682600px;}
.yf0{bottom:739.577700px;}
.y18e{bottom:740.920350px;}
.y1bc{bottom:744.716700px;}
.y3a{bottom:745.244700px;}
.y168{bottom:745.476900px;}
.yad{bottom:749.732100px;}
.y12b{bottom:750.288900px;}
.y17{bottom:753.669600px;}
.y88{bottom:754.042050px;}
.y65{bottom:754.275750px;}
.yef{bottom:756.782700px;}
.y18d{bottom:759.210450px;}
.y1bb{bottom:762.532050px;}
.y39{bottom:762.841200px;}
.y167{bottom:763.073400px;}
.y12a{bottom:767.283900px;}
.yac{bottom:767.328600px;}
.y87{bottom:771.638550px;}
.y64{bottom:771.872250px;}
.yee{bottom:773.987700px;}
.y16{bottom:774.403950px;}
.y18c{bottom:777.500550px;}
.y1ba{bottom:780.347700px;}
.y38{bottom:780.437700px;}
.y166{bottom:780.670050px;}
.y129{bottom:784.279050px;}
.yab{bottom:784.925100px;}
.y86{bottom:789.235050px;}
.y63{bottom:789.468750px;}
.yed{bottom:791.192700px;}
.y18b{bottom:795.790800px;}
.y37{bottom:798.034200px;}
.y1b9{bottom:798.163200px;}
.y165{bottom:798.266400px;}
.y128{bottom:801.273900px;}
.yaa{bottom:802.521750px;}
.y85{bottom:806.831700px;}
.y62{bottom:807.065250px;}
.yec{bottom:808.397700px;}
.y15{bottom:809.008350px;}
.y18a{bottom:814.080900px;}
.y36{bottom:815.630700px;}
.y164{bottom:815.862900px;}
.y1b8{bottom:815.978700px;}
.y127{bottom:818.268900px;}
.y84{bottom:824.428200px;}
.y61{bottom:824.661750px;}
.yeb{bottom:825.602550px;}
.ya9{bottom:828.915600px;}
.y14{bottom:830.608200px;}
.y189{bottom:832.371000px;}
.y35{bottom:833.227350px;}
.y163{bottom:833.459400px;}
.y1b7{bottom:833.794200px;}
.y126{bottom:835.264050px;}
.y83{bottom:842.024550px;}
.y60{bottom:842.258250px;}
.yea{bottom:842.807550px;}
.y188{bottom:850.661100px;}
.y34{bottom:850.823700px;}
.y162{bottom:851.055900px;}
.y1b6{bottom:851.609550px;}
.y125{bottom:852.258900px;}
.y13{bottom:856.460250px;}
.y82{bottom:859.621050px;}
.y5f{bottom:868.652100px;}
.y161{bottom:868.652400px;}
.ye9{bottom:868.809900px;}
.y187{bottom:868.951200px;}
.y124{bottom:869.253900px;}
.y1b5{bottom:869.425200px;}
.y12{bottom:881.960250px;}
.y33{bottom:886.014900px;}
.y5e{bottom:886.248600px;}
.y123{bottom:886.248900px;}
.y1b4{bottom:887.240700px;}
.y186{bottom:887.241450px;}
.y5{bottom:920.367150px;}
.y1b3{bottom:931.877700px;}
.y32{bottom:931.878150px;}
.y122{bottom:931.878450px;}
.y4{bottom:939.027750px;}
.y3{bottom:945.477750px;}
.y1b2{bottom:949.474200px;}
.y5d{bottom:949.474500px;}
.y31{bottom:949.474650px;}
.y121{bottom:949.474950px;}
.y2{bottom:953.272050px;}
.y7{bottom:957.890700px;}
.y6{bottom:971.390700px;}
.h4{height:19.764000px;}
.hb{height:24.114111px;}
.h6{height:31.206000px;}
.h7{height:33.435000px;}
.h5{height:35.328000px;}
.hf{height:37.045898px;}
.hd{height:37.098633px;}
.hc{height:37.494141px;}
.he{height:37.731445px;}
.h18{height:41.162109px;}
.h2{height:41.220703px;}
.h15{height:41.660156px;}
.h16{height:44.443359px;}
.ha{height:44.793457px;}
.h10{height:45.278320px;}
.h12{height:45.342773px;}
.h11{height:45.826172px;}
.h14{height:46.116211px;}
.h13{height:48.887695px;}
.h9{height:49.464844px;}
.h17{height:53.818359px;}
.h8{height:62.490234px;}
.h3{height:104.850000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xc{left:110.551200px;}
.x1{left:113.476500px;}
.x7{left:114.939750px;}
.x11{left:121.181100px;}
.xb{left:123.550500px;}
.x12{left:134.736300px;}
.xd{left:136.063050px;}
.x4{left:138.988350px;}
.x13{left:143.551200px;}
.x10{left:146.476500px;}
.x14{left:149.618250px;}
.x5{left:173.632800px;}
.x6{left:179.257800px;}
.x8{left:195.836100px;}
.xa{left:232.605150px;}
.xe{left:275.969850px;}
.x9{left:291.885150px;}
.xf{left:296.586750px;}
.x3{left:441.045750px;}
.x2{left:521.280900px;}
@media print{
.v2{vertical-align:-14.400000pt;}
.v3{vertical-align:-11.733333pt;}
.v4{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:11.733333pt;}
.v1{vertical-align:16.000000pt;}
.ls54{letter-spacing:-12.600000pt;}
.ls5e{letter-spacing:-11.840000pt;}
.ls60{letter-spacing:-11.440000pt;}
.ls3f{letter-spacing:-9.640000pt;}
.ls5f{letter-spacing:-9.200000pt;}
.ls40{letter-spacing:-8.880000pt;}
.ls5c{letter-spacing:-8.440000pt;}
.ls42{letter-spacing:-8.160000pt;}
.ls5d{letter-spacing:-7.720000pt;}
.ls55{letter-spacing:-7.640000pt;}
.ls52{letter-spacing:-4.440000pt;}
.ls41{letter-spacing:-3.160000pt;}
.ls32{letter-spacing:-1.173333pt;}
.ls30{letter-spacing:-1.056000pt;}
.ls31{letter-spacing:-0.821333pt;}
.ls33{letter-spacing:-0.762667pt;}
.ls1f{letter-spacing:-0.586667pt;}
.ls2c{letter-spacing:-0.528000pt;}
.ls21{letter-spacing:-0.469333pt;}
.ls2b{letter-spacing:-0.352000pt;}
.ls22{letter-spacing:-0.234667pt;}
.ls1e{letter-spacing:-0.176000pt;}
.ls23{letter-spacing:-0.152533pt;}
.ls20{letter-spacing:-0.058667pt;}
.lsa{letter-spacing:0.000000pt;}
.ls48{letter-spacing:0.000533pt;}
.ls45{letter-spacing:0.006400pt;}
.ls49{letter-spacing:0.006933pt;}
.ls46{letter-spacing:0.008000pt;}
.ls47{letter-spacing:0.008533pt;}
.ls44{letter-spacing:0.009067pt;}
.ls24{letter-spacing:0.038133pt;}
.ls8{letter-spacing:0.048000pt;}
.ls26{letter-spacing:0.053333pt;}
.lsf{letter-spacing:0.058667pt;}
.ls2d{letter-spacing:0.106667pt;}
.ls1d{letter-spacing:0.117333pt;}
.ls51{letter-spacing:0.156267pt;}
.ls34{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.176000pt;}
.ls2e{letter-spacing:0.176533pt;}
.ls6{letter-spacing:0.192000pt;}
.ls25{letter-spacing:0.213333pt;}
.ls1c{letter-spacing:0.234667pt;}
.ls50{letter-spacing:0.240000pt;}
.ls4f{letter-spacing:0.253333pt;}
.ls29{letter-spacing:0.266667pt;}
.ls4b{letter-spacing:0.280000pt;}
.ls4c{letter-spacing:0.282133pt;}
.ls7{letter-spacing:0.288000pt;}
.ls17{letter-spacing:0.293333pt;}
.ls4a{letter-spacing:0.297067pt;}
.ls3{letter-spacing:0.298667pt;}
.ls35{letter-spacing:0.320000pt;}
.ls57{letter-spacing:0.321067pt;}
.ls5b{letter-spacing:0.324800pt;}
.ls19{letter-spacing:0.352000pt;}
.ls28{letter-spacing:0.373333pt;}
.ls9{letter-spacing:0.384000pt;}
.ls37{letter-spacing:0.410667pt;}
.ls2a{letter-spacing:0.426667pt;}
.ls5a{letter-spacing:0.427200pt;}
.ls10{letter-spacing:0.469333pt;}
.ls4d{letter-spacing:0.512533pt;}
.ls4e{letter-spacing:0.520000pt;}
.lse{letter-spacing:0.528000pt;}
.ls56{letter-spacing:0.533333pt;}
.ls2{letter-spacing:0.560000pt;}
.ls11{letter-spacing:0.586667pt;}
.lsd{letter-spacing:0.645333pt;}
.ls1a{letter-spacing:0.704000pt;}
.lsc{letter-spacing:0.762667pt;}
.ls27{letter-spacing:0.800000pt;}
.ls3d{letter-spacing:0.840000pt;}
.ls3e{letter-spacing:0.853333pt;}
.ls3c{letter-spacing:0.853867pt;}
.ls13{letter-spacing:0.938667pt;}
.ls18{letter-spacing:0.997333pt;}
.ls12{letter-spacing:1.056000pt;}
.ls15{letter-spacing:1.114667pt;}
.ls4{letter-spacing:1.120000pt;}
.ls16{letter-spacing:1.173333pt;}
.ls58{letter-spacing:1.192533pt;}
.ls59{letter-spacing:1.200000pt;}
.ls39{letter-spacing:1.280000pt;}
.ls38{letter-spacing:1.281067pt;}
.ls14{letter-spacing:1.584000pt;}
.ls3b{letter-spacing:1.840000pt;}
.ls3a{letter-spacing:1.852267pt;}
.ls43{letter-spacing:1.866667pt;}
.ls2f{letter-spacing:1.877333pt;}
.ls36{letter-spacing:4.048000pt;}
.ls53{letter-spacing:6.986667pt;}
.ls1{letter-spacing:9.472000pt;}
.ls5{letter-spacing:11.120000pt;}
.lsb{letter-spacing:1192.648533pt;}
.ls0{letter-spacing:1680.819200pt;}
.ws6{word-spacing:-15.605333pt;}
.ws5{word-spacing:-15.429333pt;}
.wsc{word-spacing:-14.725333pt;}
.ws7{word-spacing:-14.666667pt;}
.ws8{word-spacing:-14.432000pt;}
.wsb{word-spacing:-14.080000pt;}
.wsf{word-spacing:-13.760000pt;}
.ws20{word-spacing:-13.653333pt;}
.wse{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.333333pt;}
.ws16{word-spacing:-11.840000pt;}
.ws13{word-spacing:-11.280000pt;}
.ws21{word-spacing:-11.200000pt;}
.ws17{word-spacing:-10.840000pt;}
.ws1c{word-spacing:-10.520000pt;}
.ws1f{word-spacing:-10.320000pt;}
.ws19{word-spacing:-10.280000pt;}
.ws1d{word-spacing:-10.240000pt;}
.ws1e{word-spacing:-10.160000pt;}
.wsd{word-spacing:-9.571467pt;}
.wsa{word-spacing:-9.533333pt;}
.ws0{word-spacing:-9.408000pt;}
.ws9{word-spacing:-9.380800pt;}
.ws10{word-spacing:-8.770667pt;}
.ws1{word-spacing:-8.666667pt;}
.ws2{word-spacing:-7.800000pt;}
.ws14{word-spacing:-6.840000pt;}
.ws18{word-spacing:-5.560000pt;}
.ws3{word-spacing:0.000000pt;}
.ws1b{word-spacing:5.760000pt;}
.ws27{word-spacing:5.840000pt;}
.ws15{word-spacing:6.320000pt;}
.ws23{word-spacing:6.600000pt;}
.ws12{word-spacing:7.760000pt;}
.ws22{word-spacing:8.040000pt;}
.ws25{word-spacing:8.800000pt;}
.ws11{word-spacing:9.280000pt;}
.ws26{word-spacing:13.280000pt;}
.ws24{word-spacing:13.680000pt;}
.ws1a{word-spacing:15.200000pt;}
._13{margin-left:-1519.866498pt;}
._d{margin-left:-14.666667pt;}
._1{margin-left:-9.477867pt;}
._6{margin-left:-8.288000pt;}
._15{margin-left:-6.958961pt;}
._12{margin-left:-3.696000pt;}
._b{margin-left:-2.100182pt;}
._5{margin-left:-1.114133pt;}
._9{width:1.488000pt;}
._3{width:2.389333pt;}
._4{width:4.144000pt;}
._8{width:5.104000pt;}
._7{width:6.003649pt;}
._a{width:7.385600pt;}
._f{width:8.462933pt;}
._2{width:10.378667pt;}
._0{width:11.861333pt;}
._11{width:13.248000pt;}
._14{width:26.317333pt;}
._10{width:39.820800pt;}
._e{width:40.909418pt;}
._c{width:1028.947200pt;}
.fs3{font-size:24.000000pt;}
.fsa{font-size:31.200000pt;}
.fs0{font-size:32.000000pt;}
.fs9{font-size:34.666667pt;}
.fs5{font-size:37.333333pt;}
.fsf{font-size:38.133333pt;}
.fs6{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fsd{font-size:45.333333pt;}
.fsb{font-size:48.000000pt;}
.fsc{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fse{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs7{font-size:80.000000pt;}
.fs2{font-size:124.266667pt;}
.y0{bottom:0.000000pt;}
.y1b1{bottom:75.590267pt;}
.y1{bottom:75.590533pt;}
.y30{bottom:75.590667pt;}
.y14e{bottom:75.590800pt;}
.y120{bottom:75.590933pt;}
.y11{bottom:105.826800pt;}
.y1b0{bottom:105.827200pt;}
.ye8{bottom:105.831200pt;}
.y112{bottom:106.149733pt;}
.y185{bottom:106.357467pt;}
.y14d{bottom:106.377733pt;}
.ydc{bottom:106.663867pt;}
.ycd{bottom:107.126667pt;}
.ya8{bottom:107.178267pt;}
.y160{bottom:107.496800pt;}
.y11f{bottom:107.584800pt;}
.y5c{bottom:114.994667pt;}
.y10{bottom:116.493467pt;}
.ye7{bottom:120.041867pt;}
.ydb{bottom:120.874400pt;}
.y111{bottom:121.443067pt;}
.y14c{bottom:121.484400pt;}
.y15f{bottom:121.707333pt;}
.y11e{bottom:121.795467pt;}
.y1af{bottom:122.085067pt;}
.y184{bottom:122.193467pt;}
.ycc{bottom:122.768000pt;}
.ya7{bottom:122.819600pt;}
.y5b{bottom:130.636000pt;}
.yf{bottom:132.829333pt;}
.ye6{bottom:134.252533pt;}
.yda{bottom:135.085067pt;}
.y15e{bottom:135.918000pt;}
.y11d{bottom:136.006133pt;}
.y14b{bottom:136.591067pt;}
.y110{bottom:136.736400pt;}
.y183{bottom:138.029467pt;}
.y1ae{bottom:138.342933pt;}
.ycb{bottom:138.409333pt;}
.ya6{bottom:138.460933pt;}
.y5a{bottom:146.277333pt;}
.y81{bottom:146.491733pt;}
.ye5{bottom:148.463200pt;}
.ye{bottom:149.165333pt;}
.yd9{bottom:149.295733pt;}
.y15d{bottom:150.128667pt;}
.y11c{bottom:150.216800pt;}
.y14a{bottom:151.697733pt;}
.y10f{bottom:152.029733pt;}
.y182{bottom:153.865467pt;}
.yca{bottom:154.050667pt;}
.ya5{bottom:154.102267pt;}
.y1ad{bottom:154.600800pt;}
.y59{bottom:161.918667pt;}
.y80{bottom:162.133067pt;}
.ye4{bottom:162.673867pt;}
.yd8{bottom:163.506400pt;}
.yd{bottom:163.611467pt;}
.y15c{bottom:164.339333pt;}
.y11b{bottom:164.427467pt;}
.y149{bottom:166.804400pt;}
.y10e{bottom:167.323067pt;}
.yc9{bottom:169.692000pt;}
.y181{bottom:169.701467pt;}
.ya4{bottom:169.743600pt;}
.y1ac{bottom:170.858800pt;}
.yc{bottom:174.278133pt;}
.ye3{bottom:176.884400pt;}
.y58{bottom:177.560000pt;}
.yd7{bottom:177.717067pt;}
.y7f{bottom:177.774400pt;}
.y15b{bottom:178.550000pt;}
.y11a{bottom:178.638133pt;}
.y148{bottom:181.911067pt;}
.y10d{bottom:182.616400pt;}
.yb{bottom:184.944800pt;}
.yc8{bottom:185.333333pt;}
.ya3{bottom:185.384933pt;}
.y180{bottom:185.537467pt;}
.y1ab{bottom:187.116667pt;}
.ye2{bottom:191.095067pt;}
.yd6{bottom:191.927733pt;}
.y15a{bottom:192.760667pt;}
.y119{bottom:192.848800pt;}
.y57{bottom:193.201333pt;}
.y7e{bottom:193.415733pt;}
.y147{bottom:197.017733pt;}
.y10c{bottom:197.909733pt;}
.yc7{bottom:200.974667pt;}
.ya2{bottom:201.026267pt;}
.ya{bottom:201.280800pt;}
.y17f{bottom:201.373467pt;}
.y1aa{bottom:203.374533pt;}
.ye1{bottom:205.305733pt;}
.yd5{bottom:206.138400pt;}
.y159{bottom:206.971333pt;}
.y118{bottom:207.059467pt;}
.y56{bottom:208.842667pt;}
.y7d{bottom:209.057067pt;}
.y9{bottom:211.947467pt;}
.y146{bottom:212.124400pt;}
.y10b{bottom:213.203067pt;}
.yc6{bottom:216.616000pt;}
.ya1{bottom:216.667600pt;}
.y17e{bottom:217.209467pt;}
.ye0{bottom:219.516400pt;}
.y1a9{bottom:219.632400pt;}
.yd4{bottom:220.349067pt;}
.y158{bottom:221.182000pt;}
.y117{bottom:221.270133pt;}
.y8{bottom:222.614133pt;}
.y55{bottom:224.484000pt;}
.y7c{bottom:224.698400pt;}
.y145{bottom:227.231067pt;}
.y10a{bottom:228.496400pt;}
.yc5{bottom:232.257333pt;}
.ya0{bottom:232.308933pt;}
.y17d{bottom:233.045467pt;}
.ydf{bottom:233.727067pt;}
.yd3{bottom:234.559733pt;}
.y157{bottom:235.392667pt;}
.y116{bottom:235.480667pt;}
.y1a8{bottom:235.890400pt;}
.y54{bottom:240.125333pt;}
.y7b{bottom:240.339733pt;}
.y144{bottom:242.337733pt;}
.y109{bottom:243.789733pt;}
.yc4{bottom:247.898667pt;}
.yde{bottom:247.937733pt;}
.y9f{bottom:247.950267pt;}
.yd2{bottom:248.770267pt;}
.y17c{bottom:248.881467pt;}
.y156{bottom:249.603333pt;}
.y115{bottom:249.691333pt;}
.y2f{bottom:251.496000pt;}
.y1a7{bottom:252.148267pt;}
.y53{bottom:255.766667pt;}
.y143{bottom:257.444400pt;}
.y108{bottom:259.083067pt;}
.ydd{bottom:262.148400pt;}
.yd1{bottom:262.980933pt;}
.yc3{bottom:263.540000pt;}
.y9e{bottom:263.591600pt;}
.y7a{bottom:263.800933pt;}
.y155{bottom:263.813867pt;}
.y114{bottom:263.902000pt;}
.y17b{bottom:264.717467pt;}
.y2e{bottom:265.706667pt;}
.y1a6{bottom:268.406133pt;}
.y52{bottom:271.408000pt;}
.y142{bottom:272.551067pt;}
.y107{bottom:274.376400pt;}
.yd0{bottom:277.191600pt;}
.y154{bottom:278.024533pt;}
.y113{bottom:278.112667pt;}
.yc2{bottom:279.181333pt;}
.y17a{bottom:280.553467pt;}
.y1a5{bottom:284.664133pt;}
.y2d{bottom:287.022800pt;}
.y51{bottom:287.049333pt;}
.y9d{bottom:287.052800pt;}
.y141{bottom:287.657733pt;}
.y106{bottom:289.669733pt;}
.ycf{bottom:291.402267pt;}
.y153{bottom:292.235200pt;}
.yc1{bottom:294.822667pt;}
.y1a4{bottom:300.922000pt;}
.y2c{bottom:301.233467pt;}
.y140{bottom:302.764400pt;}
.y79{bottom:302.901733pt;}
.y105{bottom:304.963067pt;}
.yce{bottom:305.612933pt;}
.y152{bottom:306.445867pt;}
.y50{bottom:310.510533pt;}
.y179{bottom:312.029200pt;}
.y2b{bottom:315.444133pt;}
.y1a3{bottom:317.179867pt;}
.y13f{bottom:317.871067pt;}
.yc0{bottom:318.283867pt;}
.y78{bottom:318.543067pt;}
.y104{bottom:320.256400pt;}
.y151{bottom:320.656533pt;}
.y4f{bottom:326.151867pt;}
.y9c{bottom:326.153600pt;}
.y1d1{bottom:329.414400pt;}
.y2a{bottom:329.654800pt;}
.y13e{bottom:332.977733pt;}
.y1a2{bottom:333.437733pt;}
.ybf{bottom:333.925200pt;}
.y77{bottom:334.184400pt;}
.y150{bottom:334.867200pt;}
.y103{bottom:335.549733pt;}
.y4e{bottom:341.793200pt;}
.y9b{bottom:341.794933pt;}
.y29{bottom:343.865467pt;}
.y1d0{bottom:345.250267pt;}
.y13d{bottom:348.084400pt;}
.y14f{bottom:349.077867pt;}
.ybe{bottom:349.566533pt;}
.y1a1{bottom:349.695733pt;}
.y76{bottom:349.825733pt;}
.y102{bottom:350.843067pt;}
.y4d{bottom:357.434533pt;}
.y9a{bottom:357.436267pt;}
.y28{bottom:358.076133pt;}
.y1cf{bottom:361.086400pt;}
.ybd{bottom:365.207867pt;}
.y178{bottom:365.465733pt;}
.y75{bottom:365.467067pt;}
.y1a0{bottom:365.953600pt;}
.y101{bottom:366.136400pt;}
.y13c{bottom:371.010933pt;}
.y27{bottom:372.286800pt;}
.y4c{bottom:373.075867pt;}
.y99{bottom:373.077600pt;}
.y1ce{bottom:376.922400pt;}
.ybc{bottom:380.849200pt;}
.y177{bottom:381.107067pt;}
.y74{bottom:381.108400pt;}
.y19f{bottom:382.211467pt;}
.y13b{bottom:386.117600pt;}
.y26{bottom:386.497600pt;}
.y4b{bottom:388.717200pt;}
.y98{bottom:388.718933pt;}
.y100{bottom:389.249600pt;}
.y1cd{bottom:392.758400pt;}
.ybb{bottom:396.490533pt;}
.y176{bottom:396.748400pt;}
.y73{bottom:396.749733pt;}
.y19e{bottom:398.469467pt;}
.y13a{bottom:401.224267pt;}
.y4a{bottom:404.358533pt;}
.y97{bottom:404.360267pt;}
.y1cc{bottom:408.594400pt;}
.yba{bottom:412.131867pt;}
.y175{bottom:412.389733pt;}
.y72{bottom:412.391067pt;}
.y19d{bottom:414.727333pt;}
.y25{bottom:414.919200pt;}
.y139{bottom:416.330933pt;}
.y49{bottom:419.999867pt;}
.y96{bottom:420.001600pt;}
.y1cb{bottom:424.430400pt;}
.yb9{bottom:427.773200pt;}
.yff{bottom:428.002400pt;}
.y174{bottom:428.031067pt;}
.y71{bottom:428.032400pt;}
.y24{bottom:429.129867pt;}
.y19c{bottom:430.985200pt;}
.y138{bottom:431.437600pt;}
.y48{bottom:435.641200pt;}
.y95{bottom:435.642933pt;}
.y1ca{bottom:440.266400pt;}
.yfe{bottom:443.295733pt;}
.yb8{bottom:443.414533pt;}
.y173{bottom:443.672400pt;}
.y70{bottom:443.673733pt;}
.y137{bottom:446.544267pt;}
.y19b{bottom:447.243067pt;}
.y23{bottom:450.446133pt;}
.y47{bottom:451.282533pt;}
.y94{bottom:451.284267pt;}
.y1c9{bottom:456.102400pt;}
.yfd{bottom:458.589067pt;}
.yb7{bottom:459.055867pt;}
.y172{bottom:459.313733pt;}
.y6f{bottom:459.315067pt;}
.y136{bottom:461.650933pt;}
.y19a{bottom:463.501067pt;}
.y22{bottom:464.656800pt;}
.y46{bottom:466.923867pt;}
.y93{bottom:466.925600pt;}
.y1c8{bottom:471.938400pt;}
.yfc{bottom:473.882400pt;}
.yb6{bottom:474.697200pt;}
.y171{bottom:474.955067pt;}
.y6e{bottom:474.956400pt;}
.y21{bottom:478.867467pt;}
.y199{bottom:479.758933pt;}
.y45{bottom:482.565200pt;}
.y92{bottom:482.566933pt;}
.y135{bottom:484.577467pt;}
.y1c7{bottom:487.774267pt;}
.yfb{bottom:489.175733pt;}
.yb5{bottom:490.338533pt;}
.y170{bottom:490.596400pt;}
.y6d{bottom:490.597733pt;}
.y20{bottom:493.078133pt;}
.y198{bottom:496.016800pt;}
.y44{bottom:498.206533pt;}
.y91{bottom:498.208267pt;}
.y134{bottom:499.684133pt;}
.y1c6{bottom:503.610400pt;}
.yfa{bottom:504.469067pt;}
.yb4{bottom:505.979867pt;}
.y16f{bottom:506.237733pt;}
.y6c{bottom:506.239067pt;}
.y1f{bottom:507.288800pt;}
.y197{bottom:512.274800pt;}
.y43{bottom:513.847867pt;}
.y1c5{bottom:519.446267pt;}
.yf9{bottom:519.762400pt;}
.y1e{bottom:521.499467pt;}
.yb3{bottom:521.621200pt;}
.y90{bottom:521.669467pt;}
.y16e{bottom:521.879067pt;}
.y6b{bottom:521.880400pt;}
.y196{bottom:528.532667pt;}
.y42{bottom:529.489200pt;}
.yf8{bottom:535.055733pt;}
.y1c4{bottom:535.282400pt;}
.y1d{bottom:535.710133pt;}
.yb2{bottom:537.262533pt;}
.y16d{bottom:537.520400pt;}
.y6a{bottom:537.521733pt;}
.y133{bottom:538.250267pt;}
.y195{bottom:544.790533pt;}
.y41{bottom:545.130533pt;}
.y1c{bottom:549.920800pt;}
.yf7{bottom:550.349067pt;}
.y1c3{bottom:551.118267pt;}
.yb1{bottom:552.903867pt;}
.y16c{bottom:553.161733pt;}
.y69{bottom:553.163067pt;}
.y132{bottom:553.357067pt;}
.y8f{bottom:560.770267pt;}
.y40{bottom:560.771867pt;}
.y194{bottom:561.048400pt;}
.y1b{bottom:564.131467pt;}
.yf6{bottom:565.642400pt;}
.y1c2{bottom:566.954400pt;}
.y131{bottom:568.463600pt;}
.y68{bottom:568.804400pt;}
.yb0{bottom:576.365067pt;}
.y8e{bottom:576.411600pt;}
.y193{bottom:577.306267pt;}
.yf5{bottom:580.935733pt;}
.y1c1{bottom:582.790400pt;}
.y130{bottom:583.570267pt;}
.y3f{bottom:584.233067pt;}
.y16b{bottom:584.442800pt;}
.yaf{bottom:592.006400pt;}
.y8d{bottom:592.052933pt;}
.y67{bottom:592.265600pt;}
.y192{bottom:593.564267pt;}
.yf4{bottom:596.229067pt;}
.y1c0{bottom:598.626400pt;}
.y3e{bottom:599.874400pt;}
.y12f{bottom:606.496800pt;}
.y8c{bottom:607.694400pt;}
.y191{bottom:609.822133pt;}
.yf3{bottom:611.522400pt;}
.y1bf{bottom:614.462267pt;}
.y3d{bottom:615.515733pt;}
.yae{bottom:619.507867pt;}
.y12e{bottom:621.603467pt;}
.y8b{bottom:623.335600pt;}
.y66{bottom:623.546667pt;}
.y190{bottom:626.080000pt;}
.yf2{bottom:626.815733pt;}
.y1a{bottom:627.296533pt;}
.y1be{bottom:630.298400pt;}
.y3c{bottom:631.157067pt;}
.y16a{bottom:631.363467pt;}
.y12d{bottom:636.710133pt;}
.y8a{bottom:638.976933pt;}
.y19{bottom:641.507200pt;}
.yf1{bottom:642.109067pt;}
.y18f{bottom:642.338000pt;}
.y1bd{bottom:646.134400pt;}
.y3b{bottom:646.798400pt;}
.y169{bottom:647.004800pt;}
.y12c{bottom:651.816800pt;}
.y89{bottom:654.618267pt;}
.y18{bottom:655.717867pt;}
.yf0{bottom:657.402400pt;}
.y18e{bottom:658.595867pt;}
.y1bc{bottom:661.970400pt;}
.y3a{bottom:662.439733pt;}
.y168{bottom:662.646133pt;}
.yad{bottom:666.428533pt;}
.y12b{bottom:666.923467pt;}
.y17{bottom:669.928533pt;}
.y88{bottom:670.259600pt;}
.y65{bottom:670.467333pt;}
.yef{bottom:672.695733pt;}
.y18d{bottom:674.853733pt;}
.y1bb{bottom:677.806267pt;}
.y39{bottom:678.081067pt;}
.y167{bottom:678.287467pt;}
.y12a{bottom:682.030133pt;}
.yac{bottom:682.069867pt;}
.y87{bottom:685.900933pt;}
.y64{bottom:686.108667pt;}
.yee{bottom:687.989067pt;}
.y16{bottom:688.359067pt;}
.y18c{bottom:691.111600pt;}
.y1ba{bottom:693.642400pt;}
.y38{bottom:693.722400pt;}
.y166{bottom:693.928933pt;}
.y129{bottom:697.136933pt;}
.yab{bottom:697.711200pt;}
.y86{bottom:701.542267pt;}
.y63{bottom:701.750000pt;}
.yed{bottom:703.282400pt;}
.y18b{bottom:707.369600pt;}
.y37{bottom:709.363733pt;}
.y1b9{bottom:709.478400pt;}
.y165{bottom:709.570133pt;}
.y128{bottom:712.243467pt;}
.yaa{bottom:713.352667pt;}
.y85{bottom:717.183733pt;}
.y62{bottom:717.391333pt;}
.yec{bottom:718.575733pt;}
.y15{bottom:719.118533pt;}
.y18a{bottom:723.627467pt;}
.y36{bottom:725.005067pt;}
.y164{bottom:725.211467pt;}
.y1b8{bottom:725.314400pt;}
.y127{bottom:727.350133pt;}
.y84{bottom:732.825067pt;}
.y61{bottom:733.032667pt;}
.yeb{bottom:733.868933pt;}
.ya9{bottom:736.813867pt;}
.y14{bottom:738.318400pt;}
.y189{bottom:739.885333pt;}
.y35{bottom:740.646533pt;}
.y163{bottom:740.852800pt;}
.y1b7{bottom:741.150400pt;}
.y126{bottom:742.456933pt;}
.y83{bottom:748.466267pt;}
.y60{bottom:748.674000pt;}
.yea{bottom:749.162267pt;}
.y188{bottom:756.143200pt;}
.y34{bottom:756.287733pt;}
.y162{bottom:756.494133pt;}
.y1b6{bottom:756.986267pt;}
.y125{bottom:757.563467pt;}
.y13{bottom:761.298000pt;}
.y82{bottom:764.107600pt;}
.y5f{bottom:772.135200pt;}
.y161{bottom:772.135467pt;}
.ye9{bottom:772.275467pt;}
.y187{bottom:772.401067pt;}
.y124{bottom:772.670133pt;}
.y1b5{bottom:772.822400pt;}
.y12{bottom:783.964667pt;}
.y33{bottom:787.568800pt;}
.y5e{bottom:787.776533pt;}
.y123{bottom:787.776800pt;}
.y1b4{bottom:788.658400pt;}
.y186{bottom:788.659067pt;}
.y5{bottom:818.104133pt;}
.y1b3{bottom:828.335733pt;}
.y32{bottom:828.336133pt;}
.y122{bottom:828.336400pt;}
.y4{bottom:834.691333pt;}
.y3{bottom:840.424667pt;}
.y1b2{bottom:843.977067pt;}
.y5d{bottom:843.977333pt;}
.y31{bottom:843.977467pt;}
.y121{bottom:843.977733pt;}
.y2{bottom:847.352933pt;}
.y7{bottom:851.458400pt;}
.y6{bottom:863.458400pt;}
.h4{height:17.568000pt;}
.hb{height:21.434766pt;}
.h6{height:27.738667pt;}
.h7{height:29.720000pt;}
.h5{height:31.402667pt;}
.hf{height:32.929688pt;}
.hd{height:32.976562pt;}
.hc{height:33.328125pt;}
.he{height:33.539062pt;}
.h18{height:36.588542pt;}
.h2{height:36.640625pt;}
.h15{height:37.031250pt;}
.h16{height:39.505208pt;}
.ha{height:39.816406pt;}
.h10{height:40.247396pt;}
.h12{height:40.304688pt;}
.h11{height:40.734375pt;}
.h14{height:40.992188pt;}
.h13{height:43.455729pt;}
.h9{height:43.968750pt;}
.h17{height:47.838542pt;}
.h8{height:55.546875pt;}
.h3{height:93.200000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xc{left:98.267733pt;}
.x1{left:100.868000pt;}
.x7{left:102.168667pt;}
.x11{left:107.716533pt;}
.xb{left:109.822667pt;}
.x12{left:119.765600pt;}
.xd{left:120.944933pt;}
.x4{left:123.545200pt;}
.x13{left:127.601067pt;}
.x10{left:130.201333pt;}
.x14{left:132.994000pt;}
.x5{left:154.340267pt;}
.x6{left:159.340267pt;}
.x8{left:174.076533pt;}
.xa{left:206.760133pt;}
.xe{left:245.306533pt;}
.x9{left:259.453467pt;}
.xf{left:263.632667pt;}
.x3{left:392.040667pt;}
.x2{left:463.360800pt;}
}




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