
    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_54fa8b8374689e461e11ba29.woff')format("woff");}.ff1{font-family:ff1;line-height:0.929000;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_9664e14332aaceec276a4a44.woff')format("woff");}.ff2{font-family:ff2;line-height:0.959000;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_7ac821e34fd2ddfc325ef160.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_8d824293119059505c7cc840.woff')format("woff");}.ff4{font-family:ff4;line-height:0.913413;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_c5c79e6b87cc45614c999530.woff')format("woff");}.ff5{font-family:ff5;line-height:1.130000;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_aa58058d23afb4badc1bf8ba.woff')format("woff");}.ff6{font-family:ff6;line-height:1.102000;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_f22e8b52be484e17480afdbb.woff')format("woff");}.ff7{font-family:ff7;line-height:0.929000;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_426fbb64fc5c0848ae9a9bde.woff')format("woff");}.ff8{font-family:ff8;line-height:0.972000;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_b40e104ac613a7085f338fef.woff')format("woff");}.ff9{font-family:ff9;line-height:1.102000;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_74ca74c273a49aff73d0b744.woff')format("woff");}.ffa{font-family:ffa;line-height:0.910000;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_9803d9686d74f0773a8b9652.woff')format("woff");}.ffb{font-family:ffb;line-height:0.918000;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_bd5b7c3b58c862f71587f367.woff')format("woff");}.ffc{font-family:ffc;line-height:0.918000;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_4b491f3612304d761f8c9859.woff')format("woff");}.ffd{font-family:ffd;line-height:0.911511;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_34ca78095ef91bf02c7ed754.woff')format("woff");}.ffe{font-family:ffe;line-height:0.916000;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);}
.v1{vertical-align:-18.591600px;}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-3.888000px;}
.ls12{letter-spacing:-2.040000px;}
.ls6{letter-spacing:-0.660000px;}
.lsd{letter-spacing:-0.600000px;}
.lsc{letter-spacing:-0.594000px;}
.ls5{letter-spacing:-0.330000px;}
.lsb{letter-spacing:-0.300000px;}
.lsf{letter-spacing:-0.180000px;}
.lsa{letter-spacing:-0.120000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.198000px;}
.ls1{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.528000px;}
.ls10{letter-spacing:0.918000px;}
.ls11{letter-spacing:2.862000px;}
.lse{letter-spacing:3.888000px;}
.ls8{letter-spacing:64.044000px;}
.ls4{letter-spacing:68.364000px;}
.ls9{letter-spacing:73.854000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsaa{word-spacing:-120.000000px;}
.ws9f{word-spacing:-84.000000px;}
.ws4{word-spacing:-14.400000px;}
.ws7e{word-spacing:-13.200000px;}
.ws49{word-spacing:-13.002000px;}
.ws9{word-spacing:-12.804000px;}
.ws6f{word-spacing:-12.474000px;}
.ws3{word-spacing:-12.000000px;}
.wsac{word-spacing:-11.880000px;}
.wsbe{word-spacing:-11.718000px;}
.wsbd{word-spacing:-11.700000px;}
.wsbb{word-spacing:-11.640000px;}
.wsbc{word-spacing:-11.460000px;}
.wsb1{word-spacing:-11.400000px;}
.wsab{word-spacing:-11.340000px;}
.ws72{word-spacing:-10.800000px;}
.ws8{word-spacing:-10.476000px;}
.ws0{word-spacing:-9.600000px;}
.ws1{word-spacing:-8.400000px;}
.ws59{word-spacing:-5.148000px;}
.wsa7{word-spacing:-4.950000px;}
.ws7c{word-spacing:-3.828000px;}
.ws41{word-spacing:-3.366000px;}
.ws34{word-spacing:-3.300000px;}
.ws4f{word-spacing:-3.102000px;}
.ws67{word-spacing:-2.970000px;}
.wsa0{word-spacing:-2.904000px;}
.wsc3{word-spacing:-2.862000px;}
.ws97{word-spacing:-2.772000px;}
.wse{word-spacing:-2.700000px;}
.ws33{word-spacing:-2.376000px;}
.ws3f{word-spacing:-2.310000px;}
.ws80{word-spacing:-2.112000px;}
.ws3b{word-spacing:-2.046000px;}
.wsb8{word-spacing:-2.040000px;}
.ws65{word-spacing:-1.980000px;}
.ws28{word-spacing:-1.914000px;}
.ws20{word-spacing:-1.716000px;}
.ws5d{word-spacing:-1.650000px;}
.ws6b{word-spacing:-1.584000px;}
.ws37{word-spacing:-1.452000px;}
.ws98{word-spacing:-1.320000px;}
.ws58{word-spacing:-1.254000px;}
.ws36{word-spacing:-1.188000px;}
.ws5f{word-spacing:-1.056000px;}
.ws13{word-spacing:-0.990000px;}
.ws90{word-spacing:-0.924000px;}
.ws7b{word-spacing:-0.858000px;}
.ws4c{word-spacing:-0.792000px;}
.wsb3{word-spacing:-0.660000px;}
.wsb{word-spacing:-0.594000px;}
.ws5c{word-spacing:-0.528000px;}
.ws2d{word-spacing:-0.462000px;}
.ws9d{word-spacing:-0.396000px;}
.ws7f{word-spacing:-0.378000px;}
.ws31{word-spacing:-0.330000px;}
.wsb7{word-spacing:-0.300000px;}
.ws29{word-spacing:-0.264000px;}
.ws12{word-spacing:-0.216000px;}
.ws64{word-spacing:-0.198000px;}
.ws2{word-spacing:-0.150000px;}
.ws4a{word-spacing:-0.132000px;}
.ws39{word-spacing:-0.066000px;}
.wsad{word-spacing:-0.060000px;}
.ws5{word-spacing:0.000000px;}
.ws21{word-spacing:0.066000px;}
.wsaf{word-spacing:0.120000px;}
.ws38{word-spacing:0.132000px;}
.ws3a{word-spacing:0.198000px;}
.ws96{word-spacing:0.264000px;}
.wsb0{word-spacing:0.300000px;}
.ws44{word-spacing:0.330000px;}
.ws7d{word-spacing:0.396000px;}
.ws8d{word-spacing:0.462000px;}
.wsc0{word-spacing:0.480000px;}
.ws1f{word-spacing:0.594000px;}
.wsb6{word-spacing:0.600000px;}
.ws4d{word-spacing:0.660000px;}
.ws4e{word-spacing:0.726000px;}
.ws60{word-spacing:0.792000px;}
.wsa6{word-spacing:0.858000px;}
.wsf{word-spacing:0.864000px;}
.ws57{word-spacing:0.990000px;}
.wsae{word-spacing:1.080000px;}
.wsc{word-spacing:1.188000px;}
.ws1a{word-spacing:1.254000px;}
.ws3e{word-spacing:1.518000px;}
.ws91{word-spacing:1.782000px;}
.ws14{word-spacing:1.848000px;}
.ws92{word-spacing:2.046000px;}
.wsb9{word-spacing:2.220000px;}
.ws51{word-spacing:2.244000px;}
.ws50{word-spacing:2.310000px;}
.ws2e{word-spacing:2.376000px;}
.wsa5{word-spacing:2.442000px;}
.ws45{word-spacing:2.574000px;}
.wsa8{word-spacing:2.772000px;}
.wsb2{word-spacing:2.820000px;}
.ws8c{word-spacing:2.970000px;}
.ws35{word-spacing:3.036000px;}
.ws8a{word-spacing:3.102000px;}
.ws1e{word-spacing:3.168000px;}
.wsd{word-spacing:3.186000px;}
.ws63{word-spacing:3.234000px;}
.ws10{word-spacing:3.294000px;}
.ws40{word-spacing:3.300000px;}
.ws53{word-spacing:3.366000px;}
.wsa4{word-spacing:3.432000px;}
.ws1c{word-spacing:3.696000px;}
.ws84{word-spacing:3.762000px;}
.ws78{word-spacing:3.828000px;}
.ws5a{word-spacing:3.894000px;}
.wsba{word-spacing:4.020000px;}
.ws79{word-spacing:4.026000px;}
.wsc2{word-spacing:4.260000px;}
.ws48{word-spacing:4.290000px;}
.wsc4{word-spacing:4.536000px;}
.ws9a{word-spacing:4.554000px;}
.wsa3{word-spacing:4.620000px;}
.ws3d{word-spacing:4.686000px;}
.wsa{word-spacing:4.698000px;}
.ws54{word-spacing:4.752000px;}
.wsb5{word-spacing:4.800000px;}
.ws82{word-spacing:4.818000px;}
.ws11{word-spacing:4.860000px;}
.ws30{word-spacing:5.016000px;}
.wsc1{word-spacing:5.040000px;}
.ws16{word-spacing:5.082000px;}
.ws22{word-spacing:5.544000px;}
.ws73{word-spacing:5.676000px;}
.ws87{word-spacing:5.742000px;}
.ws18{word-spacing:5.808000px;}
.ws8e{word-spacing:5.874000px;}
.wsb4{word-spacing:6.000000px;}
.ws74{word-spacing:6.072000px;}
.ws2a{word-spacing:6.138000px;}
.ws2b{word-spacing:6.204000px;}
.ws94{word-spacing:6.270000px;}
.ws55{word-spacing:6.402000px;}
.ws75{word-spacing:6.468000px;}
.ws26{word-spacing:6.600000px;}
.ws85{word-spacing:6.732000px;}
.ws32{word-spacing:6.798000px;}
.ws46{word-spacing:6.864000px;}
.ws9b{word-spacing:6.930000px;}
.ws7{word-spacing:6.966000px;}
.ws83{word-spacing:7.062000px;}
.ws23{word-spacing:7.194000px;}
.ws2f{word-spacing:7.326000px;}
.ws3c{word-spacing:7.458000px;}
.ws86{word-spacing:7.524000px;}
.ws6e{word-spacing:7.620000px;}
.ws2c{word-spacing:7.788000px;}
.ws8f{word-spacing:7.986000px;}
.ws69{word-spacing:8.052000px;}
.ws6a{word-spacing:8.118000px;}
.ws17{word-spacing:8.316000px;}
.ws77{word-spacing:8.448000px;}
.ws24{word-spacing:8.646000px;}
.ws4b{word-spacing:8.844000px;}
.ws6{word-spacing:8.856000px;}
.ws6c{word-spacing:9.504000px;}
.wsa9{word-spacing:10.032000px;}
.ws6d{word-spacing:10.758000px;}
.ws76{word-spacing:10.890000px;}
.ws47{word-spacing:11.022000px;}
.ws1b{word-spacing:11.088000px;}
.ws93{word-spacing:11.286000px;}
.ws9e{word-spacing:11.340000px;}
.wsa2{word-spacing:11.418000px;}
.ws81{word-spacing:11.682000px;}
.ws52{word-spacing:11.814000px;}
.ws68{word-spacing:11.880000px;}
.ws1d{word-spacing:12.672000px;}
.ws27{word-spacing:12.804000px;}
.ws5b{word-spacing:13.002000px;}
.ws99{word-spacing:13.200000px;}
.ws7a{word-spacing:13.266000px;}
.ws42{word-spacing:13.662000px;}
.ws25{word-spacing:13.728000px;}
.ws89{word-spacing:14.058000px;}
.ws9c{word-spacing:14.190000px;}
.ws5e{word-spacing:14.388000px;}
.wsa1{word-spacing:14.718000px;}
.ws56{word-spacing:14.916000px;}
.ws62{word-spacing:16.104000px;}
.ws61{word-spacing:16.368000px;}
.ws88{word-spacing:16.566000px;}
.ws95{word-spacing:17.886000px;}
.ws8b{word-spacing:18.546000px;}
.ws19{word-spacing:19.140000px;}
.ws15{word-spacing:21.450000px;}
.ws43{word-spacing:21.714000px;}
.ws66{word-spacing:36.000000px;}
.wsbf{word-spacing:52.849200px;}
.ws71{word-spacing:471.371400px;}
.ws70{word-spacing:586.062000px;}
._20{margin-left:-58.410000px;}
._26{margin-left:-24.000000px;}
._22{margin-left:-6.978000px;}
._d{margin-left:-5.841000px;}
._9{margin-left:-3.864600px;}
._1{margin-left:-2.860200px;}
._0{margin-left:-1.092000px;}
._2{width:1.129800px;}
._7{width:2.751000px;}
._4{width:3.828600px;}
._12{width:4.859400px;}
._3{width:5.923800px;}
._6{width:6.973200px;}
._a{width:8.022000px;}
._b{width:9.292800px;}
._c{width:10.384200px;}
._10{width:11.459400px;}
._5{width:13.554000px;}
._f{width:14.583000px;}
._e{width:16.146000px;}
._25{width:17.484000px;}
._11{width:22.007400px;}
._24{width:23.456400px;}
._8{width:36.000000px;}
._23{width:52.413600px;}
._13{width:63.882000px;}
._1d{width:65.232000px;}
._14{width:69.606000px;}
._21{width:73.854000px;}
._1f{width:183.474000px;}
._17{width:309.420000px;}
._1e{width:323.136000px;}
._16{width:373.260000px;}
._15{width:387.612000px;}
._18{width:400.302000px;}
._19{width:434.592000px;}
._1a{width:478.980000px;}
._1c{width:526.552200px;}
._1b{width:646.866000px;}
.fc5{color:rgb(255,255,255);}
.fc2{color:rgb(35,31,32);}
.fc4{color:rgb(238,76,168);}
.fc1{color:rgb(123,121,121);}
.fc3{color:rgb(214,218,1);}
.fc0{color:rgb(233,17,141);}
.fs1{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:120.000000px;}
.fs3{font-size:150.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:40.541100px;}
.y5{bottom:55.545600px;}
.y7{bottom:61.919250px;}
.y4{bottom:70.550100px;}
.y3{bottom:85.554600px;}
.y2{bottom:100.559100px;}
.y1{bottom:115.559100px;}
.y1b9{bottom:157.322850px;}
.y175{bottom:159.035400px;}
.y19a{bottom:164.900400px;}
.y1d{bottom:170.799600px;}
.y11a{bottom:173.828400px;}
.y90{bottom:173.877900px;}
.y70{bottom:173.894400px;}
.yfc{bottom:175.256100px;}
.y174{bottom:178.535400px;}
.y199{bottom:184.400400px;}
.y45{bottom:184.888650px;}
.y1b8{bottom:187.222650px;}
.y1c{bottom:188.795100px;}
.y119{bottom:194.832900px;}
.y8f{bottom:194.882400px;}
.y6f{bottom:194.898900px;}
.yfb{bottom:196.260600px;}
.y173{bottom:198.035400px;}
.y198{bottom:203.900400px;}
.yd1{bottom:204.744600px;}
.y44{bottom:205.893150px;}
.y1b{bottom:206.790600px;}
.y13c{bottom:208.534950px;}
.yc8{bottom:208.535400px;}
.y118{bottom:215.837400px;}
.ya5{bottom:215.886900px;}
.y6e{bottom:215.903400px;}
.yfa{bottom:217.265100px;}
.y1a{bottom:224.786100px;}
.y43{bottom:226.897650px;}
.y13b{bottom:228.034950px;}
.yc7{bottom:228.035400px;}
.yd0{bottom:235.254600px;}
.y117{bottom:236.841900px;}
.y8e{bottom:236.874900px;}
.ya4{bottom:236.891400px;}
.y6d{bottom:236.907900px;}
.y172{bottom:237.035400px;}
.yf9{bottom:238.269600px;}
.y197{bottom:239.555400px;}
.y19{bottom:247.038000px;}
.y13a{bottom:247.534950px;}
.yc6{bottom:247.535400px;}
.y42{bottom:247.902150px;}
.y171{bottom:256.535400px;}
.y116{bottom:257.846400px;}
.y8d{bottom:257.879400px;}
.y6c{bottom:257.912400px;}
.y196{bottom:259.055400px;}
.yf8{bottom:259.274100px;}
.ycf{bottom:265.764600px;}
.y139{bottom:267.034950px;}
.yc5{bottom:267.035400px;}
.y41{bottom:268.906650px;}
.y1b7{bottom:271.355400px;}
.y195{bottom:278.555400px;}
.y115{bottom:278.850900px;}
.y8c{bottom:278.883900px;}
.y6b{bottom:278.916900px;}
.yf7{bottom:280.278600px;}
.yce{bottom:282.261600px;}
.y138{bottom:286.534950px;}
.yc4{bottom:286.535400px;}
.y1b6{bottom:289.350900px;}
.y40{bottom:289.911150px;}
.y15f{bottom:292.517400px;}
.y170{bottom:295.535400px;}
.y114{bottom:299.855400px;}
.y8b{bottom:299.888400px;}
.y6a{bottom:299.921400px;}
.yf6{bottom:301.283100px;}
.y18{bottom:301.638150px;}
.y1b5{bottom:307.346400px;}
.y3f{bottom:310.915650px;}
.ycd{bottom:312.771600px;}
.y15e{bottom:313.521900px;}
.y194{bottom:314.210400px;}
.y16f{bottom:315.035400px;}
.y113{bottom:320.859900px;}
.y8a{bottom:320.892900px;}
.yf5{bottom:322.287600px;}
.y17{bottom:322.638150px;}
.y137{bottom:326.925450px;}
.yc3{bottom:326.933400px;}
.ycc{bottom:329.268600px;}
.y3e{bottom:331.920150px;}
.y193{bottom:333.710400px;}
.y15d{bottom:334.526400px;}
.y112{bottom:341.864400px;}
.y89{bottom:341.897400px;}
.y69{bottom:341.913900px;}
.yf4{bottom:343.292100px;}
.y16{bottom:343.638150px;}
.ycb{bottom:345.765600px;}
.y136{bottom:347.929950px;}
.yc2{bottom:347.937900px;}
.y3d{bottom:352.924650px;}
.y16e{bottom:354.035400px;}
.y15c{bottom:355.530900px;}
.y111{bottom:362.868900px;}
.y88{bottom:362.901900px;}
.y68{bottom:362.918400px;}
.yf3{bottom:364.296600px;}
.y15{bottom:364.638150px;}
.y135{bottom:368.934450px;}
.yc1{bottom:368.942400px;}
.y192{bottom:369.365400px;}
.yca{bottom:376.275600px;}
.y15b{bottom:376.535400px;}
.y110{bottom:383.873400px;}
.y87{bottom:383.906400px;}
.y67{bottom:383.922900px;}
.yf2{bottom:385.301100px;}
.y191{bottom:388.865400px;}
.y134{bottom:389.938950px;}
.yc0{bottom:389.946900px;}
.y16d{bottom:393.035400px;}
.y3c{bottom:394.917150px;}
.y14{bottom:403.938150px;}
.y10f{bottom:404.877900px;}
.y86{bottom:404.910900px;}
.y66{bottom:404.927400px;}
.yf1{bottom:406.305600px;}
.y1b4{bottom:410.915400px;}
.y133{bottom:410.943450px;}
.ybf{bottom:410.951400px;}
.yc9{bottom:411.035400px;}
.y16c{bottom:412.535400px;}
.y3b{bottom:415.921650px;}
.y15a{bottom:418.535400px;}
.y190{bottom:424.520400px;}
.y13{bottom:424.938150px;}
.y10e{bottom:425.882400px;}
.y85{bottom:425.915400px;}
.y65{bottom:425.931900px;}
.yf0{bottom:427.310100px;}
.y132{bottom:431.947950px;}
.ybe{bottom:431.955900px;}
.y3a{bottom:436.926150px;}
.y12{bottom:445.938150px;}
.y10d{bottom:446.886900px;}
.y84{bottom:446.919900px;}
.y64{bottom:446.936400px;}
.y1b3{bottom:447.425400px;}
.yef{bottom:448.314600px;}
.y16b{bottom:451.535400px;}
.y131{bottom:452.952450px;}
.ybd{bottom:452.960400px;}
.y39{bottom:457.930650px;}
.y18f{bottom:460.175400px;}
.y1b2{bottom:466.925400px;}
.y11{bottom:466.938150px;}
.y10c{bottom:467.891400px;}
.y83{bottom:467.924400px;}
.y63{bottom:467.940900px;}
.yee{bottom:469.319100px;}
.y16a{bottom:471.035400px;}
.y130{bottom:473.956950px;}
.y38{bottom:478.935150px;}
.y18e{bottom:479.675400px;}
.y1b1{bottom:486.425400px;}
.y10b{bottom:488.895900px;}
.y82{bottom:488.928900px;}
.y62{bottom:488.945400px;}
.yed{bottom:490.323600px;}
.ybc{bottom:494.952900px;}
.y12f{bottom:494.961450px;}
.y159{bottom:496.425900px;}
.y18d{bottom:499.175400px;}
.y37{bottom:499.939650px;}
.y10{bottom:506.238150px;}
.y10a{bottom:509.900400px;}
.y81{bottom:509.933400px;}
.y61{bottom:509.949900px;}
.y169{bottom:510.035400px;}
.yec{bottom:511.328100px;}
.ybb{bottom:515.957400px;}
.y158{bottom:517.430400px;}
.y36{bottom:520.944150px;}
.y1b0{bottom:522.935400px;}
.yf{bottom:527.238150px;}
.y109{bottom:530.904900px;}
.y80{bottom:530.937900px;}
.y60{bottom:530.954400px;}
.yeb{bottom:532.332600px;}
.y18c{bottom:534.830400px;}
.y12e{bottom:536.953950px;}
.yba{bottom:536.961900px;}
.y157{bottom:538.434900px;}
.y1af{bottom:542.435400px;}
.ye{bottom:548.238150px;}
.y168{bottom:549.035400px;}
.y108{bottom:551.909400px;}
.y7f{bottom:551.942400px;}
.y5f{bottom:551.958900px;}
.yea{bottom:553.337100px;}
.y12d{bottom:557.958450px;}
.yb9{bottom:557.966400px;}
.y156{bottom:559.439400px;}
.y35{bottom:562.944150px;}
.yd{bottom:569.238150px;}
.y18b{bottom:570.485400px;}
.y107{bottom:572.913900px;}
.ya3{bottom:572.930400px;}
.y7e{bottom:572.946900px;}
.y5e{bottom:572.963400px;}
.ye9{bottom:574.341600px;}
.y1ae{bottom:578.945400px;}
.y12c{bottom:578.962950px;}
.yb8{bottom:578.970900px;}
.y155{bottom:580.443900px;}
.y167{bottom:589.535400px;}
.y18a{bottom:589.985400px;}
.y106{bottom:593.918400px;}
.ya2{bottom:593.934900px;}
.y7d{bottom:593.951400px;}
.y5d{bottom:593.967900px;}
.ye8{bottom:595.346100px;}
.y12b{bottom:599.967450px;}
.yb7{bottom:599.975400px;}
.y154{bottom:601.448400px;}
.y189{bottom:609.485400px;}
.y105{bottom:614.922900px;}
.ya1{bottom:614.939400px;}
.y7c{bottom:614.955900px;}
.y5c{bottom:614.972400px;}
.y1ad{bottom:615.455400px;}
.ye7{bottom:616.350600px;}
.yc{bottom:617.042100px;}
.y12a{bottom:620.971950px;}
.yb6{bottom:620.979900px;}
.y153{bottom:622.452900px;}
.y1ac{bottom:634.955400px;}
.y104{bottom:635.927400px;}
.ya0{bottom:635.943900px;}
.y7b{bottom:635.960400px;}
.y5b{bottom:635.976900px;}
.ye6{bottom:637.355100px;}
.y129{bottom:641.976450px;}
.y152{bottom:643.457400px;}
.y188{bottom:645.140400px;}
.yb{bottom:653.042100px;}
.y103{bottom:656.931900px;}
.y9f{bottom:656.948400px;}
.y7a{bottom:656.964900px;}
.y5a{bottom:656.981400px;}
.ye5{bottom:658.359600px;}
.yb5{bottom:662.972400px;}
.y128{bottom:662.980950px;}
.y151{bottom:664.461900px;}
.y187{bottom:664.640400px;}
.y166{bottom:667.535400px;}
.y1ab{bottom:671.465400px;}
.y102{bottom:677.936400px;}
.y9e{bottom:677.952900px;}
.y79{bottom:677.969400px;}
.ye4{bottom:679.364100px;}
.yb4{bottom:683.976900px;}
.y34{bottom:683.983500px;}
.y127{bottom:683.985450px;}
.y186{bottom:684.140400px;}
.y150{bottom:685.466400px;}
.y1aa{bottom:690.965400px;}
.ya{bottom:697.545900px;}
.y101{bottom:698.940900px;}
.y9d{bottom:698.957400px;}
.y59{bottom:698.973900px;}
.ye3{bottom:700.368600px;}
.y33{bottom:701.983500px;}
.yb3{bottom:704.981400px;}
.y126{bottom:704.989950px;}
.y165{bottom:709.535400px;}
.y185{bottom:719.795400px;}
.y100{bottom:719.945400px;}
.y9c{bottom:719.961900px;}
.y58{bottom:719.978400px;}
.ye2{bottom:721.373100px;}
.yb2{bottom:725.985900px;}
.y125{bottom:725.994450px;}
.y14f{bottom:727.458900px;}
.y1a9{bottom:727.475400px;}
.y184{bottom:739.295400px;}
.y32{bottom:740.124000px;}
.yff{bottom:740.949900px;}
.y78{bottom:740.966400px;}
.y57{bottom:740.982900px;}
.y9{bottom:742.545900px;}
.y164{bottom:745.535400px;}
.y1a8{bottom:746.975400px;}
.yb1{bottom:746.990400px;}
.y124{bottom:746.998950px;}
.y14e{bottom:748.463400px;}
.y31{bottom:758.119500px;}
.y183{bottom:758.795400px;}
.yfe{bottom:761.954400px;}
.y77{bottom:761.970900px;}
.y56{bottom:761.987400px;}
.ye1{bottom:763.373100px;}
.y1a7{bottom:766.475400px;}
.yb0{bottom:767.994900px;}
.y123{bottom:768.003450px;}
.y14d{bottom:769.467900px;}
.y30{bottom:776.115000px;}
.yfd{bottom:782.958900px;}
.y76{bottom:782.975400px;}
.y55{bottom:782.991900px;}
.y8{bottom:787.545900px;}
.yaf{bottom:788.999400px;}
.y122{bottom:789.007950px;}
.y14c{bottom:790.472400px;}
.y2f{bottom:794.110500px;}
.y182{bottom:794.450400px;}
.y1a6{bottom:802.985400px;}
.y9b{bottom:803.963400px;}
.y75{bottom:803.979900px;}
.y54{bottom:803.996400px;}
.yae{bottom:810.003900px;}
.y121{bottom:810.012450px;}
.y14b{bottom:811.476900px;}
.y2e{bottom:812.106000px;}
.y1a5{bottom:822.485400px;}
.y163{bottom:823.535400px;}
.y9a{bottom:824.967900px;}
.y74{bottom:824.984400px;}
.y2d{bottom:830.101500px;}
.y181{bottom:830.105400px;}
.yad{bottom:831.008400px;}
.y120{bottom:831.016950px;}
.y14a{bottom:832.481400px;}
.y1a4{bottom:841.985400px;}
.y99{bottom:845.972400px;}
.y53{bottom:845.988900px;}
.y2c{bottom:848.097000px;}
.y180{bottom:849.605400px;}
.ye0{bottom:850.275750px;}
.yac{bottom:852.012900px;}
.y11f{bottom:852.021450px;}
.y149{bottom:853.485900px;}
.y162{bottom:865.535400px;}
.y2b{bottom:866.092500px;}
.ydf{bottom:866.772750px;}
.y98{bottom:866.976900px;}
.y52{bottom:866.993400px;}
.y17f{bottom:869.105400px;}
.yab{bottom:873.017400px;}
.y11e{bottom:873.025950px;}
.y148{bottom:874.490400px;}
.y1a3{bottom:878.495400px;}
.yde{bottom:883.269750px;}
.y2a{bottom:884.088000px;}
.y97{bottom:887.981400px;}
.y51{bottom:887.997900px;}
.yaa{bottom:894.021900px;}
.y11d{bottom:894.030450px;}
.y147{bottom:895.494900px;}
.y1a2{bottom:897.995400px;}
.ydd{bottom:899.766750px;}
.y29{bottom:902.083500px;}
.y17e{bottom:904.760400px;}
.y96{bottom:908.985900px;}
.y50{bottom:909.002400px;}
.ya9{bottom:915.026400px;}
.y11c{bottom:915.034950px;}
.ydc{bottom:916.263750px;}
.y146{bottom:916.499400px;}
.y28{bottom:924.335400px;}
.y95{bottom:929.990400px;}
.y4f{bottom:930.006900px;}
.y1a1{bottom:934.505400px;}
.ya8{bottom:936.030900px;}
.y145{bottom:937.503900px;}
.y17d{bottom:940.415400px;}
.y161{bottom:943.535400px;}
.ydb{bottom:946.773750px;}
.y94{bottom:950.994900px;}
.y4e{bottom:951.011400px;}
.y1a0{bottom:954.005400px;}
.y11b{bottom:957.034950px;}
.ya7{bottom:957.035400px;}
.y144{bottom:958.508400px;}
.y17c{bottom:959.915400px;}
.yda{bottom:963.270750px;}
.y93{bottom:971.999400px;}
.y4d{bottom:972.015900px;}
.y27{bottom:978.935400px;}
.y143{bottom:979.512900px;}
.yd9{bottom:979.767750px;}
.y160{bottom:985.535400px;}
.y19f{bottom:990.515400px;}
.y92{bottom:993.003900px;}
.y4c{bottom:993.020400px;}
.y17b{bottom:995.570400px;}
.yd8{bottom:996.264750px;}
.y26{bottom:996.935400px;}
.ya6{bottom:999.035400px;}
.y142{bottom:1000.517400px;}
.y19e{bottom:1010.015400px;}
.y91{bottom:1014.008400px;}
.y4b{bottom:1014.024900px;}
.y17a{bottom:1015.070400px;}
.y141{bottom:1021.521900px;}
.yd7{bottom:1026.774750px;}
.y19d{bottom:1029.515400px;}
.y73{bottom:1035.012900px;}
.y4a{bottom:1035.029400px;}
.y25{bottom:1035.062400px;}
.y140{bottom:1042.526400px;}
.yd6{bottom:1043.271750px;}
.y179{bottom:1050.725400px;}
.y24{bottom:1053.057900px;}
.y72{bottom:1056.017400px;}
.y49{bottom:1056.033900px;}
.yd5{bottom:1059.768750px;}
.y13f{bottom:1063.530900px;}
.y19c{bottom:1066.025400px;}
.y23{bottom:1071.053400px;}
.y71{bottom:1077.021900px;}
.y13e{bottom:1084.535400px;}
.y19b{bottom:1085.525400px;}
.y178{bottom:1086.380400px;}
.y22{bottom:1089.048900px;}
.yd4{bottom:1090.278750px;}
.y48{bottom:1098.026400px;}
.yd3{bottom:1106.775750px;}
.y21{bottom:1107.044400px;}
.y47{bottom:1119.030900px;}
.y177{bottom:1122.035400px;}
.y20{bottom:1125.039900px;}
.y13d{bottom:1126.535400px;}
.y46{bottom:1140.035400px;}
.y176{bottom:1141.535400px;}
.yd2{bottom:1141.535550px;}
.y1f{bottom:1143.035400px;}
.y1e{bottom:1198.796700px;}
.h3{height:31.920000px;}
.h2{height:35.040000px;}
.hc{height:37.548000px;}
.h11{height:38.340000px;}
.h4{height:41.040000px;}
.ha{height:41.202000px;}
.h12{height:43.800000px;}
.h13{height:45.600000px;}
.h10{height:45.780000px;}
.hb{height:48.276000px;}
.hf{height:50.358000px;}
.h9{height:52.560000px;}
.h8{height:53.640000px;}
.he{height:59.004000px;}
.h7{height:62.172000px;}
.h6{height:85.200000px;}
.hd{height:87.600000px;}
.h5{height:109.500000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.xa{left:94.990950px;}
.x9{left:96.124950px;}
.x3{left:97.245300px;}
.x7{left:114.803100px;}
.xb{left:117.292950px;}
.xf{left:126.105450px;}
.x13{left:127.549350px;}
.x12{left:135.859350px;}
.x10{left:144.568950px;}
.x4{left:147.755850px;}
.x14{left:239.260050px;}
.xc{left:291.618450px;}
.x8{left:363.410700px;}
.xd{left:465.943950px;}
.xe{left:640.269450px;}
.x11{left:783.373650px;}
.x5{left:784.669800px;}
.x6{left:786.087300px;}
.x2{left:787.322550px;}
@media print{
.v1{vertical-align:-16.525867pt;}
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-3.456000pt;}
.ls12{letter-spacing:-1.813333pt;}
.ls6{letter-spacing:-0.586667pt;}
.lsd{letter-spacing:-0.533333pt;}
.lsc{letter-spacing:-0.528000pt;}
.ls5{letter-spacing:-0.293333pt;}
.lsb{letter-spacing:-0.266667pt;}
.lsf{letter-spacing:-0.160000pt;}
.lsa{letter-spacing:-0.106667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.176000pt;}
.ls1{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.469333pt;}
.ls10{letter-spacing:0.816000pt;}
.ls11{letter-spacing:2.544000pt;}
.lse{letter-spacing:3.456000pt;}
.ls8{letter-spacing:56.928000pt;}
.ls4{letter-spacing:60.768000pt;}
.ls9{letter-spacing:65.648000pt;}
.wsaa{word-spacing:-106.666667pt;}
.ws9f{word-spacing:-74.666667pt;}
.ws4{word-spacing:-12.800000pt;}
.ws7e{word-spacing:-11.733333pt;}
.ws49{word-spacing:-11.557333pt;}
.ws9{word-spacing:-11.381333pt;}
.ws6f{word-spacing:-11.088000pt;}
.ws3{word-spacing:-10.666667pt;}
.wsac{word-spacing:-10.560000pt;}
.wsbe{word-spacing:-10.416000pt;}
.wsbd{word-spacing:-10.400000pt;}
.wsbb{word-spacing:-10.346667pt;}
.wsbc{word-spacing:-10.186667pt;}
.wsb1{word-spacing:-10.133333pt;}
.wsab{word-spacing:-10.080000pt;}
.ws72{word-spacing:-9.600000pt;}
.ws8{word-spacing:-9.312000pt;}
.ws0{word-spacing:-8.533333pt;}
.ws1{word-spacing:-7.466667pt;}
.ws59{word-spacing:-4.576000pt;}
.wsa7{word-spacing:-4.400000pt;}
.ws7c{word-spacing:-3.402667pt;}
.ws41{word-spacing:-2.992000pt;}
.ws34{word-spacing:-2.933333pt;}
.ws4f{word-spacing:-2.757333pt;}
.ws67{word-spacing:-2.640000pt;}
.wsa0{word-spacing:-2.581333pt;}
.wsc3{word-spacing:-2.544000pt;}
.ws97{word-spacing:-2.464000pt;}
.wse{word-spacing:-2.400000pt;}
.ws33{word-spacing:-2.112000pt;}
.ws3f{word-spacing:-2.053333pt;}
.ws80{word-spacing:-1.877333pt;}
.ws3b{word-spacing:-1.818667pt;}
.wsb8{word-spacing:-1.813333pt;}
.ws65{word-spacing:-1.760000pt;}
.ws28{word-spacing:-1.701333pt;}
.ws20{word-spacing:-1.525333pt;}
.ws5d{word-spacing:-1.466667pt;}
.ws6b{word-spacing:-1.408000pt;}
.ws37{word-spacing:-1.290667pt;}
.ws98{word-spacing:-1.173333pt;}
.ws58{word-spacing:-1.114667pt;}
.ws36{word-spacing:-1.056000pt;}
.ws5f{word-spacing:-0.938667pt;}
.ws13{word-spacing:-0.880000pt;}
.ws90{word-spacing:-0.821333pt;}
.ws7b{word-spacing:-0.762667pt;}
.ws4c{word-spacing:-0.704000pt;}
.wsb3{word-spacing:-0.586667pt;}
.wsb{word-spacing:-0.528000pt;}
.ws5c{word-spacing:-0.469333pt;}
.ws2d{word-spacing:-0.410667pt;}
.ws9d{word-spacing:-0.352000pt;}
.ws7f{word-spacing:-0.336000pt;}
.ws31{word-spacing:-0.293333pt;}
.wsb7{word-spacing:-0.266667pt;}
.ws29{word-spacing:-0.234667pt;}
.ws12{word-spacing:-0.192000pt;}
.ws64{word-spacing:-0.176000pt;}
.ws2{word-spacing:-0.133333pt;}
.ws4a{word-spacing:-0.117333pt;}
.ws39{word-spacing:-0.058667pt;}
.wsad{word-spacing:-0.053333pt;}
.ws5{word-spacing:0.000000pt;}
.ws21{word-spacing:0.058667pt;}
.wsaf{word-spacing:0.106667pt;}
.ws38{word-spacing:0.117333pt;}
.ws3a{word-spacing:0.176000pt;}
.ws96{word-spacing:0.234667pt;}
.wsb0{word-spacing:0.266667pt;}
.ws44{word-spacing:0.293333pt;}
.ws7d{word-spacing:0.352000pt;}
.ws8d{word-spacing:0.410667pt;}
.wsc0{word-spacing:0.426667pt;}
.ws1f{word-spacing:0.528000pt;}
.wsb6{word-spacing:0.533333pt;}
.ws4d{word-spacing:0.586667pt;}
.ws4e{word-spacing:0.645333pt;}
.ws60{word-spacing:0.704000pt;}
.wsa6{word-spacing:0.762667pt;}
.wsf{word-spacing:0.768000pt;}
.ws57{word-spacing:0.880000pt;}
.wsae{word-spacing:0.960000pt;}
.wsc{word-spacing:1.056000pt;}
.ws1a{word-spacing:1.114667pt;}
.ws3e{word-spacing:1.349333pt;}
.ws91{word-spacing:1.584000pt;}
.ws14{word-spacing:1.642667pt;}
.ws92{word-spacing:1.818667pt;}
.wsb9{word-spacing:1.973333pt;}
.ws51{word-spacing:1.994667pt;}
.ws50{word-spacing:2.053333pt;}
.ws2e{word-spacing:2.112000pt;}
.wsa5{word-spacing:2.170667pt;}
.ws45{word-spacing:2.288000pt;}
.wsa8{word-spacing:2.464000pt;}
.wsb2{word-spacing:2.506667pt;}
.ws8c{word-spacing:2.640000pt;}
.ws35{word-spacing:2.698667pt;}
.ws8a{word-spacing:2.757333pt;}
.ws1e{word-spacing:2.816000pt;}
.wsd{word-spacing:2.832000pt;}
.ws63{word-spacing:2.874667pt;}
.ws10{word-spacing:2.928000pt;}
.ws40{word-spacing:2.933333pt;}
.ws53{word-spacing:2.992000pt;}
.wsa4{word-spacing:3.050667pt;}
.ws1c{word-spacing:3.285333pt;}
.ws84{word-spacing:3.344000pt;}
.ws78{word-spacing:3.402667pt;}
.ws5a{word-spacing:3.461333pt;}
.wsba{word-spacing:3.573333pt;}
.ws79{word-spacing:3.578667pt;}
.wsc2{word-spacing:3.786667pt;}
.ws48{word-spacing:3.813333pt;}
.wsc4{word-spacing:4.032000pt;}
.ws9a{word-spacing:4.048000pt;}
.wsa3{word-spacing:4.106667pt;}
.ws3d{word-spacing:4.165333pt;}
.wsa{word-spacing:4.176000pt;}
.ws54{word-spacing:4.224000pt;}
.wsb5{word-spacing:4.266667pt;}
.ws82{word-spacing:4.282667pt;}
.ws11{word-spacing:4.320000pt;}
.ws30{word-spacing:4.458667pt;}
.wsc1{word-spacing:4.480000pt;}
.ws16{word-spacing:4.517333pt;}
.ws22{word-spacing:4.928000pt;}
.ws73{word-spacing:5.045333pt;}
.ws87{word-spacing:5.104000pt;}
.ws18{word-spacing:5.162667pt;}
.ws8e{word-spacing:5.221333pt;}
.wsb4{word-spacing:5.333333pt;}
.ws74{word-spacing:5.397333pt;}
.ws2a{word-spacing:5.456000pt;}
.ws2b{word-spacing:5.514667pt;}
.ws94{word-spacing:5.573333pt;}
.ws55{word-spacing:5.690667pt;}
.ws75{word-spacing:5.749333pt;}
.ws26{word-spacing:5.866667pt;}
.ws85{word-spacing:5.984000pt;}
.ws32{word-spacing:6.042667pt;}
.ws46{word-spacing:6.101333pt;}
.ws9b{word-spacing:6.160000pt;}
.ws7{word-spacing:6.192000pt;}
.ws83{word-spacing:6.277333pt;}
.ws23{word-spacing:6.394667pt;}
.ws2f{word-spacing:6.512000pt;}
.ws3c{word-spacing:6.629333pt;}
.ws86{word-spacing:6.688000pt;}
.ws6e{word-spacing:6.773333pt;}
.ws2c{word-spacing:6.922667pt;}
.ws8f{word-spacing:7.098667pt;}
.ws69{word-spacing:7.157333pt;}
.ws6a{word-spacing:7.216000pt;}
.ws17{word-spacing:7.392000pt;}
.ws77{word-spacing:7.509333pt;}
.ws24{word-spacing:7.685333pt;}
.ws4b{word-spacing:7.861333pt;}
.ws6{word-spacing:7.872000pt;}
.ws6c{word-spacing:8.448000pt;}
.wsa9{word-spacing:8.917333pt;}
.ws6d{word-spacing:9.562667pt;}
.ws76{word-spacing:9.680000pt;}
.ws47{word-spacing:9.797333pt;}
.ws1b{word-spacing:9.856000pt;}
.ws93{word-spacing:10.032000pt;}
.ws9e{word-spacing:10.080000pt;}
.wsa2{word-spacing:10.149333pt;}
.ws81{word-spacing:10.384000pt;}
.ws52{word-spacing:10.501333pt;}
.ws68{word-spacing:10.560000pt;}
.ws1d{word-spacing:11.264000pt;}
.ws27{word-spacing:11.381333pt;}
.ws5b{word-spacing:11.557333pt;}
.ws99{word-spacing:11.733333pt;}
.ws7a{word-spacing:11.792000pt;}
.ws42{word-spacing:12.144000pt;}
.ws25{word-spacing:12.202667pt;}
.ws89{word-spacing:12.496000pt;}
.ws9c{word-spacing:12.613333pt;}
.ws5e{word-spacing:12.789333pt;}
.wsa1{word-spacing:13.082667pt;}
.ws56{word-spacing:13.258667pt;}
.ws62{word-spacing:14.314667pt;}
.ws61{word-spacing:14.549333pt;}
.ws88{word-spacing:14.725333pt;}
.ws95{word-spacing:15.898667pt;}
.ws8b{word-spacing:16.485333pt;}
.ws19{word-spacing:17.013333pt;}
.ws15{word-spacing:19.066667pt;}
.ws43{word-spacing:19.301333pt;}
.ws66{word-spacing:32.000000pt;}
.wsbf{word-spacing:46.977067pt;}
.ws71{word-spacing:418.996800pt;}
.ws70{word-spacing:520.944000pt;}
._20{margin-left:-51.920000pt;}
._26{margin-left:-21.333333pt;}
._22{margin-left:-6.202667pt;}
._d{margin-left:-5.192000pt;}
._9{margin-left:-3.435200pt;}
._1{margin-left:-2.542400pt;}
._0{margin-left:-0.970667pt;}
._2{width:1.004267pt;}
._7{width:2.445333pt;}
._4{width:3.403200pt;}
._12{width:4.319467pt;}
._3{width:5.265600pt;}
._6{width:6.198400pt;}
._a{width:7.130667pt;}
._b{width:8.260267pt;}
._c{width:9.230400pt;}
._10{width:10.186133pt;}
._5{width:12.048000pt;}
._f{width:12.962667pt;}
._e{width:14.352000pt;}
._25{width:15.541333pt;}
._11{width:19.562133pt;}
._24{width:20.850133pt;}
._8{width:32.000000pt;}
._23{width:46.589867pt;}
._13{width:56.784000pt;}
._1d{width:57.984000pt;}
._14{width:61.872000pt;}
._21{width:65.648000pt;}
._1f{width:163.088000pt;}
._17{width:275.040000pt;}
._1e{width:287.232000pt;}
._16{width:331.786667pt;}
._15{width:344.544000pt;}
._18{width:355.824000pt;}
._19{width:386.304000pt;}
._1a{width:425.760000pt;}
._1c{width:468.046400pt;}
._1b{width:574.992000pt;}
.fs1{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:106.666667pt;}
.fs3{font-size:133.333333pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:36.036533pt;}
.y5{bottom:49.373867pt;}
.y7{bottom:55.039333pt;}
.y4{bottom:62.711200pt;}
.y3{bottom:76.048533pt;}
.y2{bottom:89.385867pt;}
.y1{bottom:102.719200pt;}
.y1b9{bottom:139.842533pt;}
.y175{bottom:141.364800pt;}
.y19a{bottom:146.578133pt;}
.y1d{bottom:151.821867pt;}
.y11a{bottom:154.514133pt;}
.y90{bottom:154.558133pt;}
.y70{bottom:154.572800pt;}
.yfc{bottom:155.783200pt;}
.y174{bottom:158.698133pt;}
.y199{bottom:163.911467pt;}
.y45{bottom:164.345467pt;}
.y1b8{bottom:166.420133pt;}
.y1c{bottom:167.817867pt;}
.y119{bottom:173.184800pt;}
.y8f{bottom:173.228800pt;}
.y6f{bottom:173.243467pt;}
.yfb{bottom:174.453867pt;}
.y173{bottom:176.031467pt;}
.y198{bottom:181.244800pt;}
.yd1{bottom:181.995200pt;}
.y44{bottom:183.016133pt;}
.y1b{bottom:183.813867pt;}
.y13c{bottom:185.364400pt;}
.yc8{bottom:185.364800pt;}
.y118{bottom:191.855467pt;}
.ya5{bottom:191.899467pt;}
.y6e{bottom:191.914133pt;}
.yfa{bottom:193.124533pt;}
.y1a{bottom:199.809867pt;}
.y43{bottom:201.686800pt;}
.y13b{bottom:202.697733pt;}
.yc7{bottom:202.698133pt;}
.yd0{bottom:209.115200pt;}
.y117{bottom:210.526133pt;}
.y8e{bottom:210.555467pt;}
.ya4{bottom:210.570133pt;}
.y6d{bottom:210.584800pt;}
.y172{bottom:210.698133pt;}
.yf9{bottom:211.795200pt;}
.y197{bottom:212.938133pt;}
.y19{bottom:219.589333pt;}
.y13a{bottom:220.031067pt;}
.yc6{bottom:220.031467pt;}
.y42{bottom:220.357467pt;}
.y171{bottom:228.031467pt;}
.y116{bottom:229.196800pt;}
.y8d{bottom:229.226133pt;}
.y6c{bottom:229.255467pt;}
.y196{bottom:230.271467pt;}
.yf8{bottom:230.465867pt;}
.ycf{bottom:236.235200pt;}
.y139{bottom:237.364400pt;}
.yc5{bottom:237.364800pt;}
.y41{bottom:239.028133pt;}
.y1b7{bottom:241.204800pt;}
.y195{bottom:247.604800pt;}
.y115{bottom:247.867467pt;}
.y8c{bottom:247.896800pt;}
.y6b{bottom:247.926133pt;}
.yf7{bottom:249.136533pt;}
.yce{bottom:250.899200pt;}
.y138{bottom:254.697733pt;}
.yc4{bottom:254.698133pt;}
.y1b6{bottom:257.200800pt;}
.y40{bottom:257.698800pt;}
.y15f{bottom:260.015467pt;}
.y170{bottom:262.698133pt;}
.y114{bottom:266.538133pt;}
.y8b{bottom:266.567467pt;}
.y6a{bottom:266.596800pt;}
.yf6{bottom:267.807200pt;}
.y18{bottom:268.122800pt;}
.y1b5{bottom:273.196800pt;}
.y3f{bottom:276.369467pt;}
.ycd{bottom:278.019200pt;}
.y15e{bottom:278.686133pt;}
.y194{bottom:279.298133pt;}
.y16f{bottom:280.031467pt;}
.y113{bottom:285.208800pt;}
.y8a{bottom:285.238133pt;}
.yf5{bottom:286.477867pt;}
.y17{bottom:286.789467pt;}
.y137{bottom:290.600400pt;}
.yc3{bottom:290.607467pt;}
.ycc{bottom:292.683200pt;}
.y3e{bottom:295.040133pt;}
.y193{bottom:296.631467pt;}
.y15d{bottom:297.356800pt;}
.y112{bottom:303.879467pt;}
.y89{bottom:303.908800pt;}
.y69{bottom:303.923467pt;}
.yf4{bottom:305.148533pt;}
.y16{bottom:305.456133pt;}
.ycb{bottom:307.347200pt;}
.y136{bottom:309.271067pt;}
.yc2{bottom:309.278133pt;}
.y3d{bottom:313.710800pt;}
.y16e{bottom:314.698133pt;}
.y15c{bottom:316.027467pt;}
.y111{bottom:322.550133pt;}
.y88{bottom:322.579467pt;}
.y68{bottom:322.594133pt;}
.yf3{bottom:323.819200pt;}
.y15{bottom:324.122800pt;}
.y135{bottom:327.941733pt;}
.yc1{bottom:327.948800pt;}
.y192{bottom:328.324800pt;}
.yca{bottom:334.467200pt;}
.y15b{bottom:334.698133pt;}
.y110{bottom:341.220800pt;}
.y87{bottom:341.250133pt;}
.y67{bottom:341.264800pt;}
.yf2{bottom:342.489867pt;}
.y191{bottom:345.658133pt;}
.y134{bottom:346.612400pt;}
.yc0{bottom:346.619467pt;}
.y16d{bottom:349.364800pt;}
.y3c{bottom:351.037467pt;}
.y14{bottom:359.056133pt;}
.y10f{bottom:359.891467pt;}
.y86{bottom:359.920800pt;}
.y66{bottom:359.935467pt;}
.yf1{bottom:361.160533pt;}
.y1b4{bottom:365.258133pt;}
.y133{bottom:365.283067pt;}
.ybf{bottom:365.290133pt;}
.yc9{bottom:365.364800pt;}
.y16c{bottom:366.698133pt;}
.y3b{bottom:369.708133pt;}
.y15a{bottom:372.031467pt;}
.y190{bottom:377.351467pt;}
.y13{bottom:377.722800pt;}
.y10e{bottom:378.562133pt;}
.y85{bottom:378.591467pt;}
.y65{bottom:378.606133pt;}
.yf0{bottom:379.831200pt;}
.y132{bottom:383.953733pt;}
.ybe{bottom:383.960800pt;}
.y3a{bottom:388.378800pt;}
.y12{bottom:396.389467pt;}
.y10d{bottom:397.232800pt;}
.y84{bottom:397.262133pt;}
.y64{bottom:397.276800pt;}
.y1b3{bottom:397.711467pt;}
.yef{bottom:398.501867pt;}
.y16b{bottom:401.364800pt;}
.y131{bottom:402.624400pt;}
.ybd{bottom:402.631467pt;}
.y39{bottom:407.049467pt;}
.y18f{bottom:409.044800pt;}
.y1b2{bottom:415.044800pt;}
.y11{bottom:415.056133pt;}
.y10c{bottom:415.903467pt;}
.y83{bottom:415.932800pt;}
.y63{bottom:415.947467pt;}
.yee{bottom:417.172533pt;}
.y16a{bottom:418.698133pt;}
.y130{bottom:421.295067pt;}
.y38{bottom:425.720133pt;}
.y18e{bottom:426.378133pt;}
.y1b1{bottom:432.378133pt;}
.y10b{bottom:434.574133pt;}
.y82{bottom:434.603467pt;}
.y62{bottom:434.618133pt;}
.yed{bottom:435.843200pt;}
.ybc{bottom:439.958133pt;}
.y12f{bottom:439.965733pt;}
.y159{bottom:441.267467pt;}
.y18d{bottom:443.711467pt;}
.y37{bottom:444.390800pt;}
.y10{bottom:449.989467pt;}
.y10a{bottom:453.244800pt;}
.y81{bottom:453.274133pt;}
.y61{bottom:453.288800pt;}
.y169{bottom:453.364800pt;}
.yec{bottom:454.513867pt;}
.ybb{bottom:458.628800pt;}
.y158{bottom:459.938133pt;}
.y36{bottom:463.061467pt;}
.y1b0{bottom:464.831467pt;}
.yf{bottom:468.656133pt;}
.y109{bottom:471.915467pt;}
.y80{bottom:471.944800pt;}
.y60{bottom:471.959467pt;}
.yeb{bottom:473.184533pt;}
.y18c{bottom:475.404800pt;}
.y12e{bottom:477.292400pt;}
.yba{bottom:477.299467pt;}
.y157{bottom:478.608800pt;}
.y1af{bottom:482.164800pt;}
.ye{bottom:487.322800pt;}
.y168{bottom:488.031467pt;}
.y108{bottom:490.586133pt;}
.y7f{bottom:490.615467pt;}
.y5f{bottom:490.630133pt;}
.yea{bottom:491.855200pt;}
.y12d{bottom:495.963067pt;}
.yb9{bottom:495.970133pt;}
.y156{bottom:497.279467pt;}
.y35{bottom:500.394800pt;}
.yd{bottom:505.989467pt;}
.y18b{bottom:507.098133pt;}
.y107{bottom:509.256800pt;}
.ya3{bottom:509.271467pt;}
.y7e{bottom:509.286133pt;}
.y5e{bottom:509.300800pt;}
.ye9{bottom:510.525867pt;}
.y1ae{bottom:514.618133pt;}
.y12c{bottom:514.633733pt;}
.yb8{bottom:514.640800pt;}
.y155{bottom:515.950133pt;}
.y167{bottom:524.031467pt;}
.y18a{bottom:524.431467pt;}
.y106{bottom:527.927467pt;}
.ya2{bottom:527.942133pt;}
.y7d{bottom:527.956800pt;}
.y5d{bottom:527.971467pt;}
.ye8{bottom:529.196533pt;}
.y12b{bottom:533.304400pt;}
.yb7{bottom:533.311467pt;}
.y154{bottom:534.620800pt;}
.y189{bottom:541.764800pt;}
.y105{bottom:546.598133pt;}
.ya1{bottom:546.612800pt;}
.y7c{bottom:546.627467pt;}
.y5c{bottom:546.642133pt;}
.y1ad{bottom:547.071467pt;}
.ye7{bottom:547.867200pt;}
.yc{bottom:548.481867pt;}
.y12a{bottom:551.975067pt;}
.yb6{bottom:551.982133pt;}
.y153{bottom:553.291467pt;}
.y1ac{bottom:564.404800pt;}
.y104{bottom:565.268800pt;}
.ya0{bottom:565.283467pt;}
.y7b{bottom:565.298133pt;}
.y5b{bottom:565.312800pt;}
.ye6{bottom:566.537867pt;}
.y129{bottom:570.645733pt;}
.y152{bottom:571.962133pt;}
.y188{bottom:573.458133pt;}
.yb{bottom:580.481867pt;}
.y103{bottom:583.939467pt;}
.y9f{bottom:583.954133pt;}
.y7a{bottom:583.968800pt;}
.y5a{bottom:583.983467pt;}
.ye5{bottom:585.208533pt;}
.yb5{bottom:589.308800pt;}
.y128{bottom:589.316400pt;}
.y151{bottom:590.632800pt;}
.y187{bottom:590.791467pt;}
.y166{bottom:593.364800pt;}
.y1ab{bottom:596.858133pt;}
.y102{bottom:602.610133pt;}
.y9e{bottom:602.624800pt;}
.y79{bottom:602.639467pt;}
.ye4{bottom:603.879200pt;}
.yb4{bottom:607.979467pt;}
.y34{bottom:607.985333pt;}
.y127{bottom:607.987067pt;}
.y186{bottom:608.124800pt;}
.y150{bottom:609.303467pt;}
.y1aa{bottom:614.191467pt;}
.ya{bottom:620.040800pt;}
.y101{bottom:621.280800pt;}
.y9d{bottom:621.295467pt;}
.y59{bottom:621.310133pt;}
.ye3{bottom:622.549867pt;}
.y33{bottom:623.985333pt;}
.yb3{bottom:626.650133pt;}
.y126{bottom:626.657733pt;}
.y165{bottom:630.698133pt;}
.y185{bottom:639.818133pt;}
.y100{bottom:639.951467pt;}
.y9c{bottom:639.966133pt;}
.y58{bottom:639.980800pt;}
.ye2{bottom:641.220533pt;}
.yb2{bottom:645.320800pt;}
.y125{bottom:645.328400pt;}
.y14f{bottom:646.630133pt;}
.y1a9{bottom:646.644800pt;}
.y184{bottom:657.151467pt;}
.y32{bottom:657.888000pt;}
.yff{bottom:658.622133pt;}
.y78{bottom:658.636800pt;}
.y57{bottom:658.651467pt;}
.y9{bottom:660.040800pt;}
.y164{bottom:662.698133pt;}
.y1a8{bottom:663.978133pt;}
.yb1{bottom:663.991467pt;}
.y124{bottom:663.999067pt;}
.y14e{bottom:665.300800pt;}
.y31{bottom:673.884000pt;}
.y183{bottom:674.484800pt;}
.yfe{bottom:677.292800pt;}
.y77{bottom:677.307467pt;}
.y56{bottom:677.322133pt;}
.ye1{bottom:678.553867pt;}
.y1a7{bottom:681.311467pt;}
.yb0{bottom:682.662133pt;}
.y123{bottom:682.669733pt;}
.y14d{bottom:683.971467pt;}
.y30{bottom:689.880000pt;}
.yfd{bottom:695.963467pt;}
.y76{bottom:695.978133pt;}
.y55{bottom:695.992800pt;}
.y8{bottom:700.040800pt;}
.yaf{bottom:701.332800pt;}
.y122{bottom:701.340400pt;}
.y14c{bottom:702.642133pt;}
.y2f{bottom:705.876000pt;}
.y182{bottom:706.178133pt;}
.y1a6{bottom:713.764800pt;}
.y9b{bottom:714.634133pt;}
.y75{bottom:714.648800pt;}
.y54{bottom:714.663467pt;}
.yae{bottom:720.003467pt;}
.y121{bottom:720.011067pt;}
.y14b{bottom:721.312800pt;}
.y2e{bottom:721.872000pt;}
.y1a5{bottom:731.098133pt;}
.y163{bottom:732.031467pt;}
.y9a{bottom:733.304800pt;}
.y74{bottom:733.319467pt;}
.y2d{bottom:737.868000pt;}
.y181{bottom:737.871467pt;}
.yad{bottom:738.674133pt;}
.y120{bottom:738.681733pt;}
.y14a{bottom:739.983467pt;}
.y1a4{bottom:748.431467pt;}
.y99{bottom:751.975467pt;}
.y53{bottom:751.990133pt;}
.y2c{bottom:753.864000pt;}
.y180{bottom:755.204800pt;}
.ye0{bottom:755.800667pt;}
.yac{bottom:757.344800pt;}
.y11f{bottom:757.352400pt;}
.y149{bottom:758.654133pt;}
.y162{bottom:769.364800pt;}
.y2b{bottom:769.860000pt;}
.ydf{bottom:770.464667pt;}
.y98{bottom:770.646133pt;}
.y52{bottom:770.660800pt;}
.y17f{bottom:772.538133pt;}
.yab{bottom:776.015467pt;}
.y11e{bottom:776.023067pt;}
.y148{bottom:777.324800pt;}
.y1a3{bottom:780.884800pt;}
.yde{bottom:785.128667pt;}
.y2a{bottom:785.856000pt;}
.y97{bottom:789.316800pt;}
.y51{bottom:789.331467pt;}
.yaa{bottom:794.686133pt;}
.y11d{bottom:794.693733pt;}
.y147{bottom:795.995467pt;}
.y1a2{bottom:798.218133pt;}
.ydd{bottom:799.792667pt;}
.y29{bottom:801.852000pt;}
.y17e{bottom:804.231467pt;}
.y96{bottom:807.987467pt;}
.y50{bottom:808.002133pt;}
.ya9{bottom:813.356800pt;}
.y11c{bottom:813.364400pt;}
.ydc{bottom:814.456667pt;}
.y146{bottom:814.666133pt;}
.y28{bottom:821.631467pt;}
.y95{bottom:826.658133pt;}
.y4f{bottom:826.672800pt;}
.y1a1{bottom:830.671467pt;}
.ya8{bottom:832.027467pt;}
.y145{bottom:833.336800pt;}
.y17d{bottom:835.924800pt;}
.y161{bottom:838.698133pt;}
.ydb{bottom:841.576667pt;}
.y94{bottom:845.328800pt;}
.y4e{bottom:845.343467pt;}
.y1a0{bottom:848.004800pt;}
.y11b{bottom:850.697733pt;}
.ya7{bottom:850.698133pt;}
.y144{bottom:852.007467pt;}
.y17c{bottom:853.258133pt;}
.yda{bottom:856.240667pt;}
.y93{bottom:863.999467pt;}
.y4d{bottom:864.014133pt;}
.y27{bottom:870.164800pt;}
.y143{bottom:870.678133pt;}
.yd9{bottom:870.904667pt;}
.y160{bottom:876.031467pt;}
.y19f{bottom:880.458133pt;}
.y92{bottom:882.670133pt;}
.y4c{bottom:882.684800pt;}
.y17b{bottom:884.951467pt;}
.yd8{bottom:885.568667pt;}
.y26{bottom:886.164800pt;}
.ya6{bottom:888.031467pt;}
.y142{bottom:889.348800pt;}
.y19e{bottom:897.791467pt;}
.y91{bottom:901.340800pt;}
.y4b{bottom:901.355467pt;}
.y17a{bottom:902.284800pt;}
.y141{bottom:908.019467pt;}
.yd7{bottom:912.688667pt;}
.y19d{bottom:915.124800pt;}
.y73{bottom:920.011467pt;}
.y4a{bottom:920.026133pt;}
.y25{bottom:920.055467pt;}
.y140{bottom:926.690133pt;}
.yd6{bottom:927.352667pt;}
.y179{bottom:933.978133pt;}
.y24{bottom:936.051467pt;}
.y72{bottom:938.682133pt;}
.y49{bottom:938.696800pt;}
.yd5{bottom:942.016667pt;}
.y13f{bottom:945.360800pt;}
.y19c{bottom:947.578133pt;}
.y23{bottom:952.047467pt;}
.y71{bottom:957.352800pt;}
.y13e{bottom:964.031467pt;}
.y19b{bottom:964.911467pt;}
.y178{bottom:965.671467pt;}
.y22{bottom:968.043467pt;}
.yd4{bottom:969.136667pt;}
.y48{bottom:976.023467pt;}
.yd3{bottom:983.800667pt;}
.y21{bottom:984.039467pt;}
.y47{bottom:994.694133pt;}
.y177{bottom:997.364800pt;}
.y20{bottom:1000.035467pt;}
.y13d{bottom:1001.364800pt;}
.y46{bottom:1013.364800pt;}
.y176{bottom:1014.698133pt;}
.yd2{bottom:1014.698267pt;}
.y1f{bottom:1016.031467pt;}
.y1e{bottom:1065.597067pt;}
.h3{height:28.373333pt;}
.h2{height:31.146667pt;}
.hc{height:33.376000pt;}
.h11{height:34.080000pt;}
.h4{height:36.480000pt;}
.ha{height:36.624000pt;}
.h12{height:38.933333pt;}
.h13{height:40.533333pt;}
.h10{height:40.693333pt;}
.hb{height:42.912000pt;}
.hf{height:44.762667pt;}
.h9{height:46.720000pt;}
.h8{height:47.680000pt;}
.he{height:52.448000pt;}
.h7{height:55.264000pt;}
.h6{height:75.733333pt;}
.hd{height:77.866667pt;}
.h5{height:97.333333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.xa{left:84.436400pt;}
.x9{left:85.444400pt;}
.x3{left:86.440267pt;}
.x7{left:102.047200pt;}
.xb{left:104.260400pt;}
.xf{left:112.093733pt;}
.x13{left:113.377200pt;}
.x12{left:120.763867pt;}
.x10{left:128.505733pt;}
.x4{left:131.338533pt;}
.x14{left:212.675600pt;}
.xc{left:259.216400pt;}
.x8{left:323.031733pt;}
.xd{left:414.172400pt;}
.xe{left:569.128400pt;}
.x11{left:696.332133pt;}
.x5{left:697.484267pt;}
.x6{left:698.744267pt;}
.x2{left:699.842267pt;}
}




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