
    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_9cacecd6b5fcd70f4bc8ff3c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.082031;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_e11abc4462f9a46976432a5a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.084961;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_a2b1fc528b4f275f11a56fee.woff')format("woff");}.ff3{font-family:ff3;line-height:0.922852;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_05e81781bfc548601dfd4b80.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_307aa80e44b0e0a7e240980b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.090332;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v3{vertical-align:-22.200000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.982000px;}
.v2{vertical-align:26.640000px;}
.ls33{letter-spacing:-0.936000px;}
.ls51{letter-spacing:-0.858000px;}
.ls28{letter-spacing:-0.792000px;}
.ls2d{letter-spacing:-0.720000px;}
.ls48{letter-spacing:-0.660000px;}
.ls25{letter-spacing:-0.648000px;}
.ls47{letter-spacing:-0.594000px;}
.ls2f{letter-spacing:-0.576000px;}
.ls1a{letter-spacing:-0.504000px;}
.ls19{letter-spacing:-0.432000px;}
.ls26{letter-spacing:-0.399000px;}
.ls24{letter-spacing:-0.378000px;}
.ls2e{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.330000px;}
.ls23{letter-spacing:-0.315000px;}
.ls15{letter-spacing:-0.288000px;}
.ls4e{letter-spacing:-0.264000px;}
.ls12{letter-spacing:-0.216000px;}
.ls4a{letter-spacing:-0.198000px;}
.ls1f{letter-spacing:-0.189000px;}
.ls13{letter-spacing:-0.144000px;}
.ls4d{letter-spacing:-0.132000px;}
.ls1e{letter-spacing:-0.126000px;}
.ls18{letter-spacing:-0.072000px;}
.ls49{letter-spacing:-0.066000px;}
.ls2a{letter-spacing:-0.063000px;}
.ls8{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.063000px;}
.ls41{letter-spacing:0.066000px;}
.ls11{letter-spacing:0.072000px;}
.lsd{letter-spacing:0.111000px;}
.ls31{letter-spacing:0.126000px;}
.ls50{letter-spacing:0.132000px;}
.ls1c{letter-spacing:0.144000px;}
.ls27{letter-spacing:0.189000px;}
.ls4f{letter-spacing:0.198000px;}
.ls14{letter-spacing:0.216000px;}
.ls29{letter-spacing:0.252000px;}
.ls40{letter-spacing:0.264000px;}
.ls10{letter-spacing:0.288000px;}
.ls22{letter-spacing:0.315000px;}
.ls37{letter-spacing:0.330000px;}
.ls17{letter-spacing:0.360000px;}
.ls36{letter-spacing:0.396000px;}
.ls2b{letter-spacing:0.432000px;}
.ls9{letter-spacing:0.462000px;}
.ls7{letter-spacing:0.504000px;}
.ls46{letter-spacing:0.528000px;}
.lsb{letter-spacing:0.576000px;}
.ls39{letter-spacing:0.594000px;}
.ls21{letter-spacing:0.630000px;}
.lsc{letter-spacing:0.648000px;}
.ls3d{letter-spacing:0.660000px;}
.ls20{letter-spacing:0.693000px;}
.ls2{letter-spacing:0.720000px;}
.ls6{letter-spacing:0.726000px;}
.ls3e{letter-spacing:0.765600px;}
.ls2c{letter-spacing:0.792000px;}
.ls32{letter-spacing:0.882000px;}
.ls4b{letter-spacing:0.924000px;}
.ls34{letter-spacing:0.936000px;}
.lse{letter-spacing:1.224000px;}
.lsf{letter-spacing:1.368000px;}
.ls42{letter-spacing:3.352800px;}
.ls43{letter-spacing:4.026000px;}
.ls0{letter-spacing:4.200000px;}
.ls1b{letter-spacing:5.400000px;}
.ls16{letter-spacing:5.932800px;}
.ls35{letter-spacing:6.000000px;}
.ls4c{letter-spacing:6.300000px;}
.ls4{letter-spacing:6.420000px;}
.ls1{letter-spacing:6.600000px;}
.ls30{letter-spacing:6.696000px;}
.ls3b{letter-spacing:7.128000px;}
.ls5{letter-spacing:7.200000px;}
.ls3f{letter-spacing:8.778000px;}
.ls3{letter-spacing:10.200000px;}
.ls44{letter-spacing:10.362000px;}
.ls38{letter-spacing:10.626000px;}
.ls3c{letter-spacing:10.956000px;}
.ls3a{letter-spacing:11.946000px;}
.ls45{letter-spacing:19.800000px;}
.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;}
}
.ws4b{word-spacing:-38.346000px;}
.ws1{word-spacing:-27.432000px;}
.ws40{word-spacing:-22.860000px;}
.ws19{word-spacing:-20.232000px;}
.ws57{word-spacing:-19.800000px;}
.ws20{word-spacing:-18.546000px;}
.ws18{word-spacing:-17.784000px;}
.ws39{word-spacing:-17.703000px;}
.ws0{word-spacing:-17.580000px;}
.wsc{word-spacing:-16.860000px;}
.ws23{word-spacing:-15.561000px;}
.ws22{word-spacing:-14.820000px;}
.wsd{word-spacing:-12.139200px;}
.ws46{word-spacing:-11.946000px;}
.ws48{word-spacing:-10.956000px;}
.ws44{word-spacing:-10.626000px;}
.ws4e{word-spacing:-10.362000px;}
.ws5{word-spacing:-10.200000px;}
.ws1d{word-spacing:-7.200000px;}
.ws4{word-spacing:-6.600000px;}
.ws6{word-spacing:-6.420000px;}
.ws56{word-spacing:-6.300000px;}
.ws43{word-spacing:-6.000000px;}
.ws24{word-spacing:-5.400000px;}
.ws2{word-spacing:-4.200000px;}
.ws3b{word-spacing:-3.087000px;}
.ws17{word-spacing:-1.368000px;}
.ws16{word-spacing:-1.224000px;}
.ws3f{word-spacing:-0.936000px;}
.ws54{word-spacing:-0.924000px;}
.ws3d{word-spacing:-0.882000px;}
.ws37{word-spacing:-0.792000px;}
.ws8{word-spacing:-0.726000px;}
.wsa{word-spacing:-0.720000px;}
.ws29{word-spacing:-0.693000px;}
.ws45{word-spacing:-0.660000px;}
.ws10{word-spacing:-0.648000px;}
.ws2a{word-spacing:-0.630000px;}
.wsf{word-spacing:-0.576000px;}
.ws4d{word-spacing:-0.528000px;}
.wsb{word-spacing:-0.504000px;}
.ws7{word-spacing:-0.462000px;}
.ws36{word-spacing:-0.432000px;}
.ws41{word-spacing:-0.396000px;}
.ws1f{word-spacing:-0.360000px;}
.ws42{word-spacing:-0.330000px;}
.ws2b{word-spacing:-0.315000px;}
.wse{word-spacing:-0.288000px;}
.ws49{word-spacing:-0.264000px;}
.ws31{word-spacing:-0.252000px;}
.ws14{word-spacing:-0.216000px;}
.ws58{word-spacing:-0.198000px;}
.ws3a{word-spacing:-0.189000px;}
.ws25{word-spacing:-0.144000px;}
.ws59{word-spacing:-0.132000px;}
.ws3c{word-spacing:-0.126000px;}
.ws11{word-spacing:-0.072000px;}
.ws4a{word-spacing:-0.066000px;}
.ws27{word-spacing:-0.063000px;}
.ws3{word-spacing:0.000000px;}
.ws32{word-spacing:0.063000px;}
.ws51{word-spacing:0.066000px;}
.ws1a{word-spacing:0.072000px;}
.ws26{word-spacing:0.126000px;}
.ws53{word-spacing:0.132000px;}
.ws13{word-spacing:0.144000px;}
.ws28{word-spacing:0.189000px;}
.ws52{word-spacing:0.198000px;}
.ws12{word-spacing:0.216000px;}
.ws55{word-spacing:0.264000px;}
.ws15{word-spacing:0.288000px;}
.ws2c{word-spacing:0.315000px;}
.ws9{word-spacing:0.330000px;}
.ws34{word-spacing:0.360000px;}
.ws2d{word-spacing:0.378000px;}
.ws2f{word-spacing:0.399000px;}
.ws1b{word-spacing:0.432000px;}
.ws1e{word-spacing:0.504000px;}
.ws35{word-spacing:0.576000px;}
.ws4f{word-spacing:0.594000px;}
.ws2e{word-spacing:0.648000px;}
.ws50{word-spacing:0.660000px;}
.ws33{word-spacing:0.720000px;}
.ws30{word-spacing:0.792000px;}
.ws5a{word-spacing:0.858000px;}
.ws3e{word-spacing:0.936000px;}
.ws4c{word-spacing:4.092000px;}
.ws1c{word-spacing:5.760000px;}
.ws47{word-spacing:6.270000px;}
.ws38{word-spacing:7.632000px;}
.ws21{word-spacing:113.322000px;}
._16{margin-left:-18.456533px;}
._15{margin-left:-15.238800px;}
._1f{margin-left:-12.780533px;}
._11{margin-left:-11.635800px;}
._7{margin-left:-10.179600px;}
._a{margin-left:-8.531400px;}
._10{margin-left:-7.387200px;}
._3{margin-left:-5.583600px;}
._0{margin-left:-3.565800px;}
._5{margin-left:-1.566000px;}
._2{width:1.626533px;}
._f{width:3.006667px;}
._1{width:4.195800px;}
._c{width:6.003600px;}
._e{width:7.167600px;}
._d{width:8.893800px;}
._8{width:10.200000px;}
._4{width:11.220000px;}
._12{width:12.340800px;}
._13{width:13.804800px;}
._b{width:14.820000px;}
._6{width:16.825800px;}
._9{width:18.017400px;}
._20{width:19.866000px;}
._1d{width:20.923800px;}
._1e{width:22.372200px;}
._1b{width:26.334000px;}
._1c{width:27.469800px;}
._14{width:56.923800px;}
._19{width:131.868000px;}
._18{width:140.118000px;}
._17{width:142.890000px;}
._1a{width:190.542000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(58,58,58);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:43.200000px;}
.fs1{font-size:48.000000px;}
.fs9{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fsa{font-size:63.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:76.339350px;}
.y44{bottom:140.313450px;}
.y78{bottom:141.267300px;}
.y56{bottom:141.610350px;}
.ye2{bottom:141.706350px;}
.y197{bottom:142.411800px;}
.y12f{bottom:142.438650px;}
.y174{bottom:142.563600px;}
.y14e{bottom:142.816350px;}
.yea{bottom:143.247750px;}
.ybf{bottom:143.376450px;}
.y1b9{bottom:145.105800px;}
.y10e{bottom:145.110150px;}
.y1e{bottom:145.173300px;}
.y77{bottom:160.324800px;}
.y12e{bottom:160.881900px;}
.ye9{bottom:161.250000px;}
.y196{bottom:162.211800px;}
.y43{bottom:162.364950px;}
.y173{bottom:162.660600px;}
.y55{bottom:163.210350px;}
.y10d{bottom:163.411650px;}
.ye1{bottom:163.612350px;}
.y1b8{bottom:164.608800px;}
.ybe{bottom:164.670450px;}
.y14d{bottom:165.316350px;}
.y1d{bottom:167.223300px;}
.y42{bottom:173.310450px;}
.ye8{bottom:179.252250px;}
.y12d{bottom:179.325150px;}
.y10c{bottom:181.713150px;}
.y195{bottom:182.011800px;}
.y172{bottom:182.757600px;}
.y1b7{bottom:184.111800px;}
.y54{bottom:184.810350px;}
.ye0{bottom:185.518350px;}
.ybd{bottom:185.964450px;}
.y14c{bottom:187.816350px;}
.y1c{bottom:189.273300px;}
.y41{bottom:189.811950px;}
.y76{bottom:192.124050px;}
.ye7{bottom:197.254500px;}
.y1cf{bottom:199.711800px;}
.y194{bottom:201.811800px;}
.y171{bottom:202.854600px;}
.y40{bottom:206.313450px;}
.y53{bottom:206.410350px;}
.y9a{bottom:206.937150px;}
.ybc{bottom:207.258450px;}
.y12c{bottom:210.531150px;}
.y75{bottom:210.866550px;}
.y1b{bottom:211.323300px;}
.y10b{bottom:212.772150px;}
.y1ce{bottom:217.711800px;}
.ydf{bottom:218.224350px;}
.y193{bottom:221.611800px;}
.y14b{bottom:221.710350px;}
.y170{bottom:222.951600px;}
.y1b6{bottom:224.911800px;}
.y52{bottom:228.010350px;}
.y99{bottom:228.231150px;}
.y3f{bottom:228.364950px;}
.ybb{bottom:228.552450px;}
.y74{bottom:229.609050px;}
.y10a{bottom:231.073650px;}
.y1cd{bottom:235.711800px;}
.yde{bottom:240.130350px;}
.y192{bottom:241.411800px;}
.y1a{bottom:241.877250px;}
.y16f{bottom:243.048600px;}
.y14a{bottom:244.210350px;}
.y12b{bottom:245.377500px;}
.y73{bottom:248.351550px;}
.y109{bottom:249.375150px;}
.y51{bottom:249.610350px;}
.y98{bottom:250.281150px;}
.y1cc{bottom:253.711800px;}
.y3e{bottom:258.114300px;}
.y191{bottom:261.211800px;}
.ydd{bottom:262.036350px;}
.yba{bottom:262.584450px;}
.y16e{bottom:263.145600px;}
.y12a{bottom:263.820750px;}
.y1b5{bottom:263.917800px;}
.y149{bottom:266.710350px;}
.y72{bottom:267.094050px;}
.y50{bottom:271.210350px;}
.y97{bottom:272.331150px;}
.y3d{bottom:279.714300px;}
.yb9{bottom:280.287450px;}
.y108{bottom:280.425150px;}
.y190{bottom:281.011800px;}
.y129{bottom:282.264000px;}
.y16d{bottom:283.242600px;}
.ydc{bottom:283.942350px;}
.y1b4{bottom:285.211800px;}
.y71{bottom:285.836550px;}
.y148{bottom:289.210350px;}
.y4f{bottom:292.810350px;}
.y1cb{bottom:293.311800px;}
.y96{bottom:294.381150px;}
.yb8{bottom:297.990450px;}
.y19{bottom:300.692250px;}
.y128{bottom:300.707250px;}
.y18f{bottom:300.811800px;}
.y3c{bottom:301.314300px;}
.y107{bottom:302.331150px;}
.y16c{bottom:303.339600px;}
.y70{bottom:304.579050px;}
.ydb{bottom:305.848350px;}
.y1b3{bottom:306.511800px;}
.y147{bottom:311.710350px;}
.y1ca{bottom:313.111800px;}
.y4e{bottom:314.410350px;}
.yb7{bottom:315.693450px;}
.y95{bottom:316.431150px;}
.y127{bottom:319.150500px;}
.y18e{bottom:320.611800px;}
.y18{bottom:320.789250px;}
.y3b{bottom:322.914300px;}
.y16b{bottom:323.436600px;}
.yda{bottom:327.754350px;}
.yb6{bottom:333.396450px;}
.y146{bottom:334.210350px;}
.y4d{bottom:336.010350px;}
.y6f{bottom:336.079050px;}
.y106{bottom:336.981000px;}
.y126{bottom:337.593750px;}
.y94{bottom:338.481150px;}
.y18d{bottom:340.411800px;}
.y17{bottom:340.886250px;}
.y16a{bottom:343.533600px;}
.y3a{bottom:344.514300px;}
.yd9{bottom:349.660350px;}
.yb5{bottom:351.099450px;}
.y1c9{bottom:354.511800px;}
.y6e{bottom:354.821550px;}
.y105{bottom:355.282500px;}
.y125{bottom:356.037000px;}
.y145{bottom:356.710350px;}
.y4c{bottom:357.610350px;}
.y18c{bottom:360.211800px;}
.y93{bottom:360.531150px;}
.y16{bottom:360.983250px;}
.y169{bottom:363.630600px;}
.y39{bottom:366.114300px;}
.y1b2{bottom:366.811800px;}
.yb4{bottom:368.802450px;}
.yd8{bottom:371.566350px;}
.y6d{bottom:373.564050px;}
.y104{bottom:373.584000px;}
.y1c8{bottom:374.311800px;}
.y4b{bottom:379.210350px;}
.y18b{bottom:380.011800px;}
.y15{bottom:381.080250px;}
.y92{bottom:382.581150px;}
.y168{bottom:383.727600px;}
.y1b1{bottom:384.511800px;}
.yb3{bottom:386.505450px;}
.y124{bottom:387.243000px;}
.y38{bottom:387.714300px;}
.y103{bottom:391.885500px;}
.y6c{bottom:392.306550px;}
.yd7{bottom:393.472350px;}
.y1c7{bottom:394.111800px;}
.y18a{bottom:399.811800px;}
.y4a{bottom:400.810350px;}
.y14{bottom:401.177250px;}
.y144{bottom:401.710350px;}
.y1b0{bottom:402.211800px;}
.y167{bottom:403.824600px;}
.yb2{bottom:404.208450px;}
.y91{bottom:404.631150px;}
.y123{bottom:409.293000px;}
.y37{bottom:409.314300px;}
.y102{bottom:410.187000px;}
.y6b{bottom:411.049050px;}
.y1c6{bottom:413.911800px;}
.yd6{bottom:415.378350px;}
.y189{bottom:419.611800px;}
.y1af{bottom:419.911800px;}
.y49{bottom:422.410350px;}
.y166{bottom:423.921600px;}
.y143{bottom:424.210350px;}
.y90{bottom:426.681150px;}
.y13{bottom:429.781200px;}
.y36{bottom:430.914300px;}
.y122{bottom:431.343000px;}
.y1c5{bottom:433.711800px;}
.yb1{bottom:434.550300px;}
.yd5{bottom:437.284350px;}
.y188{bottom:439.411800px;}
.y101{bottom:441.213000px;}
.y6a{bottom:442.542900px;}
.y48{bottom:444.010350px;}
.y165{bottom:444.018600px;}
.y142{bottom:446.710350px;}
.y8f{bottom:448.731150px;}
.y35{bottom:452.514300px;}
.y121{bottom:453.393000px;}
.y1c4{bottom:453.511800px;}
.yb0{bottom:456.006300px;}
.y1ae{bottom:458.908800px;}
.yd4{bottom:459.190350px;}
.y100{bottom:463.119000px;}
.y164{bottom:464.115600px;}
.y69{bottom:464.898900px;}
.y47{bottom:465.610350px;}
.y141{bottom:469.210350px;}
.y8e{bottom:470.781150px;}
.y1c3{bottom:473.311800px;}
.y34{bottom:474.114300px;}
.y120{bottom:475.443000px;}
.yaf{bottom:477.462300px;}
.y1ad{bottom:478.411800px;}
.y187{bottom:480.811800px;}
.yd3{bottom:481.096350px;}
.y12{bottom:482.100150px;}
.y163{bottom:484.212600px;}
.yff{bottom:485.025000px;}
.y46{bottom:487.210350px;}
.y68{bottom:487.254900px;}
.y140{bottom:491.710350px;}
.y1c2{bottom:493.111800px;}
.y33{bottom:495.714300px;}
.y11f{bottom:497.493000px;}
.yae{bottom:498.918300px;}
.y11{bottom:502.197150px;}
.yd2{bottom:503.002350px;}
.y162{bottom:504.309600px;}
.y8d{bottom:505.671600px;}
.yfe{bottom:506.931000px;}
.y45{bottom:508.810350px;}
.y1c1{bottom:512.911800px;}
.y13f{bottom:514.210350px;}
.y32{bottom:517.314300px;}
.y1ac{bottom:519.148800px;}
.yad{bottom:520.374300px;}
.y186{bottom:522.211800px;}
.y10{bottom:522.294150px;}
.y8c{bottom:524.114850px;}
.y161{bottom:524.406600px;}
.yd1{bottom:524.908350px;}
.yfd{bottom:528.837000px;}
.ye6{bottom:530.410350px;}
.y11e{bottom:532.325850px;}
.y1c0{bottom:532.711800px;}
.y13e{bottom:536.710350px;}
.y1ab{bottom:538.651800px;}
.y31{bottom:538.914300px;}
.yac{bottom:541.830300px;}
.yf{bottom:542.391150px;}
.y8b{bottom:542.558100px;}
.y185{bottom:543.811800px;}
.y160{bottom:544.503600px;}
.y67{bottom:545.604900px;}
.yd0{bottom:546.814350px;}
.yfc{bottom:550.743000px;}
.y11d{bottom:550.769100px;}
.ye5{bottom:552.010350px;}
.y1bf{bottom:552.511800px;}
.y1aa{bottom:558.154800px;}
.y13d{bottom:559.210350px;}
.y30{bottom:560.514300px;}
.y8a{bottom:561.001350px;}
.ye{bottom:562.488150px;}
.yab{bottom:563.286300px;}
.y66{bottom:563.604900px;}
.y15f{bottom:564.600600px;}
.y184{bottom:565.411800px;}
.ycf{bottom:568.720350px;}
.y11c{bottom:569.212350px;}
.y1be{bottom:572.311800px;}
.ye4{bottom:573.610350px;}
.y1a9{bottom:577.657800px;}
.y89{bottom:579.444600px;}
.y13c{bottom:581.710350px;}
.y2f{bottom:582.114300px;}
.yd{bottom:582.585150px;}
.y15e{bottom:584.697600px;}
.yaa{bottom:584.742300px;}
.yfb{bottom:585.386850px;}
.y11b{bottom:587.655600px;}
.yce{bottom:590.626350px;}
.y1bd{bottom:592.111800px;}
.y65{bottom:592.791300px;}
.ye3{bottom:595.210350px;}
.y1a8{bottom:597.160800px;}
.yfa{bottom:603.688350px;}
.y2e{bottom:603.714300px;}
.y13b{bottom:604.210350px;}
.y11a{bottom:606.098850px;}
.ya9{bottom:606.198300px;}
.y88{bottom:610.645350px;}
.yc{bottom:611.189100px;}
.y1bc{bottom:611.911800px;}
.ycd{bottom:612.532350px;}
.y64{bottom:612.591300px;}
.y15d{bottom:613.301550px;}
.y1a7{bottom:616.663800px;}
.yf9{bottom:621.989850px;}
.y2d{bottom:625.314300px;}
.y183{bottom:626.611800px;}
.y13a{bottom:626.710350px;}
.ya8{bottom:627.654300px;}
.y87{bottom:629.088600px;}
.y1bb{bottom:631.711800px;}
.y63{bottom:632.391300px;}
.ycc{bottom:634.438350px;}
.y1a6{bottom:636.166800px;}
.y119{bottom:637.304700px;}
.yf8{bottom:640.291350px;}
.y182{bottom:643.711800px;}
.y2c{bottom:646.914300px;}
.y86{bottom:647.531850px;}
.ya7{bottom:649.110300px;}
.y139{bottom:649.210350px;}
.y1ba{bottom:651.511800px;}
.y1a5{bottom:655.669800px;}
.ycb{bottom:656.344350px;}
.yf7{bottom:658.592850px;}
.y118{bottom:659.354700px;}
.y62{bottom:660.375300px;}
.y15c{bottom:661.873500px;}
.y85{bottom:665.975100px;}
.y2b{bottom:668.514300px;}
.ya6{bottom:670.566300px;}
.y181{bottom:671.311800px;}
.y138{bottom:671.710350px;}
.yb{bottom:672.195900px;}
.y1a4{bottom:675.172800px;}
.yf6{bottom:676.894350px;}
.yca{bottom:678.250350px;}
.y61{bottom:680.175300px;}
.y117{bottom:681.404700px;}
.y15b{bottom:681.822000px;}
.y2a{bottom:690.114300px;}
.y180{bottom:691.111800px;}
.ya5{bottom:692.022300px;}
.ya{bottom:692.292900px;}
.y137{bottom:694.210350px;}
.y1a3{bottom:694.675800px;}
.yf5{bottom:695.195850px;}
.y84{bottom:697.175850px;}
.y60{bottom:699.975300px;}
.yc9{bottom:700.156350px;}
.y15a{bottom:701.770500px;}
.y116{bottom:703.454700px;}
.y17f{bottom:710.911800px;}
.y29{bottom:711.714300px;}
.ya4{bottom:713.478300px;}
.yf4{bottom:713.497350px;}
.y1a2{bottom:714.178800px;}
.y83{bottom:715.619100px;}
.y136{bottom:716.710350px;}
.y159{bottom:721.719000px;}
.yc8{bottom:722.062350px;}
.y115{bottom:725.504700px;}
.y5f{bottom:727.959300px;}
.y17e{bottom:730.711800px;}
.yf3{bottom:731.798850px;}
.y28{bottom:733.314300px;}
.y1a1{bottom:733.681800px;}
.y82{bottom:734.062350px;}
.y9{bottom:734.286900px;}
.ya3{bottom:734.934300px;}
.y135{bottom:739.210350px;}
.y158{bottom:741.667500px;}
.yc7{bottom:743.968350px;}
.y114{bottom:747.554700px;}
.y5e{bottom:747.759300px;}
.y17d{bottom:750.511800px;}
.y81{bottom:752.505600px;}
.y1a0{bottom:753.184800px;}
.y27{bottom:754.914300px;}
.ya2{bottom:756.390300px;}
.y157{bottom:761.616000px;}
.y134{bottom:761.710350px;}
.yf2{bottom:762.848700px;}
.y8{bottom:765.192900px;}
.yc6{bottom:765.874350px;}
.y5d{bottom:767.559300px;}
.y113{bottom:769.604700px;}
.y17c{bottom:770.311800px;}
.y80{bottom:770.948850px;}
.y19f{bottom:772.687800px;}
.y26{bottom:776.514300px;}
.ya1{bottom:777.846300px;}
.y156{bottom:781.564500px;}
.yf1{bottom:784.754700px;}
.yc5{bottom:787.780350px;}
.y17b{bottom:790.111800px;}
.y112{bottom:791.654700px;}
.y19e{bottom:792.190800px;}
.y133{bottom:792.714300px;}
.y5c{bottom:795.543300px;}
.y25{bottom:798.114300px;}
.ya0{bottom:799.302300px;}
.y155{bottom:801.513000px;}
.y7f{bottom:802.154700px;}
.yc4{bottom:809.686350px;}
.y17a{bottom:809.911800px;}
.y19d{bottom:811.693800px;}
.y111{bottom:813.704700px;}
.y5b{bottom:815.343300px;}
.yf0{bottom:819.401700px;}
.y24{bottom:819.714300px;}
.y7{bottom:820.756800px;}
.y9f{bottom:820.758300px;}
.y154{bottom:821.461500px;}
.y179{bottom:829.711800px;}
.y19c{bottom:831.196800px;}
.yc3{bottom:831.592350px;}
.y5a{bottom:835.143300px;}
.y110{bottom:835.754700px;}
.y7e{bottom:836.994450px;}
.yef{bottom:837.703200px;}
.y6{bottom:839.206800px;}
.y23{bottom:841.314300px;}
.y153{bottom:841.410000px;}
.y9e{bottom:842.214300px;}
.y178{bottom:849.511800px;}
.y19b{bottom:850.699800px;}
.yc2{bottom:853.498350px;}
.y59{bottom:854.943300px;}
.y7d{bottom:855.437700px;}
.yee{bottom:856.004700px;}
.y5{bottom:857.656800px;}
.y10f{bottom:857.804700px;}
.y132{bottom:860.214300px;}
.y152{bottom:861.358500px;}
.y22{bottom:862.914300px;}
.y9d{bottom:863.670300px;}
.y177{bottom:869.311800px;}
.y19a{bottom:870.202800px;}
.y7c{bottom:873.880950px;}
.yed{bottom:874.306200px;}
.y58{bottom:874.743300px;}
.yc1{bottom:875.404350px;}
.y4{bottom:876.106800px;}
.y151{bottom:881.307000px;}
.y131{bottom:882.714300px;}
.y21{bottom:884.514300px;}
.y9c{bottom:885.126300px;}
.y176{bottom:889.111800px;}
.y199{bottom:889.705800px;}
.y7b{bottom:892.324200px;}
.yec{bottom:892.607700px;}
.y57{bottom:894.543300px;}
.yc0{bottom:897.310350px;}
.y150{bottom:901.255500px;}
.y130{bottom:905.214300px;}
.y20{bottom:906.114300px;}
.y9b{bottom:906.420300px;}
.y175{bottom:908.911800px;}
.y198{bottom:909.208800px;}
.y3{bottom:910.711800px;}
.y7a{bottom:910.767450px;}
.yeb{bottom:910.909200px;}
.y1f{bottom:927.714300px;}
.y2{bottom:928.711800px;}
.y79{bottom:929.210700px;}
.y14f{bottom:929.709450px;}
.h9{height:30.568359px;}
.h7{height:35.663086px;}
.h2{height:40.757812px;}
.ha{height:48.399902px;}
.h3{height:50.947266px;}
.hb{height:53.494629px;}
.h4{height:56.041992px;}
.h6{height:61.136719px;}
.h8{height:63.322031px;}
.h5{height:86.610352px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x3{left:76.535400px;}
.x4{left:97.811400px;}
.xb{left:104.363400px;}
.x7{left:119.035350px;}
.x8{left:131.720400px;}
.x12{left:140.317650px;}
.x6{left:143.170350px;}
.xa{left:149.639400px;}
.x9{left:156.503400px;}
.xc{left:201.977400px;}
.x1{left:215.851200px;}
.x5{left:243.269700px;}
.xd{left:275.105400px;}
.xe{left:360.146400px;}
.xf{left:431.426400px;}
.x10{left:503.861400px;}
.x14{left:509.980350px;}
.x13{left:518.943600px;}
.x11{left:574.233900px;}
.x2{left:579.664350px;}
@media print{
.v3{vertical-align:-19.733333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.650667pt;}
.v2{vertical-align:23.680000pt;}
.ls33{letter-spacing:-0.832000pt;}
.ls51{letter-spacing:-0.762667pt;}
.ls28{letter-spacing:-0.704000pt;}
.ls2d{letter-spacing:-0.640000pt;}
.ls48{letter-spacing:-0.586667pt;}
.ls25{letter-spacing:-0.576000pt;}
.ls47{letter-spacing:-0.528000pt;}
.ls2f{letter-spacing:-0.512000pt;}
.ls1a{letter-spacing:-0.448000pt;}
.ls19{letter-spacing:-0.384000pt;}
.ls26{letter-spacing:-0.354667pt;}
.ls24{letter-spacing:-0.336000pt;}
.ls2e{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.293333pt;}
.ls23{letter-spacing:-0.280000pt;}
.ls15{letter-spacing:-0.256000pt;}
.ls4e{letter-spacing:-0.234667pt;}
.ls12{letter-spacing:-0.192000pt;}
.ls4a{letter-spacing:-0.176000pt;}
.ls1f{letter-spacing:-0.168000pt;}
.ls13{letter-spacing:-0.128000pt;}
.ls4d{letter-spacing:-0.117333pt;}
.ls1e{letter-spacing:-0.112000pt;}
.ls18{letter-spacing:-0.064000pt;}
.ls49{letter-spacing:-0.058667pt;}
.ls2a{letter-spacing:-0.056000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.056000pt;}
.ls41{letter-spacing:0.058667pt;}
.ls11{letter-spacing:0.064000pt;}
.lsd{letter-spacing:0.098667pt;}
.ls31{letter-spacing:0.112000pt;}
.ls50{letter-spacing:0.117333pt;}
.ls1c{letter-spacing:0.128000pt;}
.ls27{letter-spacing:0.168000pt;}
.ls4f{letter-spacing:0.176000pt;}
.ls14{letter-spacing:0.192000pt;}
.ls29{letter-spacing:0.224000pt;}
.ls40{letter-spacing:0.234667pt;}
.ls10{letter-spacing:0.256000pt;}
.ls22{letter-spacing:0.280000pt;}
.ls37{letter-spacing:0.293333pt;}
.ls17{letter-spacing:0.320000pt;}
.ls36{letter-spacing:0.352000pt;}
.ls2b{letter-spacing:0.384000pt;}
.ls9{letter-spacing:0.410667pt;}
.ls7{letter-spacing:0.448000pt;}
.ls46{letter-spacing:0.469333pt;}
.lsb{letter-spacing:0.512000pt;}
.ls39{letter-spacing:0.528000pt;}
.ls21{letter-spacing:0.560000pt;}
.lsc{letter-spacing:0.576000pt;}
.ls3d{letter-spacing:0.586667pt;}
.ls20{letter-spacing:0.616000pt;}
.ls2{letter-spacing:0.640000pt;}
.ls6{letter-spacing:0.645333pt;}
.ls3e{letter-spacing:0.680533pt;}
.ls2c{letter-spacing:0.704000pt;}
.ls32{letter-spacing:0.784000pt;}
.ls4b{letter-spacing:0.821333pt;}
.ls34{letter-spacing:0.832000pt;}
.lse{letter-spacing:1.088000pt;}
.lsf{letter-spacing:1.216000pt;}
.ls42{letter-spacing:2.980267pt;}
.ls43{letter-spacing:3.578667pt;}
.ls0{letter-spacing:3.733333pt;}
.ls1b{letter-spacing:4.800000pt;}
.ls16{letter-spacing:5.273600pt;}
.ls35{letter-spacing:5.333333pt;}
.ls4c{letter-spacing:5.600000pt;}
.ls4{letter-spacing:5.706667pt;}
.ls1{letter-spacing:5.866667pt;}
.ls30{letter-spacing:5.952000pt;}
.ls3b{letter-spacing:6.336000pt;}
.ls5{letter-spacing:6.400000pt;}
.ls3f{letter-spacing:7.802667pt;}
.ls3{letter-spacing:9.066667pt;}
.ls44{letter-spacing:9.210667pt;}
.ls38{letter-spacing:9.445333pt;}
.ls3c{letter-spacing:9.738667pt;}
.ls3a{letter-spacing:10.618667pt;}
.ls45{letter-spacing:17.600000pt;}
.ws4b{word-spacing:-34.085333pt;}
.ws1{word-spacing:-24.384000pt;}
.ws40{word-spacing:-20.320000pt;}
.ws19{word-spacing:-17.984000pt;}
.ws57{word-spacing:-17.600000pt;}
.ws20{word-spacing:-16.485333pt;}
.ws18{word-spacing:-15.808000pt;}
.ws39{word-spacing:-15.736000pt;}
.ws0{word-spacing:-15.626667pt;}
.wsc{word-spacing:-14.986667pt;}
.ws23{word-spacing:-13.832000pt;}
.ws22{word-spacing:-13.173333pt;}
.wsd{word-spacing:-10.790400pt;}
.ws46{word-spacing:-10.618667pt;}
.ws48{word-spacing:-9.738667pt;}
.ws44{word-spacing:-9.445333pt;}
.ws4e{word-spacing:-9.210667pt;}
.ws5{word-spacing:-9.066667pt;}
.ws1d{word-spacing:-6.400000pt;}
.ws4{word-spacing:-5.866667pt;}
.ws6{word-spacing:-5.706667pt;}
.ws56{word-spacing:-5.600000pt;}
.ws43{word-spacing:-5.333333pt;}
.ws24{word-spacing:-4.800000pt;}
.ws2{word-spacing:-3.733333pt;}
.ws3b{word-spacing:-2.744000pt;}
.ws17{word-spacing:-1.216000pt;}
.ws16{word-spacing:-1.088000pt;}
.ws3f{word-spacing:-0.832000pt;}
.ws54{word-spacing:-0.821333pt;}
.ws3d{word-spacing:-0.784000pt;}
.ws37{word-spacing:-0.704000pt;}
.ws8{word-spacing:-0.645333pt;}
.wsa{word-spacing:-0.640000pt;}
.ws29{word-spacing:-0.616000pt;}
.ws45{word-spacing:-0.586667pt;}
.ws10{word-spacing:-0.576000pt;}
.ws2a{word-spacing:-0.560000pt;}
.wsf{word-spacing:-0.512000pt;}
.ws4d{word-spacing:-0.469333pt;}
.wsb{word-spacing:-0.448000pt;}
.ws7{word-spacing:-0.410667pt;}
.ws36{word-spacing:-0.384000pt;}
.ws41{word-spacing:-0.352000pt;}
.ws1f{word-spacing:-0.320000pt;}
.ws42{word-spacing:-0.293333pt;}
.ws2b{word-spacing:-0.280000pt;}
.wse{word-spacing:-0.256000pt;}
.ws49{word-spacing:-0.234667pt;}
.ws31{word-spacing:-0.224000pt;}
.ws14{word-spacing:-0.192000pt;}
.ws58{word-spacing:-0.176000pt;}
.ws3a{word-spacing:-0.168000pt;}
.ws25{word-spacing:-0.128000pt;}
.ws59{word-spacing:-0.117333pt;}
.ws3c{word-spacing:-0.112000pt;}
.ws11{word-spacing:-0.064000pt;}
.ws4a{word-spacing:-0.058667pt;}
.ws27{word-spacing:-0.056000pt;}
.ws3{word-spacing:0.000000pt;}
.ws32{word-spacing:0.056000pt;}
.ws51{word-spacing:0.058667pt;}
.ws1a{word-spacing:0.064000pt;}
.ws26{word-spacing:0.112000pt;}
.ws53{word-spacing:0.117333pt;}
.ws13{word-spacing:0.128000pt;}
.ws28{word-spacing:0.168000pt;}
.ws52{word-spacing:0.176000pt;}
.ws12{word-spacing:0.192000pt;}
.ws55{word-spacing:0.234667pt;}
.ws15{word-spacing:0.256000pt;}
.ws2c{word-spacing:0.280000pt;}
.ws9{word-spacing:0.293333pt;}
.ws34{word-spacing:0.320000pt;}
.ws2d{word-spacing:0.336000pt;}
.ws2f{word-spacing:0.354667pt;}
.ws1b{word-spacing:0.384000pt;}
.ws1e{word-spacing:0.448000pt;}
.ws35{word-spacing:0.512000pt;}
.ws4f{word-spacing:0.528000pt;}
.ws2e{word-spacing:0.576000pt;}
.ws50{word-spacing:0.586667pt;}
.ws33{word-spacing:0.640000pt;}
.ws30{word-spacing:0.704000pt;}
.ws5a{word-spacing:0.762667pt;}
.ws3e{word-spacing:0.832000pt;}
.ws4c{word-spacing:3.637333pt;}
.ws1c{word-spacing:5.120000pt;}
.ws47{word-spacing:5.573333pt;}
.ws38{word-spacing:6.784000pt;}
.ws21{word-spacing:100.730667pt;}
._16{margin-left:-16.405807pt;}
._15{margin-left:-13.545600pt;}
._1f{margin-left:-11.360474pt;}
._11{margin-left:-10.342933pt;}
._7{margin-left:-9.048533pt;}
._a{margin-left:-7.583467pt;}
._10{margin-left:-6.566400pt;}
._3{margin-left:-4.963200pt;}
._0{margin-left:-3.169600pt;}
._5{margin-left:-1.392000pt;}
._2{width:1.445807pt;}
._f{width:2.672593pt;}
._1{width:3.729600pt;}
._c{width:5.336533pt;}
._e{width:6.371200pt;}
._d{width:7.905600pt;}
._8{width:9.066667pt;}
._4{width:9.973333pt;}
._12{width:10.969600pt;}
._13{width:12.270933pt;}
._b{width:13.173333pt;}
._6{width:14.956267pt;}
._9{width:16.015467pt;}
._20{width:17.658667pt;}
._1d{width:18.598933pt;}
._1e{width:19.886400pt;}
._1b{width:23.408000pt;}
._1c{width:24.417600pt;}
._14{width:50.598933pt;}
._19{width:117.216000pt;}
._18{width:124.549333pt;}
._17{width:127.013333pt;}
._1a{width:169.370667pt;}
.fs7{font-size:32.000000pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:38.400000pt;}
.fs1{font-size:42.666667pt;}
.fs9{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fsa{font-size:56.000000pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:67.857200pt;}
.y44{bottom:124.723067pt;}
.y78{bottom:125.570933pt;}
.y56{bottom:125.875867pt;}
.ye2{bottom:125.961200pt;}
.y197{bottom:126.588267pt;}
.y12f{bottom:126.612133pt;}
.y174{bottom:126.723200pt;}
.y14e{bottom:126.947867pt;}
.yea{bottom:127.331333pt;}
.ybf{bottom:127.445733pt;}
.y1b9{bottom:128.982933pt;}
.y10e{bottom:128.986800pt;}
.y1e{bottom:129.042933pt;}
.y77{bottom:142.510933pt;}
.y12e{bottom:143.006133pt;}
.ye9{bottom:143.333333pt;}
.y196{bottom:144.188267pt;}
.y43{bottom:144.324400pt;}
.y173{bottom:144.587200pt;}
.y55{bottom:145.075867pt;}
.y10d{bottom:145.254800pt;}
.ye1{bottom:145.433200pt;}
.y1b8{bottom:146.318933pt;}
.ybe{bottom:146.373733pt;}
.y14d{bottom:146.947867pt;}
.y1d{bottom:148.642933pt;}
.y42{bottom:154.053733pt;}
.ye8{bottom:159.335333pt;}
.y12d{bottom:159.400133pt;}
.y10c{bottom:161.522800pt;}
.y195{bottom:161.788267pt;}
.y172{bottom:162.451200pt;}
.y1b7{bottom:163.654933pt;}
.y54{bottom:164.275867pt;}
.ye0{bottom:164.905200pt;}
.ybd{bottom:165.301733pt;}
.y14c{bottom:166.947867pt;}
.y1c{bottom:168.242933pt;}
.y41{bottom:168.721733pt;}
.y76{bottom:170.776933pt;}
.ye7{bottom:175.337333pt;}
.y1cf{bottom:177.521600pt;}
.y194{bottom:179.388267pt;}
.y171{bottom:180.315200pt;}
.y40{bottom:183.389733pt;}
.y53{bottom:183.475867pt;}
.y9a{bottom:183.944133pt;}
.ybc{bottom:184.229733pt;}
.y12c{bottom:187.138800pt;}
.y75{bottom:187.436933pt;}
.y1b{bottom:187.842933pt;}
.y10b{bottom:189.130800pt;}
.y1ce{bottom:193.521600pt;}
.ydf{bottom:193.977200pt;}
.y193{bottom:196.988267pt;}
.y14b{bottom:197.075867pt;}
.y170{bottom:198.179200pt;}
.y1b6{bottom:199.921600pt;}
.y52{bottom:202.675867pt;}
.y99{bottom:202.872133pt;}
.y3f{bottom:202.991067pt;}
.ybb{bottom:203.157733pt;}
.y74{bottom:204.096933pt;}
.y10a{bottom:205.398800pt;}
.y1cd{bottom:209.521600pt;}
.yde{bottom:213.449200pt;}
.y192{bottom:214.588267pt;}
.y1a{bottom:215.002000pt;}
.y16f{bottom:216.043200pt;}
.y14a{bottom:217.075867pt;}
.y12b{bottom:218.113333pt;}
.y73{bottom:220.756933pt;}
.y109{bottom:221.666800pt;}
.y51{bottom:221.875867pt;}
.y98{bottom:222.472133pt;}
.y1cc{bottom:225.521600pt;}
.y3e{bottom:229.434933pt;}
.y191{bottom:232.188267pt;}
.ydd{bottom:232.921200pt;}
.yba{bottom:233.408400pt;}
.y16e{bottom:233.907200pt;}
.y12a{bottom:234.507333pt;}
.y1b5{bottom:234.593600pt;}
.y149{bottom:237.075867pt;}
.y72{bottom:237.416933pt;}
.y50{bottom:241.075867pt;}
.y97{bottom:242.072133pt;}
.y3d{bottom:248.634933pt;}
.yb9{bottom:249.144400pt;}
.y108{bottom:249.266800pt;}
.y190{bottom:249.788267pt;}
.y129{bottom:250.901333pt;}
.y16d{bottom:251.771200pt;}
.ydc{bottom:252.393200pt;}
.y1b4{bottom:253.521600pt;}
.y71{bottom:254.076933pt;}
.y148{bottom:257.075867pt;}
.y4f{bottom:260.275867pt;}
.y1cb{bottom:260.721600pt;}
.y96{bottom:261.672133pt;}
.yb8{bottom:264.880400pt;}
.y19{bottom:267.282000pt;}
.y128{bottom:267.295333pt;}
.y18f{bottom:267.388267pt;}
.y3c{bottom:267.834933pt;}
.y107{bottom:268.738800pt;}
.y16c{bottom:269.635200pt;}
.y70{bottom:270.736933pt;}
.ydb{bottom:271.865200pt;}
.y1b3{bottom:272.454933pt;}
.y147{bottom:277.075867pt;}
.y1ca{bottom:278.321600pt;}
.y4e{bottom:279.475867pt;}
.yb7{bottom:280.616400pt;}
.y95{bottom:281.272133pt;}
.y127{bottom:283.689333pt;}
.y18e{bottom:284.988267pt;}
.y18{bottom:285.146000pt;}
.y3b{bottom:287.034933pt;}
.y16b{bottom:287.499200pt;}
.yda{bottom:291.337200pt;}
.yb6{bottom:296.352400pt;}
.y146{bottom:297.075867pt;}
.y4d{bottom:298.675867pt;}
.y6f{bottom:298.736933pt;}
.y106{bottom:299.538667pt;}
.y126{bottom:300.083333pt;}
.y94{bottom:300.872133pt;}
.y18d{bottom:302.588267pt;}
.y17{bottom:303.010000pt;}
.y16a{bottom:305.363200pt;}
.y3a{bottom:306.234933pt;}
.yd9{bottom:310.809200pt;}
.yb5{bottom:312.088400pt;}
.y1c9{bottom:315.121600pt;}
.y6e{bottom:315.396933pt;}
.y105{bottom:315.806667pt;}
.y125{bottom:316.477333pt;}
.y145{bottom:317.075867pt;}
.y4c{bottom:317.875867pt;}
.y18c{bottom:320.188267pt;}
.y93{bottom:320.472133pt;}
.y16{bottom:320.874000pt;}
.y169{bottom:323.227200pt;}
.y39{bottom:325.434933pt;}
.y1b2{bottom:326.054933pt;}
.yb4{bottom:327.824400pt;}
.yd8{bottom:330.281200pt;}
.y6d{bottom:332.056933pt;}
.y104{bottom:332.074667pt;}
.y1c8{bottom:332.721600pt;}
.y4b{bottom:337.075867pt;}
.y18b{bottom:337.788267pt;}
.y15{bottom:338.738000pt;}
.y92{bottom:340.072133pt;}
.y168{bottom:341.091200pt;}
.y1b1{bottom:341.788267pt;}
.yb3{bottom:343.560400pt;}
.y124{bottom:344.216000pt;}
.y38{bottom:344.634933pt;}
.y103{bottom:348.342667pt;}
.y6c{bottom:348.716933pt;}
.yd7{bottom:349.753200pt;}
.y1c7{bottom:350.321600pt;}
.y18a{bottom:355.388267pt;}
.y4a{bottom:356.275867pt;}
.y14{bottom:356.602000pt;}
.y144{bottom:357.075867pt;}
.y1b0{bottom:357.521600pt;}
.y167{bottom:358.955200pt;}
.yb2{bottom:359.296400pt;}
.y91{bottom:359.672133pt;}
.y123{bottom:363.816000pt;}
.y37{bottom:363.834933pt;}
.y102{bottom:364.610667pt;}
.y6b{bottom:365.376933pt;}
.y1c6{bottom:367.921600pt;}
.yd6{bottom:369.225200pt;}
.y189{bottom:372.988267pt;}
.y1af{bottom:373.254933pt;}
.y49{bottom:375.475867pt;}
.y166{bottom:376.819200pt;}
.y143{bottom:377.075867pt;}
.y90{bottom:379.272133pt;}
.y13{bottom:382.027733pt;}
.y36{bottom:383.034933pt;}
.y122{bottom:383.416000pt;}
.y1c5{bottom:385.521600pt;}
.yb1{bottom:386.266933pt;}
.yd5{bottom:388.697200pt;}
.y188{bottom:390.588267pt;}
.y101{bottom:392.189333pt;}
.y6a{bottom:393.371467pt;}
.y48{bottom:394.675867pt;}
.y165{bottom:394.683200pt;}
.y142{bottom:397.075867pt;}
.y8f{bottom:398.872133pt;}
.y35{bottom:402.234933pt;}
.y121{bottom:403.016000pt;}
.y1c4{bottom:403.121600pt;}
.yb0{bottom:405.338933pt;}
.y1ae{bottom:407.918933pt;}
.yd4{bottom:408.169200pt;}
.y100{bottom:411.661333pt;}
.y164{bottom:412.547200pt;}
.y69{bottom:413.243467pt;}
.y47{bottom:413.875867pt;}
.y141{bottom:417.075867pt;}
.y8e{bottom:418.472133pt;}
.y1c3{bottom:420.721600pt;}
.y34{bottom:421.434933pt;}
.y120{bottom:422.616000pt;}
.yaf{bottom:424.410933pt;}
.y1ad{bottom:425.254933pt;}
.y187{bottom:427.388267pt;}
.yd3{bottom:427.641200pt;}
.y12{bottom:428.533467pt;}
.y163{bottom:430.411200pt;}
.yff{bottom:431.133333pt;}
.y46{bottom:433.075867pt;}
.y68{bottom:433.115467pt;}
.y140{bottom:437.075867pt;}
.y1c2{bottom:438.321600pt;}
.y33{bottom:440.634933pt;}
.y11f{bottom:442.216000pt;}
.yae{bottom:443.482933pt;}
.y11{bottom:446.397467pt;}
.yd2{bottom:447.113200pt;}
.y162{bottom:448.275200pt;}
.y8d{bottom:449.485867pt;}
.yfe{bottom:450.605333pt;}
.y45{bottom:452.275867pt;}
.y1c1{bottom:455.921600pt;}
.y13f{bottom:457.075867pt;}
.y32{bottom:459.834933pt;}
.y1ac{bottom:461.465600pt;}
.yad{bottom:462.554933pt;}
.y186{bottom:464.188267pt;}
.y10{bottom:464.261467pt;}
.y8c{bottom:465.879867pt;}
.y161{bottom:466.139200pt;}
.yd1{bottom:466.585200pt;}
.yfd{bottom:470.077333pt;}
.ye6{bottom:471.475867pt;}
.y11e{bottom:473.178533pt;}
.y1c0{bottom:473.521600pt;}
.y13e{bottom:477.075867pt;}
.y1ab{bottom:478.801600pt;}
.y31{bottom:479.034933pt;}
.yac{bottom:481.626933pt;}
.yf{bottom:482.125467pt;}
.y8b{bottom:482.273867pt;}
.y185{bottom:483.388267pt;}
.y160{bottom:484.003200pt;}
.y67{bottom:484.982133pt;}
.yd0{bottom:486.057200pt;}
.yfc{bottom:489.549333pt;}
.y11d{bottom:489.572533pt;}
.ye5{bottom:490.675867pt;}
.y1bf{bottom:491.121600pt;}
.y1aa{bottom:496.137600pt;}
.y13d{bottom:497.075867pt;}
.y30{bottom:498.234933pt;}
.y8a{bottom:498.667867pt;}
.ye{bottom:499.989467pt;}
.yab{bottom:500.698933pt;}
.y66{bottom:500.982133pt;}
.y15f{bottom:501.867200pt;}
.y184{bottom:502.588267pt;}
.ycf{bottom:505.529200pt;}
.y11c{bottom:505.966533pt;}
.y1be{bottom:508.721600pt;}
.ye4{bottom:509.875867pt;}
.y1a9{bottom:513.473600pt;}
.y89{bottom:515.061867pt;}
.y13c{bottom:517.075867pt;}
.y2f{bottom:517.434933pt;}
.yd{bottom:517.853467pt;}
.y15e{bottom:519.731200pt;}
.yaa{bottom:519.770933pt;}
.yfb{bottom:520.343867pt;}
.y11b{bottom:522.360533pt;}
.yce{bottom:525.001200pt;}
.y1bd{bottom:526.321600pt;}
.y65{bottom:526.925600pt;}
.ye3{bottom:529.075867pt;}
.y1a8{bottom:530.809600pt;}
.yfa{bottom:536.611867pt;}
.y2e{bottom:536.634933pt;}
.y13b{bottom:537.075867pt;}
.y11a{bottom:538.754533pt;}
.ya9{bottom:538.842933pt;}
.y88{bottom:542.795867pt;}
.yc{bottom:543.279200pt;}
.y1bc{bottom:543.921600pt;}
.ycd{bottom:544.473200pt;}
.y64{bottom:544.525600pt;}
.y15d{bottom:545.156933pt;}
.y1a7{bottom:548.145600pt;}
.yf9{bottom:552.879867pt;}
.y2d{bottom:555.834933pt;}
.y183{bottom:556.988267pt;}
.y13a{bottom:557.075867pt;}
.ya8{bottom:557.914933pt;}
.y87{bottom:559.189867pt;}
.y1bb{bottom:561.521600pt;}
.y63{bottom:562.125600pt;}
.ycc{bottom:563.945200pt;}
.y1a6{bottom:565.481600pt;}
.y119{bottom:566.493067pt;}
.yf8{bottom:569.147867pt;}
.y182{bottom:572.188267pt;}
.y2c{bottom:575.034933pt;}
.y86{bottom:575.583867pt;}
.ya7{bottom:576.986933pt;}
.y139{bottom:577.075867pt;}
.y1ba{bottom:579.121600pt;}
.y1a5{bottom:582.817600pt;}
.ycb{bottom:583.417200pt;}
.yf7{bottom:585.415867pt;}
.y118{bottom:586.093067pt;}
.y62{bottom:587.000267pt;}
.y15c{bottom:588.332000pt;}
.y85{bottom:591.977867pt;}
.y2b{bottom:594.234933pt;}
.ya6{bottom:596.058933pt;}
.y181{bottom:596.721600pt;}
.y138{bottom:597.075867pt;}
.yb{bottom:597.507467pt;}
.y1a4{bottom:600.153600pt;}
.yf6{bottom:601.683867pt;}
.yca{bottom:602.889200pt;}
.y61{bottom:604.600267pt;}
.y117{bottom:605.693067pt;}
.y15b{bottom:606.064000pt;}
.y2a{bottom:613.434933pt;}
.y180{bottom:614.321600pt;}
.ya5{bottom:615.130933pt;}
.ya{bottom:615.371467pt;}
.y137{bottom:617.075867pt;}
.y1a3{bottom:617.489600pt;}
.yf5{bottom:617.951867pt;}
.y84{bottom:619.711867pt;}
.y60{bottom:622.200267pt;}
.yc9{bottom:622.361200pt;}
.y15a{bottom:623.796000pt;}
.y116{bottom:625.293067pt;}
.y17f{bottom:631.921600pt;}
.y29{bottom:632.634933pt;}
.ya4{bottom:634.202933pt;}
.yf4{bottom:634.219867pt;}
.y1a2{bottom:634.825600pt;}
.y83{bottom:636.105867pt;}
.y136{bottom:637.075867pt;}
.y159{bottom:641.528000pt;}
.yc8{bottom:641.833200pt;}
.y115{bottom:644.893067pt;}
.y5f{bottom:647.074933pt;}
.y17e{bottom:649.521600pt;}
.yf3{bottom:650.487867pt;}
.y28{bottom:651.834933pt;}
.y1a1{bottom:652.161600pt;}
.y82{bottom:652.499867pt;}
.y9{bottom:652.699467pt;}
.ya3{bottom:653.274933pt;}
.y135{bottom:657.075867pt;}
.y158{bottom:659.260000pt;}
.yc7{bottom:661.305200pt;}
.y114{bottom:664.493067pt;}
.y5e{bottom:664.674933pt;}
.y17d{bottom:667.121600pt;}
.y81{bottom:668.893867pt;}
.y1a0{bottom:669.497600pt;}
.y27{bottom:671.034933pt;}
.ya2{bottom:672.346933pt;}
.y157{bottom:676.992000pt;}
.y134{bottom:677.075867pt;}
.yf2{bottom:678.087733pt;}
.y8{bottom:680.171467pt;}
.yc6{bottom:680.777200pt;}
.y5d{bottom:682.274933pt;}
.y113{bottom:684.093067pt;}
.y17c{bottom:684.721600pt;}
.y80{bottom:685.287867pt;}
.y19f{bottom:686.833600pt;}
.y26{bottom:690.234933pt;}
.ya1{bottom:691.418933pt;}
.y156{bottom:694.724000pt;}
.yf1{bottom:697.559733pt;}
.yc5{bottom:700.249200pt;}
.y17b{bottom:702.321600pt;}
.y112{bottom:703.693067pt;}
.y19e{bottom:704.169600pt;}
.y133{bottom:704.634933pt;}
.y5c{bottom:707.149600pt;}
.y25{bottom:709.434933pt;}
.ya0{bottom:710.490933pt;}
.y155{bottom:712.456000pt;}
.y7f{bottom:713.026400pt;}
.yc4{bottom:719.721200pt;}
.y17a{bottom:719.921600pt;}
.y19d{bottom:721.505600pt;}
.y111{bottom:723.293067pt;}
.y5b{bottom:724.749600pt;}
.yf0{bottom:728.357067pt;}
.y24{bottom:728.634933pt;}
.y7{bottom:729.561600pt;}
.y9f{bottom:729.562933pt;}
.y154{bottom:730.188000pt;}
.y179{bottom:737.521600pt;}
.y19c{bottom:738.841600pt;}
.yc3{bottom:739.193200pt;}
.y5a{bottom:742.349600pt;}
.y110{bottom:742.893067pt;}
.y7e{bottom:743.995067pt;}
.yef{bottom:744.625067pt;}
.y6{bottom:745.961600pt;}
.y23{bottom:747.834933pt;}
.y153{bottom:747.920000pt;}
.y9e{bottom:748.634933pt;}
.y178{bottom:755.121600pt;}
.y19b{bottom:756.177600pt;}
.yc2{bottom:758.665200pt;}
.y59{bottom:759.949600pt;}
.y7d{bottom:760.389067pt;}
.yee{bottom:760.893067pt;}
.y5{bottom:762.361600pt;}
.y10f{bottom:762.493067pt;}
.y132{bottom:764.634933pt;}
.y152{bottom:765.652000pt;}
.y22{bottom:767.034933pt;}
.y9d{bottom:767.706933pt;}
.y177{bottom:772.721600pt;}
.y19a{bottom:773.513600pt;}
.y7c{bottom:776.783067pt;}
.yed{bottom:777.161067pt;}
.y58{bottom:777.549600pt;}
.yc1{bottom:778.137200pt;}
.y4{bottom:778.761600pt;}
.y151{bottom:783.384000pt;}
.y131{bottom:784.634933pt;}
.y21{bottom:786.234933pt;}
.y9c{bottom:786.778933pt;}
.y176{bottom:790.321600pt;}
.y199{bottom:790.849600pt;}
.y7b{bottom:793.177067pt;}
.yec{bottom:793.429067pt;}
.y57{bottom:795.149600pt;}
.yc0{bottom:797.609200pt;}
.y150{bottom:801.116000pt;}
.y130{bottom:804.634933pt;}
.y20{bottom:805.434933pt;}
.y9b{bottom:805.706933pt;}
.y175{bottom:807.921600pt;}
.y198{bottom:808.185600pt;}
.y3{bottom:809.521600pt;}
.y7a{bottom:809.571067pt;}
.yeb{bottom:809.697067pt;}
.y1f{bottom:824.634933pt;}
.y2{bottom:825.521600pt;}
.y79{bottom:825.965067pt;}
.y14f{bottom:826.408400pt;}
.h9{height:27.171875pt;}
.h7{height:31.700521pt;}
.h2{height:36.229167pt;}
.ha{height:43.022135pt;}
.h3{height:45.286458pt;}
.hb{height:47.550781pt;}
.h4{height:49.815104pt;}
.h6{height:54.343750pt;}
.h8{height:56.286250pt;}
.h5{height:76.986979pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x3{left:68.031467pt;}
.x4{left:86.943467pt;}
.xb{left:92.767467pt;}
.x7{left:105.809200pt;}
.x8{left:117.084800pt;}
.x12{left:124.726800pt;}
.x6{left:127.262533pt;}
.xa{left:133.012800pt;}
.x9{left:139.114133pt;}
.xc{left:179.535467pt;}
.x1{left:191.867733pt;}
.x5{left:216.239733pt;}
.xd{left:244.538133pt;}
.xe{left:320.130133pt;}
.xf{left:383.490133pt;}
.x10{left:447.876800pt;}
.x14{left:453.315867pt;}
.x13{left:461.283200pt;}
.x11{left:510.430133pt;}
.x2{left:515.257200pt;}
}




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