
    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_2fa0822173c5852f2deabc9e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.927734;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_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.035156;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_fa55a7c69232f63a71219c23.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.435059;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_8d0b2966034a6ca31f79d03f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.929199;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_9ed2b775f3999a77e561ba14.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.959961;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_28badca8037134c83fc3f8b3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.923828;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_ae3459138e890cc8d7be46b6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.923828;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_300f60ad87e77930dbc0418b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.767578;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_31b9816695b8df101252fa73.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.959961;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_0414c8cc678cd62faa093e85.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.929199;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_4e2130ae9b306c5814b8cda6.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_6769bb0fb4077c5d225606cb.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.850098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_06f4b70dfb6d30651204a982.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.052734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_2962d7a7d8cddc225ed28b4e.woff2')format("woff");}.fff{font-family:fff;line-height:0.959961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_d601ea7df45264b7a62e36ba.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.854492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_21148b10eebcc8668e012a7d.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls1d{letter-spacing:-0.636000px;}
.ls22{letter-spacing:-0.524400px;}
.ls16{letter-spacing:-0.360000px;}
.ls20{letter-spacing:-0.305400px;}
.lsf{letter-spacing:-0.232800px;}
.ls8{letter-spacing:-0.222600px;}
.ls19{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.213000px;}
.ls18{letter-spacing:-0.144000px;}
.ls21{letter-spacing:-0.132600px;}
.ls14{letter-spacing:-0.109200px;}
.lsb{letter-spacing:-0.048960px;}
.lsa{letter-spacing:-0.037440px;}
.ls7{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.010080px;}
.ls1{letter-spacing:0.010560px;}
.ls10{letter-spacing:0.017280px;}
.ls6{letter-spacing:0.023040px;}
.ls11{letter-spacing:0.031680px;}
.lsd{letter-spacing:0.048960px;}
.ls5{letter-spacing:0.057600px;}
.ls4{letter-spacing:0.072000px;}
.ls1b{letter-spacing:0.086400px;}
.ls15{letter-spacing:0.106800px;}
.ls1e{letter-spacing:0.195600px;}
.ls12{letter-spacing:0.204600px;}
.ls1a{letter-spacing:0.218880px;}
.ls1f{letter-spacing:0.219000px;}
.lse{letter-spacing:0.237600px;}
.ls13{letter-spacing:0.262080px;}
.ls0{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.302400px;}
.ls3{letter-spacing:0.360000px;}
.ls1c{letter-spacing:6.883200px;}
.ls17{letter-spacing:843.096000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(5,99,193),0 0.015em rgb(5,99,193),0.015em 0 rgb(5,99,193),0 -0.015em  rgb(5,99,193);}
.sc3{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(5,99,193);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-25.472160px;}
.ws4{word-spacing:-22.407840px;}
.wsd{word-spacing:-17.619840px;}
.ws10{word-spacing:-17.510640px;}
.ws12{word-spacing:-16.998000px;}
.ws8{word-spacing:-16.948800px;}
.ws7{word-spacing:-16.940160px;}
.ws5{word-spacing:-16.891200px;}
.ws6{word-spacing:-16.678200px;}
.ws11{word-spacing:-16.531200px;}
.ws19{word-spacing:-16.375800px;}
.ws1e{word-spacing:-16.352400px;}
.ws1d{word-spacing:-16.243200px;}
.ws9{word-spacing:-16.228800px;}
.ws15{word-spacing:-16.156800px;}
.ws18{word-spacing:-16.047600px;}
.ws1a{word-spacing:-15.851400px;}
.ws13{word-spacing:-15.696000px;}
.ws1c{word-spacing:-15.632400px;}
.ws14{word-spacing:-15.624000px;}
.ws16{word-spacing:-15.520800px;}
.ws2{word-spacing:-15.248880px;}
.ws0{word-spacing:-15.238800px;}
.ws1{word-spacing:-15.016200px;}
.ws17{word-spacing:-14.826240px;}
.wsf{word-spacing:-14.777400px;}
.ws1b{word-spacing:-14.693640px;}
.wsc{word-spacing:-14.595840px;}
.wsb{word-spacing:-14.572800px;}
.wsa{word-spacing:-13.983840px;}
.wse{word-spacing:0.000000px;}
._14{margin-left:-4.835520px;}
._16{margin-left:-3.654960px;}
._d{margin-left:-2.533200px;}
._1{margin-left:-1.139520px;}
._0{width:1.127520px;}
._a{width:2.318400px;}
._7{width:4.075680px;}
._3{width:5.378400px;}
._5{width:6.485280px;}
._4{width:7.514400px;}
._6{width:9.203040px;}
._10{width:10.780560px;}
._c{width:12.728880px;}
._b{width:14.103360px;}
._18{width:15.235920px;}
._e{width:16.276080px;}
._f{width:17.987760px;}
._15{width:19.929600px;}
._13{width:21.664800px;}
._1b{width:22.852800px;}
._17{width:24.688800px;}
._12{width:25.953840px;}
._11{width:27.436800px;}
._1d{width:28.933440px;}
._1c{width:30.351360px;}
._8{width:32.410800px;}
._9{width:33.738480px;}
._19{width:35.107200px;}
._1a{width:36.245760px;}
._24{width:46.189440px;}
._20{width:47.962560px;}
._21{width:49.036320px;}
._22{width:54.425280px;}
._23{width:56.454240px;}
._2{width:89.102640px;}
._1e{width:140.912640px;}
._26{width:223.279680px;}
._25{width:224.972640px;}
._1f{width:312.174720px;}
.fc4{color:transparent;}
.fc2{color:rgb(255,255,0);}
.fc1{color:rgb(5,99,193);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fs3{font-size:18.000000px;}
.fs4{font-size:23.760000px;}
.fs8{font-size:36.000000px;}
.fse{font-size:41.760000px;}
.fsb{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs11{font-size:63.360000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:77.760000px;}
.fs7{font-size:84.240000px;}
.fsf{font-size:84.384000px;}
.fs9{font-size:95.760000px;}
.fsc{font-size:108.000000px;}
.fsd{font-size:108.144000px;}
.fs10{font-size:282.240000px;}
.y0{bottom:0.000000px;}
.ya{bottom:0.180000px;}
.y11{bottom:1.080000px;}
.y1f{bottom:1.800000px;}
.y7{bottom:3.420000px;}
.y94{bottom:3.600000px;}
.y92{bottom:3.780000px;}
.y5d{bottom:3.960000px;}
.y5a{bottom:4.140000px;}
.y5{bottom:5.760000px;}
.yf{bottom:7.920000px;}
.y5c{bottom:8.100000px;}
.y13b{bottom:13.320000px;}
.y138{bottom:13.500000px;}
.y1e{bottom:13.680000px;}
.y6{bottom:19.980000px;}
.y53{bottom:20.700000px;}
.y4{bottom:21.240000px;}
.y13a{bottom:22.500000px;}
.y13c{bottom:22.860000px;}
.y59{bottom:23.220000px;}
.y154{bottom:23.400000px;}
.y37{bottom:32.400000px;}
.ye{bottom:34.380000px;}
.y52{bottom:37.980000px;}
.y58{bottom:42.330000px;}
.y36{bottom:51.660000px;}
.y8{bottom:53.460000px;}
.y3{bottom:54.720000px;}
.y51{bottom:55.260000px;}
.y35{bottom:69.300000px;}
.y57{bottom:69.510000px;}
.y50{bottom:72.720000px;}
.y2{bottom:80.280000px;}
.y34{bottom:81.720000px;}
.y4f{bottom:90.000000px;}
.y56{bottom:97.230000px;}
.y33{bottom:99.000000px;}
.y147{bottom:106.200000px;}
.y4e{bottom:107.280000px;}
.y55{bottom:107.670000px;}
.yd{bottom:107.790000px;}
.y127{bottom:112.860000px;}
.y1b0{bottom:115.200000px;}
.y32{bottom:116.280000px;}
.y93{bottom:116.820000px;}
.y16f{bottom:117.000000px;}
.yc8{bottom:118.620000px;}
.y54{bottom:119.880000px;}
.y90{bottom:120.240000px;}
.y18c{bottom:122.400000px;}
.y4d{bottom:124.560000px;}
.y146{bottom:124.740000px;}
.yc{bottom:129.060000px;}
.y126{bottom:131.580000px;}
.y1af{bottom:133.380000px;}
.y31{bottom:133.560000px;}
.yc7{bottom:137.340000px;}
.y18d{bottom:137.700000px;}
.yf8{bottom:138.780000px;}
.y8f{bottom:138.960000px;}
.y18b{bottom:141.120000px;}
.y4c{bottom:141.840000px;}
.y145{bottom:143.460000px;}
.y125{bottom:150.300000px;}
.y16e{bottom:150.480000px;}
.y30{bottom:151.200000px;}
.yc6{bottom:156.090000px;}
.y1ae{bottom:156.270000px;}
.y8e{bottom:157.530000px;}
.y4b{bottom:159.345000px;}
.y18a{bottom:159.870000px;}
.y144{bottom:162.210000px;}
.yf7{bottom:166.530000px;}
.y2f{bottom:168.525000px;}
.y124{bottom:169.050000px;}
.y16d{bottom:169.230000px;}
.yc5{bottom:174.630000px;}
.y1ad{bottom:174.810000px;}
.y4a{bottom:176.625000px;}
.y189{bottom:178.410000px;}
.yf6{bottom:185.250000px;}
.y8d{bottom:185.790000px;}
.y2e{bottom:185.805000px;}
.y123{bottom:187.590000px;}
.y16c{bottom:187.950000px;}
.y143{bottom:190.470000px;}
.y1ac{bottom:192.990000px;}
.y49{bottom:193.905000px;}
.yc4{bottom:202.350000px;}
.y2d{bottom:203.085000px;}
.yf5{bottom:203.970000px;}
.y122{bottom:206.310000px;}
.y16b{bottom:206.490000px;}
.y188{bottom:209.370000px;}
.y48{bottom:211.185000px;}
.y1ab{bottom:215.670000px;}
.y8c{bottom:218.550000px;}
.y142{bottom:220.350000px;}
.y2c{bottom:220.365000px;}
.yc3{bottom:221.070000px;}
.yf4{bottom:222.510000px;}
.y121{bottom:225.030000px;}
.y47{bottom:228.465000px;}
.y16a{bottom:234.210000px;}
.y141{bottom:234.570000px;}
.yc2{bottom:239.790000px;}
.y20{bottom:241.410000px;}
.y187{bottom:242.850000px;}
.y120{bottom:243.750000px;}
.y46{bottom:245.925000px;}
.yf3{bottom:250.230000px;}
.y8b{bottom:251.850000px;}
.y169{bottom:252.930000px;}
.y140{bottom:254.910000px;}
.y1aa{bottom:256.890000px;}
.yc1{bottom:258.330000px;}
.y186{bottom:261.570000px;}
.y45{bottom:263.205000px;}
.yf2{bottom:268.950000px;}
.y8a{bottom:270.570000px;}
.y11f{bottom:271.290000px;}
.y168{bottom:271.650000px;}
.y13f{bottom:275.070000px;}
.y1a9{bottom:275.430000px;}
.yc0{bottom:277.050000px;}
.y185{bottom:280.110000px;}
.y44{bottom:280.485000px;}
.y2b{bottom:285.165000px;}
.yf1{bottom:287.670000px;}
.y89{bottom:289.110000px;}
.y11e{bottom:290.010000px;}
.y167{bottom:290.190000px;}
.y13e{bottom:295.230000px;}
.ybf{bottom:295.770000px;}
.y43{bottom:297.765000px;}
.y1a8{bottom:298.110000px;}
.y184{bottom:298.830000px;}
.y2a{bottom:304.605000px;}
.yf0{bottom:306.210000px;}
.y88{bottom:307.830000px;}
.y11d{bottom:308.730000px;}
.y166{bottom:308.910000px;}
.ybe{bottom:314.490000px;}
.y42{bottom:315.045000px;}
.y1a7{bottom:316.650000px;}
.y183{bottom:317.550000px;}
.y29{bottom:323.685000px;}
.yef{bottom:324.930000px;}
.y87{bottom:326.550000px;}
.y11c{bottom:327.450000px;}
.y41{bottom:332.325000px;}
.y13d{bottom:334.110000px;}
.y182{bottom:336.270000px;}
.y165{bottom:337.170000px;}
.y1a6{bottom:339.330000px;}
.ybd{bottom:342.030000px;}
.y28{bottom:343.125000px;}
.yee{bottom:343.650000px;}
.y86{bottom:345.270000px;}
.y11b{bottom:345.990000px;}
.y40{bottom:349.785000px;}
.y181{bottom:354.810000px;}
.y1a5{bottom:357.870000px;}
.ybc{bottom:360.750000px;}
.y27{bottom:362.025000px;}
.yed{bottom:362.370000px;}
.y85{bottom:363.810000px;}
.y11a{bottom:364.710000px;}
.y164{bottom:366.690000px;}
.y3f{bottom:367.065000px;}
.y139{bottom:372.990000px;}
.ybb{bottom:379.470000px;}
.y1a4{bottom:380.370000px;}
.y26{bottom:381.465000px;}
.y180{bottom:382.530000px;}
.y119{bottom:383.430000px;}
.y3e{bottom:384.345000px;}
.y163{bottom:385.410000px;}
.yec{bottom:389.910000px;}
.y84{bottom:391.530000px;}
.yba{bottom:398.190000px;}
.y1a3{bottom:398.550000px;}
.y25{bottom:400.545000px;}
.y17f{bottom:401.295000px;}
.y3d{bottom:401.625000px;}
.y118{bottom:402.195000px;}
.y162{bottom:404.175000px;}
.yeb{bottom:408.675000px;}
.y83{bottom:410.295000px;}
.y137{bottom:411.915000px;}
.yb9{bottom:416.775000px;}
.y1a2{bottom:417.135000px;}
.y3c{bottom:418.935000px;}
.y24{bottom:420.015000px;}
.y117{bottom:420.735000px;}
.y161{bottom:422.715000px;}
.yea{bottom:427.395000px;}
.y82{bottom:429.015000px;}
.yb8{bottom:435.495000px;}
.y3b{bottom:436.395000px;}
.y17e{bottom:438.555000px;}
.y23{bottom:438.915000px;}
.y116{bottom:439.455000px;}
.y1a1{bottom:440.175000px;}
.ye9{bottom:446.115000px;}
.y81{bottom:447.555000px;}
.y160{bottom:450.435000px;}
.y3a{bottom:453.675000px;}
.y17d{bottom:457.275000px;}
.y115{bottom:458.175000px;}
.y22{bottom:458.355000px;}
.y1a0{bottom:463.215000px;}
.yb7{bottom:463.395000px;}
.ye8{bottom:464.655000px;}
.y80{bottom:466.275000px;}
.y15f{bottom:469.155000px;}
.y39{bottom:470.955000px;}
.y114{bottom:476.895000px;}
.y21{bottom:481.935000px;}
.ye7{bottom:483.375000px;}
.y7f{bottom:484.995000px;}
.y19f{bottom:485.895000px;}
.y15e{bottom:487.875000px;}
.y38{bottom:488.235000px;}
.yb6{bottom:491.475000px;}
.y136{bottom:492.375000px;}
.y113{bottom:495.435000px;}
.y7e{bottom:503.715000px;}
.y19e{bottom:504.075000px;}
.y15d{bottom:506.415000px;}
.yb5{bottom:510.195000px;}
.ye6{bottom:511.095000px;}
.y112{bottom:514.155000px;}
.y17c{bottom:522.255000px;}
.y19d{bottom:522.615000px;}
.y15c{bottom:525.135000px;}
.yb4{bottom:528.915000px;}
.ye5{bottom:529.815000px;}
.y7d{bottom:531.255000px;}
.y17b{bottom:540.975000px;}
.y111{bottom:541.875000px;}
.y15b{bottom:543.855000px;}
.y19c{bottom:545.115000px;}
.yb3{bottom:547.635000px;}
.ye4{bottom:548.355000px;}
.y7c{bottom:549.975000px;}
.y17a{bottom:559.695000px;}
.y110{bottom:560.595000px;}
.y19b{bottom:563.295000px;}
.ye3{bottom:567.075000px;}
.y7b{bottom:568.695000px;}
.y15a{bottom:572.115000px;}
.yb2{bottom:575.175000px;}
.y179{bottom:578.415000px;}
.y10f{bottom:579.135000px;}
.y19a{bottom:581.835000px;}
.ye2{bottom:585.795000px;}
.y7a{bottom:587.415000px;}
.yb1{bottom:593.895000px;}
.y10e{bottom:597.855000px;}
.y159{bottom:598.935000px;}
.y199{bottom:600.375000px;}
.ye1{bottom:604.515000px;}
.y79{bottom:605.955000px;}
.yb0{bottom:612.615000px;}
.y135{bottom:613.515000px;}
.y1ca{bottom:616.035000px;}
.y10d{bottom:616.575000px;}
.y158{bottom:619.275000px;}
.ye0{bottom:623.235000px;}
.y198{bottom:623.415000px;}
.y78{bottom:624.675000px;}
.yaf{bottom:631.335000px;}
.y134{bottom:632.235000px;}
.y10c{bottom:635.295000px;}
.y157{bottom:639.435000px;}
.y197{bottom:641.955000px;}
.y77{bottom:643.395000px;}
.yae{bottom:649.905000px;}
.ydf{bottom:650.805000px;}
.y10b{bottom:653.865000px;}
.y156{bottom:659.625000px;}
.y196{bottom:660.165000px;}
.y178{bottom:662.145000px;}
.y1c9{bottom:662.505000px;}
.yad{bottom:668.625000px;}
.yde{bottom:669.525000px;}
.y76{bottom:670.965000px;}
.y10a{bottom:672.585000px;}
.y155{bottom:679.965000px;}
.y177{bottom:680.685000px;}
.y195{bottom:682.845000px;}
.y1c8{bottom:685.185000px;}
.yac{bottom:687.345000px;}
.ydd{bottom:688.245000px;}
.y75{bottom:689.685000px;}
.y109{bottom:691.305000px;}
.y176{bottom:699.405000px;}
.y153{bottom:700.125000px;}
.y194{bottom:701.385000px;}
.y1c7{bottom:703.725000px;}
.yab{bottom:706.065000px;}
.ydc{bottom:706.965000px;}
.y74{bottom:708.405000px;}
.y175{bottom:718.125000px;}
.y108{bottom:718.845000px;}
.y193{bottom:719.385000px;}
.yf9{bottom:722.085000px;}
.yaa{bottom:724.605000px;}
.ydb{bottom:725.505000px;}
.y1c6{bottom:726.405000px;}
.y73{bottom:727.125000px;}
.y133{bottom:734.505000px;}
.y107{bottom:737.565000px;}
.ya9{bottom:743.325000px;}
.y1d{bottom:743.505000px;}
.yda{bottom:744.225000px;}
.y1c5{bottom:744.585000px;}
.y174{bottom:745.665000px;}
.y72{bottom:745.845000px;}
.y192{bottom:749.625000px;}
.y152{bottom:753.045000px;}
.y132{bottom:753.225000px;}
.y106{bottom:756.285000px;}
.ya8{bottom:762.045000px;}
.yd9{bottom:762.945000px;}
.y1c4{bottom:763.125000px;}
.y71{bottom:764.385000px;}
.y131{bottom:771.945000px;}
.y1c{bottom:772.845000px;}
.y105{bottom:775.005000px;}
.y151{bottom:780.585000px;}
.ya7{bottom:780.765000px;}
.y1c3{bottom:781.665000px;}
.y70{bottom:783.105000px;}
.y1b{bottom:787.425000px;}
.y130{bottom:790.665000px;}
.yd8{bottom:793.725000px;}
.ya6{bottom:799.305000px;}
.y6f{bottom:801.825000px;}
.y1c2{bottom:804.525000px;}
.y128{bottom:809.025000px;}
.y12f{bottom:809.205000px;}
.y191{bottom:810.825000px;}
.y104{bottom:812.445000px;}
.y1a{bottom:816.585000px;}
.y150{bottom:818.025000px;}
.y173{bottom:820.545000px;}
.y1c1{bottom:822.705000px;}
.yd7{bottom:827.025000px;}
.ya5{bottom:827.565000px;}
.y12e{bottom:827.925000px;}
.y6e{bottom:829.365000px;}
.y190{bottom:829.545000px;}
.y103{bottom:830.985000px;}
.y14f{bottom:836.745000px;}
.y172{bottom:839.085000px;}
.y19{bottom:844.125000px;}
.y1c0{bottom:845.385000px;}
.yd6{bottom:845.745000px;}
.y12d{bottom:846.645000px;}
.y6d{bottom:848.085000px;}
.y102{bottom:849.705000px;}
.y14e{bottom:855.465000px;}
.y18{bottom:856.365000px;}
.ya4{bottom:857.085000px;}
.y171{bottom:857.805000px;}
.y1bf{bottom:863.565000px;}
.yd5{bottom:864.465000px;}
.y6c{bottom:866.805000px;}
.y17{bottom:869.325000px;}
.y14d{bottom:874.005000px;}
.y12c{bottom:874.905000px;}
.ya3{bottom:875.805000px;}
.y101{bottom:880.485000px;}
.y1be{bottom:882.105000px;}
.yd4{bottom:883.005000px;}
.y6b{bottom:885.525000px;}
.y14c{bottom:892.725000px;}
.ya2{bottom:894.525000px;}
.y16{bottom:894.885000px;}
.yd3{bottom:901.770000px;}
.y6a{bottom:904.290000px;}
.y1bd{bottom:904.830000px;}
.y12b{bottom:907.530000px;}
.ya1{bottom:913.290000px;}
.y100{bottom:913.830000px;}
.y15{bottom:917.250000px;}
.yd2{bottom:920.490000px;}
.y69{bottom:922.830000px;}
.y1bc{bottom:923.370000px;}
.ya0{bottom:931.830000px;}
.yff{bottom:932.550000px;}
.y14b{bottom:939.210000px;}
.y12a{bottom:940.830000px;}
.y68{bottom:941.550000px;}
.yd1{bottom:948.030000px;}
.y9f{bottom:950.550000px;}
.yfe{bottom:951.270000px;}
.y14{bottom:952.530000px;}
.y14a{bottom:957.750000px;}
.y129{bottom:959.550000px;}
.y67{bottom:960.270000px;}
.y1bb{bottom:964.590000px;}
.yd0{bottom:966.750000px;}
.y18f{bottom:969.270000px;}
.yfd{bottom:969.990000px;}
.y149{bottom:976.470000px;}
.y9e{bottom:978.270000px;}
.y170{bottom:978.990000px;}
.y1ba{bottom:982.770000px;}
.ycf{bottom:985.470000px;}
.y13{bottom:987.810000px;}
.y18e{bottom:996.810000px;}
.y9d{bottom:996.990000px;}
.yfc{bottom:997.530000px;}
.yce{bottom:1004.190000px;}
.y148{bottom:1004.730000px;}
.y1b9{bottom:1005.450000px;}
.y66{bottom:1006.530000px;}
.y9c{bottom:1015.530000px;}
.yfb{bottom:1016.250000px;}
.y12{bottom:1017.330000px;}
.ycd{bottom:1022.910000px;}
.y1b8{bottom:1023.990000px;}
.y65{bottom:1025.250000px;}
.y10{bottom:1032.270000px;}
.y9b{bottom:1034.250000px;}
.y9{bottom:1037.490000px;}
.yb{bottom:1037.520000px;}
.ycc{bottom:1041.450000px;}
.y1b7{bottom:1042.170000px;}
.y64{bottom:1043.970000px;}
.y9a{bottom:1052.970000px;}
.ycb{bottom:1060.170000px;}
.y1b6{bottom:1060.350000px;}
.y63{bottom:1062.690000px;}
.y99{bottom:1071.690000px;}
.y91{bottom:1077.810000px;}
.y1b5{bottom:1078.530000px;}
.yca{bottom:1078.890000px;}
.y62{bottom:1081.230000px;}
.y98{bottom:1090.230000px;}
.y61{bottom:1099.950000px;}
.y1b4{bottom:1101.210000px;}
.yc9{bottom:1107.150000px;}
.yfa{bottom:1108.950000px;}
.y97{bottom:1117.950000px;}
.y60{bottom:1118.670000px;}
.y1b3{bottom:1119.390000px;}
.y96{bottom:1136.670000px;}
.y1b2{bottom:1137.570000px;}
.y5f{bottom:1149.480000px;}
.y95{bottom:1155.420000px;}
.y1b1{bottom:1156.140000px;}
.y5e{bottom:1170.540000px;}
.y5b{bottom:1187.820000px;}
.y1{bottom:1192.680000px;}
.h1b{height:4.106250px;}
.h9{height:4.320000px;}
.h10{height:5.220000px;}
.h11{height:12.832031px;}
.h7{height:17.820000px;}
.h5{height:17.903320px;}
.h34{height:19.440000px;}
.h37{height:19.476000px;}
.h36{height:19.620000px;}
.h27{height:21.960000px;}
.h4{height:25.380000px;}
.h17{height:25.681641px;}
.hd{height:27.000000px;}
.h1c{height:28.980000px;}
.h18{height:29.770312px;}
.h23{height:30.480469px;}
.h12{height:34.389844px;}
.h33{height:38.160000px;}
.h32{height:38.196000px;}
.h31{height:38.880000px;}
.h35{height:39.060000px;}
.h21{height:42.602344px;}
.h22{height:42.631523px;}
.h28{height:43.472812px;}
.h15{height:44.820000px;}
.h3a{height:45.199688px;}
.h1f{height:47.221875px;}
.h20{height:47.254219px;}
.h1d{height:49.680000px;}
.h6{height:51.363281px;}
.h3{height:53.709961px;}
.h8{height:54.000000px;}
.h19{height:54.597656px;}
.h25{height:55.825312px;}
.h2f{height:55.980000px;}
.h2e{height:56.016000px;}
.h24{height:56.084062px;}
.h2c{height:56.160000px;}
.h39{height:60.053906px;}
.h29{height:60.156562px;}
.h2b{height:60.960938px;}
.he{height:63.180000px;}
.h1a{height:65.884219px;}
.h16{height:67.860000px;}
.h2a{height:71.324297px;}
.h30{height:71.446219px;}
.hf{height:71.820000px;}
.h2{height:73.722656px;}
.h13{height:76.992188px;}
.hb{height:86.255508px;}
.h38{height:86.585445px;}
.h14{height:110.583984px;}
.h26{height:121.536000px;}
.hc{height:140.400000px;}
.ha{height:140.436000px;}
.h2d{height:211.680000px;}
.h1e{height:502.095000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:43.200000px;}
.w5{width:117.000000px;}
.w9{width:149.040000px;}
.wf{width:180.180000px;}
.w11{width:180.570000px;}
.we{width:181.110000px;}
.w10{width:181.155000px;}
.w8{width:204.915000px;}
.w14{width:239.115000px;}
.w13{width:239.250000px;}
.w4{width:240.690000px;}
.w3{width:240.870000px;}
.w12{width:244.650000px;}
.wb{width:361.110000px;}
.wc{width:361.155000px;}
.wa{width:578.310000px;}
.w6{width:606.060000px;}
.w7{width:606.210000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:8.100000px;}
.x21{left:11.160000px;}
.x25{left:13.500000px;}
.x2d{left:21.780000px;}
.x26{left:38.160000px;}
.x28{left:49.500000px;}
.xe{left:61.740000px;}
.x1f{left:62.820000px;}
.x2b{left:68.265000px;}
.x29{left:69.480000px;}
.x23{left:71.310000px;}
.x22{left:78.840000px;}
.x3{left:84.996000px;}
.x11{left:88.775987px;}
.x16{left:95.615987px;}
.x2c{left:100.980000px;}
.x10{left:102.285000px;}
.x2e{left:103.320000px;}
.x33{left:111.060000px;}
.x6{left:115.740000px;}
.x12{left:117.575987px;}
.x5{left:120.240000px;}
.x32{left:127.475987px;}
.x9{left:128.694000px;}
.x27{left:172.649987px;}
.xd{left:175.725000px;}
.xa{left:201.960000px;}
.xc{left:225.435000px;}
.x18{left:234.030000px;}
.x1e{left:246.089987px;}
.x8{left:250.815000px;}
.x20{left:266.115000px;}
.xb{left:303.045000px;}
.x13{left:313.274987px;}
.x4{left:325.875000px;}
.x19{left:328.755000px;}
.x1d{left:336.314987px;}
.x15{left:348.194987px;}
.x1c{left:353.054987px;}
.x1b{left:359.354987px;}
.x30{left:365.114987px;}
.x1a{left:388.334987px;}
.x2f{left:389.594987px;}
.x31{left:396.614987px;}
.x14{left:446.504987px;}
.x1{left:561.164987px;}
.x7{left:566.565000px;}
.x2a{left:568.905000px;}
.xf{left:603.285000px;}
.x24{left:627.450000px;}
.x2{left:808.019987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls1d{letter-spacing:-0.565333pt;}
.ls22{letter-spacing:-0.466133pt;}
.ls16{letter-spacing:-0.320000pt;}
.ls20{letter-spacing:-0.271467pt;}
.lsf{letter-spacing:-0.206933pt;}
.ls8{letter-spacing:-0.197867pt;}
.ls19{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.189333pt;}
.ls18{letter-spacing:-0.128000pt;}
.ls21{letter-spacing:-0.117867pt;}
.ls14{letter-spacing:-0.097067pt;}
.lsb{letter-spacing:-0.043520pt;}
.lsa{letter-spacing:-0.033280pt;}
.ls7{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.008960pt;}
.ls1{letter-spacing:0.009387pt;}
.ls10{letter-spacing:0.015360pt;}
.ls6{letter-spacing:0.020480pt;}
.ls11{letter-spacing:0.028160pt;}
.lsd{letter-spacing:0.043520pt;}
.ls5{letter-spacing:0.051200pt;}
.ls4{letter-spacing:0.064000pt;}
.ls1b{letter-spacing:0.076800pt;}
.ls15{letter-spacing:0.094933pt;}
.ls1e{letter-spacing:0.173867pt;}
.ls12{letter-spacing:0.181867pt;}
.ls1a{letter-spacing:0.194560pt;}
.ls1f{letter-spacing:0.194667pt;}
.lse{letter-spacing:0.211200pt;}
.ls13{letter-spacing:0.232960pt;}
.ls0{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.268800pt;}
.ls3{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:6.118400pt;}
.ls17{letter-spacing:749.418667pt;}
.ws3{word-spacing:-22.641920pt;}
.ws4{word-spacing:-19.918080pt;}
.wsd{word-spacing:-15.662080pt;}
.ws10{word-spacing:-15.565013pt;}
.ws12{word-spacing:-15.109333pt;}
.ws8{word-spacing:-15.065600pt;}
.ws7{word-spacing:-15.057920pt;}
.ws5{word-spacing:-15.014400pt;}
.ws6{word-spacing:-14.825067pt;}
.ws11{word-spacing:-14.694400pt;}
.ws19{word-spacing:-14.556267pt;}
.ws1e{word-spacing:-14.535467pt;}
.ws1d{word-spacing:-14.438400pt;}
.ws9{word-spacing:-14.425600pt;}
.ws15{word-spacing:-14.361600pt;}
.ws18{word-spacing:-14.264533pt;}
.ws1a{word-spacing:-14.090133pt;}
.ws13{word-spacing:-13.952000pt;}
.ws1c{word-spacing:-13.895467pt;}
.ws14{word-spacing:-13.888000pt;}
.ws16{word-spacing:-13.796267pt;}
.ws2{word-spacing:-13.554560pt;}
.ws0{word-spacing:-13.545600pt;}
.ws1{word-spacing:-13.347733pt;}
.ws17{word-spacing:-13.178880pt;}
.wsf{word-spacing:-13.135467pt;}
.ws1b{word-spacing:-13.061013pt;}
.wsc{word-spacing:-12.974080pt;}
.wsb{word-spacing:-12.953600pt;}
.wsa{word-spacing:-12.430080pt;}
.wse{word-spacing:0.000000pt;}
._14{margin-left:-4.298240pt;}
._16{margin-left:-3.248853pt;}
._d{margin-left:-2.251733pt;}
._1{margin-left:-1.012907pt;}
._0{width:1.002240pt;}
._a{width:2.060800pt;}
._7{width:3.622827pt;}
._3{width:4.780800pt;}
._5{width:5.764693pt;}
._4{width:6.679467pt;}
._6{width:8.180480pt;}
._10{width:9.582720pt;}
._c{width:11.314560pt;}
._b{width:12.536320pt;}
._18{width:13.543040pt;}
._e{width:14.467627pt;}
._f{width:15.989120pt;}
._15{width:17.715200pt;}
._13{width:19.257600pt;}
._1b{width:20.313600pt;}
._17{width:21.945600pt;}
._12{width:23.070080pt;}
._11{width:24.388267pt;}
._1d{width:25.718613pt;}
._1c{width:26.978987pt;}
._8{width:28.809600pt;}
._9{width:29.989760pt;}
._19{width:31.206400pt;}
._1a{width:32.218453pt;}
._24{width:41.057280pt;}
._20{width:42.633387pt;}
._21{width:43.587840pt;}
._22{width:48.378027pt;}
._23{width:50.181547pt;}
._2{width:79.202347pt;}
._1e{width:125.255680pt;}
._26{width:198.470827pt;}
._25{width:199.975680pt;}
._1f{width:277.488640pt;}
.fs6{font-size:5.120000pt;}
.fs3{font-size:16.000000pt;}
.fs4{font-size:21.120000pt;}
.fs8{font-size:32.000000pt;}
.fse{font-size:37.120000pt;}
.fsb{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs11{font-size:56.320000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:69.120000pt;}
.fs7{font-size:74.880000pt;}
.fsf{font-size:75.008000pt;}
.fs9{font-size:85.120000pt;}
.fsc{font-size:96.000000pt;}
.fsd{font-size:96.128000pt;}
.fs10{font-size:250.880000pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:0.160000pt;}
.y11{bottom:0.960000pt;}
.y1f{bottom:1.600000pt;}
.y7{bottom:3.040000pt;}
.y94{bottom:3.200000pt;}
.y92{bottom:3.360000pt;}
.y5d{bottom:3.520000pt;}
.y5a{bottom:3.680000pt;}
.y5{bottom:5.120000pt;}
.yf{bottom:7.040000pt;}
.y5c{bottom:7.200000pt;}
.y13b{bottom:11.840000pt;}
.y138{bottom:12.000000pt;}
.y1e{bottom:12.160000pt;}
.y6{bottom:17.760000pt;}
.y53{bottom:18.400000pt;}
.y4{bottom:18.880000pt;}
.y13a{bottom:20.000000pt;}
.y13c{bottom:20.320000pt;}
.y59{bottom:20.640000pt;}
.y154{bottom:20.800000pt;}
.y37{bottom:28.800000pt;}
.ye{bottom:30.560000pt;}
.y52{bottom:33.760000pt;}
.y58{bottom:37.626667pt;}
.y36{bottom:45.920000pt;}
.y8{bottom:47.520000pt;}
.y3{bottom:48.640000pt;}
.y51{bottom:49.120000pt;}
.y35{bottom:61.600000pt;}
.y57{bottom:61.786667pt;}
.y50{bottom:64.640000pt;}
.y2{bottom:71.360000pt;}
.y34{bottom:72.640000pt;}
.y4f{bottom:80.000000pt;}
.y56{bottom:86.426667pt;}
.y33{bottom:88.000000pt;}
.y147{bottom:94.400000pt;}
.y4e{bottom:95.360000pt;}
.y55{bottom:95.706667pt;}
.yd{bottom:95.813333pt;}
.y127{bottom:100.320000pt;}
.y1b0{bottom:102.400000pt;}
.y32{bottom:103.360000pt;}
.y93{bottom:103.840000pt;}
.y16f{bottom:104.000000pt;}
.yc8{bottom:105.440000pt;}
.y54{bottom:106.560000pt;}
.y90{bottom:106.880000pt;}
.y18c{bottom:108.800000pt;}
.y4d{bottom:110.720000pt;}
.y146{bottom:110.880000pt;}
.yc{bottom:114.720000pt;}
.y126{bottom:116.960000pt;}
.y1af{bottom:118.560000pt;}
.y31{bottom:118.720000pt;}
.yc7{bottom:122.080000pt;}
.y18d{bottom:122.400000pt;}
.yf8{bottom:123.360000pt;}
.y8f{bottom:123.520000pt;}
.y18b{bottom:125.440000pt;}
.y4c{bottom:126.080000pt;}
.y145{bottom:127.520000pt;}
.y125{bottom:133.600000pt;}
.y16e{bottom:133.760000pt;}
.y30{bottom:134.400000pt;}
.yc6{bottom:138.746667pt;}
.y1ae{bottom:138.906667pt;}
.y8e{bottom:140.026667pt;}
.y4b{bottom:141.640000pt;}
.y18a{bottom:142.106667pt;}
.y144{bottom:144.186667pt;}
.yf7{bottom:148.026667pt;}
.y2f{bottom:149.800000pt;}
.y124{bottom:150.266667pt;}
.y16d{bottom:150.426667pt;}
.yc5{bottom:155.226667pt;}
.y1ad{bottom:155.386667pt;}
.y4a{bottom:157.000000pt;}
.y189{bottom:158.586667pt;}
.yf6{bottom:164.666667pt;}
.y8d{bottom:165.146667pt;}
.y2e{bottom:165.160000pt;}
.y123{bottom:166.746667pt;}
.y16c{bottom:167.066667pt;}
.y143{bottom:169.306667pt;}
.y1ac{bottom:171.546667pt;}
.y49{bottom:172.360000pt;}
.yc4{bottom:179.866667pt;}
.y2d{bottom:180.520000pt;}
.yf5{bottom:181.306667pt;}
.y122{bottom:183.386667pt;}
.y16b{bottom:183.546667pt;}
.y188{bottom:186.106667pt;}
.y48{bottom:187.720000pt;}
.y1ab{bottom:191.706667pt;}
.y8c{bottom:194.266667pt;}
.y142{bottom:195.866667pt;}
.y2c{bottom:195.880000pt;}
.yc3{bottom:196.506667pt;}
.yf4{bottom:197.786667pt;}
.y121{bottom:200.026667pt;}
.y47{bottom:203.080000pt;}
.y16a{bottom:208.186667pt;}
.y141{bottom:208.506667pt;}
.yc2{bottom:213.146667pt;}
.y20{bottom:214.586667pt;}
.y187{bottom:215.866667pt;}
.y120{bottom:216.666667pt;}
.y46{bottom:218.600000pt;}
.yf3{bottom:222.426667pt;}
.y8b{bottom:223.866667pt;}
.y169{bottom:224.826667pt;}
.y140{bottom:226.586667pt;}
.y1aa{bottom:228.346667pt;}
.yc1{bottom:229.626667pt;}
.y186{bottom:232.506667pt;}
.y45{bottom:233.960000pt;}
.yf2{bottom:239.066667pt;}
.y8a{bottom:240.506667pt;}
.y11f{bottom:241.146667pt;}
.y168{bottom:241.466667pt;}
.y13f{bottom:244.506667pt;}
.y1a9{bottom:244.826667pt;}
.yc0{bottom:246.266667pt;}
.y185{bottom:248.986667pt;}
.y44{bottom:249.320000pt;}
.y2b{bottom:253.480000pt;}
.yf1{bottom:255.706667pt;}
.y89{bottom:256.986667pt;}
.y11e{bottom:257.786667pt;}
.y167{bottom:257.946667pt;}
.y13e{bottom:262.426667pt;}
.ybf{bottom:262.906667pt;}
.y43{bottom:264.680000pt;}
.y1a8{bottom:264.986667pt;}
.y184{bottom:265.626667pt;}
.y2a{bottom:270.760000pt;}
.yf0{bottom:272.186667pt;}
.y88{bottom:273.626667pt;}
.y11d{bottom:274.426667pt;}
.y166{bottom:274.586667pt;}
.ybe{bottom:279.546667pt;}
.y42{bottom:280.040000pt;}
.y1a7{bottom:281.466667pt;}
.y183{bottom:282.266667pt;}
.y29{bottom:287.720000pt;}
.yef{bottom:288.826667pt;}
.y87{bottom:290.266667pt;}
.y11c{bottom:291.066667pt;}
.y41{bottom:295.400000pt;}
.y13d{bottom:296.986667pt;}
.y182{bottom:298.906667pt;}
.y165{bottom:299.706667pt;}
.y1a6{bottom:301.626667pt;}
.ybd{bottom:304.026667pt;}
.y28{bottom:305.000000pt;}
.yee{bottom:305.466667pt;}
.y86{bottom:306.906667pt;}
.y11b{bottom:307.546667pt;}
.y40{bottom:310.920000pt;}
.y181{bottom:315.386667pt;}
.y1a5{bottom:318.106667pt;}
.ybc{bottom:320.666667pt;}
.y27{bottom:321.800000pt;}
.yed{bottom:322.106667pt;}
.y85{bottom:323.386667pt;}
.y11a{bottom:324.186667pt;}
.y164{bottom:325.946667pt;}
.y3f{bottom:326.280000pt;}
.y139{bottom:331.546667pt;}
.ybb{bottom:337.306667pt;}
.y1a4{bottom:338.106667pt;}
.y26{bottom:339.080000pt;}
.y180{bottom:340.026667pt;}
.y119{bottom:340.826667pt;}
.y3e{bottom:341.640000pt;}
.y163{bottom:342.586667pt;}
.yec{bottom:346.586667pt;}
.y84{bottom:348.026667pt;}
.yba{bottom:353.946667pt;}
.y1a3{bottom:354.266667pt;}
.y25{bottom:356.040000pt;}
.y17f{bottom:356.706667pt;}
.y3d{bottom:357.000000pt;}
.y118{bottom:357.506667pt;}
.y162{bottom:359.266667pt;}
.yeb{bottom:363.266667pt;}
.y83{bottom:364.706667pt;}
.y137{bottom:366.146667pt;}
.yb9{bottom:370.466667pt;}
.y1a2{bottom:370.786667pt;}
.y3c{bottom:372.386667pt;}
.y24{bottom:373.346667pt;}
.y117{bottom:373.986667pt;}
.y161{bottom:375.746667pt;}
.yea{bottom:379.906667pt;}
.y82{bottom:381.346667pt;}
.yb8{bottom:387.106667pt;}
.y3b{bottom:387.906667pt;}
.y17e{bottom:389.826667pt;}
.y23{bottom:390.146667pt;}
.y116{bottom:390.626667pt;}
.y1a1{bottom:391.266667pt;}
.ye9{bottom:396.546667pt;}
.y81{bottom:397.826667pt;}
.y160{bottom:400.386667pt;}
.y3a{bottom:403.266667pt;}
.y17d{bottom:406.466667pt;}
.y115{bottom:407.266667pt;}
.y22{bottom:407.426667pt;}
.y1a0{bottom:411.746667pt;}
.yb7{bottom:411.906667pt;}
.ye8{bottom:413.026667pt;}
.y80{bottom:414.466667pt;}
.y15f{bottom:417.026667pt;}
.y39{bottom:418.626667pt;}
.y114{bottom:423.906667pt;}
.y21{bottom:428.386667pt;}
.ye7{bottom:429.666667pt;}
.y7f{bottom:431.106667pt;}
.y19f{bottom:431.906667pt;}
.y15e{bottom:433.666667pt;}
.y38{bottom:433.986667pt;}
.yb6{bottom:436.866667pt;}
.y136{bottom:437.666667pt;}
.y113{bottom:440.386667pt;}
.y7e{bottom:447.746667pt;}
.y19e{bottom:448.066667pt;}
.y15d{bottom:450.146667pt;}
.yb5{bottom:453.506667pt;}
.ye6{bottom:454.306667pt;}
.y112{bottom:457.026667pt;}
.y17c{bottom:464.226667pt;}
.y19d{bottom:464.546667pt;}
.y15c{bottom:466.786667pt;}
.yb4{bottom:470.146667pt;}
.ye5{bottom:470.946667pt;}
.y7d{bottom:472.226667pt;}
.y17b{bottom:480.866667pt;}
.y111{bottom:481.666667pt;}
.y15b{bottom:483.426667pt;}
.y19c{bottom:484.546667pt;}
.yb3{bottom:486.786667pt;}
.ye4{bottom:487.426667pt;}
.y7c{bottom:488.866667pt;}
.y17a{bottom:497.506667pt;}
.y110{bottom:498.306667pt;}
.y19b{bottom:500.706667pt;}
.ye3{bottom:504.066667pt;}
.y7b{bottom:505.506667pt;}
.y15a{bottom:508.546667pt;}
.yb2{bottom:511.266667pt;}
.y179{bottom:514.146667pt;}
.y10f{bottom:514.786667pt;}
.y19a{bottom:517.186667pt;}
.ye2{bottom:520.706667pt;}
.y7a{bottom:522.146667pt;}
.yb1{bottom:527.906667pt;}
.y10e{bottom:531.426667pt;}
.y159{bottom:532.386667pt;}
.y199{bottom:533.666667pt;}
.ye1{bottom:537.346667pt;}
.y79{bottom:538.626667pt;}
.yb0{bottom:544.546667pt;}
.y135{bottom:545.346667pt;}
.y1ca{bottom:547.586667pt;}
.y10d{bottom:548.066667pt;}
.y158{bottom:550.466667pt;}
.ye0{bottom:553.986667pt;}
.y198{bottom:554.146667pt;}
.y78{bottom:555.266667pt;}
.yaf{bottom:561.186667pt;}
.y134{bottom:561.986667pt;}
.y10c{bottom:564.706667pt;}
.y157{bottom:568.386667pt;}
.y197{bottom:570.626667pt;}
.y77{bottom:571.906667pt;}
.yae{bottom:577.693333pt;}
.ydf{bottom:578.493333pt;}
.y10b{bottom:581.213333pt;}
.y156{bottom:586.333333pt;}
.y196{bottom:586.813333pt;}
.y178{bottom:588.573333pt;}
.y1c9{bottom:588.893333pt;}
.yad{bottom:594.333333pt;}
.yde{bottom:595.133333pt;}
.y76{bottom:596.413333pt;}
.y10a{bottom:597.853333pt;}
.y155{bottom:604.413333pt;}
.y177{bottom:605.053333pt;}
.y195{bottom:606.973333pt;}
.y1c8{bottom:609.053333pt;}
.yac{bottom:610.973333pt;}
.ydd{bottom:611.773333pt;}
.y75{bottom:613.053333pt;}
.y109{bottom:614.493333pt;}
.y176{bottom:621.693333pt;}
.y153{bottom:622.333333pt;}
.y194{bottom:623.453333pt;}
.y1c7{bottom:625.533333pt;}
.yab{bottom:627.613333pt;}
.ydc{bottom:628.413333pt;}
.y74{bottom:629.693333pt;}
.y175{bottom:638.333333pt;}
.y108{bottom:638.973333pt;}
.y193{bottom:639.453333pt;}
.yf9{bottom:641.853333pt;}
.yaa{bottom:644.093333pt;}
.ydb{bottom:644.893333pt;}
.y1c6{bottom:645.693333pt;}
.y73{bottom:646.333333pt;}
.y133{bottom:652.893333pt;}
.y107{bottom:655.613333pt;}
.ya9{bottom:660.733333pt;}
.y1d{bottom:660.893333pt;}
.yda{bottom:661.533333pt;}
.y1c5{bottom:661.853333pt;}
.y174{bottom:662.813333pt;}
.y72{bottom:662.973333pt;}
.y192{bottom:666.333333pt;}
.y152{bottom:669.373333pt;}
.y132{bottom:669.533333pt;}
.y106{bottom:672.253333pt;}
.ya8{bottom:677.373333pt;}
.yd9{bottom:678.173333pt;}
.y1c4{bottom:678.333333pt;}
.y71{bottom:679.453333pt;}
.y131{bottom:686.173333pt;}
.y1c{bottom:686.973333pt;}
.y105{bottom:688.893333pt;}
.y151{bottom:693.853333pt;}
.ya7{bottom:694.013333pt;}
.y1c3{bottom:694.813333pt;}
.y70{bottom:696.093333pt;}
.y1b{bottom:699.933333pt;}
.y130{bottom:702.813333pt;}
.yd8{bottom:705.533333pt;}
.ya6{bottom:710.493333pt;}
.y6f{bottom:712.733333pt;}
.y1c2{bottom:715.133333pt;}
.y128{bottom:719.133333pt;}
.y12f{bottom:719.293333pt;}
.y191{bottom:720.733333pt;}
.y104{bottom:722.173333pt;}
.y1a{bottom:725.853333pt;}
.y150{bottom:727.133333pt;}
.y173{bottom:729.373333pt;}
.y1c1{bottom:731.293333pt;}
.yd7{bottom:735.133333pt;}
.ya5{bottom:735.613333pt;}
.y12e{bottom:735.933333pt;}
.y6e{bottom:737.213333pt;}
.y190{bottom:737.373333pt;}
.y103{bottom:738.653333pt;}
.y14f{bottom:743.773333pt;}
.y172{bottom:745.853333pt;}
.y19{bottom:750.333333pt;}
.y1c0{bottom:751.453333pt;}
.yd6{bottom:751.773333pt;}
.y12d{bottom:752.573333pt;}
.y6d{bottom:753.853333pt;}
.y102{bottom:755.293333pt;}
.y14e{bottom:760.413333pt;}
.y18{bottom:761.213333pt;}
.ya4{bottom:761.853333pt;}
.y171{bottom:762.493333pt;}
.y1bf{bottom:767.613333pt;}
.yd5{bottom:768.413333pt;}
.y6c{bottom:770.493333pt;}
.y17{bottom:772.733333pt;}
.y14d{bottom:776.893333pt;}
.y12c{bottom:777.693333pt;}
.ya3{bottom:778.493333pt;}
.y101{bottom:782.653333pt;}
.y1be{bottom:784.093333pt;}
.yd4{bottom:784.893333pt;}
.y6b{bottom:787.133333pt;}
.y14c{bottom:793.533333pt;}
.ya2{bottom:795.133333pt;}
.y16{bottom:795.453333pt;}
.yd3{bottom:801.573333pt;}
.y6a{bottom:803.813333pt;}
.y1bd{bottom:804.293333pt;}
.y12b{bottom:806.693333pt;}
.ya1{bottom:811.813333pt;}
.y100{bottom:812.293333pt;}
.y15{bottom:815.333333pt;}
.yd2{bottom:818.213333pt;}
.y69{bottom:820.293333pt;}
.y1bc{bottom:820.773333pt;}
.ya0{bottom:828.293333pt;}
.yff{bottom:828.933333pt;}
.y14b{bottom:834.853333pt;}
.y12a{bottom:836.293333pt;}
.y68{bottom:836.933333pt;}
.yd1{bottom:842.693333pt;}
.y9f{bottom:844.933333pt;}
.yfe{bottom:845.573333pt;}
.y14{bottom:846.693333pt;}
.y14a{bottom:851.333333pt;}
.y129{bottom:852.933333pt;}
.y67{bottom:853.573333pt;}
.y1bb{bottom:857.413333pt;}
.yd0{bottom:859.333333pt;}
.y18f{bottom:861.573333pt;}
.yfd{bottom:862.213333pt;}
.y149{bottom:867.973333pt;}
.y9e{bottom:869.573333pt;}
.y170{bottom:870.213333pt;}
.y1ba{bottom:873.573333pt;}
.ycf{bottom:875.973333pt;}
.y13{bottom:878.053333pt;}
.y18e{bottom:886.053333pt;}
.y9d{bottom:886.213333pt;}
.yfc{bottom:886.693333pt;}
.yce{bottom:892.613333pt;}
.y148{bottom:893.093333pt;}
.y1b9{bottom:893.733333pt;}
.y66{bottom:894.693333pt;}
.y9c{bottom:902.693333pt;}
.yfb{bottom:903.333333pt;}
.y12{bottom:904.293333pt;}
.ycd{bottom:909.253333pt;}
.y1b8{bottom:910.213333pt;}
.y65{bottom:911.333333pt;}
.y10{bottom:917.573333pt;}
.y9b{bottom:919.333333pt;}
.y9{bottom:922.213333pt;}
.yb{bottom:922.240000pt;}
.ycc{bottom:925.733333pt;}
.y1b7{bottom:926.373333pt;}
.y64{bottom:927.973333pt;}
.y9a{bottom:935.973333pt;}
.ycb{bottom:942.373333pt;}
.y1b6{bottom:942.533333pt;}
.y63{bottom:944.613333pt;}
.y99{bottom:952.613333pt;}
.y91{bottom:958.053333pt;}
.y1b5{bottom:958.693333pt;}
.yca{bottom:959.013333pt;}
.y62{bottom:961.093333pt;}
.y98{bottom:969.093333pt;}
.y61{bottom:977.733333pt;}
.y1b4{bottom:978.853333pt;}
.yc9{bottom:984.133333pt;}
.yfa{bottom:985.733333pt;}
.y97{bottom:993.733333pt;}
.y60{bottom:994.373333pt;}
.y1b3{bottom:995.013333pt;}
.y96{bottom:1010.373333pt;}
.y1b2{bottom:1011.173333pt;}
.y5f{bottom:1021.760000pt;}
.y95{bottom:1027.040000pt;}
.y1b1{bottom:1027.680000pt;}
.y5e{bottom:1040.480000pt;}
.y5b{bottom:1055.840000pt;}
.y1{bottom:1060.160000pt;}
.h1b{height:3.650000pt;}
.h9{height:3.840000pt;}
.h10{height:4.640000pt;}
.h11{height:11.406250pt;}
.h7{height:15.840000pt;}
.h5{height:15.914062pt;}
.h34{height:17.280000pt;}
.h37{height:17.312000pt;}
.h36{height:17.440000pt;}
.h27{height:19.520000pt;}
.h4{height:22.560000pt;}
.h17{height:22.828125pt;}
.hd{height:24.000000pt;}
.h1c{height:25.760000pt;}
.h18{height:26.462500pt;}
.h23{height:27.093750pt;}
.h12{height:30.568750pt;}
.h33{height:33.920000pt;}
.h32{height:33.952000pt;}
.h31{height:34.560000pt;}
.h35{height:34.720000pt;}
.h21{height:37.868750pt;}
.h22{height:37.894687pt;}
.h28{height:38.642500pt;}
.h15{height:39.840000pt;}
.h3a{height:40.177500pt;}
.h1f{height:41.975000pt;}
.h20{height:42.003750pt;}
.h1d{height:44.160000pt;}
.h6{height:45.656250pt;}
.h3{height:47.742188pt;}
.h8{height:48.000000pt;}
.h19{height:48.531250pt;}
.h25{height:49.622500pt;}
.h2f{height:49.760000pt;}
.h2e{height:49.792000pt;}
.h24{height:49.852500pt;}
.h2c{height:49.920000pt;}
.h39{height:53.381250pt;}
.h29{height:53.472500pt;}
.h2b{height:54.187500pt;}
.he{height:56.160000pt;}
.h1a{height:58.563750pt;}
.h16{height:60.320000pt;}
.h2a{height:63.399375pt;}
.h30{height:63.507750pt;}
.hf{height:63.840000pt;}
.h2{height:65.531250pt;}
.h13{height:68.437500pt;}
.hb{height:76.671562pt;}
.h38{height:76.964840pt;}
.h14{height:98.296875pt;}
.h26{height:108.032000pt;}
.hc{height:124.800000pt;}
.ha{height:124.832000pt;}
.h2d{height:188.160000pt;}
.h1e{height:446.306667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:38.400000pt;}
.w5{width:104.000000pt;}
.w9{width:132.480000pt;}
.wf{width:160.160000pt;}
.w11{width:160.506667pt;}
.we{width:160.986667pt;}
.w10{width:161.026667pt;}
.w8{width:182.146667pt;}
.w14{width:212.546667pt;}
.w13{width:212.666667pt;}
.w4{width:213.946667pt;}
.w3{width:214.106667pt;}
.w12{width:217.466667pt;}
.wb{width:320.986667pt;}
.wc{width:321.026667pt;}
.wa{width:514.053333pt;}
.w6{width:538.720000pt;}
.w7{width:538.853333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:7.200000pt;}
.x21{left:9.920000pt;}
.x25{left:12.000000pt;}
.x2d{left:19.360000pt;}
.x26{left:33.920000pt;}
.x28{left:44.000000pt;}
.xe{left:54.880000pt;}
.x1f{left:55.840000pt;}
.x2b{left:60.680000pt;}
.x29{left:61.760000pt;}
.x23{left:63.386667pt;}
.x22{left:70.080000pt;}
.x3{left:75.552000pt;}
.x11{left:78.911988pt;}
.x16{left:84.991988pt;}
.x2c{left:89.760000pt;}
.x10{left:90.920000pt;}
.x2e{left:91.840000pt;}
.x33{left:98.720000pt;}
.x6{left:102.880000pt;}
.x12{left:104.511988pt;}
.x5{left:106.880000pt;}
.x32{left:113.311988pt;}
.x9{left:114.394667pt;}
.x27{left:153.466655pt;}
.xd{left:156.200000pt;}
.xa{left:179.520000pt;}
.xc{left:200.386667pt;}
.x18{left:208.026667pt;}
.x1e{left:218.746655pt;}
.x8{left:222.946667pt;}
.x20{left:236.546667pt;}
.xb{left:269.373333pt;}
.x13{left:278.466655pt;}
.x4{left:289.666667pt;}
.x19{left:292.226667pt;}
.x1d{left:298.946655pt;}
.x15{left:309.506655pt;}
.x1c{left:313.826655pt;}
.x1b{left:319.426655pt;}
.x30{left:324.546655pt;}
.x1a{left:345.186655pt;}
.x2f{left:346.306655pt;}
.x31{left:352.546655pt;}
.x14{left:396.893322pt;}
.x1{left:498.813322pt;}
.x7{left:503.613333pt;}
.x2a{left:505.693333pt;}
.xf{left:536.253333pt;}
.x24{left:557.733333pt;}
.x2{left:718.239988pt;}
}




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