
    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_c80407b9f165ee2eaf06e3a5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893066;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_c31b4b8cca572cd1e4bf7dcd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.050293;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_9cf5e247a0363c137bfbce2f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_036bdc6c176455a95b6cee62.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_75667e827dd1895840c1d183.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;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_28fe8e2f6499742b6166e687.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.911133;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_28fe8e2f6499742b6166e687.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.911133;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_52ab0a40caee3dc28b873b94.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.675781;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_127dfa28654c87c3fd51b08e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.050293;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_52ab0a40caee3dc28b873b94.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.675781;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_127dfa28654c87c3fd51b08e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.050293;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_bb94ab777b23a42f15c8b5e8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.893066;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_ea4e2c601f76fefcec69e7d3.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.712000;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:-19.980600px;}
.v1{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:27.000000px;}
.v3{vertical-align:30.000000px;}
.v7{vertical-align:54.000000px;}
.v4{vertical-align:60.000000px;}
.v6{vertical-align:81.000000px;}
.ls1{letter-spacing:-0.096000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000600px;}
.ls22{letter-spacing:0.810000px;}
.ls14{letter-spacing:1.944000px;}
.ls3{letter-spacing:2.310000px;}
.ls2{letter-spacing:2.520000px;}
.ls23{letter-spacing:2.646000px;}
.ls1b{letter-spacing:2.970000px;}
.ls25{letter-spacing:2.976000px;}
.ls16{letter-spacing:5.292000px;}
.ls1e{letter-spacing:5.400000px;}
.ls9{letter-spacing:6.426000px;}
.lsf{letter-spacing:7.830000px;}
.lsb{letter-spacing:10.044000px;}
.lsc{letter-spacing:11.070000px;}
.ls1a{letter-spacing:12.042000px;}
.ls13{letter-spacing:12.258000px;}
.ls12{letter-spacing:14.742000px;}
.ls6{letter-spacing:15.444000px;}
.ls1f{letter-spacing:15.498000px;}
.lse{letter-spacing:15.552000px;}
.ls17{letter-spacing:15.822000px;}
.ls1d{letter-spacing:16.308000px;}
.ls24{letter-spacing:17.064000px;}
.ls21{letter-spacing:18.954000px;}
.ls8{letter-spacing:19.116000px;}
.ls20{letter-spacing:22.572000px;}
.lsa{letter-spacing:44.280000px;}
.ls7{letter-spacing:46.440000px;}
.ls11{letter-spacing:60.642000px;}
.ls19{letter-spacing:61.074000px;}
.ls18{letter-spacing:83.694000px;}
.ls15{letter-spacing:95.611800px;}
.ls10{letter-spacing:122.611800px;}
.ls1c{letter-spacing:125.591400px;}
.lsd{letter-spacing:137.562000px;}
.ls5{letter-spacing:157.203600px;}
.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;}
}
.ws2a{word-spacing:-61.074000px;}
.ws1f{word-spacing:-60.642000px;}
.ws16{word-spacing:-46.440000px;}
.ws19{word-spacing:-44.280000px;}
.ws25{word-spacing:-22.572000px;}
.ws17{word-spacing:-19.116000px;}
.ws26{word-spacing:-18.954000px;}
.ws2b{word-spacing:-17.064000px;}
.ws14{word-spacing:-16.308000px;}
.ws29{word-spacing:-15.822000px;}
.ws1d{word-spacing:-15.552000px;}
.ws20{word-spacing:-15.498000px;}
.ws15{word-spacing:-15.444000px;}
.ws3{word-spacing:-15.000000px;}
.ws21{word-spacing:-14.742000px;}
.ws1{word-spacing:-13.500000px;}
.ws22{word-spacing:-12.258000px;}
.ws2c{word-spacing:-12.042000px;}
.ws2e{word-spacing:-12.000000px;}
.ws1c{word-spacing:-11.070000px;}
.ws1a{word-spacing:-10.044000px;}
.ws2{word-spacing:-8.745000px;}
.ws0{word-spacing:-7.870500px;}
.ws1e{word-spacing:-7.830000px;}
.ws18{word-spacing:-6.426000px;}
.ws1b{word-spacing:-5.400000px;}
.ws24{word-spacing:-5.292000px;}
.ws2f{word-spacing:-2.976000px;}
.ws2d{word-spacing:-2.970000px;}
.ws28{word-spacing:-2.646000px;}
.wsd{word-spacing:-2.520000px;}
.ws13{word-spacing:-2.310000px;}
.ws23{word-spacing:-1.944000px;}
.ws27{word-spacing:-0.810000px;}
.ws4{word-spacing:0.000000px;}
.ws5{word-spacing:0.096000px;}
.wse{word-spacing:42.910800px;}
.wsc{word-spacing:62.452200px;}
.ws12{word-spacing:75.844200px;}
.ws6{word-spacing:79.692600px;}
.ws10{word-spacing:84.719400px;}
.ws11{word-spacing:94.304400px;}
.ws9{word-spacing:121.084200px;}
.wsa{word-spacing:146.433600px;}
.wsb{word-spacing:155.451600px;}
.ws7{word-spacing:161.335200px;}
.wsf{word-spacing:165.686400px;}
.ws8{word-spacing:182.462400px;}
._3{margin-left:-2187.444000px;}
._43{margin-left:-61.192200px;}
._30{margin-left:-46.450800px;}
._36{margin-left:-44.290800px;}
._49{margin-left:-22.777200px;}
._35{margin-left:-19.116000px;}
._2d{margin-left:-16.410600px;}
._47{margin-left:-14.736600px;}
._48{margin-left:-12.258000px;}
._38{margin-left:-10.054800px;}
._28{margin-left:-8.903400px;}
._42{margin-left:-7.830000px;}
._1f{margin-left:-6.613200px;}
._4{margin-left:-5.301600px;}
._2{margin-left:-4.053600px;}
._0{margin-left:-3.040200px;}
._1{margin-left:-1.506600px;}
._7{width:1.818000px;}
._5{width:3.744000px;}
._8{width:4.800000px;}
._6{width:5.886000px;}
._1a{width:7.887000px;}
._9{width:8.910000px;}
._b{width:10.164000px;}
._11{width:11.451000px;}
._f{width:12.850200px;}
._27{width:13.952400px;}
._10{width:14.995200px;}
._2e{width:16.308000px;}
._a{width:18.440400px;}
._e{width:19.932000px;}
._15{width:21.245400px;}
._c{width:22.341000px;}
._1b{width:23.562000px;}
._21{width:24.717000px;}
._1d{width:25.720200px;}
._1c{width:27.231600px;}
._1e{width:28.419600px;}
._22{width:29.429400px;}
._d{width:31.600800px;}
._14{width:33.580800px;}
._20{width:35.560800px;}
._18{width:36.808200px;}
._19{width:37.857600px;}
._13{width:40.075200px;}
._32{width:41.094000px;}
._12{width:42.292800px;}
._37{width:44.280000px;}
._31{width:46.440000px;}
._17{width:48.694800px;}
._23{width:51.302400px;}
._4d{width:52.351200px;}
._4e{width:58.934400px;}
._44{width:60.642000px;}
._45{width:62.883000px;}
._2f{width:64.567800px;}
._25{width:70.021800px;}
._29{width:75.081000px;}
._4a{width:79.331400px;}
._39{width:81.135000px;}
._3b{width:84.471600px;}
._40{width:88.192800px;}
._3c{width:93.647400px;}
._33{width:97.605000px;}
._4b{width:112.152600px;}
._4c{width:115.549200px;}
._41{width:124.524000px;}
._3a{width:135.680400px;}
._3f{width:143.883000px;}
._3d{width:154.791600px;}
._34{width:162.027000px;}
._2a{width:165.777000px;}
._2b{width:169.336200px;}
._46{width:173.010600px;}
._3e{width:190.450200px;}
._24{width:199.477200px;}
._2c{width:202.416000px;}
._16{width:1627.566600px;}
._26{width:1628.878200px;}
.fc5{color:rgb(0,173,239);}
.fc4{color:transparent;}
.fc6{color:rgb(24,23,23);}
.fc2{color:rgb(48,88,159);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs2{font-size:31.482000px;}
.fs5{font-size:34.980000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y12{bottom:19.166100px;}
.y13{bottom:30.289950px;}
.yc{bottom:30.301800px;}
.y46{bottom:30.906150px;}
.y45{bottom:33.478950px;}
.y9f{bottom:33.490650px;}
.y10{bottom:33.691200px;}
.y101{bottom:63.779550px;}
.y162{bottom:64.091100px;}
.y16c{bottom:66.087150px;}
.y139{bottom:66.583200px;}
.y43{bottom:66.939450px;}
.y1c7{bottom:68.215050px;}
.y70{bottom:72.677700px;}
.y100{bottom:77.279550px;}
.y16b{bottom:78.087150px;}
.y1c6{bottom:80.215050px;}
.y161{bottom:83.591100px;}
.y138{bottom:86.083200px;}
.y42{bottom:86.439450px;}
.y16a{bottom:90.087150px;}
.yff{bottom:90.779550px;}
.y32{bottom:91.226850px;}
.y6f{bottom:92.177700px;}
.y1c5{bottom:92.215050px;}
.y160{bottom:103.091100px;}
.y1c4{bottom:104.215050px;}
.y137{bottom:105.583200px;}
.y41{bottom:105.939450px;}
.yfe{bottom:107.737200px;}
.y31{bottom:110.726850px;}
.y6e{bottom:111.677700px;}
.y169{bottom:114.087150px;}
.yfb{bottom:114.487200px;}
.y1c3{bottom:116.215050px;}
.yfd{bottom:121.237200px;}
.y15f{bottom:122.591100px;}
.y136{bottom:125.083200px;}
.y40{bottom:125.439450px;}
.yfa{bottom:127.987200px;}
.y1c2{bottom:128.215050px;}
.y30{bottom:130.226850px;}
.y6d{bottom:131.177700px;}
.yfc{bottom:134.737200px;}
.y1c1{bottom:140.215050px;}
.y15e{bottom:142.091100px;}
.y135{bottom:144.583200px;}
.y2f{bottom:149.726850px;}
.y6c{bottom:150.677700px;}
.y1c0{bottom:152.215050px;}
.yf9{bottom:152.601450px;}
.y168{bottom:153.087150px;}
.yf5{bottom:159.351450px;}
.y15d{bottom:161.591100px;}
.y134{bottom:164.083200px;}
.y1bf{bottom:164.215050px;}
.y3f{bottom:164.439450px;}
.yf8{bottom:166.101450px;}
.y6b{bottom:170.177700px;}
.y167{bottom:172.587150px;}
.yf4{bottom:172.851450px;}
.y1be{bottom:176.215050px;}
.y2e{bottom:177.730800px;}
.yf7{bottom:179.601450px;}
.y15c{bottom:181.091100px;}
.y133{bottom:183.583200px;}
.y3e{bottom:183.939450px;}
.yf3{bottom:186.351450px;}
.y1bd{bottom:188.215050px;}
.y6a{bottom:189.677700px;}
.y166{bottom:192.087150px;}
.yf6{bottom:193.101450px;}
.y2d{bottom:197.230800px;}
.y1bc{bottom:200.215050px;}
.y15b{bottom:200.591100px;}
.y3d{bottom:203.439450px;}
.y69{bottom:209.177700px;}
.yf1{bottom:210.965850px;}
.y132{bottom:211.587150px;}
.y1bb{bottom:212.215050px;}
.y2c{bottom:216.730800px;}
.yef{bottom:217.715850px;}
.y15a{bottom:220.091100px;}
.y3c{bottom:222.939450px;}
.y1ba{bottom:224.215050px;}
.yed{bottom:224.465850px;}
.y87{bottom:228.677700px;}
.y131{bottom:231.087150px;}
.yee{bottom:231.215850px;}
.y1b9{bottom:236.215050px;}
.y2b{bottom:236.230800px;}
.y68{bottom:237.181650px;}
.yec{bottom:237.965850px;}
.y159{bottom:239.591100px;}
.y3b{bottom:242.439450px;}
.yf2{bottom:244.715850px;}
.y86{bottom:248.177700px;}
.y1b8{bottom:248.215050px;}
.y130{bottom:250.587150px;}
.yf0{bottom:251.465850px;}
.y2a{bottom:255.730800px;}
.y67{bottom:256.681650px;}
.y158{bottom:259.091100px;}
.y1b7{bottom:260.215050px;}
.y3a{bottom:261.939450px;}
.y85{bottom:267.677700px;}
.yea{bottom:269.330100px;}
.y12f{bottom:270.087150px;}
.y1b6{bottom:272.215050px;}
.y29{bottom:275.230800px;}
.ye8{bottom:276.080100px;}
.y66{bottom:276.181650px;}
.y157{bottom:278.591100px;}
.y39{bottom:281.439450px;}
.ye9{bottom:282.830100px;}
.y1b5{bottom:284.215050px;}
.y84{bottom:287.177700px;}
.ye7{bottom:289.580100px;}
.y12e{bottom:289.587150px;}
.y28{bottom:294.730800px;}
.y65{bottom:295.681650px;}
.y1b4{bottom:296.215050px;}
.yeb{bottom:296.330100px;}
.y156{bottom:298.091100px;}
.y83{bottom:306.677700px;}
.y1b3{bottom:308.215050px;}
.y12d{bottom:309.087150px;}
.y38{bottom:309.443400px;}
.ye6{bottom:314.194350px;}
.y27{bottom:314.230800px;}
.y64{bottom:315.181650px;}
.y155{bottom:317.591100px;}
.y1b2{bottom:320.215050px;}
.ye4{bottom:320.944350px;}
.y82{bottom:326.177700px;}
.ye1{bottom:327.694350px;}
.y12c{bottom:328.587150px;}
.y37{bottom:328.943400px;}
.y1b1{bottom:332.215050px;}
.y26{bottom:333.730800px;}
.ye3{bottom:334.444350px;}
.y63{bottom:334.681650px;}
.y154{bottom:337.091100px;}
.ye0{bottom:341.194350px;}
.y1b0{bottom:344.215050px;}
.y81{bottom:345.677700px;}
.ye2{bottom:347.944350px;}
.y12b{bottom:348.087150px;}
.y36{bottom:348.443400px;}
.y25{bottom:353.230800px;}
.y62{bottom:354.181650px;}
.ye5{bottom:354.694350px;}
.y1af{bottom:356.215050px;}
.y153{bottom:356.591100px;}
.y80{bottom:365.177700px;}
.y12a{bottom:367.587150px;}
.y35{bottom:367.943400px;}
.y1ae{bottom:368.215050px;}
.ydf{bottom:372.558600px;}
.y24{bottom:372.730800px;}
.y61{bottom:373.681650px;}
.y1ad{bottom:380.215050px;}
.y7f{bottom:384.677700px;}
.yde{bottom:386.058600px;}
.y129{bottom:387.087150px;}
.y34{bottom:387.443400px;}
.y1ac{bottom:392.215050px;}
.y23{bottom:392.230800px;}
.y60{bottom:393.181650px;}
.y152{bottom:395.591100px;}
.y1ab{bottom:404.215050px;}
.y128{bottom:406.587150px;}
.y102{bottom:406.764900px;}
.y33{bottom:406.943400px;}
.y22{bottom:411.730800px;}
.y5f{bottom:412.681650px;}
.y151{bottom:415.091100px;}
.y1aa{bottom:416.215050px;}
.y7e{bottom:423.677700px;}
.y127{bottom:426.087150px;}
.y1a9{bottom:428.215050px;}
.y5e{bottom:432.181650px;}
.y150{bottom:434.591100px;}
.yba{bottom:436.126500px;}
.y1a8{bottom:440.215050px;}
.y7d{bottom:443.177700px;}
.yce{bottom:444.630450px;}
.y126{bottom:445.587150px;}
.y5d{bottom:451.681650px;}
.y1a7{bottom:452.215050px;}
.y14f{bottom:454.091100px;}
.yb9{bottom:455.626500px;}
.y7c{bottom:462.677700px;}
.ycd{bottom:464.130450px;}
.y1a6{bottom:464.215050px;}
.y125{bottom:465.087150px;}
.y21{bottom:467.077350px;}
.y5c{bottom:471.181650px;}
.y14e{bottom:473.591100px;}
.yb8{bottom:475.126500px;}
.y1a5{bottom:476.215050px;}
.y7b{bottom:482.177700px;}
.ycc{bottom:483.630450px;}
.y124{bottom:484.587150px;}
.y1a4{bottom:488.215050px;}
.y5b{bottom:490.681650px;}
.y14d{bottom:493.091100px;}
.y20{bottom:493.581150px;}
.yb7{bottom:494.626500px;}
.y1a3{bottom:500.215050px;}
.y7a{bottom:501.677700px;}
.ycb{bottom:503.130450px;}
.y123{bottom:504.087150px;}
.y5a{bottom:510.181650px;}
.y1f{bottom:511.581150px;}
.y1a2{bottom:512.215050px;}
.y14c{bottom:512.591100px;}
.yb6{bottom:514.126500px;}
.y79{bottom:521.177700px;}
.yca{bottom:522.630450px;}
.y122{bottom:523.587150px;}
.y1a1{bottom:524.215050px;}
.y1e{bottom:529.581150px;}
.y59{bottom:529.681650px;}
.y14b{bottom:532.091100px;}
.yb5{bottom:533.626500px;}
.y1a0{bottom:536.215050px;}
.y78{bottom:540.677700px;}
.yc9{bottom:542.130450px;}
.y121{bottom:543.087150px;}
.y1d{bottom:547.581300px;}
.y19f{bottom:548.215050px;}
.y58{bottom:549.181650px;}
.y14a{bottom:551.591100px;}
.yb4{bottom:553.126500px;}
.y77{bottom:560.177700px;}
.y19e{bottom:560.215050px;}
.yc8{bottom:561.630450px;}
.y120{bottom:562.587150px;}
.y1c{bottom:565.581300px;}
.y57{bottom:568.681650px;}
.y149{bottom:571.091100px;}
.y19d{bottom:572.215050px;}
.yb3{bottom:572.626500px;}
.y76{bottom:579.677700px;}
.yc7{bottom:581.130450px;}
.y11f{bottom:582.087150px;}
.y1b{bottom:583.581300px;}
.y19c{bottom:584.215050px;}
.y56{bottom:588.181650px;}
.y148{bottom:590.591100px;}
.yb2{bottom:592.126500px;}
.y19b{bottom:596.215050px;}
.y75{bottom:599.177700px;}
.yc6{bottom:600.630450px;}
.y1a{bottom:601.581300px;}
.y11e{bottom:601.587150px;}
.y55{bottom:607.681650px;}
.y19a{bottom:608.215050px;}
.y147{bottom:610.091100px;}
.yb1{bottom:611.626500px;}
.y74{bottom:618.677700px;}
.y19{bottom:619.581300px;}
.yc5{bottom:620.130450px;}
.y199{bottom:620.215050px;}
.y11d{bottom:621.087150px;}
.y54{bottom:627.181650px;}
.y146{bottom:629.591100px;}
.yb0{bottom:631.126500px;}
.y198{bottom:632.215050px;}
.y18{bottom:637.581300px;}
.y73{bottom:638.177700px;}
.yc4{bottom:639.630450px;}
.y11c{bottom:640.587150px;}
.y197{bottom:644.215050px;}
.y145{bottom:649.091100px;}
.yaf{bottom:650.626500px;}
.y17{bottom:655.581300px;}
.y196{bottom:656.215050px;}
.y72{bottom:657.677700px;}
.yc3{bottom:659.130450px;}
.y165{bottom:660.087150px;}
.y53{bottom:666.181650px;}
.y195{bottom:668.215050px;}
.y11b{bottom:668.591100px;}
.yae{bottom:670.126500px;}
.y16{bottom:673.581300px;}
.y71{bottom:677.177700px;}
.yc2{bottom:678.630450px;}
.y164{bottom:679.587150px;}
.y194{bottom:680.215050px;}
.y52{bottom:685.681650px;}
.y11a{bottom:688.091100px;}
.yad{bottom:689.626500px;}
.y15{bottom:691.581300px;}
.y193{bottom:692.215050px;}
.yc1{bottom:698.130450px;}
.y163{bottom:699.087150px;}
.y192{bottom:704.215050px;}
.y51{bottom:705.181650px;}
.y119{bottom:707.591100px;}
.yac{bottom:709.126500px;}
.y14{bottom:715.085100px;}
.y191{bottom:716.215050px;}
.yc0{bottom:717.630450px;}
.y50{bottom:724.681650px;}
.y118{bottom:727.091100px;}
.y190{bottom:728.215050px;}
.yab{bottom:728.626500px;}
.ybf{bottom:737.130450px;}
.y18f{bottom:740.215050px;}
.y4f{bottom:744.181650px;}
.y117{bottom:746.591100px;}
.yaa{bottom:748.126500px;}
.y18e{bottom:752.215050px;}
.ybe{bottom:756.630450px;}
.ya{bottom:758.604900px;}
.y4e{bottom:763.681650px;}
.y18d{bottom:764.215050px;}
.y116{bottom:766.091100px;}
.ya9{bottom:767.626500px;}
.y9{bottom:772.104900px;}
.ybd{bottom:776.130450px;}
.y18c{bottom:776.215050px;}
.y4d{bottom:783.181650px;}
.y115{bottom:785.591100px;}
.y8{bottom:785.604900px;}
.ya8{bottom:787.126500px;}
.y18b{bottom:788.215050px;}
.y18a{bottom:800.215050px;}
.y4c{bottom:802.681650px;}
.y114{bottom:805.091100px;}
.ya7{bottom:806.626500px;}
.y189{bottom:812.215050px;}
.y7{bottom:812.604900px;}
.ybc{bottom:815.130450px;}
.y4b{bottom:822.181650px;}
.y188{bottom:824.215050px;}
.y113{bottom:824.591100px;}
.y6{bottom:826.104900px;}
.ya6{bottom:826.126500px;}
.ybb{bottom:834.630450px;}
.y187{bottom:836.215050px;}
.y4a{bottom:841.681650px;}
.y112{bottom:844.091100px;}
.y186{bottom:848.215050px;}
.y144{bottom:852.595050px;}
.ya5{bottom:854.130450px;}
.y5{bottom:857.600400px;}
.y185{bottom:860.215050px;}
.y49{bottom:861.181650px;}
.y111{bottom:863.591100px;}
.y4{bottom:871.100400px;}
.y143{bottom:872.095050px;}
.y184{bottom:872.215050px;}
.ya4{bottom:873.630450px;}
.y3{bottom:880.104900px;}
.y48{bottom:880.681650px;}
.y110{bottom:883.091100px;}
.y183{bottom:884.215050px;}
.y142{bottom:891.595050px;}
.ya3{bottom:893.130450px;}
.y182{bottom:896.215050px;}
.y47{bottom:900.181650px;}
.y10f{bottom:902.591100px;}
.y2{bottom:907.104900px;}
.y181{bottom:908.215050px;}
.y141{bottom:911.095050px;}
.ya2{bottom:912.630450px;}
.yb{bottom:912.864300px;}
.y180{bottom:920.215050px;}
.y1{bottom:920.604900px;}
.y10e{bottom:922.091100px;}
.y140{bottom:930.595050px;}
.ya1{bottom:932.130450px;}
.y17f{bottom:932.215050px;}
.y9d{bottom:938.274900px;}
.y10d{bottom:941.591100px;}
.y17e{bottom:944.215050px;}
.y9a{bottom:945.774900px;}
.y13f{bottom:950.095050px;}
.ya0{bottom:951.630450px;}
.y9c{bottom:953.274900px;}
.y17d{bottom:956.215050px;}
.y99{bottom:960.774900px;}
.y10c{bottom:961.091100px;}
.y17c{bottom:968.215050px;}
.y9b{bottom:968.274900px;}
.y13e{bottom:969.595050px;}
.y11{bottom:977.674500px;}
.y17b{bottom:980.215050px;}
.ydd{bottom:980.442600px;}
.y10b{bottom:980.591100px;}
.y98{bottom:986.139150px;}
.y13d{bottom:989.095050px;}
.y17a{bottom:992.215050px;}
.y96{bottom:993.639150px;}
.ydc{bottom:997.974000px;}
.y10a{bottom:1000.091100px;}
.y93{bottom:1001.139150px;}
.y179{bottom:1004.215050px;}
.yd8{bottom:1005.474000px;}
.y13c{bottom:1008.595050px;}
.y95{bottom:1008.639150px;}
.yda{bottom:1012.974000px;}
.y92{bottom:1016.139150px;}
.y178{bottom:1016.215050px;}
.y109{bottom:1019.591100px;}
.yd7{bottom:1020.474000px;}
.y94{bottom:1023.639150px;}
.yd9{bottom:1027.974000px;}
.y13b{bottom:1028.095050px;}
.y177{bottom:1028.215050px;}
.ye{bottom:1029.889650px;}
.y97{bottom:1031.139150px;}
.yd6{bottom:1035.474000px;}
.y108{bottom:1039.091100px;}
.y176{bottom:1040.215050px;}
.ydb{bottom:1042.974000px;}
.y13a{bottom:1047.595050px;}
.yd{bottom:1047.889650px;}
.y91{bottom:1049.003550px;}
.y175{bottom:1052.215050px;}
.y8f{bottom:1056.503550px;}
.y8c{bottom:1064.003550px;}
.y174{bottom:1064.215050px;}
.yd5{bottom:1064.334450px;}
.y107{bottom:1067.095050px;}
.y8e{bottom:1071.503550px;}
.yd2{bottom:1071.834450px;}
.y173{bottom:1076.215050px;}
.y8b{bottom:1079.003550px;}
.yd4{bottom:1079.334450px;}
.yf{bottom:1083.927000px;}
.y8d{bottom:1086.503550px;}
.y106{bottom:1086.595050px;}
.yd1{bottom:1086.834450px;}
.y172{bottom:1088.215050px;}
.y90{bottom:1094.003550px;}
.yd3{bottom:1094.334450px;}
.y171{bottom:1100.215050px;}
.y105{bottom:1106.095050px;}
.y89{bottom:1111.867800px;}
.y170{bottom:1112.215050px;}
.yd0{bottom:1113.946800px;}
.y88{bottom:1119.367800px;}
.ycf{bottom:1121.446800px;}
.y16f{bottom:1124.215050px;}
.y104{bottom:1125.595050px;}
.y8a{bottom:1126.867800px;}
.y16e{bottom:1136.215050px;}
.y103{bottom:1145.095050px;}
.y9e{bottom:1146.135000px;}
.y16d{bottom:1148.215050px;}
.y44{bottom:1187.880600px;}
.h4{height:27.079523px;}
.hb{height:30.087759px;}
.h2{height:32.507812px;}
.ha{height:33.000000px;}
.h18{height:36.597656px;}
.h5{height:37.494141px;}
.h6{height:40.054688px;}
.h13{height:40.664062px;}
.h10{height:42.000000px;}
.hf{height:44.730469px;}
.h3{height:45.061523px;}
.hd{height:48.761719px;}
.h7{height:48.796875px;}
.hc{height:50.068359px;}
.he{height:55.075195px;}
.h9{height:58.898438px;}
.h19{height:63.597656px;}
.h16{height:66.597656px;}
.h11{height:70.664062px;}
.h14{height:75.061523px;}
.h8{height:84.000000px;}
.h17{height:96.597656px;}
.h1a{height:99.061523px;}
.h12{height:100.664062px;}
.h15{height:105.061523px;}
.h1b{height:126.061523px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:597.000000px;}
.w2{width:702.000300px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:6.026100px;}
.x4{left:63.779550px;}
.x13{left:69.156600px;}
.xd{left:70.157400px;}
.x2{left:73.783500px;}
.x1{left:75.283500px;}
.x1a{left:76.865550px;}
.x24{left:84.102750px;}
.x8{left:87.412950px;}
.x2a{left:90.779550px;}
.x23{left:91.979850px;}
.xc{left:95.409450px;}
.x7{left:128.945700px;}
.x22{left:173.954550px;}
.x14{left:214.366050px;}
.x9{left:215.536500px;}
.x1b{left:245.299500px;}
.x5{left:282.151800px;}
.x25{left:285.732300px;}
.x1d{left:304.547250px;}
.x15{left:313.228350px;}
.x6{left:349.634250px;}
.x26{left:365.532300px;}
.x1e{left:390.378000px;}
.x16{left:454.110300px;}
.xe{left:459.212550px;}
.xf{left:477.673350px;}
.x27{left:483.657300px;}
.x2b{left:486.212550px;}
.x1f{left:489.023550px;}
.x17{left:556.410300px;}
.x28{left:567.057300px;}
.x20{left:581.648550px;}
.xb{left:638.165100px;}
.x18{left:643.681350px;}
.x10{left:666.464250px;}
.x29{left:685.417350px;}
.x3{left:688.791000px;}
.x21{left:720.330750px;}
.x1c{left:737.801400px;}
.x19{left:740.692950px;}
.x12{left:745.107300px;}
.x11{left:757.598700px;}
@media print{
.v2{vertical-align:-17.760533pt;}
.v1{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:24.000000pt;}
.v3{vertical-align:26.666667pt;}
.v7{vertical-align:48.000000pt;}
.v4{vertical-align:53.333333pt;}
.v6{vertical-align:72.000000pt;}
.ls1{letter-spacing:-0.085333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000533pt;}
.ls22{letter-spacing:0.720000pt;}
.ls14{letter-spacing:1.728000pt;}
.ls3{letter-spacing:2.053333pt;}
.ls2{letter-spacing:2.240000pt;}
.ls23{letter-spacing:2.352000pt;}
.ls1b{letter-spacing:2.640000pt;}
.ls25{letter-spacing:2.645333pt;}
.ls16{letter-spacing:4.704000pt;}
.ls1e{letter-spacing:4.800000pt;}
.ls9{letter-spacing:5.712000pt;}
.lsf{letter-spacing:6.960000pt;}
.lsb{letter-spacing:8.928000pt;}
.lsc{letter-spacing:9.840000pt;}
.ls1a{letter-spacing:10.704000pt;}
.ls13{letter-spacing:10.896000pt;}
.ls12{letter-spacing:13.104000pt;}
.ls6{letter-spacing:13.728000pt;}
.ls1f{letter-spacing:13.776000pt;}
.lse{letter-spacing:13.824000pt;}
.ls17{letter-spacing:14.064000pt;}
.ls1d{letter-spacing:14.496000pt;}
.ls24{letter-spacing:15.168000pt;}
.ls21{letter-spacing:16.848000pt;}
.ls8{letter-spacing:16.992000pt;}
.ls20{letter-spacing:20.064000pt;}
.lsa{letter-spacing:39.360000pt;}
.ls7{letter-spacing:41.280000pt;}
.ls11{letter-spacing:53.904000pt;}
.ls19{letter-spacing:54.288000pt;}
.ls18{letter-spacing:74.394667pt;}
.ls15{letter-spacing:84.988267pt;}
.ls10{letter-spacing:108.988267pt;}
.ls1c{letter-spacing:111.636800pt;}
.lsd{letter-spacing:122.277333pt;}
.ls5{letter-spacing:139.736533pt;}
.ws2a{word-spacing:-54.288000pt;}
.ws1f{word-spacing:-53.904000pt;}
.ws16{word-spacing:-41.280000pt;}
.ws19{word-spacing:-39.360000pt;}
.ws25{word-spacing:-20.064000pt;}
.ws17{word-spacing:-16.992000pt;}
.ws26{word-spacing:-16.848000pt;}
.ws2b{word-spacing:-15.168000pt;}
.ws14{word-spacing:-14.496000pt;}
.ws29{word-spacing:-14.064000pt;}
.ws1d{word-spacing:-13.824000pt;}
.ws20{word-spacing:-13.776000pt;}
.ws15{word-spacing:-13.728000pt;}
.ws3{word-spacing:-13.333333pt;}
.ws21{word-spacing:-13.104000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws22{word-spacing:-10.896000pt;}
.ws2c{word-spacing:-10.704000pt;}
.ws2e{word-spacing:-10.666667pt;}
.ws1c{word-spacing:-9.840000pt;}
.ws1a{word-spacing:-8.928000pt;}
.ws2{word-spacing:-7.773333pt;}
.ws0{word-spacing:-6.996000pt;}
.ws1e{word-spacing:-6.960000pt;}
.ws18{word-spacing:-5.712000pt;}
.ws1b{word-spacing:-4.800000pt;}
.ws24{word-spacing:-4.704000pt;}
.ws2f{word-spacing:-2.645333pt;}
.ws2d{word-spacing:-2.640000pt;}
.ws28{word-spacing:-2.352000pt;}
.wsd{word-spacing:-2.240000pt;}
.ws13{word-spacing:-2.053333pt;}
.ws23{word-spacing:-1.728000pt;}
.ws27{word-spacing:-0.720000pt;}
.ws4{word-spacing:0.000000pt;}
.ws5{word-spacing:0.085333pt;}
.wse{word-spacing:38.142933pt;}
.wsc{word-spacing:55.513067pt;}
.ws12{word-spacing:67.417067pt;}
.ws6{word-spacing:70.837867pt;}
.ws10{word-spacing:75.306133pt;}
.ws11{word-spacing:83.826133pt;}
.ws9{word-spacing:107.630400pt;}
.wsa{word-spacing:130.163200pt;}
.wsb{word-spacing:138.179200pt;}
.ws7{word-spacing:143.409067pt;}
.wsf{word-spacing:147.276800pt;}
.ws8{word-spacing:162.188800pt;}
._3{margin-left:-1944.394667pt;}
._43{margin-left:-54.393067pt;}
._30{margin-left:-41.289600pt;}
._36{margin-left:-39.369600pt;}
._49{margin-left:-20.246400pt;}
._35{margin-left:-16.992000pt;}
._2d{margin-left:-14.587200pt;}
._47{margin-left:-13.099200pt;}
._48{margin-left:-10.896000pt;}
._38{margin-left:-8.937600pt;}
._28{margin-left:-7.914133pt;}
._42{margin-left:-6.960000pt;}
._1f{margin-left:-5.878400pt;}
._4{margin-left:-4.712533pt;}
._2{margin-left:-3.603200pt;}
._0{margin-left:-2.702400pt;}
._1{margin-left:-1.339200pt;}
._7{width:1.616000pt;}
._5{width:3.328000pt;}
._8{width:4.266667pt;}
._6{width:5.232000pt;}
._1a{width:7.010667pt;}
._9{width:7.920000pt;}
._b{width:9.034667pt;}
._11{width:10.178667pt;}
._f{width:11.422400pt;}
._27{width:12.402133pt;}
._10{width:13.329067pt;}
._2e{width:14.496000pt;}
._a{width:16.391467pt;}
._e{width:17.717333pt;}
._15{width:18.884800pt;}
._c{width:19.858667pt;}
._1b{width:20.944000pt;}
._21{width:21.970667pt;}
._1d{width:22.862400pt;}
._1c{width:24.205867pt;}
._1e{width:25.261867pt;}
._22{width:26.159467pt;}
._d{width:28.089600pt;}
._14{width:29.849600pt;}
._20{width:31.609600pt;}
._18{width:32.718400pt;}
._19{width:33.651200pt;}
._13{width:35.622400pt;}
._32{width:36.528000pt;}
._12{width:37.593600pt;}
._37{width:39.360000pt;}
._31{width:41.280000pt;}
._17{width:43.284267pt;}
._23{width:45.602133pt;}
._4d{width:46.534400pt;}
._4e{width:52.386133pt;}
._44{width:53.904000pt;}
._45{width:55.896000pt;}
._2f{width:57.393600pt;}
._25{width:62.241600pt;}
._29{width:66.738667pt;}
._4a{width:70.516800pt;}
._39{width:72.120000pt;}
._3b{width:75.085867pt;}
._40{width:78.393600pt;}
._3c{width:83.242133pt;}
._33{width:86.760000pt;}
._4b{width:99.691200pt;}
._4c{width:102.710400pt;}
._41{width:110.688000pt;}
._3a{width:120.604800pt;}
._3f{width:127.896000pt;}
._3d{width:137.592533pt;}
._34{width:144.024000pt;}
._2a{width:147.357333pt;}
._2b{width:150.521067pt;}
._46{width:153.787200pt;}
._3e{width:169.289067pt;}
._24{width:177.313067pt;}
._2c{width:179.925333pt;}
._16{width:1446.725867pt;}
._26{width:1447.891733pt;}
.fs2{font-size:27.984000pt;}
.fs5{font-size:31.093333pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:17.036533pt;}
.y13{bottom:26.924400pt;}
.yc{bottom:26.934933pt;}
.y46{bottom:27.472133pt;}
.y45{bottom:29.759067pt;}
.y9f{bottom:29.769467pt;}
.y10{bottom:29.947733pt;}
.y101{bottom:56.692933pt;}
.y162{bottom:56.969867pt;}
.y16c{bottom:58.744133pt;}
.y139{bottom:59.185067pt;}
.y43{bottom:59.501733pt;}
.y1c7{bottom:60.635600pt;}
.y70{bottom:64.602400pt;}
.y100{bottom:68.692933pt;}
.y16b{bottom:69.410800pt;}
.y1c6{bottom:71.302267pt;}
.y161{bottom:74.303200pt;}
.y138{bottom:76.518400pt;}
.y42{bottom:76.835067pt;}
.y16a{bottom:80.077467pt;}
.yff{bottom:80.692933pt;}
.y32{bottom:81.090533pt;}
.y6f{bottom:81.935733pt;}
.y1c5{bottom:81.968933pt;}
.y160{bottom:91.636533pt;}
.y1c4{bottom:92.635600pt;}
.y137{bottom:93.851733pt;}
.y41{bottom:94.168400pt;}
.yfe{bottom:95.766400pt;}
.y31{bottom:98.423867pt;}
.y6e{bottom:99.269067pt;}
.y169{bottom:101.410800pt;}
.yfb{bottom:101.766400pt;}
.y1c3{bottom:103.302267pt;}
.yfd{bottom:107.766400pt;}
.y15f{bottom:108.969867pt;}
.y136{bottom:111.185067pt;}
.y40{bottom:111.501733pt;}
.yfa{bottom:113.766400pt;}
.y1c2{bottom:113.968933pt;}
.y30{bottom:115.757200pt;}
.y6d{bottom:116.602400pt;}
.yfc{bottom:119.766400pt;}
.y1c1{bottom:124.635600pt;}
.y15e{bottom:126.303200pt;}
.y135{bottom:128.518400pt;}
.y2f{bottom:133.090533pt;}
.y6c{bottom:133.935733pt;}
.y1c0{bottom:135.302267pt;}
.yf9{bottom:135.645733pt;}
.y168{bottom:136.077467pt;}
.yf5{bottom:141.645733pt;}
.y15d{bottom:143.636533pt;}
.y134{bottom:145.851733pt;}
.y1bf{bottom:145.968933pt;}
.y3f{bottom:146.168400pt;}
.yf8{bottom:147.645733pt;}
.y6b{bottom:151.269067pt;}
.y167{bottom:153.410800pt;}
.yf4{bottom:153.645733pt;}
.y1be{bottom:156.635600pt;}
.y2e{bottom:157.982933pt;}
.yf7{bottom:159.645733pt;}
.y15c{bottom:160.969867pt;}
.y133{bottom:163.185067pt;}
.y3e{bottom:163.501733pt;}
.yf3{bottom:165.645733pt;}
.y1bd{bottom:167.302267pt;}
.y6a{bottom:168.602400pt;}
.y166{bottom:170.744133pt;}
.yf6{bottom:171.645733pt;}
.y2d{bottom:175.316267pt;}
.y1bc{bottom:177.968933pt;}
.y15b{bottom:178.303200pt;}
.y3d{bottom:180.835067pt;}
.y69{bottom:185.935733pt;}
.yf1{bottom:187.525200pt;}
.y132{bottom:188.077467pt;}
.y1bb{bottom:188.635600pt;}
.y2c{bottom:192.649600pt;}
.yef{bottom:193.525200pt;}
.y15a{bottom:195.636533pt;}
.y3c{bottom:198.168400pt;}
.y1ba{bottom:199.302267pt;}
.yed{bottom:199.525200pt;}
.y87{bottom:203.269067pt;}
.y131{bottom:205.410800pt;}
.yee{bottom:205.525200pt;}
.y1b9{bottom:209.968933pt;}
.y2b{bottom:209.982933pt;}
.y68{bottom:210.828133pt;}
.yec{bottom:211.525200pt;}
.y159{bottom:212.969867pt;}
.y3b{bottom:215.501733pt;}
.yf2{bottom:217.525200pt;}
.y86{bottom:220.602400pt;}
.y1b8{bottom:220.635600pt;}
.y130{bottom:222.744133pt;}
.yf0{bottom:223.525200pt;}
.y2a{bottom:227.316267pt;}
.y67{bottom:228.161467pt;}
.y158{bottom:230.303200pt;}
.y1b7{bottom:231.302267pt;}
.y3a{bottom:232.835067pt;}
.y85{bottom:237.935733pt;}
.yea{bottom:239.404533pt;}
.y12f{bottom:240.077467pt;}
.y1b6{bottom:241.968933pt;}
.y29{bottom:244.649600pt;}
.ye8{bottom:245.404533pt;}
.y66{bottom:245.494800pt;}
.y157{bottom:247.636533pt;}
.y39{bottom:250.168400pt;}
.ye9{bottom:251.404533pt;}
.y1b5{bottom:252.635600pt;}
.y84{bottom:255.269067pt;}
.ye7{bottom:257.404533pt;}
.y12e{bottom:257.410800pt;}
.y28{bottom:261.982933pt;}
.y65{bottom:262.828133pt;}
.y1b4{bottom:263.302267pt;}
.yeb{bottom:263.404533pt;}
.y156{bottom:264.969867pt;}
.y83{bottom:272.602400pt;}
.y1b3{bottom:273.968933pt;}
.y12d{bottom:274.744133pt;}
.y38{bottom:275.060800pt;}
.ye6{bottom:279.283867pt;}
.y27{bottom:279.316267pt;}
.y64{bottom:280.161467pt;}
.y155{bottom:282.303200pt;}
.y1b2{bottom:284.635600pt;}
.ye4{bottom:285.283867pt;}
.y82{bottom:289.935733pt;}
.ye1{bottom:291.283867pt;}
.y12c{bottom:292.077467pt;}
.y37{bottom:292.394133pt;}
.y1b1{bottom:295.302267pt;}
.y26{bottom:296.649600pt;}
.ye3{bottom:297.283867pt;}
.y63{bottom:297.494800pt;}
.y154{bottom:299.636533pt;}
.ye0{bottom:303.283867pt;}
.y1b0{bottom:305.968933pt;}
.y81{bottom:307.269067pt;}
.ye2{bottom:309.283867pt;}
.y12b{bottom:309.410800pt;}
.y36{bottom:309.727467pt;}
.y25{bottom:313.982933pt;}
.y62{bottom:314.828133pt;}
.ye5{bottom:315.283867pt;}
.y1af{bottom:316.635600pt;}
.y153{bottom:316.969867pt;}
.y80{bottom:324.602400pt;}
.y12a{bottom:326.744133pt;}
.y35{bottom:327.060800pt;}
.y1ae{bottom:327.302267pt;}
.ydf{bottom:331.163200pt;}
.y24{bottom:331.316267pt;}
.y61{bottom:332.161467pt;}
.y1ad{bottom:337.968933pt;}
.y7f{bottom:341.935733pt;}
.yde{bottom:343.163200pt;}
.y129{bottom:344.077467pt;}
.y34{bottom:344.394133pt;}
.y1ac{bottom:348.635600pt;}
.y23{bottom:348.649600pt;}
.y60{bottom:349.494800pt;}
.y152{bottom:351.636533pt;}
.y1ab{bottom:359.302267pt;}
.y128{bottom:361.410800pt;}
.y102{bottom:361.568800pt;}
.y33{bottom:361.727467pt;}
.y22{bottom:365.982933pt;}
.y5f{bottom:366.828133pt;}
.y151{bottom:368.969867pt;}
.y1aa{bottom:369.968933pt;}
.y7e{bottom:376.602400pt;}
.y127{bottom:378.744133pt;}
.y1a9{bottom:380.635600pt;}
.y5e{bottom:384.161467pt;}
.y150{bottom:386.303200pt;}
.yba{bottom:387.668000pt;}
.y1a8{bottom:391.302267pt;}
.y7d{bottom:393.935733pt;}
.yce{bottom:395.227067pt;}
.y126{bottom:396.077467pt;}
.y5d{bottom:401.494800pt;}
.y1a7{bottom:401.968933pt;}
.y14f{bottom:403.636533pt;}
.yb9{bottom:405.001333pt;}
.y7c{bottom:411.269067pt;}
.ycd{bottom:412.560400pt;}
.y1a6{bottom:412.635600pt;}
.y125{bottom:413.410800pt;}
.y21{bottom:415.179867pt;}
.y5c{bottom:418.828133pt;}
.y14e{bottom:420.969867pt;}
.yb8{bottom:422.334667pt;}
.y1a5{bottom:423.302267pt;}
.y7b{bottom:428.602400pt;}
.ycc{bottom:429.893733pt;}
.y124{bottom:430.744133pt;}
.y1a4{bottom:433.968933pt;}
.y5b{bottom:436.161467pt;}
.y14d{bottom:438.303200pt;}
.y20{bottom:438.738800pt;}
.yb7{bottom:439.668000pt;}
.y1a3{bottom:444.635600pt;}
.y7a{bottom:445.935733pt;}
.ycb{bottom:447.227067pt;}
.y123{bottom:448.077467pt;}
.y5a{bottom:453.494800pt;}
.y1f{bottom:454.738800pt;}
.y1a2{bottom:455.302267pt;}
.y14c{bottom:455.636533pt;}
.yb6{bottom:457.001333pt;}
.y79{bottom:463.269067pt;}
.yca{bottom:464.560400pt;}
.y122{bottom:465.410800pt;}
.y1a1{bottom:465.968933pt;}
.y1e{bottom:470.738800pt;}
.y59{bottom:470.828133pt;}
.y14b{bottom:472.969867pt;}
.yb5{bottom:474.334667pt;}
.y1a0{bottom:476.635600pt;}
.y78{bottom:480.602400pt;}
.yc9{bottom:481.893733pt;}
.y121{bottom:482.744133pt;}
.y1d{bottom:486.738933pt;}
.y19f{bottom:487.302267pt;}
.y58{bottom:488.161467pt;}
.y14a{bottom:490.303200pt;}
.yb4{bottom:491.668000pt;}
.y77{bottom:497.935733pt;}
.y19e{bottom:497.968933pt;}
.yc8{bottom:499.227067pt;}
.y120{bottom:500.077467pt;}
.y1c{bottom:502.738933pt;}
.y57{bottom:505.494800pt;}
.y149{bottom:507.636533pt;}
.y19d{bottom:508.635600pt;}
.yb3{bottom:509.001333pt;}
.y76{bottom:515.269067pt;}
.yc7{bottom:516.560400pt;}
.y11f{bottom:517.410800pt;}
.y1b{bottom:518.738933pt;}
.y19c{bottom:519.302267pt;}
.y56{bottom:522.828133pt;}
.y148{bottom:524.969867pt;}
.yb2{bottom:526.334667pt;}
.y19b{bottom:529.968933pt;}
.y75{bottom:532.602400pt;}
.yc6{bottom:533.893733pt;}
.y1a{bottom:534.738933pt;}
.y11e{bottom:534.744133pt;}
.y55{bottom:540.161467pt;}
.y19a{bottom:540.635600pt;}
.y147{bottom:542.303200pt;}
.yb1{bottom:543.668000pt;}
.y74{bottom:549.935733pt;}
.y19{bottom:550.738933pt;}
.yc5{bottom:551.227067pt;}
.y199{bottom:551.302267pt;}
.y11d{bottom:552.077467pt;}
.y54{bottom:557.494800pt;}
.y146{bottom:559.636533pt;}
.yb0{bottom:561.001333pt;}
.y198{bottom:561.968933pt;}
.y18{bottom:566.738933pt;}
.y73{bottom:567.269067pt;}
.yc4{bottom:568.560400pt;}
.y11c{bottom:569.410800pt;}
.y197{bottom:572.635600pt;}
.y145{bottom:576.969867pt;}
.yaf{bottom:578.334667pt;}
.y17{bottom:582.738933pt;}
.y196{bottom:583.302267pt;}
.y72{bottom:584.602400pt;}
.yc3{bottom:585.893733pt;}
.y165{bottom:586.744133pt;}
.y53{bottom:592.161467pt;}
.y195{bottom:593.968933pt;}
.y11b{bottom:594.303200pt;}
.yae{bottom:595.668000pt;}
.y16{bottom:598.738933pt;}
.y71{bottom:601.935733pt;}
.yc2{bottom:603.227067pt;}
.y164{bottom:604.077467pt;}
.y194{bottom:604.635600pt;}
.y52{bottom:609.494800pt;}
.y11a{bottom:611.636533pt;}
.yad{bottom:613.001333pt;}
.y15{bottom:614.738933pt;}
.y193{bottom:615.302267pt;}
.yc1{bottom:620.560400pt;}
.y163{bottom:621.410800pt;}
.y192{bottom:625.968933pt;}
.y51{bottom:626.828133pt;}
.y119{bottom:628.969867pt;}
.yac{bottom:630.334667pt;}
.y14{bottom:635.631200pt;}
.y191{bottom:636.635600pt;}
.yc0{bottom:637.893733pt;}
.y50{bottom:644.161467pt;}
.y118{bottom:646.303200pt;}
.y190{bottom:647.302267pt;}
.yab{bottom:647.668000pt;}
.ybf{bottom:655.227067pt;}
.y18f{bottom:657.968933pt;}
.y4f{bottom:661.494800pt;}
.y117{bottom:663.636533pt;}
.yaa{bottom:665.001333pt;}
.y18e{bottom:668.635600pt;}
.ybe{bottom:672.560400pt;}
.ya{bottom:674.315467pt;}
.y4e{bottom:678.828133pt;}
.y18d{bottom:679.302267pt;}
.y116{bottom:680.969867pt;}
.ya9{bottom:682.334667pt;}
.y9{bottom:686.315467pt;}
.ybd{bottom:689.893733pt;}
.y18c{bottom:689.968933pt;}
.y4d{bottom:696.161467pt;}
.y115{bottom:698.303200pt;}
.y8{bottom:698.315467pt;}
.ya8{bottom:699.668000pt;}
.y18b{bottom:700.635600pt;}
.y18a{bottom:711.302267pt;}
.y4c{bottom:713.494800pt;}
.y114{bottom:715.636533pt;}
.ya7{bottom:717.001333pt;}
.y189{bottom:721.968933pt;}
.y7{bottom:722.315467pt;}
.ybc{bottom:724.560400pt;}
.y4b{bottom:730.828133pt;}
.y188{bottom:732.635600pt;}
.y113{bottom:732.969867pt;}
.y6{bottom:734.315467pt;}
.ya6{bottom:734.334667pt;}
.ybb{bottom:741.893733pt;}
.y187{bottom:743.302267pt;}
.y4a{bottom:748.161467pt;}
.y112{bottom:750.303200pt;}
.y186{bottom:753.968933pt;}
.y144{bottom:757.862267pt;}
.ya5{bottom:759.227067pt;}
.y5{bottom:762.311467pt;}
.y185{bottom:764.635600pt;}
.y49{bottom:765.494800pt;}
.y111{bottom:767.636533pt;}
.y4{bottom:774.311467pt;}
.y143{bottom:775.195600pt;}
.y184{bottom:775.302267pt;}
.ya4{bottom:776.560400pt;}
.y3{bottom:782.315467pt;}
.y48{bottom:782.828133pt;}
.y110{bottom:784.969867pt;}
.y183{bottom:785.968933pt;}
.y142{bottom:792.528933pt;}
.ya3{bottom:793.893733pt;}
.y182{bottom:796.635600pt;}
.y47{bottom:800.161467pt;}
.y10f{bottom:802.303200pt;}
.y2{bottom:806.315467pt;}
.y181{bottom:807.302267pt;}
.y141{bottom:809.862267pt;}
.ya2{bottom:811.227067pt;}
.yb{bottom:811.434933pt;}
.y180{bottom:817.968933pt;}
.y1{bottom:818.315467pt;}
.y10e{bottom:819.636533pt;}
.y140{bottom:827.195600pt;}
.ya1{bottom:828.560400pt;}
.y17f{bottom:828.635600pt;}
.y9d{bottom:834.022133pt;}
.y10d{bottom:836.969867pt;}
.y17e{bottom:839.302267pt;}
.y9a{bottom:840.688800pt;}
.y13f{bottom:844.528933pt;}
.ya0{bottom:845.893733pt;}
.y9c{bottom:847.355467pt;}
.y17d{bottom:849.968933pt;}
.y99{bottom:854.022133pt;}
.y10c{bottom:854.303200pt;}
.y17c{bottom:860.635600pt;}
.y9b{bottom:860.688800pt;}
.y13e{bottom:861.862267pt;}
.y11{bottom:869.044000pt;}
.y17b{bottom:871.302267pt;}
.ydd{bottom:871.504533pt;}
.y10b{bottom:871.636533pt;}
.y98{bottom:876.568133pt;}
.y13d{bottom:879.195600pt;}
.y17a{bottom:881.968933pt;}
.y96{bottom:883.234800pt;}
.ydc{bottom:887.088000pt;}
.y10a{bottom:888.969867pt;}
.y93{bottom:889.901467pt;}
.y179{bottom:892.635600pt;}
.yd8{bottom:893.754667pt;}
.y13c{bottom:896.528933pt;}
.y95{bottom:896.568133pt;}
.yda{bottom:900.421333pt;}
.y92{bottom:903.234800pt;}
.y178{bottom:903.302267pt;}
.y109{bottom:906.303200pt;}
.yd7{bottom:907.088000pt;}
.y94{bottom:909.901467pt;}
.yd9{bottom:913.754667pt;}
.y13b{bottom:913.862267pt;}
.y177{bottom:913.968933pt;}
.ye{bottom:915.457467pt;}
.y97{bottom:916.568133pt;}
.yd6{bottom:920.421333pt;}
.y108{bottom:923.636533pt;}
.y176{bottom:924.635600pt;}
.ydb{bottom:927.088000pt;}
.y13a{bottom:931.195600pt;}
.yd{bottom:931.457467pt;}
.y91{bottom:932.447600pt;}
.y175{bottom:935.302267pt;}
.y8f{bottom:939.114267pt;}
.y8c{bottom:945.780933pt;}
.y174{bottom:945.968933pt;}
.yd5{bottom:946.075067pt;}
.y107{bottom:948.528933pt;}
.y8e{bottom:952.447600pt;}
.yd2{bottom:952.741733pt;}
.y173{bottom:956.635600pt;}
.y8b{bottom:959.114267pt;}
.yd4{bottom:959.408400pt;}
.yf{bottom:963.490667pt;}
.y8d{bottom:965.780933pt;}
.y106{bottom:965.862267pt;}
.yd1{bottom:966.075067pt;}
.y172{bottom:967.302267pt;}
.y90{bottom:972.447600pt;}
.yd3{bottom:972.741733pt;}
.y171{bottom:977.968933pt;}
.y105{bottom:983.195600pt;}
.y89{bottom:988.326933pt;}
.y170{bottom:988.635600pt;}
.yd0{bottom:990.174933pt;}
.y88{bottom:994.993600pt;}
.ycf{bottom:996.841600pt;}
.y16f{bottom:999.302267pt;}
.y104{bottom:1000.528933pt;}
.y8a{bottom:1001.660267pt;}
.y16e{bottom:1009.968933pt;}
.y103{bottom:1017.862267pt;}
.y9e{bottom:1018.786667pt;}
.y16d{bottom:1020.635600pt;}
.y44{bottom:1055.893867pt;}
.h4{height:24.070687pt;}
.hb{height:26.744675pt;}
.h2{height:28.895833pt;}
.ha{height:29.333333pt;}
.h18{height:32.531250pt;}
.h5{height:33.328125pt;}
.h6{height:35.604167pt;}
.h13{height:36.145833pt;}
.h10{height:37.333333pt;}
.hf{height:39.760417pt;}
.h3{height:40.054688pt;}
.hd{height:43.343750pt;}
.h7{height:43.375000pt;}
.hc{height:44.505208pt;}
.he{height:48.955729pt;}
.h9{height:52.354167pt;}
.h19{height:56.531250pt;}
.h16{height:59.197917pt;}
.h11{height:62.812500pt;}
.h14{height:66.721354pt;}
.h8{height:74.666667pt;}
.h17{height:85.864583pt;}
.h1a{height:88.054688pt;}
.h12{height:89.479167pt;}
.h15{height:93.388021pt;}
.h1b{height:112.054688pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:530.666667pt;}
.w2{width:624.000267pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:5.356533pt;}
.x4{left:56.692933pt;}
.x13{left:61.472533pt;}
.xd{left:62.362133pt;}
.x2{left:65.585333pt;}
.x1{left:66.918667pt;}
.x1a{left:68.324933pt;}
.x24{left:74.758000pt;}
.x8{left:77.700400pt;}
.x2a{left:80.692933pt;}
.x23{left:81.759867pt;}
.xc{left:84.808400pt;}
.x7{left:114.618400pt;}
.x22{left:154.626267pt;}
.x14{left:190.547600pt;}
.x9{left:191.588000pt;}
.x1b{left:218.044000pt;}
.x5{left:250.801600pt;}
.x25{left:253.984267pt;}
.x1d{left:270.708667pt;}
.x15{left:278.425200pt;}
.x6{left:310.786000pt;}
.x26{left:324.917600pt;}
.x1e{left:347.002667pt;}
.x16{left:403.653600pt;}
.xe{left:408.188933pt;}
.xf{left:424.598533pt;}
.x27{left:429.917600pt;}
.x2b{left:432.188933pt;}
.x1f{left:434.687600pt;}
.x17{left:494.586933pt;}
.x28{left:504.050933pt;}
.x20{left:517.020933pt;}
.xb{left:567.257867pt;}
.x18{left:572.161200pt;}
.x10{left:592.412667pt;}
.x29{left:609.259867pt;}
.x3{left:612.258667pt;}
.x21{left:640.294000pt;}
.x1c{left:655.823467pt;}
.x19{left:658.393733pt;}
.x12{left:662.317600pt;}
.x11{left:673.421067pt;}
}




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