
    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_ea235795d48a7002a455956b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.132000;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_cb7fed6812052520f65a94f5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.132000;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_8f49c75ac10c9fdd12b0e4ba.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.748000;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_f8793e0ebac56d005c459cf5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.927000;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_152877b653cd31c2a1902619.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093750;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_35c3fa2ce583ba14df0951cf.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.095703;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_47942efe9ea3d1c6452484fb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.093262;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_8435cb8111305c666ef29b6f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104004;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_bf88ce3f945e32c2e0878445.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_cea7ea491d8d77337f431580.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.911133;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_96a61595869d2c792c33a509.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.909180;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_76b973977ea702b5f5ec0731.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v4{vertical-align:-21.978000px;}
.v2{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:4.160400px;}
.v1{vertical-align:19.980000px;}
.v3{vertical-align:44.317800px;}
.lsb{letter-spacing:-2.220000px;}
.ls12{letter-spacing:-1.020000px;}
.ls15{letter-spacing:-0.600000px;}
.ls16{letter-spacing:-0.349800px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.000600px;}
.ls3{letter-spacing:0.660000px;}
.ls13{letter-spacing:1.392600px;}
.ls11{letter-spacing:1.797600px;}
.lsf{letter-spacing:2.268600px;}
.lsd{letter-spacing:2.524800px;}
.ls10{letter-spacing:2.577000px;}
.lse{letter-spacing:2.827800px;}
.ls5{letter-spacing:4.527000px;}
.ls0{letter-spacing:5.320800px;}
.ls4{letter-spacing:7.124400px;}
.ls14{letter-spacing:7.301400px;}
.lsa{letter-spacing:10.546800px;}
.ls1{letter-spacing:78.043200px;}
.ls8{letter-spacing:194.550000px;}
.ls6{letter-spacing:211.650000px;}
.ls7{letter-spacing:211.800000px;}
.lsc{letter-spacing:655.179600px;}
.sc_{text-shadow:none;}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws42{word-spacing:-37.620000px;}
.ws2d{word-spacing:-34.200000px;}
.wsd{word-spacing:-17.160000px;}
.ws7{word-spacing:-16.500000px;}
.ws1a{word-spacing:-15.000000px;}
.ws2{word-spacing:-13.500000px;}
.ws2c{word-spacing:-12.780000px;}
.ws3{word-spacing:-12.000000px;}
.ws16{word-spacing:-9.619500px;}
.ws1{word-spacing:-8.745000px;}
.ws4f{word-spacing:-8.395200px;}
.ws3a{word-spacing:-5.220000px;}
.wsc{word-spacing:-3.696000px;}
.ws5b{word-spacing:-2.820000px;}
.ws59{word-spacing:-2.760000px;}
.ws9{word-spacing:-2.442000px;}
.ws18{word-spacing:-2.310000px;}
.ws8{word-spacing:-1.980000px;}
.ws54{word-spacing:-1.800000px;}
.ws43{word-spacing:-1.560000px;}
.ws56{word-spacing:-1.380000px;}
.ws57{word-spacing:-1.260000px;}
.ws38{word-spacing:-1.020000px;}
.ws3c{word-spacing:-0.990000px;}
.wse{word-spacing:-0.660000px;}
.ws51{word-spacing:-0.600000px;}
.ws60{word-spacing:-0.540000px;}
.ws46{word-spacing:-0.480000px;}
.ws4a{word-spacing:-0.240000px;}
.ws36{word-spacing:-0.180000px;}
.ws53{word-spacing:-0.120000px;}
.ws3e{word-spacing:-0.066000px;}
.ws0{word-spacing:-0.042000px;}
.ws4{word-spacing:0.000000px;}
.ws32{word-spacing:0.240000px;}
.ws63{word-spacing:0.300000px;}
.ws55{word-spacing:0.600000px;}
.ws39{word-spacing:1.020000px;}
.ws45{word-spacing:1.320000px;}
.ws5d{word-spacing:1.380000px;}
.wsb{word-spacing:1.386000px;}
.ws4c{word-spacing:1.500000px;}
.ws5c{word-spacing:1.740000px;}
.ws37{word-spacing:1.800000px;}
.ws52{word-spacing:1.860000px;}
.ws3d{word-spacing:2.112000px;}
.wsa{word-spacing:2.178000px;}
.ws17{word-spacing:2.220000px;}
.ws33{word-spacing:2.280000px;}
.ws2f{word-spacing:2.520000px;}
.ws35{word-spacing:2.580000px;}
.ws30{word-spacing:2.820000px;}
.ws6{word-spacing:3.300000px;}
.ws31{word-spacing:3.660000px;}
.ws3f{word-spacing:3.696000px;}
.ws58{word-spacing:3.780000px;}
.ws3b{word-spacing:3.840000px;}
.ws41{word-spacing:3.894000px;}
.wsf{word-spacing:4.488000px;}
.ws5a{word-spacing:4.500000px;}
.ws5f{word-spacing:4.860000px;}
.ws20{word-spacing:5.544000px;}
.ws5{word-spacing:6.264000px;}
.ws34{word-spacing:6.360000px;}
.ws44{word-spacing:6.900000px;}
.ws2e{word-spacing:7.020000px;}
.ws4b{word-spacing:7.740000px;}
.ws4e{word-spacing:7.860000px;}
.ws19{word-spacing:8.118000px;}
.ws50{word-spacing:8.580000px;}
.ws40{word-spacing:9.108000px;}
.ws4d{word-spacing:9.120000px;}
.ws47{word-spacing:11.820000px;}
.ws62{word-spacing:12.240000px;}
.ws48{word-spacing:15.360000px;}
.ws61{word-spacing:15.600000px;}
.ws5e{word-spacing:19.500000px;}
.ws49{word-spacing:35.880000px;}
.ws11{word-spacing:104.050200px;}
.ws15{word-spacing:118.829400px;}
.ws13{word-spacing:123.297600px;}
.ws28{word-spacing:139.299600px;}
.ws12{word-spacing:175.140000px;}
.ws1e{word-spacing:177.817200px;}
.ws14{word-spacing:196.800000px;}
.ws10{word-spacing:259.097400px;}
.ws1b{word-spacing:270.120600px;}
.ws21{word-spacing:294.916200px;}
.ws26{word-spacing:357.969600px;}
.ws1d{word-spacing:373.560000px;}
.ws29{word-spacing:405.780000px;}
.ws2b{word-spacing:409.080000px;}
.ws1c{word-spacing:450.240000px;}
.ws24{word-spacing:480.617400px;}
.ws22{word-spacing:507.796800px;}
.ws2a{word-spacing:564.300000px;}
.ws27{word-spacing:597.449400px;}
.ws23{word-spacing:597.450000px;}
.ws1f{word-spacing:601.200000px;}
.ws25{word-spacing:612.450000px;}
._17{margin-left:-2891.338800px;}
._37{margin-left:-1162.404000px;}
._f{margin-left:-1142.388000px;}
._11{margin-left:-260.208000px;}
._3a{margin-left:-10.547400px;}
._0{margin-left:-8.634600px;}
._29{margin-left:-7.536000px;}
._a{margin-left:-6.453000px;}
._b{margin-left:-4.720200px;}
._6{margin-left:-3.623400px;}
._1{margin-left:-2.385600px;}
._8{margin-left:-1.008000px;}
._4{width:1.117800px;}
._5{width:2.224800px;}
._7{width:3.628200px;}
._3{width:5.275800px;}
._9{width:6.890400px;}
._2{width:8.742000px;}
._c{width:9.748200px;}
._d{width:10.759200px;}
._19{width:11.899200px;}
._14{width:13.841400px;}
._1b{width:15.206400px;}
._39{width:16.482000px;}
._13{width:17.582400px;}
._3c{width:18.720600px;}
._1c{width:20.189400px;}
._1a{width:21.634800px;}
._33{width:27.060000px;}
._34{width:29.441400px;}
._3b{width:35.850000px;}
._18{width:42.060000px;}
._1d{width:45.439200px;}
._15{width:57.060000px;}
._e{width:64.051200px;}
._32{width:68.580000px;}
._35{width:107.760000px;}
._31{width:125.265000px;}
._16{width:127.020000px;}
._21{width:145.519800px;}
._1f{width:155.629800px;}
._20{width:158.050200px;}
._28{width:167.913000px;}
._22{width:172.740600px;}
._24{width:175.290000px;}
._30{width:193.260000px;}
._27{width:194.400000px;}
._26{width:196.950000px;}
._23{width:207.390000px;}
._25{width:229.050000px;}
._1e{width:337.677000px;}
._2a{width:416.537400px;}
._2d{width:467.824800px;}
._2f{width:531.000000px;}
._2c{width:586.200000px;}
._2e{width:609.300000px;}
._2b{width:616.200000px;}
._36{width:1635.972600px;}
._12{width:1659.324600px;}
._38{width:2061.249600px;}
._10{width:2081.265600px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:27.984000px;}
.fs5{font-size:34.980000px;}
.fs9{font-size:36.000000px;}
.fsa{font-size:38.478000px;}
.fs0{font-size:42.000000px;}
.fs2{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.y2f{bottom:-25.015800px;}
.y0{bottom:0.000000px;}
.y1{bottom:64.396800px;}
.yfc{bottom:72.355950px;}
.y8c{bottom:74.841900px;}
.yd8{bottom:75.711150px;}
.y121{bottom:77.837250px;}
.y96{bottom:79.339050px;}
.ybf{bottom:82.552500px;}
.y69{bottom:83.839050px;}
.y1bc{bottom:84.106350px;}
.y2e{bottom:84.393750px;}
.y1f9{bottom:84.864450px;}
.y15b{bottom:84.879150px;}
.yfb{bottom:90.355950px;}
.y8b{bottom:92.841900px;}
.yd7{bottom:93.711150px;}
.y120{bottom:95.837250px;}
.y95{bottom:97.339050px;}
.y2d{bottom:99.393750px;}
.ybe{bottom:100.552500px;}
.y68{bottom:101.839050px;}
.y1bb{bottom:102.106350px;}
.y1f8{bottom:102.864450px;}
.y15a{bottom:102.879150px;}
.y180{bottom:106.344750px;}
.yfa{bottom:108.355950px;}
.y8a{bottom:110.841900px;}
.yd6{bottom:111.711150px;}
.y11f{bottom:113.837250px;}
.y2c{bottom:114.393750px;}
.y94{bottom:115.339050px;}
.ybd{bottom:118.552500px;}
.y67{bottom:119.839050px;}
.y1ba{bottom:120.106350px;}
.y1f7{bottom:120.864450px;}
.y159{bottom:120.879150px;}
.y17f{bottom:124.344750px;}
.yf9{bottom:126.355950px;}
.y89{bottom:128.841900px;}
.y2b{bottom:129.393900px;}
.yd5{bottom:129.711150px;}
.y11e{bottom:131.837250px;}
.y93{bottom:133.339050px;}
.ybc{bottom:136.552500px;}
.y66{bottom:137.839050px;}
.y1b9{bottom:138.106350px;}
.y1f6{bottom:138.864450px;}
.y158{bottom:138.879150px;}
.y17e{bottom:142.344750px;}
.yf8{bottom:144.355950px;}
.y2a{bottom:144.393900px;}
.y88{bottom:146.841900px;}
.yd4{bottom:147.711150px;}
.y11d{bottom:149.837250px;}
.y92{bottom:151.339050px;}
.ybb{bottom:154.552500px;}
.y65{bottom:155.839050px;}
.y1b8{bottom:156.106350px;}
.y1f5{bottom:156.864450px;}
.y157{bottom:156.879150px;}
.y29{bottom:159.393900px;}
.y17d{bottom:160.344750px;}
.yf7{bottom:162.355950px;}
.y87{bottom:164.841900px;}
.y11c{bottom:167.837250px;}
.y91{bottom:169.339050px;}
.yba{bottom:172.552500px;}
.y64{bottom:173.839050px;}
.y1b7{bottom:174.106350px;}
.y1f4{bottom:174.864450px;}
.y156{bottom:174.879150px;}
.y17c{bottom:178.344750px;}
.yf6{bottom:180.355950px;}
.y86{bottom:182.841900px;}
.y11b{bottom:185.837250px;}
.y90{bottom:187.339050px;}
.yb9{bottom:190.552500px;}
.y1b6{bottom:192.106350px;}
.y1f3{bottom:192.864450px;}
.y155{bottom:192.879150px;}
.yd3{bottom:195.711150px;}
.yf5{bottom:198.355950px;}
.y85{bottom:200.841900px;}
.y28{bottom:203.050800px;}
.y11a{bottom:203.837250px;}
.y8f{bottom:205.339050px;}
.yb8{bottom:208.552500px;}
.y63{bottom:209.839050px;}
.y1b5{bottom:210.106350px;}
.y1f2{bottom:210.864450px;}
.y154{bottom:210.879150px;}
.y17b{bottom:214.343400px;}
.yf4{bottom:216.355950px;}
.y84{bottom:218.841900px;}
.yd2{bottom:220.086150px;}
.y27{bottom:221.050800px;}
.y119{bottom:221.837250px;}
.y8e{bottom:223.339050px;}
.yb7{bottom:226.552500px;}
.y62{bottom:227.839050px;}
.y1b4{bottom:228.106350px;}
.y1f1{bottom:228.864450px;}
.y153{bottom:228.879150px;}
.yf3{bottom:234.355950px;}
.y83{bottom:236.841900px;}
.y26{bottom:239.050800px;}
.y118{bottom:239.837250px;}
.yd1{bottom:242.501250px;}
.yb6{bottom:244.552500px;}
.y1b3{bottom:246.106350px;}
.y1f0{bottom:246.864450px;}
.y152{bottom:246.879150px;}
.yf2{bottom:252.355950px;}
.y82{bottom:254.841900px;}
.y25{bottom:257.050800px;}
.y117{bottom:257.837250px;}
.y8d{bottom:259.337700px;}
.yb5{bottom:262.552500px;}
.y61{bottom:263.839050px;}
.y1b2{bottom:264.106350px;}
.y1ef{bottom:264.864450px;}
.y151{bottom:264.879150px;}
.yd0{bottom:264.901650px;}
.yf1{bottom:270.355950px;}
.y81{bottom:272.841900px;}
.y24{bottom:275.050800px;}
.y116{bottom:275.837250px;}
.yb4{bottom:280.552500px;}
.y60{bottom:281.839050px;}
.y1b1{bottom:282.106350px;}
.y1ee{bottom:282.864450px;}
.y150{bottom:282.879150px;}
.ycf{bottom:287.543700px;}
.yf0{bottom:288.355950px;}
.y80{bottom:290.841900px;}
.y23{bottom:293.050800px;}
.y115{bottom:293.837250px;}
.yb3{bottom:298.552500px;}
.y5f{bottom:299.839050px;}
.y1b0{bottom:300.106350px;}
.y1ed{bottom:300.864450px;}
.y14f{bottom:300.879150px;}
.yef{bottom:306.355950px;}
.y7f{bottom:308.841900px;}
.y22{bottom:311.050800px;}
.y114{bottom:311.837250px;}
.yb2{bottom:316.552500px;}
.y5e{bottom:317.839050px;}
.y1af{bottom:318.106350px;}
.y1ec{bottom:318.864450px;}
.y14e{bottom:318.879150px;}
.yee{bottom:324.355950px;}
.yce{bottom:325.337250px;}
.y7e{bottom:326.841900px;}
.y21{bottom:329.050800px;}
.y113{bottom:329.837250px;}
.yb1{bottom:334.552500px;}
.y5d{bottom:335.839050px;}
.y1ae{bottom:336.106350px;}
.y1eb{bottom:336.864450px;}
.y14d{bottom:336.879150px;}
.ycd{bottom:343.337250px;}
.y17a{bottom:344.841900px;}
.y20{bottom:347.050800px;}
.y112{bottom:347.837250px;}
.yb0{bottom:352.552500px;}
.y5c{bottom:353.839050px;}
.y1ad{bottom:354.106350px;}
.y1ea{bottom:354.864450px;}
.y14c{bottom:354.879150px;}
.ycc{bottom:361.337250px;}
.y7d{bottom:362.840550px;}
.y179{bottom:362.841900px;}
.y111{bottom:365.837250px;}
.yaf{bottom:370.552500px;}
.y5b{bottom:371.839050px;}
.y1ac{bottom:372.106350px;}
.yed{bottom:372.355950px;}
.y1e9{bottom:372.864450px;}
.y14b{bottom:372.879150px;}
.ycb{bottom:379.337250px;}
.y1f{bottom:383.049300px;}
.y110{bottom:383.837250px;}
.yae{bottom:388.552500px;}
.y5a{bottom:389.839050px;}
.y1ab{bottom:390.106350px;}
.y1e8{bottom:390.864450px;}
.y14a{bottom:390.879150px;}
.yec{bottom:396.730950px;}
.yca{bottom:397.337250px;}
.y178{bottom:398.840550px;}
.y10f{bottom:401.837250px;}
.yad{bottom:406.552500px;}
.y59{bottom:407.839050px;}
.y1aa{bottom:408.106350px;}
.y1e7{bottom:408.864450px;}
.y149{bottom:408.879150px;}
.yc9{bottom:415.337250px;}
.yeb{bottom:419.145900px;}
.y10e{bottom:419.837250px;}
.y7c{bottom:421.341900px;}
.y1e{bottom:423.547950px;}
.yac{bottom:424.552500px;}
.y58{bottom:425.839050px;}
.y1a9{bottom:426.106350px;}
.y1e6{bottom:426.864450px;}
.y148{bottom:426.879150px;}
.yc8{bottom:433.337250px;}
.y10d{bottom:437.837250px;}
.y177{bottom:439.339050px;}
.y7b{bottom:439.341900px;}
.yea{bottom:441.546300px;}
.yab{bottom:442.552500px;}
.y57{bottom:443.839050px;}
.y1a8{bottom:444.106350px;}
.y1e5{bottom:444.864450px;}
.y147{bottom:444.879150px;}
.yc7{bottom:451.337250px;}
.y10c{bottom:455.837250px;}
.y176{bottom:457.339050px;}
.y7a{bottom:457.341900px;}
.yaa{bottom:460.552500px;}
.y56{bottom:461.839050px;}
.y1a7{bottom:462.106350px;}
.y1e4{bottom:462.864450px;}
.y146{bottom:462.879150px;}
.ye9{bottom:463.705050px;}
.y10b{bottom:473.837250px;}
.y175{bottom:475.339050px;}
.y79{bottom:475.341900px;}
.ya9{bottom:478.552500px;}
.y55{bottom:479.839050px;}
.y1a6{bottom:480.106350px;}
.y1e3{bottom:480.864450px;}
.y145{bottom:480.879150px;}
.ye8{bottom:486.105450px;}
.y10a{bottom:491.837250px;}
.y174{bottom:493.339050px;}
.y78{bottom:493.341900px;}
.ya8{bottom:496.552500px;}
.y54{bottom:497.839050px;}
.y1a5{bottom:498.106350px;}
.y1e2{bottom:498.864450px;}
.y144{bottom:498.879150px;}
.yc6{bottom:499.337250px;}
.y109{bottom:509.837250px;}
.ye7{bottom:509.876550px;}
.y173{bottom:511.339050px;}
.y77{bottom:511.341900px;}
.y1d{bottom:512.051250px;}
.ya7{bottom:514.552500px;}
.y53{bottom:515.839050px;}
.y1a4{bottom:516.106350px;}
.y1e1{bottom:516.864450px;}
.y143{bottom:516.879150px;}
.y1c{bottom:527.051250px;}
.y108{bottom:527.837250px;}
.y172{bottom:529.339050px;}
.y76{bottom:529.341900px;}
.ya6{bottom:532.552500px;}
.y52{bottom:533.839050px;}
.y1a3{bottom:534.106350px;}
.y1e0{bottom:534.864450px;}
.y142{bottom:534.879150px;}
.ye6{bottom:536.313900px;}
.y107{bottom:545.837250px;}
.y171{bottom:547.339050px;}
.y75{bottom:547.341900px;}
.ya5{bottom:550.552500px;}
.y51{bottom:551.839050px;}
.y1a2{bottom:552.106350px;}
.y1df{bottom:552.864450px;}
.y141{bottom:552.879150px;}
.y1b{bottom:557.052150px;}
.y170{bottom:565.339050px;}
.y74{bottom:565.341900px;}
.ya4{bottom:568.552500px;}
.y50{bottom:569.839050px;}
.y1a1{bottom:570.106350px;}
.y1de{bottom:570.864450px;}
.y140{bottom:570.879150px;}
.y1a{bottom:572.052150px;}
.ye5{bottom:577.015650px;}
.y106{bottom:581.837250px;}
.y16f{bottom:583.339050px;}
.y73{bottom:583.341900px;}
.ya3{bottom:586.552500px;}
.y4f{bottom:587.839050px;}
.y1a0{bottom:588.106350px;}
.y1dd{bottom:588.864450px;}
.y13f{bottom:588.879150px;}
.ye4{bottom:595.015650px;}
.y105{bottom:599.837250px;}
.y16e{bottom:601.339050px;}
.y72{bottom:601.341900px;}
.ya2{bottom:604.552500px;}
.y4e{bottom:605.839050px;}
.y19f{bottom:606.106350px;}
.y1dc{bottom:606.864450px;}
.y13e{bottom:606.879150px;}
.ye3{bottom:613.015650px;}
.y19{bottom:617.052150px;}
.y104{bottom:617.837250px;}
.y16d{bottom:619.339050px;}
.y71{bottom:619.341900px;}
.ya1{bottom:622.552500px;}
.y4d{bottom:623.839050px;}
.y19e{bottom:624.106350px;}
.y1db{bottom:624.864450px;}
.y13d{bottom:624.879150px;}
.ye2{bottom:631.015650px;}
.y18{bottom:632.052150px;}
.y103{bottom:635.837250px;}
.y16c{bottom:637.339050px;}
.y70{bottom:637.341900px;}
.ya0{bottom:640.552500px;}
.y4c{bottom:641.839050px;}
.y19d{bottom:642.106350px;}
.y1da{bottom:642.864450px;}
.y13c{bottom:642.879150px;}
.y17{bottom:647.052150px;}
.ye1{bottom:649.015650px;}
.y102{bottom:653.837250px;}
.y16b{bottom:655.339050px;}
.y6f{bottom:655.341900px;}
.y9f{bottom:658.552500px;}
.y4b{bottom:659.839050px;}
.y19c{bottom:660.106350px;}
.y1d9{bottom:660.864450px;}
.y13b{bottom:660.879150px;}
.y16{bottom:662.052150px;}
.ye0{bottom:667.015650px;}
.y101{bottom:671.837250px;}
.y16a{bottom:673.339050px;}
.y6e{bottom:673.341900px;}
.y9e{bottom:676.552500px;}
.y15{bottom:677.052150px;}
.y4a{bottom:677.839050px;}
.y19b{bottom:678.106350px;}
.y1d8{bottom:678.864450px;}
.y13a{bottom:678.879150px;}
.ydf{bottom:685.015650px;}
.y100{bottom:689.837250px;}
.y169{bottom:691.339050px;}
.y6d{bottom:691.341900px;}
.y14{bottom:692.052150px;}
.y9d{bottom:694.552500px;}
.y49{bottom:695.839050px;}
.y19a{bottom:696.106350px;}
.y1d7{bottom:696.864450px;}
.y139{bottom:696.879150px;}
.y13{bottom:707.052150px;}
.yff{bottom:707.837250px;}
.y168{bottom:709.339050px;}
.y48{bottom:713.839050px;}
.y199{bottom:714.106350px;}
.y1d6{bottom:714.864450px;}
.y138{bottom:714.879150px;}
.yfe{bottom:725.837250px;}
.y167{bottom:727.339050px;}
.y6c{bottom:727.340550px;}
.y47{bottom:731.839050px;}
.y198{bottom:732.106350px;}
.y1d5{bottom:732.864450px;}
.y137{bottom:732.879150px;}
.yde{bottom:733.015650px;}
.y12{bottom:737.053200px;}
.y9c{bottom:742.552500px;}
.y166{bottom:745.339050px;}
.y46{bottom:749.839050px;}
.y197{bottom:750.106500px;}
.y1d4{bottom:750.864450px;}
.y136{bottom:750.879150px;}
.y165{bottom:763.339050px;}
.y9b{bottom:767.048250px;}
.y45{bottom:767.839050px;}
.y196{bottom:768.106500px;}
.y1d3{bottom:768.864450px;}
.yfd{bottom:773.837250px;}
.y164{bottom:781.339050px;}
.y44{bottom:785.839050px;}
.y195{bottom:786.106500px;}
.y1d2{bottom:786.864450px;}
.y135{bottom:786.879150px;}
.y11{bottom:788.053200px;}
.y9a{bottom:789.448650px;}
.y163{bottom:799.339050px;}
.y10{bottom:803.053200px;}
.y6b{bottom:803.839050px;}
.y194{bottom:804.106500px;}
.y1d1{bottom:804.864450px;}
.y134{bottom:804.879150px;}
.y99{bottom:811.728150px;}
.y162{bottom:817.339050px;}
.yf{bottom:818.053200px;}
.y43{bottom:821.839050px;}
.y193{bottom:822.106500px;}
.y1d0{bottom:822.864450px;}
.y133{bottom:822.879150px;}
.ye{bottom:833.053200px;}
.y98{bottom:833.886900px;}
.yc5{bottom:835.339050px;}
.y42{bottom:839.839050px;}
.y192{bottom:840.106500px;}
.y1cf{bottom:840.864450px;}
.y132{bottom:840.879150px;}
.y97{bottom:844.966200px;}
.yd{bottom:848.053200px;}
.yc4{bottom:853.339050px;}
.y41{bottom:857.839050px;}
.y191{bottom:858.106500px;}
.y1ce{bottom:858.864450px;}
.y131{bottom:858.879150px;}
.yc{bottom:863.053200px;}
.yc3{bottom:871.339050px;}
.y40{bottom:875.839050px;}
.y190{bottom:876.106500px;}
.y1cd{bottom:876.864450px;}
.y130{bottom:876.879150px;}
.yb{bottom:878.053200px;}
.yc2{bottom:889.339050px;}
.ya{bottom:893.053200px;}
.y6a{bottom:893.839050px;}
.y18f{bottom:894.106500px;}
.y1cc{bottom:894.864450px;}
.y12f{bottom:894.879150px;}
.yc1{bottom:907.339050px;}
.y9{bottom:908.053200px;}
.y3f{bottom:911.839050px;}
.y18e{bottom:912.106500px;}
.y1cb{bottom:912.864450px;}
.y12e{bottom:912.879150px;}
.y161{bottom:925.339050px;}
.y3e{bottom:929.839050px;}
.y18d{bottom:930.106500px;}
.y1ca{bottom:930.864450px;}
.y12d{bottom:930.879150px;}
.y8{bottom:938.054100px;}
.yc0{bottom:943.337700px;}
.y160{bottom:943.339050px;}
.y3d{bottom:947.839050px;}
.y18c{bottom:948.106500px;}
.y1c9{bottom:948.864450px;}
.y15f{bottom:961.339050px;}
.y3c{bottom:965.839050px;}
.y18b{bottom:966.106500px;}
.y1c8{bottom:966.864450px;}
.y12c{bottom:966.879150px;}
.y15e{bottom:979.339050px;}
.y3b{bottom:983.839050px;}
.y7{bottom:983.924100px;}
.y18a{bottom:984.106500px;}
.y1c7{bottom:984.864450px;}
.y12b{bottom:984.879150px;}
.y15d{bottom:997.339050px;}
.y3a{bottom:1001.839050px;}
.y189{bottom:1002.106500px;}
.y1c6{bottom:1002.864450px;}
.y12a{bottom:1002.879150px;}
.y39{bottom:1019.839050px;}
.y188{bottom:1020.106500px;}
.y1c5{bottom:1020.864450px;}
.y129{bottom:1020.879150px;}
.y6{bottom:1021.425000px;}
.y15c{bottom:1033.337700px;}
.y38{bottom:1037.839050px;}
.y187{bottom:1038.106500px;}
.y1c4{bottom:1038.864450px;}
.y128{bottom:1038.879150px;}
.y37{bottom:1055.839050px;}
.y186{bottom:1056.106500px;}
.y1c3{bottom:1056.864450px;}
.y127{bottom:1056.879150px;}
.ydd{bottom:1063.017600px;}
.y5{bottom:1063.437150px;}
.y36{bottom:1073.839050px;}
.y185{bottom:1074.106500px;}
.y1c2{bottom:1074.864450px;}
.y126{bottom:1074.879150px;}
.ydc{bottom:1087.392600px;}
.y35{bottom:1091.839050px;}
.y184{bottom:1092.106500px;}
.y1c1{bottom:1092.864450px;}
.y4{bottom:1099.696950px;}
.y34{bottom:1109.839050px;}
.y183{bottom:1110.106500px;}
.ydb{bottom:1110.849150px;}
.y1c0{bottom:1110.864450px;}
.y125{bottom:1110.879150px;}
.y3{bottom:1114.096950px;}
.y33{bottom:1127.839050px;}
.y182{bottom:1128.106350px;}
.y1bf{bottom:1128.864450px;}
.y124{bottom:1128.879150px;}
.yda{bottom:1134.289500px;}
.y32{bottom:1145.839050px;}
.y1be{bottom:1146.864450px;}
.y123{bottom:1146.879150px;}
.yd9{bottom:1157.730000px;}
.y2{bottom:1161.964050px;}
.y31{bottom:1163.839050px;}
.y181{bottom:1164.105000px;}
.y1bd{bottom:1164.864450px;}
.y122{bottom:1164.879150px;}
.y30{bottom:1203.807600px;}
.hf{height:26.133187px;}
.h10{height:26.525391px;}
.h7{height:36.852539px;}
.h2{height:38.724000px;}
.h12{height:41.601562px;}
.h4{height:44.256000px;}
.h14{height:45.761719px;}
.ha{height:47.381836px;}
.h9{height:47.513672px;}
.h8{height:47.961914px;}
.h3{height:52.632000px;}
.h6{height:52.646484px;}
.h15{height:52.792969px;}
.h13{height:53.291016px;}
.hd{height:57.911133px;}
.he{height:58.072266px;}
.hc{height:58.620117px;}
.hb{height:63.351562px;}
.h5{height:68.630859px;}
.h11{height:97.608816px;}
.h1{height:1257.750000px;}
.h0{height:1257.803700px;}
.w0{width:887.882700px;}
.w1{width:888.000000px;}
.x0{left:0.000000px;}
.x5{left:12.484200px;}
.x3{left:82.523550px;}
.x4{left:91.027500px;}
.x6{left:103.783350px;}
.x10{left:109.890600px;}
.x7{left:146.303100px;}
.x19{left:166.927950px;}
.xf{left:172.328400px;}
.xc{left:177.136200px;}
.xb{left:178.524150px;}
.x1a{left:181.807050px;}
.xa{left:183.394650px;}
.x8{left:185.020650px;}
.xe{left:191.317650px;}
.x14{left:195.428250px;}
.x11{left:208.117350px;}
.x15{left:220.673100px;}
.x13{left:222.345450px;}
.x12{left:232.887600px;}
.x18{left:240.108000px;}
.x9{left:253.122450px;}
.xd{left:281.178600px;}
.x16{left:329.191050px;}
.x17{left:401.993400px;}
.x2{left:713.609700px;}
.x1b{left:793.682250px;}
.x1{left:799.520250px;}
@media print{
.v4{vertical-align:-19.536000pt;}
.v2{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:3.698133pt;}
.v1{vertical-align:17.760000pt;}
.v3{vertical-align:39.393600pt;}
.lsb{letter-spacing:-1.973333pt;}
.ls12{letter-spacing:-0.906667pt;}
.ls15{letter-spacing:-0.533333pt;}
.ls16{letter-spacing:-0.310933pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000533pt;}
.ls3{letter-spacing:0.586667pt;}
.ls13{letter-spacing:1.237867pt;}
.ls11{letter-spacing:1.597867pt;}
.lsf{letter-spacing:2.016533pt;}
.lsd{letter-spacing:2.244267pt;}
.ls10{letter-spacing:2.290667pt;}
.lse{letter-spacing:2.513600pt;}
.ls5{letter-spacing:4.024000pt;}
.ls0{letter-spacing:4.729600pt;}
.ls4{letter-spacing:6.332800pt;}
.ls14{letter-spacing:6.490133pt;}
.lsa{letter-spacing:9.374933pt;}
.ls1{letter-spacing:69.371733pt;}
.ls8{letter-spacing:172.933333pt;}
.ls6{letter-spacing:188.133333pt;}
.ls7{letter-spacing:188.266667pt;}
.lsc{letter-spacing:582.381867pt;}
.ws42{word-spacing:-33.440000pt;}
.ws2d{word-spacing:-30.400000pt;}
.wsd{word-spacing:-15.253333pt;}
.ws7{word-spacing:-14.666667pt;}
.ws1a{word-spacing:-13.333333pt;}
.ws2{word-spacing:-12.000000pt;}
.ws2c{word-spacing:-11.360000pt;}
.ws3{word-spacing:-10.666667pt;}
.ws16{word-spacing:-8.550667pt;}
.ws1{word-spacing:-7.773333pt;}
.ws4f{word-spacing:-7.462400pt;}
.ws3a{word-spacing:-4.640000pt;}
.wsc{word-spacing:-3.285333pt;}
.ws5b{word-spacing:-2.506667pt;}
.ws59{word-spacing:-2.453333pt;}
.ws9{word-spacing:-2.170667pt;}
.ws18{word-spacing:-2.053333pt;}
.ws8{word-spacing:-1.760000pt;}
.ws54{word-spacing:-1.600000pt;}
.ws43{word-spacing:-1.386667pt;}
.ws56{word-spacing:-1.226667pt;}
.ws57{word-spacing:-1.120000pt;}
.ws38{word-spacing:-0.906667pt;}
.ws3c{word-spacing:-0.880000pt;}
.wse{word-spacing:-0.586667pt;}
.ws51{word-spacing:-0.533333pt;}
.ws60{word-spacing:-0.480000pt;}
.ws46{word-spacing:-0.426667pt;}
.ws4a{word-spacing:-0.213333pt;}
.ws36{word-spacing:-0.160000pt;}
.ws53{word-spacing:-0.106667pt;}
.ws3e{word-spacing:-0.058667pt;}
.ws0{word-spacing:-0.037333pt;}
.ws4{word-spacing:0.000000pt;}
.ws32{word-spacing:0.213333pt;}
.ws63{word-spacing:0.266667pt;}
.ws55{word-spacing:0.533333pt;}
.ws39{word-spacing:0.906667pt;}
.ws45{word-spacing:1.173333pt;}
.ws5d{word-spacing:1.226667pt;}
.wsb{word-spacing:1.232000pt;}
.ws4c{word-spacing:1.333333pt;}
.ws5c{word-spacing:1.546667pt;}
.ws37{word-spacing:1.600000pt;}
.ws52{word-spacing:1.653333pt;}
.ws3d{word-spacing:1.877333pt;}
.wsa{word-spacing:1.936000pt;}
.ws17{word-spacing:1.973333pt;}
.ws33{word-spacing:2.026667pt;}
.ws2f{word-spacing:2.240000pt;}
.ws35{word-spacing:2.293333pt;}
.ws30{word-spacing:2.506667pt;}
.ws6{word-spacing:2.933333pt;}
.ws31{word-spacing:3.253333pt;}
.ws3f{word-spacing:3.285333pt;}
.ws58{word-spacing:3.360000pt;}
.ws3b{word-spacing:3.413333pt;}
.ws41{word-spacing:3.461333pt;}
.wsf{word-spacing:3.989333pt;}
.ws5a{word-spacing:4.000000pt;}
.ws5f{word-spacing:4.320000pt;}
.ws20{word-spacing:4.928000pt;}
.ws5{word-spacing:5.568000pt;}
.ws34{word-spacing:5.653333pt;}
.ws44{word-spacing:6.133333pt;}
.ws2e{word-spacing:6.240000pt;}
.ws4b{word-spacing:6.880000pt;}
.ws4e{word-spacing:6.986667pt;}
.ws19{word-spacing:7.216000pt;}
.ws50{word-spacing:7.626667pt;}
.ws40{word-spacing:8.096000pt;}
.ws4d{word-spacing:8.106667pt;}
.ws47{word-spacing:10.506667pt;}
.ws62{word-spacing:10.880000pt;}
.ws48{word-spacing:13.653333pt;}
.ws61{word-spacing:13.866667pt;}
.ws5e{word-spacing:17.333333pt;}
.ws49{word-spacing:31.893333pt;}
.ws11{word-spacing:92.489067pt;}
.ws15{word-spacing:105.626133pt;}
.ws13{word-spacing:109.597867pt;}
.ws28{word-spacing:123.821867pt;}
.ws12{word-spacing:155.680000pt;}
.ws1e{word-spacing:158.059733pt;}
.ws14{word-spacing:174.933333pt;}
.ws10{word-spacing:230.308800pt;}
.ws1b{word-spacing:240.107200pt;}
.ws21{word-spacing:262.147733pt;}
.ws26{word-spacing:318.195200pt;}
.ws1d{word-spacing:332.053333pt;}
.ws29{word-spacing:360.693333pt;}
.ws2b{word-spacing:363.626667pt;}
.ws1c{word-spacing:400.213333pt;}
.ws24{word-spacing:427.215467pt;}
.ws22{word-spacing:451.374933pt;}
.ws2a{word-spacing:501.600000pt;}
.ws27{word-spacing:531.066133pt;}
.ws23{word-spacing:531.066667pt;}
.ws1f{word-spacing:534.400000pt;}
.ws25{word-spacing:544.400000pt;}
._17{margin-left:-2570.078933pt;}
._37{margin-left:-1033.248000pt;}
._f{margin-left:-1015.456000pt;}
._11{margin-left:-231.296000pt;}
._3a{margin-left:-9.375467pt;}
._0{margin-left:-7.675200pt;}
._29{margin-left:-6.698667pt;}
._a{margin-left:-5.736000pt;}
._b{margin-left:-4.195733pt;}
._6{margin-left:-3.220800pt;}
._1{margin-left:-2.120533pt;}
._8{margin-left:-0.896000pt;}
._4{width:0.993600pt;}
._5{width:1.977600pt;}
._7{width:3.225067pt;}
._3{width:4.689600pt;}
._9{width:6.124800pt;}
._2{width:7.770667pt;}
._c{width:8.665067pt;}
._d{width:9.563733pt;}
._19{width:10.577067pt;}
._14{width:12.303467pt;}
._1b{width:13.516800pt;}
._39{width:14.650667pt;}
._13{width:15.628800pt;}
._3c{width:16.640533pt;}
._1c{width:17.946133pt;}
._1a{width:19.230933pt;}
._33{width:24.053333pt;}
._34{width:26.170133pt;}
._3b{width:31.866667pt;}
._18{width:37.386667pt;}
._1d{width:40.390400pt;}
._15{width:50.720000pt;}
._e{width:56.934400pt;}
._32{width:60.960000pt;}
._35{width:95.786667pt;}
._31{width:111.346667pt;}
._16{width:112.906667pt;}
._21{width:129.350933pt;}
._1f{width:138.337600pt;}
._20{width:140.489067pt;}
._28{width:149.256000pt;}
._22{width:153.547200pt;}
._24{width:155.813333pt;}
._30{width:171.786667pt;}
._27{width:172.800000pt;}
._26{width:175.066667pt;}
._23{width:184.346667pt;}
._25{width:203.600000pt;}
._1e{width:300.157333pt;}
._2a{width:370.255467pt;}
._2d{width:415.844267pt;}
._2f{width:472.000000pt;}
._2c{width:521.066667pt;}
._2e{width:541.600000pt;}
._2b{width:547.733333pt;}
._36{width:1454.197867pt;}
._12{width:1474.955200pt;}
._38{width:1832.221867pt;}
._10{width:1850.013867pt;}
.fs8{font-size:24.874667pt;}
.fs5{font-size:31.093333pt;}
.fs9{font-size:32.000000pt;}
.fsa{font-size:34.202667pt;}
.fs0{font-size:37.333333pt;}
.fs2{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.y2f{bottom:-22.236267pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:57.241600pt;}
.yfc{bottom:64.316400pt;}
.y8c{bottom:66.526133pt;}
.yd8{bottom:67.298800pt;}
.y121{bottom:69.188667pt;}
.y96{bottom:70.523600pt;}
.ybf{bottom:73.380000pt;}
.y69{bottom:74.523600pt;}
.y1bc{bottom:74.761200pt;}
.y2e{bottom:75.016667pt;}
.y1f9{bottom:75.435067pt;}
.y15b{bottom:75.448133pt;}
.yfb{bottom:80.316400pt;}
.y8b{bottom:82.526133pt;}
.yd7{bottom:83.298800pt;}
.y120{bottom:85.188667pt;}
.y95{bottom:86.523600pt;}
.y2d{bottom:88.350000pt;}
.ybe{bottom:89.380000pt;}
.y68{bottom:90.523600pt;}
.y1bb{bottom:90.761200pt;}
.y1f8{bottom:91.435067pt;}
.y15a{bottom:91.448133pt;}
.y180{bottom:94.528667pt;}
.yfa{bottom:96.316400pt;}
.y8a{bottom:98.526133pt;}
.yd6{bottom:99.298800pt;}
.y11f{bottom:101.188667pt;}
.y2c{bottom:101.683333pt;}
.y94{bottom:102.523600pt;}
.ybd{bottom:105.380000pt;}
.y67{bottom:106.523600pt;}
.y1ba{bottom:106.761200pt;}
.y1f7{bottom:107.435067pt;}
.y159{bottom:107.448133pt;}
.y17f{bottom:110.528667pt;}
.yf9{bottom:112.316400pt;}
.y89{bottom:114.526133pt;}
.y2b{bottom:115.016800pt;}
.yd5{bottom:115.298800pt;}
.y11e{bottom:117.188667pt;}
.y93{bottom:118.523600pt;}
.ybc{bottom:121.380000pt;}
.y66{bottom:122.523600pt;}
.y1b9{bottom:122.761200pt;}
.y1f6{bottom:123.435067pt;}
.y158{bottom:123.448133pt;}
.y17e{bottom:126.528667pt;}
.yf8{bottom:128.316400pt;}
.y2a{bottom:128.350133pt;}
.y88{bottom:130.526133pt;}
.yd4{bottom:131.298800pt;}
.y11d{bottom:133.188667pt;}
.y92{bottom:134.523600pt;}
.ybb{bottom:137.380000pt;}
.y65{bottom:138.523600pt;}
.y1b8{bottom:138.761200pt;}
.y1f5{bottom:139.435067pt;}
.y157{bottom:139.448133pt;}
.y29{bottom:141.683467pt;}
.y17d{bottom:142.528667pt;}
.yf7{bottom:144.316400pt;}
.y87{bottom:146.526133pt;}
.y11c{bottom:149.188667pt;}
.y91{bottom:150.523600pt;}
.yba{bottom:153.380000pt;}
.y64{bottom:154.523600pt;}
.y1b7{bottom:154.761200pt;}
.y1f4{bottom:155.435067pt;}
.y156{bottom:155.448133pt;}
.y17c{bottom:158.528667pt;}
.yf6{bottom:160.316400pt;}
.y86{bottom:162.526133pt;}
.y11b{bottom:165.188667pt;}
.y90{bottom:166.523600pt;}
.yb9{bottom:169.380000pt;}
.y1b6{bottom:170.761200pt;}
.y1f3{bottom:171.435067pt;}
.y155{bottom:171.448133pt;}
.yd3{bottom:173.965467pt;}
.yf5{bottom:176.316400pt;}
.y85{bottom:178.526133pt;}
.y28{bottom:180.489600pt;}
.y11a{bottom:181.188667pt;}
.y8f{bottom:182.523600pt;}
.yb8{bottom:185.380000pt;}
.y63{bottom:186.523600pt;}
.y1b5{bottom:186.761200pt;}
.y1f2{bottom:187.435067pt;}
.y154{bottom:187.448133pt;}
.y17b{bottom:190.527467pt;}
.yf4{bottom:192.316400pt;}
.y84{bottom:194.526133pt;}
.yd2{bottom:195.632133pt;}
.y27{bottom:196.489600pt;}
.y119{bottom:197.188667pt;}
.y8e{bottom:198.523600pt;}
.yb7{bottom:201.380000pt;}
.y62{bottom:202.523600pt;}
.y1b4{bottom:202.761200pt;}
.y1f1{bottom:203.435067pt;}
.y153{bottom:203.448133pt;}
.yf3{bottom:208.316400pt;}
.y83{bottom:210.526133pt;}
.y26{bottom:212.489600pt;}
.y118{bottom:213.188667pt;}
.yd1{bottom:215.556667pt;}
.yb6{bottom:217.380000pt;}
.y1b3{bottom:218.761200pt;}
.y1f0{bottom:219.435067pt;}
.y152{bottom:219.448133pt;}
.yf2{bottom:224.316400pt;}
.y82{bottom:226.526133pt;}
.y25{bottom:228.489600pt;}
.y117{bottom:229.188667pt;}
.y8d{bottom:230.522400pt;}
.yb5{bottom:233.380000pt;}
.y61{bottom:234.523600pt;}
.y1b2{bottom:234.761200pt;}
.y1ef{bottom:235.435067pt;}
.y151{bottom:235.448133pt;}
.yd0{bottom:235.468133pt;}
.yf1{bottom:240.316400pt;}
.y81{bottom:242.526133pt;}
.y24{bottom:244.489600pt;}
.y116{bottom:245.188667pt;}
.yb4{bottom:249.380000pt;}
.y60{bottom:250.523600pt;}
.y1b1{bottom:250.761200pt;}
.y1ee{bottom:251.435067pt;}
.y150{bottom:251.448133pt;}
.ycf{bottom:255.594400pt;}
.yf0{bottom:256.316400pt;}
.y80{bottom:258.526133pt;}
.y23{bottom:260.489600pt;}
.y115{bottom:261.188667pt;}
.yb3{bottom:265.380000pt;}
.y5f{bottom:266.523600pt;}
.y1b0{bottom:266.761200pt;}
.y1ed{bottom:267.435067pt;}
.y14f{bottom:267.448133pt;}
.yef{bottom:272.316400pt;}
.y7f{bottom:274.526133pt;}
.y22{bottom:276.489600pt;}
.y114{bottom:277.188667pt;}
.yb2{bottom:281.380000pt;}
.y5e{bottom:282.523600pt;}
.y1af{bottom:282.761200pt;}
.y1ec{bottom:283.435067pt;}
.y14e{bottom:283.448133pt;}
.yee{bottom:288.316400pt;}
.yce{bottom:289.188667pt;}
.y7e{bottom:290.526133pt;}
.y21{bottom:292.489600pt;}
.y113{bottom:293.188667pt;}
.yb1{bottom:297.380000pt;}
.y5d{bottom:298.523600pt;}
.y1ae{bottom:298.761200pt;}
.y1eb{bottom:299.435067pt;}
.y14d{bottom:299.448133pt;}
.ycd{bottom:305.188667pt;}
.y17a{bottom:306.526133pt;}
.y20{bottom:308.489600pt;}
.y112{bottom:309.188667pt;}
.yb0{bottom:313.380000pt;}
.y5c{bottom:314.523600pt;}
.y1ad{bottom:314.761200pt;}
.y1ea{bottom:315.435067pt;}
.y14c{bottom:315.448133pt;}
.ycc{bottom:321.188667pt;}
.y7d{bottom:322.524933pt;}
.y179{bottom:322.526133pt;}
.y111{bottom:325.188667pt;}
.yaf{bottom:329.380000pt;}
.y5b{bottom:330.523600pt;}
.y1ac{bottom:330.761200pt;}
.yed{bottom:330.983067pt;}
.y1e9{bottom:331.435067pt;}
.y14b{bottom:331.448133pt;}
.ycb{bottom:337.188667pt;}
.y1f{bottom:340.488267pt;}
.y110{bottom:341.188667pt;}
.yae{bottom:345.380000pt;}
.y5a{bottom:346.523600pt;}
.y1ab{bottom:346.761200pt;}
.y1e8{bottom:347.435067pt;}
.y14a{bottom:347.448133pt;}
.yec{bottom:352.649733pt;}
.yca{bottom:353.188667pt;}
.y178{bottom:354.524933pt;}
.y10f{bottom:357.188667pt;}
.yad{bottom:361.380000pt;}
.y59{bottom:362.523600pt;}
.y1aa{bottom:362.761200pt;}
.y1e7{bottom:363.435067pt;}
.y149{bottom:363.448133pt;}
.yc9{bottom:369.188667pt;}
.yeb{bottom:372.574133pt;}
.y10e{bottom:373.188667pt;}
.y7c{bottom:374.526133pt;}
.y1e{bottom:376.487067pt;}
.yac{bottom:377.380000pt;}
.y58{bottom:378.523600pt;}
.y1a9{bottom:378.761200pt;}
.y1e6{bottom:379.435067pt;}
.y148{bottom:379.448133pt;}
.yc8{bottom:385.188667pt;}
.y10d{bottom:389.188667pt;}
.y177{bottom:390.523600pt;}
.y7b{bottom:390.526133pt;}
.yea{bottom:392.485600pt;}
.yab{bottom:393.380000pt;}
.y57{bottom:394.523600pt;}
.y1a8{bottom:394.761200pt;}
.y1e5{bottom:395.435067pt;}
.y147{bottom:395.448133pt;}
.yc7{bottom:401.188667pt;}
.y10c{bottom:405.188667pt;}
.y176{bottom:406.523600pt;}
.y7a{bottom:406.526133pt;}
.yaa{bottom:409.380000pt;}
.y56{bottom:410.523600pt;}
.y1a7{bottom:410.761200pt;}
.y1e4{bottom:411.435067pt;}
.y146{bottom:411.448133pt;}
.ye9{bottom:412.182267pt;}
.y10b{bottom:421.188667pt;}
.y175{bottom:422.523600pt;}
.y79{bottom:422.526133pt;}
.ya9{bottom:425.380000pt;}
.y55{bottom:426.523600pt;}
.y1a6{bottom:426.761200pt;}
.y1e3{bottom:427.435067pt;}
.y145{bottom:427.448133pt;}
.ye8{bottom:432.093733pt;}
.y10a{bottom:437.188667pt;}
.y174{bottom:438.523600pt;}
.y78{bottom:438.526133pt;}
.ya8{bottom:441.380000pt;}
.y54{bottom:442.523600pt;}
.y1a5{bottom:442.761200pt;}
.y1e2{bottom:443.435067pt;}
.y144{bottom:443.448133pt;}
.yc6{bottom:443.855333pt;}
.y109{bottom:453.188667pt;}
.ye7{bottom:453.223600pt;}
.y173{bottom:454.523600pt;}
.y77{bottom:454.526133pt;}
.y1d{bottom:455.156667pt;}
.ya7{bottom:457.380000pt;}
.y53{bottom:458.523600pt;}
.y1a4{bottom:458.761200pt;}
.y1e1{bottom:459.435067pt;}
.y143{bottom:459.448133pt;}
.y1c{bottom:468.490000pt;}
.y108{bottom:469.188667pt;}
.y172{bottom:470.523600pt;}
.y76{bottom:470.526133pt;}
.ya6{bottom:473.380000pt;}
.y52{bottom:474.523600pt;}
.y1a3{bottom:474.761200pt;}
.y1e0{bottom:475.435067pt;}
.y142{bottom:475.448133pt;}
.ye6{bottom:476.723467pt;}
.y107{bottom:485.188667pt;}
.y171{bottom:486.523600pt;}
.y75{bottom:486.526133pt;}
.ya5{bottom:489.380000pt;}
.y51{bottom:490.523600pt;}
.y1a2{bottom:490.761200pt;}
.y1df{bottom:491.435067pt;}
.y141{bottom:491.448133pt;}
.y1b{bottom:495.157467pt;}
.y170{bottom:502.523600pt;}
.y74{bottom:502.526133pt;}
.ya4{bottom:505.380000pt;}
.y50{bottom:506.523600pt;}
.y1a1{bottom:506.761200pt;}
.y1de{bottom:507.435067pt;}
.y140{bottom:507.448133pt;}
.y1a{bottom:508.490800pt;}
.ye5{bottom:512.902800pt;}
.y106{bottom:517.188667pt;}
.y16f{bottom:518.523600pt;}
.y73{bottom:518.526133pt;}
.ya3{bottom:521.380000pt;}
.y4f{bottom:522.523600pt;}
.y1a0{bottom:522.761200pt;}
.y1dd{bottom:523.435067pt;}
.y13f{bottom:523.448133pt;}
.ye4{bottom:528.902800pt;}
.y105{bottom:533.188667pt;}
.y16e{bottom:534.523600pt;}
.y72{bottom:534.526133pt;}
.ya2{bottom:537.380000pt;}
.y4e{bottom:538.523600pt;}
.y19f{bottom:538.761200pt;}
.y1dc{bottom:539.435067pt;}
.y13e{bottom:539.448133pt;}
.ye3{bottom:544.902800pt;}
.y19{bottom:548.490800pt;}
.y104{bottom:549.188667pt;}
.y16d{bottom:550.523600pt;}
.y71{bottom:550.526133pt;}
.ya1{bottom:553.380000pt;}
.y4d{bottom:554.523600pt;}
.y19e{bottom:554.761200pt;}
.y1db{bottom:555.435067pt;}
.y13d{bottom:555.448133pt;}
.ye2{bottom:560.902800pt;}
.y18{bottom:561.824133pt;}
.y103{bottom:565.188667pt;}
.y16c{bottom:566.523600pt;}
.y70{bottom:566.526133pt;}
.ya0{bottom:569.380000pt;}
.y4c{bottom:570.523600pt;}
.y19d{bottom:570.761200pt;}
.y1da{bottom:571.435067pt;}
.y13c{bottom:571.448133pt;}
.y17{bottom:575.157467pt;}
.ye1{bottom:576.902800pt;}
.y102{bottom:581.188667pt;}
.y16b{bottom:582.523600pt;}
.y6f{bottom:582.526133pt;}
.y9f{bottom:585.380000pt;}
.y4b{bottom:586.523600pt;}
.y19c{bottom:586.761200pt;}
.y1d9{bottom:587.435067pt;}
.y13b{bottom:587.448133pt;}
.y16{bottom:588.490800pt;}
.ye0{bottom:592.902800pt;}
.y101{bottom:597.188667pt;}
.y16a{bottom:598.523600pt;}
.y6e{bottom:598.526133pt;}
.y9e{bottom:601.380000pt;}
.y15{bottom:601.824133pt;}
.y4a{bottom:602.523600pt;}
.y19b{bottom:602.761200pt;}
.y1d8{bottom:603.435067pt;}
.y13a{bottom:603.448133pt;}
.ydf{bottom:608.902800pt;}
.y100{bottom:613.188667pt;}
.y169{bottom:614.523600pt;}
.y6d{bottom:614.526133pt;}
.y14{bottom:615.157467pt;}
.y9d{bottom:617.380000pt;}
.y49{bottom:618.523600pt;}
.y19a{bottom:618.761200pt;}
.y1d7{bottom:619.435067pt;}
.y139{bottom:619.448133pt;}
.y13{bottom:628.490800pt;}
.yff{bottom:629.188667pt;}
.y168{bottom:630.523600pt;}
.y48{bottom:634.523600pt;}
.y199{bottom:634.761200pt;}
.y1d6{bottom:635.435067pt;}
.y138{bottom:635.448133pt;}
.yfe{bottom:645.188667pt;}
.y167{bottom:646.523600pt;}
.y6c{bottom:646.524933pt;}
.y47{bottom:650.523600pt;}
.y198{bottom:650.761200pt;}
.y1d5{bottom:651.435067pt;}
.y137{bottom:651.448133pt;}
.yde{bottom:651.569467pt;}
.y12{bottom:655.158400pt;}
.y9c{bottom:660.046667pt;}
.y166{bottom:662.523600pt;}
.y46{bottom:666.523600pt;}
.y197{bottom:666.761333pt;}
.y1d4{bottom:667.435067pt;}
.y136{bottom:667.448133pt;}
.y165{bottom:678.523600pt;}
.y9b{bottom:681.820667pt;}
.y45{bottom:682.523600pt;}
.y196{bottom:682.761333pt;}
.y1d3{bottom:683.435067pt;}
.yfd{bottom:687.855333pt;}
.y164{bottom:694.523600pt;}
.y44{bottom:698.523600pt;}
.y195{bottom:698.761333pt;}
.y1d2{bottom:699.435067pt;}
.y135{bottom:699.448133pt;}
.y11{bottom:700.491733pt;}
.y9a{bottom:701.732133pt;}
.y163{bottom:710.523600pt;}
.y10{bottom:713.825067pt;}
.y6b{bottom:714.523600pt;}
.y194{bottom:714.761333pt;}
.y1d1{bottom:715.435067pt;}
.y134{bottom:715.448133pt;}
.y99{bottom:721.536133pt;}
.y162{bottom:726.523600pt;}
.yf{bottom:727.158400pt;}
.y43{bottom:730.523600pt;}
.y193{bottom:730.761333pt;}
.y1d0{bottom:731.435067pt;}
.y133{bottom:731.448133pt;}
.ye{bottom:740.491733pt;}
.y98{bottom:741.232800pt;}
.yc5{bottom:742.523600pt;}
.y42{bottom:746.523600pt;}
.y192{bottom:746.761333pt;}
.y1cf{bottom:747.435067pt;}
.y132{bottom:747.448133pt;}
.y97{bottom:751.081067pt;}
.yd{bottom:753.825067pt;}
.yc4{bottom:758.523600pt;}
.y41{bottom:762.523600pt;}
.y191{bottom:762.761333pt;}
.y1ce{bottom:763.435067pt;}
.y131{bottom:763.448133pt;}
.yc{bottom:767.158400pt;}
.yc3{bottom:774.523600pt;}
.y40{bottom:778.523600pt;}
.y190{bottom:778.761333pt;}
.y1cd{bottom:779.435067pt;}
.y130{bottom:779.448133pt;}
.yb{bottom:780.491733pt;}
.yc2{bottom:790.523600pt;}
.ya{bottom:793.825067pt;}
.y6a{bottom:794.523600pt;}
.y18f{bottom:794.761333pt;}
.y1cc{bottom:795.435067pt;}
.y12f{bottom:795.448133pt;}
.yc1{bottom:806.523600pt;}
.y9{bottom:807.158400pt;}
.y3f{bottom:810.523600pt;}
.y18e{bottom:810.761333pt;}
.y1cb{bottom:811.435067pt;}
.y12e{bottom:811.448133pt;}
.y161{bottom:822.523600pt;}
.y3e{bottom:826.523600pt;}
.y18d{bottom:826.761333pt;}
.y1ca{bottom:827.435067pt;}
.y12d{bottom:827.448133pt;}
.y8{bottom:833.825867pt;}
.yc0{bottom:838.522400pt;}
.y160{bottom:838.523600pt;}
.y3d{bottom:842.523600pt;}
.y18c{bottom:842.761333pt;}
.y1c9{bottom:843.435067pt;}
.y15f{bottom:854.523600pt;}
.y3c{bottom:858.523600pt;}
.y18b{bottom:858.761333pt;}
.y1c8{bottom:859.435067pt;}
.y12c{bottom:859.448133pt;}
.y15e{bottom:870.523600pt;}
.y3b{bottom:874.523600pt;}
.y7{bottom:874.599200pt;}
.y18a{bottom:874.761333pt;}
.y1c7{bottom:875.435067pt;}
.y12b{bottom:875.448133pt;}
.y15d{bottom:886.523600pt;}
.y3a{bottom:890.523600pt;}
.y189{bottom:890.761333pt;}
.y1c6{bottom:891.435067pt;}
.y12a{bottom:891.448133pt;}
.y39{bottom:906.523600pt;}
.y188{bottom:906.761333pt;}
.y1c5{bottom:907.435067pt;}
.y129{bottom:907.448133pt;}
.y6{bottom:907.933333pt;}
.y15c{bottom:918.522400pt;}
.y38{bottom:922.523600pt;}
.y187{bottom:922.761333pt;}
.y1c4{bottom:923.435067pt;}
.y128{bottom:923.448133pt;}
.y37{bottom:938.523600pt;}
.y186{bottom:938.761333pt;}
.y1c3{bottom:939.435067pt;}
.y127{bottom:939.448133pt;}
.ydd{bottom:944.904533pt;}
.y5{bottom:945.277467pt;}
.y36{bottom:954.523600pt;}
.y185{bottom:954.761333pt;}
.y1c2{bottom:955.435067pt;}
.y126{bottom:955.448133pt;}
.ydc{bottom:966.571200pt;}
.y35{bottom:970.523600pt;}
.y184{bottom:970.761333pt;}
.y1c1{bottom:971.435067pt;}
.y4{bottom:977.508400pt;}
.y34{bottom:986.523600pt;}
.y183{bottom:986.761333pt;}
.ydb{bottom:987.421467pt;}
.y1c0{bottom:987.435067pt;}
.y125{bottom:987.448133pt;}
.y3{bottom:990.308400pt;}
.y33{bottom:1002.523600pt;}
.y182{bottom:1002.761200pt;}
.y1bf{bottom:1003.435067pt;}
.y124{bottom:1003.448133pt;}
.yda{bottom:1008.257333pt;}
.y32{bottom:1018.523600pt;}
.y1be{bottom:1019.435067pt;}
.y123{bottom:1019.448133pt;}
.yd9{bottom:1029.093333pt;}
.y2{bottom:1032.856933pt;}
.y31{bottom:1034.523600pt;}
.y181{bottom:1034.760000pt;}
.y1bd{bottom:1035.435067pt;}
.y122{bottom:1035.448133pt;}
.y30{bottom:1070.051200pt;}
.hf{height:23.229500pt;}
.h10{height:23.578125pt;}
.h7{height:32.757812pt;}
.h2{height:34.421333pt;}
.h12{height:36.979167pt;}
.h4{height:39.338667pt;}
.h14{height:40.677083pt;}
.ha{height:42.117188pt;}
.h9{height:42.234375pt;}
.h8{height:42.632812pt;}
.h3{height:46.784000pt;}
.h6{height:46.796875pt;}
.h15{height:46.927083pt;}
.h13{height:47.369792pt;}
.hd{height:51.476562pt;}
.he{height:51.619792pt;}
.hc{height:52.106771pt;}
.hb{height:56.312500pt;}
.h5{height:61.005208pt;}
.h11{height:86.763392pt;}
.h1{height:1118.000000pt;}
.h0{height:1118.047733pt;}
.w0{width:789.229067pt;}
.w1{width:789.333333pt;}
.x0{left:0.000000pt;}
.x5{left:11.097067pt;}
.x3{left:73.354267pt;}
.x4{left:80.913333pt;}
.x6{left:92.251867pt;}
.x10{left:97.680533pt;}
.x7{left:130.047200pt;}
.x19{left:148.380400pt;}
.xf{left:153.180800pt;}
.xc{left:157.454400pt;}
.xb{left:158.688133pt;}
.x1a{left:161.606267pt;}
.xa{left:163.017467pt;}
.x8{left:164.462800pt;}
.xe{left:170.060133pt;}
.x14{left:173.714000pt;}
.x11{left:184.993200pt;}
.x15{left:196.153867pt;}
.x13{left:197.640400pt;}
.x12{left:207.011200pt;}
.x18{left:213.429333pt;}
.x9{left:224.997733pt;}
.xd{left:249.936533pt;}
.x16{left:292.614267pt;}
.x17{left:357.327467pt;}
.x2{left:634.319733pt;}
.x1b{left:705.495333pt;}
.x1{left:710.684667pt;}
}




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