
    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_ea1378e5357cfd7c05ae94e4.woff')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_d30a38ed5577848a00d01560.woff')format("woff");}.ff2{font-family:ff2;line-height:0.933594;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_77fbc6d5fe61b33f11fb3c45.woff')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_1f88c8211f6d1bf1866ada64.woff')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_fdf122ed77962c8aacb15a3d.woff')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_6d30330b11a24b427b01c7c6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_ed4e22b2cbaa178b97704c90.woff')format("woff");}.ff7{font-family:ff7;line-height:0.933594;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_8b014ef05ce9f6ba021cccaf.woff')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_588d3b9db3a362c1d11c8e4b.woff')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_57525a5d3d1ba6f9a67d45ca.woff')format("woff");}.ffa{font-family:ffa;line-height:0.861816;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_6223d907171755904bb358fa.woff')format("woff");}.ffb{font-family:ffb;line-height:1.649414;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_919731a0bde0c656689f56a5.woff')format("woff");}.ffc{font-family:ffc;line-height:0.669434;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;}
.m5{transform:matrix(0.000000,0.248440,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.248440,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.248440,-0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.249278,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249278,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249278,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.236548,0.000000,-0.080902,0.236548,0,0);-ms-transform:matrix(0.236548,0.000000,-0.080902,0.236548,0,0);-webkit-transform:matrix(0.236548,0.000000,-0.080902,0.236548,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250715,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250747,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.251560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251560,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251570,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.251575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251575,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.252697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252697,0.000000,0.000000,0.250000,0,0);}
.v6{vertical-align:-26.640021px;}
.v3{vertical-align:-23.760019px;}
.v8{vertical-align:-22.320018px;}
.v9{vertical-align:-20.160016px;}
.v5{vertical-align:-14.400012px;}
.v7{vertical-align:-12.960010px;}
.vc{vertical-align:-8.640007px;}
.v2{vertical-align:-5.760005px;}
.va{vertical-align:-2.160002px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.880002px;}
.v10{vertical-align:14.400012px;}
.v11{vertical-align:15.840013px;}
.vf{vertical-align:17.280014px;}
.v1{vertical-align:20.880017px;}
.ve{vertical-align:30.240024px;}
.vd{vertical-align:32.400026px;}
.vb{vertical-align:35.280028px;}
.ls2{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.008640px;}
.ls11{letter-spacing:0.039360px;}
.lsd{letter-spacing:0.053280px;}
.ls18{letter-spacing:0.072000px;}
.lsf{letter-spacing:0.138240px;}
.ls21{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.206640px;}
.ls3{letter-spacing:0.259893px;}
.lse{letter-spacing:0.259920px;}
.ls5{letter-spacing:0.259936px;}
.ls14{letter-spacing:0.334800px;}
.ls0{letter-spacing:0.360000px;}
.ls22{letter-spacing:0.368393px;}
.ls1d{letter-spacing:0.399600px;}
.ls12{letter-spacing:0.720001px;}
.ls1e{letter-spacing:2.124722px;}
.ls15{letter-spacing:2.784962px;}
.ls13{letter-spacing:2.898722px;}
.ls1f{letter-spacing:3.060002px;}
.ls1a{letter-spacing:3.504963px;}
.ls1c{letter-spacing:4.062243px;}
.ls29{letter-spacing:11.789289px;}
.ls2a{letter-spacing:15.389292px;}
.ls19{letter-spacing:19.344975px;}
.ls16{letter-spacing:19.800016px;}
.ls17{letter-spacing:20.159296px;}
.ls23{letter-spacing:33.037586px;}
.lsb{letter-spacing:36.666749px;}
.ls7{letter-spacing:38.106750px;}
.ls26{letter-spacing:40.986753px;}
.ls27{letter-spacing:43.866755px;}
.ls25{letter-spacing:57.546766px;}
.ls1b{letter-spacing:72.462298px;}
.ls24{letter-spacing:74.106779px;}
.ls20{letter-spacing:81.529985px;}
.ls28{letter-spacing:88.506791px;}
.ls1{letter-spacing:89.226703px;}
.ls4{letter-spacing:89.226791px;}
.ls6{letter-spacing:111.546809px;}
.lsa{letter-spacing:129.546824px;}
.ls9{letter-spacing:146.106837px;}
.ls8{letter-spacing:162.666850px;}
.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;}
}
.ws0{word-spacing:-36.000000px;}
.ws16{word-spacing:-15.829352px;}
.ws6{word-spacing:-15.199948px;}
.ws5{word-spacing:-15.199905px;}
.ws3{word-spacing:-14.940015px;}
.ws7{word-spacing:-14.940012px;}
.ws1{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.147211px;}
.ws17{word-spacing:-12.060010px;}
.ws2{word-spacing:-12.059985px;}
.ws8{word-spacing:-9.816580px;}
.wsa{word-spacing:-9.720008px;}
.wsd{word-spacing:-9.187207px;}
.ws9{word-spacing:-7.460393px;}
.ws12{word-spacing:-7.124050px;}
.ws14{word-spacing:-7.070027px;}
.ws11{word-spacing:-6.819601px;}
.ws10{word-spacing:-6.152285px;}
.ws4{word-spacing:0.000000px;}
.wsc{word-spacing:2.687887px;}
.ws13{word-spacing:103.496625px;}
.wse{word-spacing:122.837318px;}
.ws15{word-spacing:348.897784px;}
.wsf{word-spacing:1139.417770px;}
._2c{margin-left:-7.526924px;}
._22{margin-left:-6.519601px;}
._26{margin-left:-5.177127px;}
._6{margin-left:-4.041603px;}
._7{margin-left:-2.644799px;}
._0{margin-left:-1.641000px;}
._1{width:1.011600px;}
._1e{width:2.098799px;}
._2{width:3.135994px;}
._3{width:4.140001px;}
._10{width:5.927403px;}
._14{width:7.013401px;}
._a{width:8.920203px;}
._15{width:10.310405px;}
._11{width:11.713804px;}
._1c{width:12.718866px;}
._9{width:13.801785px;}
._8{width:16.013405px;}
._23{width:17.190007px;}
._12{width:18.493207px;}
._1b{width:19.677009px;}
._13{width:20.813408px;}
._17{width:22.155008px;}
._18{width:23.835007px;}
._f{width:24.954008px;}
._16{width:25.999810px;}
._19{width:27.727810px;}
._4{width:29.101810px;}
._5{width:30.458410px;}
._27{width:31.621846px;}
._1d{width:33.346812px;}
._2f{width:34.921266px;}
._35{width:35.957714px;}
._21{width:37.060213px;}
._25{width:38.532613px;}
._24{width:39.833414px;}
._33{width:41.580064px;}
._2d{width:42.807017px;}
._2b{width:43.953182px;}
._2a{width:45.785645px;}
._29{width:47.139936px;}
._b{width:49.039816px;}
._37{width:50.374774px;}
._28{width:52.209141px;}
._2e{width:53.379843px;}
._36{width:55.441567px;}
._c{width:56.508619px;}
._20{width:57.886819px;}
._1f{width:59.070621px;}
._31{width:97.387521px;}
._1a{width:101.386834px;}
._34{width:121.933277px;}
._d{width:127.762244px;}
._e{width:129.153642px;}
._32{width:138.466199px;}
._30{width:171.495732px;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(27,27,27);}
.fc0{color:rgb(0,0,0);}
.fs11{font-size:27.222502px;}
.fsa{font-size:28.847543px;}
.fs14{font-size:30.088104px;}
.fs12{font-size:30.175224px;}
.fs15{font-size:31.283305px;}
.fs13{font-size:31.522345px;}
.fs8{font-size:33.010586px;}
.fs10{font-size:36.000029px;}
.fs7{font-size:36.486749px;}
.fsd{font-size:38.880031px;}
.fse{font-size:41.760033px;}
.fs5{font-size:42.000000px;}
.fs9{font-size:43.436195px;}
.fs4{font-size:48.000000px;}
.fs2{font-size:48.239940px;}
.fs16{font-size:48.240039px;}
.fs3{font-size:54.000000px;}
.fsb{font-size:54.000043px;}
.fs6{font-size:59.760048px;}
.fs0{font-size:59.760060px;}
.fsc{font-size:63.158457px;}
.fsf{font-size:72.000058px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y67{bottom:32.862000px;}
.y2{bottom:57.900945px;}
.y69{bottom:58.261547px;}
.yd2{bottom:114.060991px;}
.y14f{bottom:117.481594px;}
.y65{bottom:119.100945px;}
.y41{bottom:123.420945px;}
.ya0{bottom:124.141599px;}
.y104{bottom:127.741602px;}
.yd1{bottom:131.341005px;}
.y14e{bottom:134.761608px;}
.y64{bottom:137.820945px;}
.y40{bottom:142.140945px;}
.y9f{bottom:142.861614px;}
.y103{bottom:145.021616px;}
.yd0{bottom:148.621019px;}
.ycf{bottom:148.621619px;}
.y14d{bottom:152.041622px;}
.y63{bottom:156.360945px;}
.y3f{bottom:160.680945px;}
.y9e{bottom:161.401629px;}
.y102{bottom:162.121630px;}
.yce{bottom:166.081633px;}
.y14c{bottom:169.141635px;}
.y62{bottom:174.900945px;}
.y3e{bottom:179.220945px;}
.y101{bottom:179.401644px;}
.y9d{bottom:179.941644px;}
.ycd{bottom:183.361647px;}
.y14b{bottom:186.421649px;}
.y66{bottom:188.274015px;}
.y61{bottom:193.620945px;}
.y100{bottom:196.681657px;}
.y3d{bottom:197.940945px;}
.y9c{bottom:198.661659px;}
.ycc{bottom:200.641661px;}
.y14a{bottom:203.701663px;}
.y60{bottom:212.160945px;}
.yff{bottom:213.961671px;}
.y3c{bottom:216.480945px;}
.y9b{bottom:217.201674px;}
.ycb{bottom:217.921674px;}
.y149{bottom:220.981677px;}
.y5f{bottom:230.880945px;}
.yfe{bottom:231.241685px;}
.y3b{bottom:235.200945px;}
.yca{bottom:235.201688px;}
.y9a{bottom:235.921689px;}
.y148{bottom:238.261691px;}
.yfd{bottom:248.521699px;}
.y5e{bottom:249.420945px;}
.y3a{bottom:253.740945px;}
.y99{bottom:254.461704px;}
.y147{bottom:255.541704px;}
.yc9{bottom:258.241707px;}
.yfc{bottom:265.621712px;}
.y5d{bottom:267.960945px;}
.y39{bottom:272.460945px;}
.y146{bottom:272.641718px;}
.y98{bottom:273.181719px;}
.yfb{bottom:282.901726px;}
.y5c{bottom:286.680945px;}
.y145{bottom:289.921732px;}
.yc8{bottom:290.101732px;}
.y38{bottom:291.000945px;}
.y97{bottom:291.721733px;}
.yfa{bottom:300.181740px;}
.y19a{bottom:304.321743px;}
.y5b{bottom:305.220945px;}
.y144{bottom:307.201746px;}
.y37{bottom:314.040945px;}
.y96{bottom:314.761752px;}
.yc7{bottom:317.101754px;}
.yf9{bottom:317.461754px;}
.y5a{bottom:323.940945px;}
.y143{bottom:324.481760px;}
.y173{bottom:326.101761px;}
.yf8{bottom:334.741768px;}
.y36{bottom:340.680945px;}
.y95{bottom:341.041773px;}
.y142{bottom:341.761773px;}
.y59{bottom:342.480945px;}
.y172{bottom:343.201775px;}
.y199{bottom:349.141779px;}
.yf7{bottom:352.021782px;}
.y35{bottom:357.600945px;}
.y94{bottom:358.321787px;}
.y141{bottom:359.041787px;}
.y171{bottom:360.481788px;}
.y58{bottom:361.200945px;}
.y198{bottom:366.781793px;}
.yf6{bottom:369.121795px;}
.y140{bottom:376.141801px;}
.y170{bottom:377.761802px;}
.y34{bottom:379.380945px;}
.yc1{bottom:379.381804px;}
.y57{bottom:379.740945px;}
.yc4{bottom:384.061807px;}
.yc6{bottom:384.241807px;}
.y197{bottom:384.601808px;}
.y93{bottom:386.401809px;}
.y13f{bottom:393.421815px;}
.y16f{bottom:395.041816px;}
.y33{bottom:397.920945px;}
.y56{bottom:398.280945px;}
.y196{bottom:402.421822px;}
.y92{bottom:403.681823px;}
.yc5{bottom:405.301824px;}
.y16e{bottom:412.321830px;}
.y32{bottom:416.640945px;}
.y13e{bottom:416.641833px;}
.y55{bottom:417.000945px;}
.y195{bottom:420.061836px;}
.y91{bottom:420.781837px;}
.yf5{bottom:420.961837px;}
.yc2{bottom:423.121838px;}
.yc0{bottom:427.801842px;}
.y16d{bottom:429.601844px;}
.y31{bottom:435.180945px;}
.y54{bottom:435.540945px;}
.y194{bottom:437.881850px;}
.y90{bottom:438.061850px;}
.yf4{bottom:438.241851px;}
.yc3{bottom:446.701857px;}
.y30{bottom:453.900945px;}
.y53{bottom:454.260945px;}
.y193{bottom:455.161864px;}
.y8f{bottom:455.341864px;}
.y13d{bottom:455.521864px;}
.y16c{bottom:463.981871px;}
.y2f{bottom:472.440945px;}
.y192{bottom:472.441878px;}
.y8e{bottom:472.621878px;}
.y52{bottom:472.800945px;}
.y13c{bottom:472.801878px;}
.ybf{bottom:479.281883px;}
.y16b{bottom:481.261885px;}
.y191{bottom:489.541892px;}
.y8d{bottom:489.901892px;}
.y13b{bottom:490.081892px;}
.y2e{bottom:490.980945px;}
.y51{bottom:491.340945px;}
.ybe{bottom:496.381897px;}
.y16a{bottom:498.541899px;}
.y190{bottom:506.821905px;}
.y8c{bottom:507.181906px;}
.y13a{bottom:507.361906px;}
.y2d{bottom:509.700945px;}
.y50{bottom:510.060945px;}
.y169{bottom:515.821913px;}
.ybd{bottom:518.161915px;}
.y18f{bottom:524.101919px;}
.y8b{bottom:524.281919px;}
.yf3{bottom:524.461920px;}
.y139{bottom:524.641920px;}
.y2c{bottom:528.240945px;}
.y4f{bottom:528.600945px;}
.y168{bottom:532.921926px;}
.ybc{bottom:535.441928px;}
.y18e{bottom:541.381933px;}
.y8a{bottom:541.561933px;}
.yf2{bottom:541.741933px;}
.y2b{bottom:546.960945px;}
.y4e{bottom:547.320945px;}
.y167{bottom:550.201940px;}
.ybb{bottom:557.221946px;}
.y18d{bottom:558.661947px;}
.y89{bottom:558.841947px;}
.y138{bottom:559.021947px;}
.y2a{bottom:565.500945px;}
.y4d{bottom:565.860945px;}
.y166{bottom:567.481954px;}
.y18c{bottom:575.941961px;}
.y88{bottom:576.121961px;}
.y137{bottom:576.301961px;}
.yba{bottom:579.001963px;}
.y29{bottom:584.040945px;}
.y4c{bottom:584.400945px;}
.y165{bottom:584.761968px;}
.y18b{bottom:593.041974px;}
.y87{bottom:593.401975px;}
.y136{bottom:593.581975px;}
.yb9{bottom:596.101977px;}
.y164{bottom:602.041982px;}
.y28{bottom:602.760945px;}
.y4b{bottom:603.120945px;}
.y18a{bottom:610.321988px;}
.y86{bottom:610.681989px;}
.y135{bottom:610.861989px;}
.yb8{bottom:613.381991px;}
.y163{bottom:619.321995px;}
.y27{bottom:621.300945px;}
.y4a{bottom:621.660945px;}
.y189{bottom:627.602002px;}
.y85{bottom:627.782002px;}
.yf1{bottom:627.962002px;}
.yb7{bottom:630.662005px;}
.y162{bottom:636.422009px;}
.y26{bottom:640.020945px;}
.y49{bottom:640.380945px;}
.y188{bottom:644.882016px;}
.y84{bottom:645.062016px;}
.yf0{bottom:645.242016px;}
.yb6{bottom:647.942018px;}
.y161{bottom:653.702023px;}
.y25{bottom:658.560945px;}
.y48{bottom:658.920945px;}
.y187{bottom:662.162030px;}
.y83{bottom:662.342030px;}
.y134{bottom:662.522030px;}
.yb5{bottom:665.222032px;}
.y160{bottom:670.982037px;}
.y24{bottom:677.280945px;}
.y47{bottom:677.640945px;}
.y186{bottom:679.262043px;}
.yef{bottom:679.622044px;}
.y133{bottom:679.802044px;}
.yb4{bottom:682.502046px;}
.y82{bottom:685.382048px;}
.y15f{bottom:688.262051px;}
.y23{bottom:695.820945px;}
.y46{bottom:696.180945px;}
.y185{bottom:696.542057px;}
.yee{bottom:696.902058px;}
.yb3{bottom:699.602060px;}
.y15e{bottom:705.542064px;}
.y81{bottom:708.602067px;}
.y132{bottom:711.662069px;}
.y184{bottom:713.822071px;}
.yed{bottom:714.182071px;}
.y22{bottom:714.360945px;}
.y45{bottom:714.720945px;}
.yb2{bottom:716.882074px;}
.y15d{bottom:722.822078px;}
.y80{bottom:727.142082px;}
.yec{bottom:731.462085px;}
.y21{bottom:733.080945px;}
.y44{bottom:733.440945px;}
.yb1{bottom:734.162087px;}
.y183{bottom:735.602088px;}
.y15c{bottom:739.922092px;}
.y131{bottom:741.542093px;}
.y7f{bottom:745.862097px;}
.yeb{bottom:748.562099px;}
.yb0{bottom:751.442101px;}
.y20{bottom:751.620945px;}
.y43{bottom:751.980945px;}
.y15b{bottom:757.202106px;}
.y182{bottom:757.382106px;}
.y7e{bottom:764.402112px;}
.yea{bottom:765.842113px;}
.yaf{bottom:768.722115px;}
.y1f{bottom:770.340945px;}
.y42{bottom:770.700945px;}
.y15a{bottom:774.482120px;}
.y181{bottom:774.662120px;}
.y122{bottom:778.262123px;}
.ye6{bottom:781.862125px;}
.y7d{bottom:783.122126px;}
.y127{bottom:783.302127px;}
.y129{bottom:784.382128px;}
.ye9{bottom:785.822129px;}
.yae{bottom:786.002129px;}
.y12e{bottom:787.622130px;}
.ye5{bottom:789.422132px;}
.y159{bottom:791.762133px;}
.y128{bottom:793.742135px;}
.ye7{bottom:795.182136px;}
.ye8{bottom:795.362136px;}
.y12d{bottom:797.162138px;}
.y124{bottom:797.882138px;}
.y7c{bottom:801.662141px;}
.yad{bottom:803.102142px;}
.y12b{bottom:805.082144px;}
.y12c{bottom:806.342145px;}
.y12f{bottom:807.062146px;}
.y123{bottom:807.602146px;}
.y158{bottom:809.042147px;}
.ye4{bottom:810.662149px;}
.y126{bottom:811.022149px;}
.y7b{bottom:820.202156px;}
.yac{bottom:820.382156px;}
.y13{bottom:822.540945px;}
.y1e{bottom:822.720945px;}
.y130{bottom:823.982159px;}
.y1b{bottom:824.160945px;}
.y12a{bottom:824.342159px;}
.y157{bottom:826.142161px;}
.y180{bottom:826.322161px;}
.ye3{bottom:827.762162px;}
.y125{bottom:835.682169px;}
.yab{bottom:837.662170px;}
.y12{bottom:838.020945px;}
.y7a{bottom:838.922171px;}
.y1a{bottom:839.640945px;}
.y156{bottom:843.422175px;}
.y17f{bottom:843.602175px;}
.ye1{bottom:849.542180px;}
.y11{bottom:853.500945px;}
.yaa{bottom:854.942184px;}
.y19{bottom:855.300945px;}
.ye2{bottom:855.302184px;}
.y79{bottom:857.462186px;}
.y155{bottom:860.702189px;}
.y17e{bottom:865.382192px;}
.y10{bottom:868.980945px;}
.y18{bottom:870.780945px;}
.ye0{bottom:872.042198px;}
.ya9{bottom:872.222198px;}
.y121{bottom:875.822201px;}
.y78{bottom:876.182201px;}
.y154{bottom:877.982202px;}
.yf{bottom:884.460945px;}
.y17{bottom:886.260945px;}
.y17d{bottom:888.422211px;}
.ya8{bottom:889.322211px;}
.y77{bottom:894.722216px;}
.y153{bottom:895.262216px;}
.ye{bottom:900.120945px;}
.y16{bottom:901.740945px;}
.y120{bottom:903.002222px;}
.ydf{bottom:906.602225px;}
.y17c{bottom:907.142226px;}
.ya7{bottom:911.102229px;}
.y152{bottom:912.542230px;}
.y76{bottom:913.262231px;}
.y1d{bottom:915.600945px;}
.yd{bottom:915.780945px;}
.y15{bottom:917.400945px;}
.y109{bottom:923.342239px;}
.yde{bottom:923.702239px;}
.y17b{bottom:925.682241px;}
.ya6{bottom:928.382243px;}
.y151{bottom:929.642244px;}
.y75{bottom:931.982246px;}
.y105{bottom:940.082252px;}
.y119{bottom:942.242254px;}
.ydd{bottom:943.502255px;}
.y17a{bottom:944.222255px;}
.ya5{bottom:945.662257px;}
.y150{bottom:946.922258px;}
.y106{bottom:948.902259px;}
.y74{bottom:950.522260px;}
.yc{bottom:952.140945px;}
.y1c{bottom:952.320945px;}
.y107{bottom:952.682262px;}
.y108{bottom:952.862262px;}
.y14{bottom:953.580945px;}
.y10d{bottom:954.482264px;}
.y10b{bottom:955.202264px;}
.ya4{bottom:962.942270px;}
.ydc{bottom:964.202271px;}
.yb{bottom:967.620945px;}
.y73{bottom:969.242275px;}
.y10c{bottom:972.662278px;}
.y10a{bottom:973.382279px;}
.ya3{bottom:980.222284px;}
.ydb{bottom:981.482285px;}
.ya{bottom:983.100945px;}
.y72{bottom:987.782290px;}
.y10e{bottom:994.262295px;}
.ya2{bottom:997.322298px;}
.y9{bottom:998.760945px;}
.yda{bottom:998.762299px;}
.y10f{bottom:999.842300px;}
.y179{bottom:1000.202300px;}
.y71{bottom:1006.322305px;}
.y8{bottom:1014.240945px;}
.yd9{bottom:1016.042313px;}
.y178{bottom:1018.742315px;}
.ya1{bottom:1020.542316px;}
.y70{bottom:1025.042320px;}
.y111{bottom:1025.762321px;}
.y7{bottom:1029.720945px;}
.yd8{bottom:1033.142327px;}
.y110{bottom:1033.862327px;}
.y177{bottom:1037.282330px;}
.y6f{bottom:1043.582335px;}
.y6{bottom:1045.200945px;}
.yd7{bottom:1050.422340px;}
.y176{bottom:1056.002345px;}
.y117{bottom:1061.942350px;}
.y6e{bottom:1062.302350px;}
.y11d{bottom:1064.642352px;}
.y116{bottom:1066.082353px;}
.yd6{bottom:1067.702354px;}
.y118{bottom:1070.042356px;}
.y11c{bottom:1072.742358px;}
.y175{bottom:1074.542360px;}
.y5{bottom:1074.720945px;}
.y6d{bottom:1080.842365px;}
.y115{bottom:1081.382365px;}
.yd5{bottom:1084.982368px;}
.y11b{bottom:1086.602369px;}
.y174{bottom:1097.762378px;}
.y11f{bottom:1097.942378px;}
.y6c{bottom:1099.562380px;}
.yd4{bottom:1102.262382px;}
.y11e{bottom:1106.042385px;}
.y11a{bottom:1108.562387px;}
.y4{bottom:1116.120945px;}
.y6b{bottom:1118.102394px;}
.y114{bottom:1119.182395px;}
.yd3{bottom:1119.542396px;}
.y113{bottom:1127.282402px;}
.y112{bottom:1136.462409px;}
.y6a{bottom:1136.642409px;}
.y3{bottom:1157.520945px;}
.y68{bottom:1194.782456px;}
.y1{bottom:1194.782460px;}
.h19{height:18.609132px;}
.h1d{height:19.539589px;}
.h1c{height:20.568040px;}
.he{height:20.706000px;}
.h1f{height:21.385072px;}
.h1a{height:21.658974px;}
.h20{height:22.454325px;}
.hf{height:22.565831px;}
.h1b{height:22.625902px;}
.hc{height:23.694122px;}
.hb{height:24.942114px;}
.hd{height:31.177347px;}
.h7{height:34.453125px;}
.h1e{height:35.379601px;}
.h6{height:36.597656px;}
.h4{height:37.494141px;}
.h3{height:38.759766px;}
.h10{height:38.759797px;}
.h5{height:40.501447px;}
.ha{height:41.493549px;}
.h9{height:42.894175px;}
.h1{height:42.894184px;}
.h8{height:43.804688px;}
.h15{height:46.388709px;}
.h12{height:47.875820px;}
.h18{height:57.294186px;}
.h14{height:66.383842px;}
.h11{height:70.158930px;}
.h16{height:81.668737px;}
.h13{height:82.860535px;}
.h17{height:98.783868px;}
.h2{height:103.359375px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.829955px;}
.x0{left:0.000000px;}
.x25{left:26.400015px;}
.x26{left:41.718750px;}
.x8{left:80.999655px;}
.x6{left:94.679655px;}
.xa{left:96.293055px;}
.xc{left:104.939655px;}
.x20{left:107.272155px;}
.x22{left:117.898920px;}
.x2{left:123.120105px;}
.xb{left:125.099655px;}
.x3{left:129.600105px;}
.x2b{left:134.092757px;}
.x9{left:135.719655px;}
.x1{left:138.960105px;}
.x36{left:141.480173px;}
.x5{left:149.219655px;}
.x29{left:151.920122px;}
.x35{left:156.960186px;}
.x7{left:163.079655px;}
.x27{left:179.460144px;}
.x28{left:190.260152px;}
.x21{left:201.598920px;}
.x2a{left:213.480171px;}
.x37{left:234.720248px;}
.x39{left:300.420240px;}
.x38{left:332.820266px;}
.x10{left:345.599655px;}
.x12{left:346.859655px;}
.xe{left:359.279655px;}
.x14{left:370.439655px;}
.x4{left:374.202105px;}
.x11{left:400.319655px;}
.xd{left:405.539655px;}
.x13{left:424.259655px;}
.xf{left:427.679655px;}
.x23{left:473.031420px;}
.x24{left:483.658710px;}
.x5c{left:491.040393px;}
.x42{left:493.740395px;}
.x3a{left:497.340398px;}
.x2c{left:499.852995px;}
.x31{left:504.180403px;}
.x32{left:507.600406px;}
.x5f{left:512.460410px;}
.x45{left:518.760415px;}
.x56{left:521.460417px;}
.x51{left:533.520427px;}
.x2d{left:537.660315px;}
.x3c{left:540.540432px;}
.x60{left:543.420695px;}
.x4e{left:547.560228px;}
.x52{left:553.140443px;}
.x61{left:555.480705px;}
.x53{left:558.360453px;}
.x48{left:572.220458px;}
.x5b{left:576.720461px;}
.x62{left:581.760726px;}
.x30{left:586.800469px;}
.x3b{left:589.500472px;}
.x58{left:592.920474px;}
.x47{left:595.080464px;}
.x2e{left:596.160477px;}
.x3e{left:598.140479px;}
.x46{left:603.180483px;}
.x49{left:607.680486px;}
.x1e{left:610.199655px;}
.x4a{left:615.600492px;}
.x16{left:616.853055px;}
.x1c{left:623.879655px;}
.x54{left:625.680501px;}
.x55{left:626.760502px;}
.x33{left:628.560503px;}
.x34{left:637.920510px;}
.x57{left:647.460559px;}
.x19{left:650.699655px;}
.x1f{left:651.959655px;}
.x4b{left:657.000518px;}
.x18{left:664.919655px;}
.x3f{left:667.080534px;}
.x4f{left:670.680537px;}
.x50{left:674.100539px;}
.x41{left:675.720541px;}
.x15{left:679.499655px;}
.x1b{left:681.659655px;}
.x1d{left:692.279655px;}
.x17{left:694.439655px;}
.x4d{left:698.580553px;}
.x2f{left:700.380560px;}
.x4c{left:701.460561px;}
.x5e{left:705.420579px;}
.x40{left:707.040566px;}
.x5d{left:709.200567px;}
.x1a{left:710.999655px;}
.x5a{left:751.320601px;}
.x59{left:753.120650px;}
.x3d{left:756.720605px;}
.x44{left:763.920611px;}
.x43{left:793.082825px;}
@media print{
.v6{vertical-align:-23.680019pt;}
.v3{vertical-align:-21.120017pt;}
.v8{vertical-align:-19.840016pt;}
.v9{vertical-align:-17.920014pt;}
.v5{vertical-align:-12.800010pt;}
.v7{vertical-align:-11.520009pt;}
.vc{vertical-align:-7.680006pt;}
.v2{vertical-align:-5.120004pt;}
.va{vertical-align:-1.920002pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.560002pt;}
.v10{vertical-align:12.800010pt;}
.v11{vertical-align:14.080011pt;}
.vf{vertical-align:15.360012pt;}
.v1{vertical-align:18.560015pt;}
.ve{vertical-align:26.880022pt;}
.vd{vertical-align:28.800023pt;}
.vb{vertical-align:31.360025pt;}
.ls2{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.007680pt;}
.ls11{letter-spacing:0.034987pt;}
.lsd{letter-spacing:0.047360pt;}
.ls18{letter-spacing:0.064000pt;}
.lsf{letter-spacing:0.122880pt;}
.ls21{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.183680pt;}
.ls3{letter-spacing:0.231016pt;}
.lse{letter-spacing:0.231040pt;}
.ls5{letter-spacing:0.231055pt;}
.ls14{letter-spacing:0.297600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls22{letter-spacing:0.327461pt;}
.ls1d{letter-spacing:0.355200pt;}
.ls12{letter-spacing:0.640001pt;}
.ls1e{letter-spacing:1.888642pt;}
.ls15{letter-spacing:2.475522pt;}
.ls13{letter-spacing:2.576642pt;}
.ls1f{letter-spacing:2.720002pt;}
.ls1a{letter-spacing:3.115522pt;}
.ls1c{letter-spacing:3.610883pt;}
.ls29{letter-spacing:10.479368pt;}
.ls2a{letter-spacing:13.679371pt;}
.ls19{letter-spacing:17.195534pt;}
.ls16{letter-spacing:17.600014pt;}
.ls17{letter-spacing:17.919374pt;}
.ls23{letter-spacing:29.366743pt;}
.lsb{letter-spacing:32.592666pt;}
.ls7{letter-spacing:33.872667pt;}
.ls26{letter-spacing:36.432669pt;}
.ls27{letter-spacing:38.992671pt;}
.ls25{letter-spacing:51.152681pt;}
.ls1b{letter-spacing:64.410932pt;}
.ls24{letter-spacing:65.872693pt;}
.ls20{letter-spacing:72.471098pt;}
.ls28{letter-spacing:78.672703pt;}
.ls1{letter-spacing:79.312625pt;}
.ls4{letter-spacing:79.312703pt;}
.ls6{letter-spacing:99.152719pt;}
.lsa{letter-spacing:115.152732pt;}
.ls9{letter-spacing:129.872744pt;}
.ls8{letter-spacing:144.592756pt;}
.ws0{word-spacing:-32.000000pt;}
.ws16{word-spacing:-14.070535pt;}
.ws6{word-spacing:-13.511065pt;}
.ws5{word-spacing:-13.511027pt;}
.ws3{word-spacing:-13.280013pt;}
.ws7{word-spacing:-13.280011pt;}
.ws1{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.686409pt;}
.ws17{word-spacing:-10.720009pt;}
.ws2{word-spacing:-10.719987pt;}
.ws8{word-spacing:-8.725849pt;}
.wsa{word-spacing:-8.640007pt;}
.wsd{word-spacing:-8.166407pt;}
.ws9{word-spacing:-6.631460pt;}
.ws12{word-spacing:-6.332489pt;}
.ws14{word-spacing:-6.284468pt;}
.ws11{word-spacing:-6.061867pt;}
.ws10{word-spacing:-5.468698pt;}
.ws4{word-spacing:0.000000pt;}
.wsc{word-spacing:2.389233pt;}
.ws13{word-spacing:91.997000pt;}
.wse{word-spacing:109.188727pt;}
.ws15{word-spacing:310.131363pt;}
.wsf{word-spacing:1012.815795pt;}
._2c{margin-left:-6.690599pt;}
._22{margin-left:-5.795201pt;}
._26{margin-left:-4.601890pt;}
._6{margin-left:-3.592536pt;}
._7{margin-left:-2.350933pt;}
._0{margin-left:-1.458667pt;}
._1{width:0.899200pt;}
._1e{width:1.865599pt;}
._2{width:2.787550pt;}
._3{width:3.680001pt;}
._10{width:5.268802pt;}
._14{width:6.234134pt;}
._a{width:7.929069pt;}
._15{width:9.164805pt;}
._11{width:10.412270pt;}
._1c{width:11.305659pt;}
._9{width:12.268254pt;}
._8{width:14.234138pt;}
._23{width:15.280006pt;}
._12{width:16.438406pt;}
._1b{width:17.490675pt;}
._13{width:18.500807pt;}
._17{width:19.693341pt;}
._18{width:21.186672pt;}
._f{width:22.181341pt;}
._16{width:23.110942pt;}
._19{width:24.646942pt;}
._4{width:25.868276pt;}
._5{width:27.074142pt;}
._27{width:28.108308pt;}
._1d{width:29.641611pt;}
._2f{width:31.041125pt;}
._35{width:31.962412pt;}
._21{width:32.942411pt;}
._25{width:34.251212pt;}
._24{width:35.407479pt;}
._33{width:36.960057pt;}
._2d{width:38.050682pt;}
._2b{width:39.069495pt;}
._2a{width:40.698351pt;}
._29{width:41.902165pt;}
._b{width:43.590948pt;}
._37{width:44.777577pt;}
._28{width:46.408125pt;}
._2e{width:47.448749pt;}
._36{width:49.281393pt;}
._c{width:50.229883pt;}
._20{width:51.454951pt;}
._1f{width:52.507218pt;}
._31{width:86.566685pt;}
._1a{width:90.121630pt;}
._34{width:108.385135pt;}
._d{width:113.566439pt;}
._e{width:114.803238pt;}
._32{width:123.081066pt;}
._30{width:152.440650pt;}
.fs11{font-size:24.197779pt;}
.fsa{font-size:25.642261pt;}
.fs14{font-size:26.744981pt;}
.fs12{font-size:26.822421pt;}
.fs15{font-size:27.807382pt;}
.fs13{font-size:28.019862pt;}
.fs8{font-size:29.342743pt;}
.fs10{font-size:32.000026pt;}
.fs7{font-size:32.432666pt;}
.fsd{font-size:34.560028pt;}
.fse{font-size:37.120030pt;}
.fs5{font-size:37.333333pt;}
.fs9{font-size:38.609951pt;}
.fs4{font-size:42.666667pt;}
.fs2{font-size:42.879947pt;}
.fs16{font-size:42.880034pt;}
.fs3{font-size:48.000000pt;}
.fsb{font-size:48.000038pt;}
.fs6{font-size:53.120042pt;}
.fs0{font-size:53.120053pt;}
.fsc{font-size:56.140850pt;}
.fsf{font-size:64.000051pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y67{bottom:29.210667pt;}
.y2{bottom:51.467507pt;}
.y69{bottom:51.788041pt;}
.yd2{bottom:101.387548pt;}
.y14f{bottom:104.428084pt;}
.y65{bottom:105.867507pt;}
.y41{bottom:109.707507pt;}
.ya0{bottom:110.348088pt;}
.y104{bottom:113.548091pt;}
.yd1{bottom:116.747560pt;}
.y14e{bottom:119.788096pt;}
.y64{bottom:122.507507pt;}
.y40{bottom:126.347507pt;}
.y9f{bottom:126.988102pt;}
.y103{bottom:128.908103pt;}
.yd0{bottom:132.107572pt;}
.ycf{bottom:132.108106pt;}
.y14d{bottom:135.148108pt;}
.y63{bottom:138.987507pt;}
.y3f{bottom:142.827507pt;}
.y9e{bottom:143.468115pt;}
.y102{bottom:144.108115pt;}
.yce{bottom:147.628118pt;}
.y14c{bottom:150.348120pt;}
.y62{bottom:155.467507pt;}
.y3e{bottom:159.307507pt;}
.y101{bottom:159.468128pt;}
.y9d{bottom:159.948128pt;}
.ycd{bottom:162.988130pt;}
.y14b{bottom:165.708133pt;}
.y66{bottom:167.354680pt;}
.y61{bottom:172.107507pt;}
.y100{bottom:174.828140pt;}
.y3d{bottom:175.947507pt;}
.y9c{bottom:176.588141pt;}
.ycc{bottom:178.348143pt;}
.y14a{bottom:181.068145pt;}
.y60{bottom:188.587507pt;}
.yff{bottom:190.188152pt;}
.y3c{bottom:192.427507pt;}
.y9b{bottom:193.068154pt;}
.ycb{bottom:193.708155pt;}
.y149{bottom:196.428157pt;}
.y5f{bottom:205.227507pt;}
.yfe{bottom:205.548164pt;}
.y3b{bottom:209.067507pt;}
.yca{bottom:209.068167pt;}
.y9a{bottom:209.708168pt;}
.y148{bottom:211.788169pt;}
.yfd{bottom:220.908177pt;}
.y5e{bottom:221.707507pt;}
.y3a{bottom:225.547507pt;}
.y99{bottom:226.188181pt;}
.y147{bottom:227.148182pt;}
.yc9{bottom:229.548184pt;}
.yfc{bottom:236.108189pt;}
.y5d{bottom:238.187507pt;}
.y39{bottom:242.187507pt;}
.y146{bottom:242.348194pt;}
.y98{bottom:242.828194pt;}
.yfb{bottom:251.468201pt;}
.y5c{bottom:254.827507pt;}
.y145{bottom:257.708206pt;}
.yc8{bottom:257.868206pt;}
.y38{bottom:258.667507pt;}
.y97{bottom:259.308207pt;}
.yfa{bottom:266.828213pt;}
.y19a{bottom:270.508216pt;}
.y5b{bottom:271.307507pt;}
.y144{bottom:273.068218pt;}
.y37{bottom:279.147507pt;}
.y96{bottom:279.788224pt;}
.yc7{bottom:281.868225pt;}
.yf9{bottom:282.188226pt;}
.y5a{bottom:287.947507pt;}
.y143{bottom:288.428231pt;}
.y173{bottom:289.868232pt;}
.yf8{bottom:297.548238pt;}
.y36{bottom:302.827507pt;}
.y95{bottom:303.148243pt;}
.y142{bottom:303.788243pt;}
.y59{bottom:304.427507pt;}
.y172{bottom:305.068244pt;}
.y199{bottom:310.348248pt;}
.yf7{bottom:312.908250pt;}
.y35{bottom:317.867507pt;}
.y94{bottom:318.508255pt;}
.y141{bottom:319.148255pt;}
.y171{bottom:320.428256pt;}
.y58{bottom:321.067507pt;}
.y198{bottom:326.028261pt;}
.yf6{bottom:328.108262pt;}
.y140{bottom:334.348267pt;}
.y170{bottom:335.788269pt;}
.y34{bottom:337.227507pt;}
.yc1{bottom:337.228270pt;}
.y57{bottom:337.547507pt;}
.yc4{bottom:341.388273pt;}
.yc6{bottom:341.548273pt;}
.y197{bottom:341.868273pt;}
.y93{bottom:343.468275pt;}
.y13f{bottom:349.708280pt;}
.y16f{bottom:351.148281pt;}
.y33{bottom:353.707507pt;}
.y56{bottom:354.027507pt;}
.y196{bottom:357.708286pt;}
.y92{bottom:358.828287pt;}
.yc5{bottom:360.268288pt;}
.y16e{bottom:366.508293pt;}
.y32{bottom:370.347507pt;}
.y13e{bottom:370.348296pt;}
.y55{bottom:370.667507pt;}
.y195{bottom:373.388299pt;}
.y91{bottom:374.028299pt;}
.yf5{bottom:374.188299pt;}
.yc2{bottom:376.108301pt;}
.yc0{bottom:380.268304pt;}
.y16d{bottom:381.868305pt;}
.y31{bottom:386.827507pt;}
.y54{bottom:387.147507pt;}
.y194{bottom:389.228311pt;}
.y90{bottom:389.388312pt;}
.yf4{bottom:389.548312pt;}
.yc3{bottom:397.068318pt;}
.y30{bottom:403.467507pt;}
.y53{bottom:403.787507pt;}
.y193{bottom:404.588324pt;}
.y8f{bottom:404.748324pt;}
.y13d{bottom:404.908324pt;}
.y16c{bottom:412.428330pt;}
.y2f{bottom:419.947507pt;}
.y192{bottom:419.948336pt;}
.y8e{bottom:420.108336pt;}
.y52{bottom:420.267507pt;}
.y13c{bottom:420.268336pt;}
.ybf{bottom:426.028341pt;}
.y16b{bottom:427.788342pt;}
.y191{bottom:435.148348pt;}
.y8d{bottom:435.468348pt;}
.y13b{bottom:435.628349pt;}
.y2e{bottom:436.427507pt;}
.y51{bottom:436.747507pt;}
.ybe{bottom:441.228353pt;}
.y16a{bottom:443.148355pt;}
.y190{bottom:450.508360pt;}
.y8c{bottom:450.828361pt;}
.y13a{bottom:450.988361pt;}
.y2d{bottom:453.067507pt;}
.y50{bottom:453.387507pt;}
.y169{bottom:458.508367pt;}
.ybd{bottom:460.588368pt;}
.y18f{bottom:465.868373pt;}
.y8b{bottom:466.028373pt;}
.yf3{bottom:466.188373pt;}
.y139{bottom:466.348373pt;}
.y2c{bottom:469.547507pt;}
.y4f{bottom:469.867507pt;}
.y168{bottom:473.708379pt;}
.ybc{bottom:475.948381pt;}
.y18e{bottom:481.228385pt;}
.y8a{bottom:481.388385pt;}
.yf2{bottom:481.548385pt;}
.y2b{bottom:486.187507pt;}
.y4e{bottom:486.507507pt;}
.y167{bottom:489.068391pt;}
.ybb{bottom:495.308396pt;}
.y18d{bottom:496.588397pt;}
.y89{bottom:496.748397pt;}
.y138{bottom:496.908398pt;}
.y2a{bottom:502.667507pt;}
.y4d{bottom:502.987507pt;}
.y166{bottom:504.428404pt;}
.y18c{bottom:511.948410pt;}
.y88{bottom:512.108410pt;}
.y137{bottom:512.268410pt;}
.yba{bottom:514.668412pt;}
.y29{bottom:519.147507pt;}
.y4c{bottom:519.467507pt;}
.y165{bottom:519.788416pt;}
.y18b{bottom:527.148422pt;}
.y87{bottom:527.468422pt;}
.y136{bottom:527.628422pt;}
.yb9{bottom:529.868424pt;}
.y164{bottom:535.148428pt;}
.y28{bottom:535.787507pt;}
.y4b{bottom:536.107507pt;}
.y18a{bottom:542.508434pt;}
.y86{bottom:542.828434pt;}
.y135{bottom:542.988434pt;}
.yb8{bottom:545.228436pt;}
.y163{bottom:550.508440pt;}
.y27{bottom:552.267507pt;}
.y4a{bottom:552.587507pt;}
.y189{bottom:557.868446pt;}
.y85{bottom:558.028446pt;}
.yf1{bottom:558.188447pt;}
.yb7{bottom:560.588448pt;}
.y162{bottom:565.708453pt;}
.y26{bottom:568.907507pt;}
.y49{bottom:569.227507pt;}
.y188{bottom:573.228459pt;}
.y84{bottom:573.388459pt;}
.yf0{bottom:573.548459pt;}
.yb6{bottom:575.948461pt;}
.y161{bottom:581.068465pt;}
.y25{bottom:585.387507pt;}
.y48{bottom:585.707507pt;}
.y187{bottom:588.588471pt;}
.y83{bottom:588.748471pt;}
.y134{bottom:588.908471pt;}
.yb5{bottom:591.308473pt;}
.y160{bottom:596.428477pt;}
.y24{bottom:602.027507pt;}
.y47{bottom:602.347507pt;}
.y186{bottom:603.788483pt;}
.yef{bottom:604.108483pt;}
.y133{bottom:604.268483pt;}
.yb4{bottom:606.668485pt;}
.y82{bottom:609.228487pt;}
.y15f{bottom:611.788489pt;}
.y23{bottom:618.507507pt;}
.y46{bottom:618.827507pt;}
.y185{bottom:619.148495pt;}
.yee{bottom:619.468496pt;}
.yb3{bottom:621.868497pt;}
.y15e{bottom:627.148502pt;}
.y81{bottom:629.868504pt;}
.y132{bottom:632.588506pt;}
.y184{bottom:634.508508pt;}
.yed{bottom:634.828508pt;}
.y22{bottom:634.987507pt;}
.y45{bottom:635.307507pt;}
.yb2{bottom:637.228510pt;}
.y15d{bottom:642.508514pt;}
.y80{bottom:646.348517pt;}
.yec{bottom:650.188520pt;}
.y21{bottom:651.627507pt;}
.y44{bottom:651.947507pt;}
.yb1{bottom:652.588522pt;}
.y183{bottom:653.868523pt;}
.y15c{bottom:657.708526pt;}
.y131{bottom:659.148527pt;}
.y7f{bottom:662.988530pt;}
.yeb{bottom:665.388532pt;}
.yb0{bottom:667.948534pt;}
.y20{bottom:668.107507pt;}
.y43{bottom:668.427507pt;}
.y15b{bottom:673.068538pt;}
.y182{bottom:673.228539pt;}
.y7e{bottom:679.468544pt;}
.yea{bottom:680.748545pt;}
.yaf{bottom:683.308547pt;}
.y1f{bottom:684.747507pt;}
.y42{bottom:685.067507pt;}
.y15a{bottom:688.428551pt;}
.y181{bottom:688.588551pt;}
.y122{bottom:691.788553pt;}
.ye6{bottom:694.988556pt;}
.y7d{bottom:696.108557pt;}
.y127{bottom:696.268557pt;}
.y129{bottom:697.228558pt;}
.ye9{bottom:698.508559pt;}
.yae{bottom:698.668559pt;}
.y12e{bottom:700.108560pt;}
.ye5{bottom:701.708561pt;}
.y159{bottom:703.788563pt;}
.y128{bottom:705.548564pt;}
.ye7{bottom:706.828565pt;}
.ye8{bottom:706.988566pt;}
.y12d{bottom:708.588567pt;}
.y124{bottom:709.228567pt;}
.y7c{bottom:712.588570pt;}
.yad{bottom:713.868571pt;}
.y12b{bottom:715.628573pt;}
.y12c{bottom:716.748573pt;}
.y12f{bottom:717.388574pt;}
.y123{bottom:717.868574pt;}
.y158{bottom:719.148575pt;}
.ye4{bottom:720.588576pt;}
.y126{bottom:720.908577pt;}
.y7b{bottom:729.068583pt;}
.yac{bottom:729.228583pt;}
.y13{bottom:731.147507pt;}
.y1e{bottom:731.307507pt;}
.y130{bottom:732.428586pt;}
.y1b{bottom:732.587507pt;}
.y12a{bottom:732.748586pt;}
.y157{bottom:734.348587pt;}
.y180{bottom:734.508588pt;}
.ye3{bottom:735.788589pt;}
.y125{bottom:742.828594pt;}
.yab{bottom:744.588596pt;}
.y12{bottom:744.907507pt;}
.y7a{bottom:745.708597pt;}
.y1a{bottom:746.347507pt;}
.y156{bottom:749.708600pt;}
.y17f{bottom:749.868600pt;}
.ye1{bottom:755.148604pt;}
.y11{bottom:758.667507pt;}
.yaa{bottom:759.948608pt;}
.y19{bottom:760.267507pt;}
.ye2{bottom:760.268608pt;}
.y79{bottom:762.188610pt;}
.y155{bottom:765.068612pt;}
.y17e{bottom:769.228615pt;}
.y10{bottom:772.427507pt;}
.y18{bottom:774.027507pt;}
.ye0{bottom:775.148620pt;}
.ya9{bottom:775.308620pt;}
.y121{bottom:778.508623pt;}
.y78{bottom:778.828623pt;}
.y154{bottom:780.428624pt;}
.yf{bottom:786.187507pt;}
.y17{bottom:787.787507pt;}
.y17d{bottom:789.708632pt;}
.ya8{bottom:790.508632pt;}
.y77{bottom:795.308636pt;}
.y153{bottom:795.788637pt;}
.ye{bottom:800.107507pt;}
.y16{bottom:801.547507pt;}
.y120{bottom:802.668642pt;}
.ydf{bottom:805.868645pt;}
.y17c{bottom:806.348645pt;}
.ya7{bottom:809.868648pt;}
.y152{bottom:811.148649pt;}
.y76{bottom:811.788649pt;}
.y1d{bottom:813.867507pt;}
.yd{bottom:814.027507pt;}
.y15{bottom:815.467507pt;}
.y109{bottom:820.748657pt;}
.yde{bottom:821.068657pt;}
.y17b{bottom:822.828658pt;}
.ya6{bottom:825.228660pt;}
.y151{bottom:826.348661pt;}
.y75{bottom:828.428663pt;}
.y105{bottom:835.628669pt;}
.y119{bottom:837.548670pt;}
.ydd{bottom:838.668671pt;}
.y17a{bottom:839.308671pt;}
.ya5{bottom:840.588672pt;}
.y150{bottom:841.708673pt;}
.y106{bottom:843.468675pt;}
.y74{bottom:844.908676pt;}
.yc{bottom:846.347507pt;}
.y1c{bottom:846.507507pt;}
.y107{bottom:846.828677pt;}
.y108{bottom:846.988678pt;}
.y14{bottom:847.627507pt;}
.y10d{bottom:848.428679pt;}
.y10b{bottom:849.068679pt;}
.ya4{bottom:855.948685pt;}
.ydc{bottom:857.068686pt;}
.yb{bottom:860.107507pt;}
.y73{bottom:861.548689pt;}
.y10c{bottom:864.588692pt;}
.y10a{bottom:865.228692pt;}
.ya3{bottom:871.308697pt;}
.ydb{bottom:872.428698pt;}
.ya{bottom:873.867507pt;}
.y72{bottom:878.028702pt;}
.y10e{bottom:883.788707pt;}
.ya2{bottom:886.508709pt;}
.y9{bottom:887.787507pt;}
.yda{bottom:887.788710pt;}
.y10f{bottom:888.748711pt;}
.y179{bottom:889.068711pt;}
.y71{bottom:894.508716pt;}
.y8{bottom:901.547507pt;}
.yd9{bottom:903.148723pt;}
.y178{bottom:905.548724pt;}
.ya1{bottom:907.148726pt;}
.y70{bottom:911.148729pt;}
.y111{bottom:911.788729pt;}
.y7{bottom:915.307507pt;}
.yd8{bottom:918.348735pt;}
.y110{bottom:918.988735pt;}
.y177{bottom:922.028738pt;}
.y6f{bottom:927.628742pt;}
.y6{bottom:929.067507pt;}
.yd7{bottom:933.708747pt;}
.y176{bottom:938.668751pt;}
.y117{bottom:943.948755pt;}
.y6e{bottom:944.268755pt;}
.y11d{bottom:946.348757pt;}
.y116{bottom:947.628758pt;}
.yd6{bottom:949.068759pt;}
.y118{bottom:951.148761pt;}
.y11c{bottom:953.548763pt;}
.y175{bottom:955.148764pt;}
.y5{bottom:955.307507pt;}
.y6d{bottom:960.748769pt;}
.y115{bottom:961.228769pt;}
.yd5{bottom:964.428772pt;}
.y11b{bottom:965.868773pt;}
.y174{bottom:975.788781pt;}
.y11f{bottom:975.948781pt;}
.y6c{bottom:977.388782pt;}
.yd4{bottom:979.788784pt;}
.y11e{bottom:983.148787pt;}
.y11a{bottom:985.388788pt;}
.y4{bottom:992.107507pt;}
.y6b{bottom:993.868795pt;}
.y114{bottom:994.828796pt;}
.yd3{bottom:995.148796pt;}
.y113{bottom:1002.028802pt;}
.y112{bottom:1010.188808pt;}
.y6a{bottom:1010.348808pt;}
.y3{bottom:1028.907507pt;}
.y68{bottom:1062.028850pt;}
.y1{bottom:1062.028853pt;}
.h19{height:16.541451pt;}
.h1d{height:17.368523pt;}
.h1c{height:18.282702pt;}
.he{height:18.405333pt;}
.h1f{height:19.008953pt;}
.h1a{height:19.252422pt;}
.h20{height:19.959400pt;}
.hf{height:20.058516pt;}
.h1b{height:20.111913pt;}
.hc{height:21.061442pt;}
.hb{height:22.170768pt;}
.hd{height:27.713197pt;}
.h7{height:30.625000pt;}
.h1e{height:31.448535pt;}
.h6{height:32.531250pt;}
.h4{height:33.328125pt;}
.h3{height:34.453125pt;}
.h10{height:34.453153pt;}
.h5{height:36.001286pt;}
.ha{height:36.883155pt;}
.h9{height:38.128156pt;}
.h1{height:38.128163pt;}
.h8{height:38.937500pt;}
.h15{height:41.234408pt;}
.h12{height:42.556284pt;}
.h18{height:50.928166pt;}
.h14{height:59.007860pt;}
.h11{height:62.363493pt;}
.h16{height:72.594433pt;}
.h13{height:73.653809pt;}
.h17{height:87.807883pt;}
.h2{height:91.875000pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626627pt;}
.x0{left:0.000000pt;}
.x25{left:23.466680pt;}
.x26{left:37.083333pt;}
.x8{left:71.999693pt;}
.x6{left:84.159693pt;}
.xa{left:85.593827pt;}
.xc{left:93.279693pt;}
.x20{left:95.353027pt;}
.x22{left:104.799040pt;}
.x2{left:109.440093pt;}
.xb{left:111.199693pt;}
.x3{left:115.200093pt;}
.x2b{left:119.193562pt;}
.x9{left:120.639693pt;}
.x1{left:123.520093pt;}
.x36{left:125.760154pt;}
.x5{left:132.639693pt;}
.x29{left:135.040108pt;}
.x35{left:139.520165pt;}
.x7{left:144.959693pt;}
.x27{left:159.520128pt;}
.x28{left:169.120135pt;}
.x21{left:179.199040pt;}
.x2a{left:189.760152pt;}
.x37{left:208.640220pt;}
.x39{left:267.040214pt;}
.x38{left:295.840237pt;}
.x10{left:307.199693pt;}
.x12{left:308.319693pt;}
.xe{left:319.359693pt;}
.x14{left:329.279693pt;}
.x4{left:332.624093pt;}
.x11{left:355.839693pt;}
.xd{left:360.479693pt;}
.x13{left:377.119693pt;}
.xf{left:380.159693pt;}
.x23{left:420.472373pt;}
.x24{left:429.918853pt;}
.x5c{left:436.480349pt;}
.x42{left:438.880351pt;}
.x3a{left:442.080354pt;}
.x2c{left:444.313773pt;}
.x31{left:448.160359pt;}
.x32{left:451.200361pt;}
.x5f{left:455.520364pt;}
.x45{left:461.120369pt;}
.x56{left:463.520371pt;}
.x51{left:474.240379pt;}
.x2d{left:477.920280pt;}
.x3c{left:480.480384pt;}
.x60{left:483.040618pt;}
.x4e{left:486.720203pt;}
.x52{left:491.680393pt;}
.x61{left:493.760626pt;}
.x53{left:496.320403pt;}
.x48{left:508.640407pt;}
.x5b{left:512.640410pt;}
.x62{left:517.120645pt;}
.x30{left:521.600417pt;}
.x3b{left:524.000419pt;}
.x58{left:527.040422pt;}
.x47{left:528.960413pt;}
.x2e{left:529.920424pt;}
.x3e{left:531.680425pt;}
.x46{left:536.160429pt;}
.x49{left:540.160432pt;}
.x1e{left:542.399693pt;}
.x4a{left:547.200438pt;}
.x16{left:548.313827pt;}
.x1c{left:554.559693pt;}
.x54{left:556.160445pt;}
.x55{left:557.120446pt;}
.x33{left:558.720447pt;}
.x34{left:567.040454pt;}
.x57{left:575.520497pt;}
.x19{left:578.399693pt;}
.x1f{left:579.519693pt;}
.x4b{left:584.000460pt;}
.x18{left:591.039693pt;}
.x3f{left:592.960474pt;}
.x4f{left:596.160477pt;}
.x50{left:599.200479pt;}
.x41{left:600.640481pt;}
.x15{left:603.999693pt;}
.x1b{left:605.919693pt;}
.x1d{left:615.359693pt;}
.x17{left:617.279693pt;}
.x4d{left:620.960492pt;}
.x2f{left:622.560498pt;}
.x4c{left:623.520499pt;}
.x5e{left:627.040514pt;}
.x40{left:628.480503pt;}
.x5d{left:630.400504pt;}
.x1a{left:631.999693pt;}
.x5a{left:667.840534pt;}
.x59{left:669.440578pt;}
.x3d{left:672.640538pt;}
.x44{left:679.040543pt;}
.x43{left:704.962511pt;}
}




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