
    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_0510220b6f42bfeb81a1af4e.woff')format("woff");}.ff1{font-family:ff1;line-height:0.904297;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_3e625ca230e90b2e27f5945e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d2ab98ad2a0375863c092059.woff')format("woff");}.ff3{font-family:ff3;line-height:1.082031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6ebfba6becba021e676095c2.woff')format("woff");}.ff4{font-family:ff4;line-height:0.904297;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_81fcb4516a7d1b3735d483e7.woff')format("woff");}.ff5{font-family:ff5;line-height:0.678711;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_bffa7d2b62e05fe46bdefdeb.woff')format("woff");}.ff6{font-family:ff6;line-height:1.082031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6335ea03b75cc23c945c9df1.woff')format("woff");}.ff7{font-family:ff7;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_52d65ccb54a2b56032cd74ae.woff')format("woff");}.ff8{font-family:ff8;line-height:0.866211;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_2f9a27dca292f5e74941789b.woff')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v6{vertical-align:-26.640000px;}
.v5{vertical-align:-22.200000px;}
.v2{vertical-align:-2.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.982000px;}
.v4{vertical-align:26.543400px;}
.v3{vertical-align:87.000000px;}
.ls4d{letter-spacing:-6.930000px;}
.ls29{letter-spacing:-6.624000px;}
.ls40{letter-spacing:-6.600000px;}
.ls7{letter-spacing:-3.978000px;}
.ls61{letter-spacing:-2.808000px;}
.ls4f{letter-spacing:-2.640000px;}
.ls6{letter-spacing:-1.872000px;}
.ls28{letter-spacing:-1.080000px;}
.ls22{letter-spacing:-1.008000px;}
.ls14{letter-spacing:-0.936000px;}
.ls21{letter-spacing:-0.864000px;}
.ls4c{letter-spacing:-0.858000px;}
.ls20{letter-spacing:-0.792000px;}
.lsb{letter-spacing:-0.726000px;}
.ls2e{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.660000px;}
.ls5f{letter-spacing:-0.594000px;}
.ls32{letter-spacing:-0.576000px;}
.ls42{letter-spacing:-0.528000px;}
.ls23{letter-spacing:-0.504000px;}
.ls43{letter-spacing:-0.462000px;}
.ls16{letter-spacing:-0.432000px;}
.ls58{letter-spacing:-0.396000px;}
.ls13{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.330000px;}
.ls24{letter-spacing:-0.288000px;}
.ls4e{letter-spacing:-0.264000px;}
.ls2d{letter-spacing:-0.216000px;}
.ls3f{letter-spacing:-0.198000px;}
.ls2f{letter-spacing:-0.171000px;}
.ls15{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.132000px;}
.ls25{letter-spacing:-0.072000px;}
.ls9{letter-spacing:-0.066000px;}
.ls18{letter-spacing:-0.057000px;}
.ls5{letter-spacing:0.000000px;}
.ls3d{letter-spacing:0.066000px;}
.ls4{letter-spacing:0.132000px;}
.ls10{letter-spacing:0.144000px;}
.ls37{letter-spacing:0.198000px;}
.ls33{letter-spacing:0.216000px;}
.ls36{letter-spacing:0.262800px;}
.ls3b{letter-spacing:0.264000px;}
.ls35{letter-spacing:0.283200px;}
.ls1d{letter-spacing:0.288000px;}
.lse{letter-spacing:0.330000px;}
.ls1b{letter-spacing:0.360000px;}
.ls2b{letter-spacing:0.390600px;}
.ls3e{letter-spacing:0.396000px;}
.ls11{letter-spacing:0.432000px;}
.ls30{letter-spacing:0.441000px;}
.ls47{letter-spacing:0.462000px;}
.ls17{letter-spacing:0.504000px;}
.ls3c{letter-spacing:0.528000px;}
.ls19{letter-spacing:0.576000px;}
.ls51{letter-spacing:0.594000px;}
.ls1a{letter-spacing:0.648000px;}
.ls41{letter-spacing:0.660000px;}
.ls2a{letter-spacing:0.720000px;}
.ls38{letter-spacing:0.726000px;}
.ls26{letter-spacing:0.792000px;}
.ls45{letter-spacing:0.858000px;}
.ls53{letter-spacing:0.924000px;}
.ls1e{letter-spacing:0.936000px;}
.ls4b{letter-spacing:0.990000px;}
.ls1f{letter-spacing:1.008000px;}
.ls57{letter-spacing:1.056000px;}
.ls52{letter-spacing:1.122000px;}
.ls1c{letter-spacing:1.476000px;}
.ls4a{letter-spacing:1.960200px;}
.ls34{letter-spacing:2.916000px;}
.ls48{letter-spacing:3.630000px;}
.ls5a{letter-spacing:3.762000px;}
.ls27{letter-spacing:3.843000px;}
.ls54{letter-spacing:3.993000px;}
.ls49{letter-spacing:4.092000px;}
.ls0{letter-spacing:4.200000px;}
.ls2c{letter-spacing:4.392000px;}
.ls31{letter-spacing:4.473000px;}
.ls55{letter-spacing:4.554000px;}
.ls56{letter-spacing:4.573800px;}
.lsf{letter-spacing:5.313233px;}
.ls62{letter-spacing:5.760000px;}
.ls8{letter-spacing:5.940000px;}
.ls3a{letter-spacing:6.000000px;}
.ls44{letter-spacing:6.534000px;}
.ls1{letter-spacing:6.600000px;}
.ls3{letter-spacing:7.200000px;}
.ls46{letter-spacing:7.458000px;}
.ls50{letter-spacing:8.580000px;}
.ls39{letter-spacing:8.751600px;}
.ls12{letter-spacing:9.861000px;}
.ls63{letter-spacing:10.032000px;}
.ls2{letter-spacing:10.200000px;}
.ls59{letter-spacing:10.626000px;}
.ls5c{letter-spacing:10.824000px;}
.ls5d{letter-spacing:10.956000px;}
.ls60{letter-spacing:11.220000px;}
.ls5b{letter-spacing:12.012000px;}
.ls5e{letter-spacing:19.800000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-38.862000px;}
.ws1d{word-spacing:-27.432000px;}
.ws62{word-spacing:-22.860000px;}
.ws41{word-spacing:-20.736000px;}
.ws24{word-spacing:-20.232000px;}
.ws6c{word-spacing:-19.800000px;}
.ws23{word-spacing:-18.720000px;}
.ws53{word-spacing:-18.546000px;}
.ws33{word-spacing:-18.288000px;}
.ws6d{word-spacing:-18.282000px;}
.ws54{word-spacing:-18.216000px;}
.ws20{word-spacing:-18.144000px;}
.ws22{word-spacing:-18.072000px;}
.ws2{word-spacing:-17.820000px;}
.ws11{word-spacing:-17.784000px;}
.ws25{word-spacing:-17.640000px;}
.ws38{word-spacing:-17.568000px;}
.ws21{word-spacing:-17.496000px;}
.ws1e{word-spacing:-17.424000px;}
.ws1f{word-spacing:-17.280000px;}
.ws3c{word-spacing:-16.992000px;}
.ws6e{word-spacing:-16.962000px;}
.ws0{word-spacing:-16.860000px;}
.ws4a{word-spacing:-16.830000px;}
.ws32{word-spacing:-16.776000px;}
.ws55{word-spacing:-16.698000px;}
.ws43{word-spacing:-16.500000px;}
.ws44{word-spacing:-16.302000px;}
.ws64{word-spacing:-16.236000px;}
.ws49{word-spacing:-16.104000px;}
.ws13{word-spacing:-16.017000px;}
.ws5d{word-spacing:-15.906000px;}
.ws63{word-spacing:-15.708000px;}
.ws3f{word-spacing:-15.561000px;}
.ws26{word-spacing:-14.079000px;}
.ws12{word-spacing:-12.139200px;}
.ws66{word-spacing:-12.012000px;}
.ws68{word-spacing:-11.220000px;}
.ws69{word-spacing:-10.956000px;}
.ws67{word-spacing:-10.824000px;}
.ws42{word-spacing:-10.670400px;}
.ws65{word-spacing:-10.626000px;}
.ws6{word-spacing:-10.200000px;}
.ws71{word-spacing:-10.032000px;}
.wsa{word-spacing:-7.200000px;}
.ws45{word-spacing:-6.000000px;}
.ws8{word-spacing:-5.940000px;}
.ws6f{word-spacing:-5.760000px;}
.ws14{word-spacing:-4.200000px;}
.ws5f{word-spacing:-1.056000px;}
.ws30{word-spacing:-1.008000px;}
.ws56{word-spacing:-0.990000px;}
.ws31{word-spacing:-0.936000px;}
.ws60{word-spacing:-0.924000px;}
.ws57{word-spacing:-0.858000px;}
.ws36{word-spacing:-0.792000px;}
.ws48{word-spacing:-0.726000px;}
.ws37{word-spacing:-0.720000px;}
.ws4d{word-spacing:-0.660000px;}
.ws2b{word-spacing:-0.648000px;}
.ws5e{word-spacing:-0.594000px;}
.ws2a{word-spacing:-0.576000px;}
.ws4e{word-spacing:-0.528000px;}
.ws1a{word-spacing:-0.504000px;}
.ws5b{word-spacing:-0.462000px;}
.ws3d{word-spacing:-0.441000px;}
.ws1b{word-spacing:-0.432000px;}
.ws52{word-spacing:-0.396000px;}
.ws2d{word-spacing:-0.360000px;}
.ws10{word-spacing:-0.330000px;}
.ws2f{word-spacing:-0.288000px;}
.ws47{word-spacing:-0.264000px;}
.ws40{word-spacing:-0.216000px;}
.ws46{word-spacing:-0.198000px;}
.ws18{word-spacing:-0.144000px;}
.wsf{word-spacing:-0.132000px;}
.ws51{word-spacing:-0.066000px;}
.ws3{word-spacing:0.000000px;}
.ws1c{word-spacing:0.057000px;}
.ws9{word-spacing:0.066000px;}
.ws2e{word-spacing:0.072000px;}
.wse{word-spacing:0.132000px;}
.ws17{word-spacing:0.144000px;}
.ws3b{word-spacing:0.171000px;}
.ws4b{word-spacing:0.198000px;}
.ws5a{word-spacing:0.264000px;}
.ws39{word-spacing:0.288000px;}
.wsb{word-spacing:0.330000px;}
.ws15{word-spacing:0.360000px;}
.ws61{word-spacing:0.396000px;}
.ws19{word-spacing:0.432000px;}
.ws50{word-spacing:0.462000px;}
.ws2c{word-spacing:0.504000px;}
.ws4f{word-spacing:0.528000px;}
.ws3e{word-spacing:0.576000px;}
.ws70{word-spacing:0.594000px;}
.wsd{word-spacing:0.660000px;}
.ws3a{word-spacing:0.720000px;}
.wsc{word-spacing:0.726000px;}
.ws27{word-spacing:0.792000px;}
.ws58{word-spacing:0.858000px;}
.ws28{word-spacing:0.864000px;}
.ws16{word-spacing:0.936000px;}
.ws29{word-spacing:1.008000px;}
.ws34{word-spacing:1.080000px;}
.ws4{word-spacing:1.872000px;}
.ws5c{word-spacing:2.640000px;}
.ws7{word-spacing:3.978000px;}
.ws6a{word-spacing:4.200000px;}
.ws5{word-spacing:4.620000px;}
.ws4c{word-spacing:6.600000px;}
.ws35{word-spacing:6.624000px;}
.ws59{word-spacing:6.930000px;}
.ws6b{word-spacing:10.872000px;}
._19{margin-left:-19.560000px;}
._15{margin-left:-13.785600px;}
._13{margin-left:-11.364600px;}
._a{margin-left:-10.220400px;}
._9{margin-left:-8.547600px;}
._1{margin-left:-7.509600px;}
._4{margin-left:-6.060000px;}
._5{margin-left:-4.718400px;}
._7{margin-left:-3.131400px;}
._0{margin-left:-1.638000px;}
._2{width:1.806000px;}
._e{width:3.141600px;}
._3{width:4.242000px;}
._10{width:5.361000px;}
._c{width:6.377400px;}
._d{width:7.699200px;}
._f{width:8.728200px;}
._b{width:10.200000px;}
._11{width:11.287200px;}
._14{width:12.520200px;}
._6{width:16.442400px;}
._8{width:18.309000px;}
._18{width:19.584000px;}
._17{width:20.988000px;}
._16{width:22.276200px;}
._12{width:56.923200px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs0{font-size:42.000000px;}
.fs7{font-size:43.200000px;}
.fs1{font-size:48.000000px;}
.fs9{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fsa{font-size:63.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.fs6{font-size:211.855800px;}
.y0{bottom:0.000000px;}
.y2{bottom:63.934500px;}
.y3{bottom:76.339350px;}
.y1{bottom:78.334500px;}
.y6b{bottom:140.310450px;}
.yb3{bottom:140.311950px;}
.y47{bottom:140.313450px;}
.y1e9{bottom:142.503300px;}
.yf6{bottom:142.761000px;}
.y24{bottom:142.782150px;}
.y1c1{bottom:142.998300px;}
.y17d{bottom:143.057400px;}
.y13a{bottom:143.641050px;}
.y20a{bottom:144.928800px;}
.y159{bottom:145.002300px;}
.y91{bottom:145.167150px;}
.y22f{bottom:145.273500px;}
.y118{bottom:145.422900px;}
.yd4{bottom:145.751400px;}
.y24f{bottom:146.716800px;}
.y6a{bottom:156.811950px;}
.yb2{bottom:156.813450px;}
.y17c{bottom:160.602900px;}
.y1e8{bottom:162.154800px;}
.y23{bottom:162.285150px;}
.y46{bottom:162.364950px;}
.yd3{bottom:162.997650px;}
.y1c0{bottom:163.095300px;}
.y90{bottom:163.311150px;}
.yf5{bottom:164.955000px;}
.y209{bottom:165.025800px;}
.y22e{bottom:165.222000px;}
.y139{bottom:165.835050px;}
.y24e{bottom:167.259300px;}
.y158{bottom:167.358300px;}
.y117{bottom:167.922900px;}
.y69{bottom:173.313450px;}
.y17b{bottom:178.148400px;}
.y45{bottom:178.864950px;}
.yd2{bottom:180.842400px;}
.y8f{bottom:181.455150px;}
.y1e7{bottom:181.806300px;}
.y22{bottom:182.085150px;}
.y1bf{bottom:183.340800px;}
.y208{bottom:185.122800px;}
.y22d{bottom:185.170500px;}
.yf4{bottom:187.149000px;}
.y24d{bottom:187.801800px;}
.y138{bottom:188.029050px;}
.y157{bottom:189.714300px;}
.yb1{bottom:189.810450px;}
.y116{bottom:190.422900px;}
.y68{bottom:195.364950px;}
.y17a{bottom:195.693900px;}
.y8e{bottom:199.599150px;}
.y1e6{bottom:201.457800px;}
.y21{bottom:201.885150px;}
.y1be{bottom:203.586300px;}
.y19a{bottom:203.892450px;}
.y22c{bottom:205.119000px;}
.y207{bottom:205.219800px;}
.yb0{bottom:206.311950px;}
.y24c{bottom:208.344300px;}
.yf3{bottom:209.343000px;}
.y137{bottom:210.223050px;}
.yd1{bottom:211.444650px;}
.y156{bottom:212.070300px;}
.y115{bottom:212.922900px;}
.y44{bottom:214.633800px;}
.y8d{bottom:217.743150px;}
.y1e5{bottom:220.960800px;}
.y20{bottom:221.685150px;}
.yaf{bottom:222.813450px;}
.y1bd{bottom:223.831800px;}
.y199{bottom:224.286450px;}
.y22b{bottom:225.067500px;}
.y206{bottom:225.316800px;}
.y179{bottom:225.996900px;}
.y24b{bottom:228.886800px;}
.yd0{bottom:229.289400px;}
.y67{bottom:231.196350px;}
.y155{bottom:234.426300px;}
.y114{bottom:235.422900px;}
.y8c{bottom:235.887150px;}
.y43{bottom:236.377800px;}
.y1e4{bottom:240.463800px;}
.y1f{bottom:241.485150px;}
.y178{bottom:243.542400px;}
.y1bc{bottom:244.077300px;}
.yf2{bottom:244.296600px;}
.y198{bottom:244.680450px;}
.yae{bottom:244.864950px;}
.y22a{bottom:245.016000px;}
.y136{bottom:245.166750px;}
.y205{bottom:245.413800px;}
.ycf{bottom:247.134150px;}
.y24a{bottom:249.429300px;}
.y66{bottom:252.652350px;}
.y8b{bottom:254.031150px;}
.y154{bottom:256.782300px;}
.y113{bottom:257.922900px;}
.y42{bottom:258.121800px;}
.y1e3{bottom:259.966800px;}
.y177{bottom:261.087900px;}
.y1e{bottom:261.285150px;}
.yf1{bottom:262.897350px;}
.y135{bottom:263.767500px;}
.y1bb{bottom:264.322800px;}
.y229{bottom:264.964500px;}
.yce{bottom:264.978900px;}
.y197{bottom:265.074450px;}
.y204{bottom:265.510800px;}
.y249{bottom:269.971800px;}
.y8a{bottom:272.175150px;}
.y65{bottom:274.108350px;}
.y176{bottom:278.633400px;}
.y153{bottom:279.138300px;}
.y1e2{bottom:279.469800px;}
.y41{bottom:279.865800px;}
.y1d{bottom:281.085150px;}
.yf0{bottom:281.498100px;}
.y134{bottom:282.368250px;}
.yad{bottom:282.888600px;}
.y1ba{bottom:284.568300px;}
.y228{bottom:284.913000px;}
.y196{bottom:285.468450px;}
.y203{bottom:285.607800px;}
.y248{bottom:290.514300px;}
.y112{bottom:293.178900px;}
.ycd{bottom:295.578750px;}
.y1e1{bottom:298.972800px;}
.yef{bottom:300.098850px;}
.y1c{bottom:300.885150px;}
.y133{bottom:300.969000px;}
.y152{bottom:301.494300px;}
.y40{bottom:301.609800px;}
.y89{bottom:303.093150px;}
.y1b9{bottom:304.813800px;}
.y227{bottom:304.861500px;}
.yac{bottom:305.082600px;}
.y202{bottom:305.704800px;}
.y195{bottom:305.862450px;}
.y175{bottom:308.936400px;}
.y247{bottom:311.056800px;}
.y111{bottom:312.078900px;}
.y64{bottom:317.002350px;}
.ycc{bottom:317.034750px;}
.y1e0{bottom:318.475800px;}
.y132{bottom:319.569750px;}
.y3f{bottom:323.353800px;}
.y151{bottom:323.850300px;}
.y226{bottom:324.810000px;}
.y88{bottom:324.837150px;}
.y1b8{bottom:325.059300px;}
.y201{bottom:325.801800px;}
.y194{bottom:326.256450px;}
.y174{bottom:326.481900px;}
.yab{bottom:327.276600px;}
.y1b{bottom:329.189100px;}
.y110{bottom:330.978900px;}
.yee{bottom:331.568700px;}
.y246{bottom:331.599300px;}
.y1df{bottom:337.978800px;}
.y131{bottom:338.170500px;}
.y63{bottom:338.458350px;}
.ycb{bottom:338.490750px;}
.y173{bottom:344.027400px;}
.y225{bottom:344.758500px;}
.y3e{bottom:345.097800px;}
.y1b7{bottom:345.304800px;}
.y200{bottom:345.898800px;}
.y150{bottom:346.206300px;}
.y87{bottom:346.581150px;}
.y193{bottom:346.650450px;}
.yaa{bottom:349.470600px;}
.y10f{bottom:349.878900px;}
.y245{bottom:352.141800px;}
.yed{bottom:353.762700px;}
.y130{bottom:356.771250px;}
.y1de{bottom:357.481800px;}
.y62{bottom:359.914350px;}
.yca{bottom:359.946750px;}
.y172{bottom:361.572900px;}
.y224{bottom:364.707000px;}
.y1b6{bottom:365.550300px;}
.y1ff{bottom:365.995800px;}
.y3d{bottom:366.841800px;}
.y192{bottom:367.044450px;}
.ya9{bottom:371.664600px;}
.y1a{bottom:372.388950px;}
.y244{bottom:372.684300px;}
.y12f{bottom:375.372000px;}
.yec{bottom:375.956700px;}
.y1dd{bottom:376.984800px;}
.y86{bottom:381.151350px;}
.y61{bottom:381.370350px;}
.yc9{bottom:381.402750px;}
.y10e{bottom:381.534750px;}
.y223{bottom:384.655500px;}
.y1b5{bottom:385.795800px;}
.y1fe{bottom:386.092800px;}
.y191{bottom:387.438450px;}
.y3c{bottom:388.585800px;}
.y14f{bottom:390.900300px;}
.y171{bottom:391.884900px;}
.y19{bottom:392.188950px;}
.y243{bottom:393.226800px;}
.ya8{bottom:393.858600px;}
.y12e{bottom:393.972750px;}
.y1dc{bottom:396.487800px;}
.yeb{bottom:398.150700px;}
.y85{bottom:399.295350px;}
.y60{bottom:402.826350px;}
.y10d{bottom:404.034750px;}
.y1b4{bottom:406.041300px;}
.y1fd{bottom:406.189800px;}
.y190{bottom:407.832450px;}
.y3b{bottom:410.329800px;}
.y18{bottom:411.988950px;}
.y12d{bottom:412.573500px;}
.y170{bottom:413.178900px;}
.y14e{bottom:413.256300px;}
.y242{bottom:413.769300px;}
.y1db{bottom:415.990800px;}
.ya7{bottom:416.052600px;}
.y84{bottom:417.439350px;}
.yea{bottom:420.344700px;}
.yc8{bottom:424.152750px;}
.y5f{bottom:424.282350px;}
.y1b3{bottom:426.286800px;}
.y222{bottom:426.355500px;}
.y10c{bottom:426.534750px;}
.y18f{bottom:428.226450px;}
.y12c{bottom:431.174250px;}
.y17{bottom:431.788950px;}
.y3a{bottom:432.073800px;}
.y241{bottom:434.311800px;}
.y1da{bottom:435.493800px;}
.y83{bottom:435.583350px;}
.y14d{bottom:435.612300px;}
.ya6{bottom:438.246600px;}
.ye9{bottom:442.538700px;}
.yc7{bottom:445.446750px;}
.y5e{bottom:445.738350px;}
.y1fc{bottom:446.383800px;}
.y1b2{bottom:446.532300px;}
.y16f{bottom:447.264750px;}
.y18e{bottom:448.620450px;}
.y10b{bottom:449.034750px;}
.y16{bottom:451.588950px;}
.y82{bottom:453.727350px;}
.y39{bottom:453.817800px;}
.y1d9{bottom:454.996800px;}
.y14c{bottom:457.968300px;}
.y12b{bottom:462.532500px;}
.ye8{bottom:464.732700px;}
.y16e{bottom:464.810250px;}
.y1fb{bottom:466.480800px;}
.yc6{bottom:466.740750px;}
.y1b1{bottom:466.777800px;}
.y5d{bottom:467.194350px;}
.y221{bottom:468.067500px;}
.y18d{bottom:469.014450px;}
.y15{bottom:471.388950px;}
.y81{bottom:471.871350px;}
.ya5{bottom:473.198700px;}
.y1d8{bottom:474.499800px;}
.y38{bottom:475.639800px;}
.y240{bottom:477.211800px;}
.y14b{bottom:480.324300px;}
.y12a{bottom:481.133250px;}
.y16d{bottom:482.355750px;}
.y10a{bottom:484.285950px;}
.y1fa{bottom:486.577800px;}
.ye7{bottom:486.926700px;}
.y1b0{bottom:487.023300px;}
.yc5{bottom:488.034750px;}
.y5c{bottom:488.650350px;}
.y18c{bottom:489.408450px;}
.y220{bottom:489.811500px;}
.y80{bottom:490.015350px;}
.y14{bottom:491.188950px;}
.ya4{bottom:491.799450px;}
.y1d7{bottom:494.151300px;}
.y37{bottom:497.383800px;}
.y129{bottom:499.734000px;}
.y16c{bottom:499.901250px;}
.y14a{bottom:502.680300px;}
.y109{bottom:503.185950px;}
.y1f9{bottom:506.674800px;}
.y1af{bottom:507.268800px;}
.y7f{bottom:508.159350px;}
.ye6{bottom:509.120700px;}
.y18b{bottom:509.802450px;}
.y5b{bottom:510.106350px;}
.y13{bottom:510.988950px;}
.y21f{bottom:511.555500px;}
.y1d6{bottom:513.802800px;}
.y128{bottom:518.334750px;}
.y36{bottom:519.127800px;}
.y23f{bottom:520.105800px;}
.yc4{bottom:522.080100px;}
.y108{bottom:522.085950px;}
.ya3{bottom:523.157700px;}
.y149{bottom:525.036300px;}
.y1f8{bottom:526.771800px;}
.y1ae{bottom:527.514300px;}
.y16b{bottom:530.204250px;}
.y12{bottom:530.788950px;}
.ye5{bottom:531.314700px;}
.y5a{bottom:531.562350px;}
.y21e{bottom:533.305500px;}
.y1d5{bottom:533.454300px;}
.y18a{bottom:538.706400px;}
.y7e{bottom:539.060850px;}
.yc3{bottom:539.783100px;}
.y35{bottom:540.871800px;}
.ya2{bottom:541.758450px;}
.y23e{bottom:542.461800px;}
.y1f7{bottom:546.868800px;}
.y148{bottom:547.392300px;}
.y16a{bottom:547.749750px;}
.y1ad{bottom:547.759800px;}
.y127{bottom:549.684750px;}
.y11{bottom:550.588950px;}
.y59{bottom:553.018350px;}
.y1d4{bottom:553.105800px;}
.ye4{bottom:553.508700px;}
.y107{bottom:553.743450px;}
.y7d{bottom:557.204850px;}
.y34{bottom:562.615800px;}
.y23d{bottom:564.811800px;}
.y169{bottom:565.295250px;}
.y1f6{bottom:566.965800px;}
.y1ac{bottom:568.005300px;}
.y147{bottom:569.748300px;}
.yc2{bottom:570.243600px;}
.y10{bottom:570.388950px;}
.y126{bottom:571.590750px;}
.y106{bottom:572.643450px;}
.y1d3{bottom:572.757300px;}
.y21d{bottom:572.912250px;}
.ya1{bottom:573.162300px;}
.y58{bottom:574.474350px;}
.y7c{bottom:575.348850px;}
.ye3{bottom:575.702700px;}
.y168{bottom:582.840750px;}
.y33{bottom:584.359800px;}
.y1f5{bottom:587.062800px;}
.yc1{bottom:587.946600px;}
.y189{bottom:588.040350px;}
.y1ab{bottom:588.250800px;}
.y21c{bottom:589.855500px;}
.y105{bottom:591.543450px;}
.y146{bottom:592.104300px;}
.y1d2{bottom:592.408800px;}
.y7b{bottom:593.492850px;}
.ya0{bottom:595.356300px;}
.y57{bottom:595.930350px;}
.ye2{bottom:597.896700px;}
.yf{bottom:598.692900px;}
.y32{bottom:606.103800px;}
.y125{bottom:606.273300px;}
.y21b{bottom:606.783000px;}
.y1f4{bottom:607.159800px;}
.y1aa{bottom:608.496300px;}
.y188{bottom:610.234350px;}
.y104{bottom:610.443450px;}
.y1d1{bottom:612.060300px;}
.y167{bottom:613.146600px;}
.y56{bottom:617.386350px;}
.y9f{bottom:617.550300px;}
.yc0{bottom:618.408450px;}
.ye1{bottom:620.090700px;}
.y124{bottom:624.417300px;}
.y7a{bottom:624.434850px;}
.y21a{bottom:626.434500px;}
.y1f3{bottom:627.256800px;}
.y31{bottom:627.847800px;}
.y23c{bottom:628.261800px;}
.y1a9{bottom:628.741800px;}
.y103{bottom:629.343450px;}
.y1d0{bottom:631.711800px;}
.y187{bottom:632.428350px;}
.y166{bottom:634.296600px;}
.y145{bottom:636.798300px;}
.y55{bottom:638.842350px;}
.ybf{bottom:639.702450px;}
.y9e{bottom:639.744300px;}
.ye0{bottom:642.284700px;}
.y219{bottom:646.086000px;}
.y79{bottom:646.178850px;}
.y23b{bottom:647.011800px;}
.y1f2{bottom:647.353800px;}
.y1a8{bottom:648.838800px;}
.y30{bottom:649.591800px;}
.y1cf{bottom:651.363300px;}
.y186{bottom:654.622350px;}
.y123{bottom:655.318800px;}
.y144{bottom:659.154300px;}
.y54{bottom:660.298350px;}
.y102{bottom:661.000950px;}
.y9d{bottom:661.938300px;}
.ye{bottom:662.892900px;}
.ydf{bottom:664.478700px;}
.y218{bottom:665.737500px;}
.y23a{bottom:665.761800px;}
.y1f1{bottom:667.450800px;}
.y78{bottom:667.922850px;}
.y165{bottom:668.223450px;}
.y1a7{bottom:668.935800px;}
.y1ce{bottom:671.014800px;}
.y2f{bottom:671.335800px;}
.y122{bottom:673.462800px;}
.ybe{bottom:673.749450px;}
.y185{bottom:676.816350px;}
.y101{bottom:679.900950px;}
.y143{bottom:681.510300px;}
.y53{bottom:681.754350px;}
.yd{bottom:682.692900px;}
.y9c{bottom:684.132300px;}
.y239{bottom:684.511800px;}
.y217{bottom:685.389000px;}
.y164{bottom:685.768950px;}
.y1f0{bottom:687.547800px;}
.y1a6{bottom:689.032800px;}
.y77{bottom:689.666850px;}
.y1cd{bottom:690.666300px;}
.ybd{bottom:691.452450px;}
.y2e{bottom:693.079800px;}
.y256{bottom:696.511800px;}
.y100{bottom:698.800950px;}
.y184{bottom:699.016350px;}
.y52{bottom:703.210350px;}
.y238{bottom:703.261800px;}
.y142{bottom:703.866300px;}
.y121{bottom:704.364300px;}
.y216{bottom:705.040500px;}
.y9b{bottom:706.326300px;}
.y1ef{bottom:707.644800px;}
.yde{bottom:708.884700px;}
.y1a5{bottom:709.129800px;}
.ybc{bottom:709.155450px;}
.y1cc{bottom:710.317800px;}
.y76{bottom:711.410850px;}
.y255{bottom:714.511800px;}
.y2d{bottom:714.823800px;}
.y163{bottom:716.071950px;}
.yff{bottom:717.700950px;}
.y183{bottom:721.246350px;}
.y120{bottom:722.508300px;}
.yc{bottom:724.092900px;}
.y215{bottom:724.692000px;}
.y51{bottom:724.810350px;}
.y141{bottom:726.222300px;}
.ybb{bottom:726.858450px;}
.y1ee{bottom:727.741800px;}
.y9a{bottom:728.520300px;}
.y1a4{bottom:729.226800px;}
.y1cb{bottom:729.969300px;}
.ydd{bottom:731.078700px;}
.y254{bottom:732.511800px;}
.y75{bottom:733.154850px;}
.y162{bottom:733.617450px;}
.y2c{bottom:736.567800px;}
.y182{bottom:743.440350px;}
.y214{bottom:744.343500px;}
.y237{bottom:744.369300px;}
.y50{bottom:746.410350px;}
.y1ed{bottom:747.838800px;}
.y140{bottom:748.578300px;}
.y1a3{bottom:749.323800px;}
.yfe{bottom:749.358450px;}
.y1ca{bottom:749.620800px;}
.y253{bottom:750.511800px;}
.y99{bottom:750.738300px;}
.y161{bottom:751.162950px;}
.ydc{bottom:753.272700px;}
.y11f{bottom:753.456300px;}
.yb{bottom:754.692900px;}
.y74{bottom:754.898850px;}
.yba{bottom:757.344300px;}
.y2b{bottom:758.335950px;}
.y213{bottom:763.995000px;}
.y236{bottom:764.911800px;}
.y181{bottom:765.634350px;}
.y1ec{bottom:767.935800px;}
.y4f{bottom:768.010350px;}
.yfd{bottom:768.258450px;}
.y252{bottom:768.511800px;}
.y160{bottom:768.708450px;}
.y1c9{bottom:769.272300px;}
.y1a2{bottom:769.420800px;}
.y13f{bottom:770.934300px;}
.y98{bottom:772.932300px;}
.y11e{bottom:775.200300px;}
.ydb{bottom:775.466700px;}
.yb9{bottom:778.638300px;}
.y2a{bottom:780.079950px;}
.y212{bottom:783.646500px;}
.ya{bottom:785.292900px;}
.yfc{bottom:787.158450px;}
.y180{bottom:787.828350px;}
.y1eb{bottom:788.032800px;}
.y1c8{bottom:788.923800px;}
.y73{bottom:789.445200px;}
.y1a1{bottom:789.517800px;}
.y4e{bottom:789.610350px;}
.y13e{bottom:793.290300px;}
.y97{bottom:795.126300px;}
.y11d{bottom:796.944300px;}
.yda{bottom:797.660700px;}
.y15f{bottom:799.032300px;}
.yb8{bottom:799.932300px;}
.y29{bottom:801.823950px;}
.y211{bottom:803.298000px;}
.yfb{bottom:806.058450px;}
.y72{bottom:807.589200px;}
.y235{bottom:807.832800px;}
.y251{bottom:808.111800px;}
.y1ea{bottom:808.129800px;}
.y1c7{bottom:808.575300px;}
.y1a0{bottom:809.614800px;}
.y17f{bottom:810.022350px;}
.y4d{bottom:811.210350px;}
.y13d{bottom:815.646300px;}
.y96{bottom:817.320300px;}
.y11c{bottom:818.688300px;}
.yd9{bottom:819.854700px;}
.y15e{bottom:820.182300px;}
.y210{bottom:822.949500px;}
.y27{bottom:823.561950px;}
.y28{bottom:823.567950px;}
.y71{bottom:825.733200px;}
.y234{bottom:827.484300px;}
.y250{bottom:827.911800px;}
.y1c6{bottom:828.226800px;}
.y19f{bottom:829.711800px;}
.y17e{bottom:832.216350px;}
.y4c{bottom:832.810350px;}
.yfa{bottom:837.714300px;}
.y13c{bottom:838.002300px;}
.y95{bottom:839.514300px;}
.y11b{bottom:840.432300px;}
.y9{bottom:840.554400px;}
.y15d{bottom:841.476300px;}
.yb7{bottom:842.538300px;}
.y20f{bottom:842.601000px;}
.y70{bottom:843.877200px;}
.y233{bottom:847.135800px;}
.y1c5{bottom:848.323800px;}
.y19e{bottom:849.511800px;}
.y4b{bottom:854.410350px;}
.yd8{bottom:854.807700px;}
.y8{bottom:858.554400px;}
.yf9{bottom:860.214300px;}
.y13b{bottom:860.358300px;}
.y94{bottom:861.564300px;}
.y11a{bottom:862.176300px;}
.y20e{bottom:862.252500px;}
.y15c{bottom:862.770300px;}
.yb6{bottom:863.832300px;}
.y232{bottom:867.529800px;}
.y1c4{bottom:868.420800px;}
.y19d{bottom:869.311800px;}
.yd7{bottom:873.408450px;}
.y6f{bottom:874.778700px;}
.y4a{bottom:876.010350px;}
.y7{bottom:876.554400px;}
.y6{bottom:876.556800px;}
.y20d{bottom:881.904000px;}
.yf8{bottom:882.714300px;}
.y93{bottom:883.614300px;}
.y119{bottom:883.920300px;}
.y15b{bottom:884.064300px;}
.yb5{bottom:885.126300px;}
.y231{bottom:887.923800px;}
.y1c3{bottom:888.517800px;}
.y26{bottom:888.814800px;}
.y19c{bottom:889.111800px;}
.yd6{bottom:892.009200px;}
.y6e{bottom:892.922700px;}
.y49{bottom:897.610350px;}
.y20c{bottom:901.555500px;}
.yf7{bottom:905.214300px;}
.y15a{bottom:905.358300px;}
.y92{bottom:905.664300px;}
.yb4{bottom:906.420300px;}
.y230{bottom:908.317800px;}
.y1c2{bottom:908.614800px;}
.y25{bottom:908.763300px;}
.y19b{bottom:908.911800px;}
.yd5{bottom:910.609950px;}
.y5{bottom:910.711800px;}
.y6d{bottom:911.066700px;}
.y48{bottom:927.714300px;}
.y4{bottom:928.711800px;}
.y6c{bottom:929.210700px;}
.y20b{bottom:929.709450px;}
.hb{height:26.199902px;}
.hf{height:30.568359px;}
.h9{height:35.663086px;}
.h13{height:39.990234px;}
.h3{height:40.283203px;}
.h2{height:40.757812px;}
.h4{height:43.989258px;}
.h14{height:44.311523px;}
.h10{height:48.339844px;}
.hc{height:48.399902px;}
.h5{height:50.947266px;}
.hd{height:53.494629px;}
.h7{height:56.041992px;}
.h8{height:61.136719px;}
.h11{height:63.178031px;}
.he{height:63.226031px;}
.h12{height:63.298031px;}
.h6{height:86.610352px;}
.ha{height:148.136719px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x4{left:76.535400px;}
.x8{left:97.795350px;}
.x10{left:114.794700px;}
.xa{left:119.044350px;}
.x9{left:135.351000px;}
.xd{left:140.307150px;}
.x5{left:142.216050px;}
.xb{left:150.670350px;}
.x7{left:239.256150px;}
.x11{left:261.410400px;}
.x1{left:365.253600px;}
.x6{left:389.657550px;}
.x2{left:406.652700px;}
.xf{left:530.015700px;}
.xe{left:538.978950px;}
.xc{left:602.539350px;}
.x3{left:610.039350px;}
@media print{
.v6{vertical-align:-23.680000pt;}
.v5{vertical-align:-19.733333pt;}
.v2{vertical-align:-2.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.650667pt;}
.v4{vertical-align:23.594133pt;}
.v3{vertical-align:77.333333pt;}
.ls4d{letter-spacing:-6.160000pt;}
.ls29{letter-spacing:-5.888000pt;}
.ls40{letter-spacing:-5.866667pt;}
.ls7{letter-spacing:-3.536000pt;}
.ls61{letter-spacing:-2.496000pt;}
.ls4f{letter-spacing:-2.346667pt;}
.ls6{letter-spacing:-1.664000pt;}
.ls28{letter-spacing:-0.960000pt;}
.ls22{letter-spacing:-0.896000pt;}
.ls14{letter-spacing:-0.832000pt;}
.ls21{letter-spacing:-0.768000pt;}
.ls4c{letter-spacing:-0.762667pt;}
.ls20{letter-spacing:-0.704000pt;}
.lsb{letter-spacing:-0.645333pt;}
.ls2e{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.586667pt;}
.ls5f{letter-spacing:-0.528000pt;}
.ls32{letter-spacing:-0.512000pt;}
.ls42{letter-spacing:-0.469333pt;}
.ls23{letter-spacing:-0.448000pt;}
.ls43{letter-spacing:-0.410667pt;}
.ls16{letter-spacing:-0.384000pt;}
.ls58{letter-spacing:-0.352000pt;}
.ls13{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.293333pt;}
.ls24{letter-spacing:-0.256000pt;}
.ls4e{letter-spacing:-0.234667pt;}
.ls2d{letter-spacing:-0.192000pt;}
.ls3f{letter-spacing:-0.176000pt;}
.ls2f{letter-spacing:-0.152000pt;}
.ls15{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.117333pt;}
.ls25{letter-spacing:-0.064000pt;}
.ls9{letter-spacing:-0.058667pt;}
.ls18{letter-spacing:-0.050667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3d{letter-spacing:0.058667pt;}
.ls4{letter-spacing:0.117333pt;}
.ls10{letter-spacing:0.128000pt;}
.ls37{letter-spacing:0.176000pt;}
.ls33{letter-spacing:0.192000pt;}
.ls36{letter-spacing:0.233600pt;}
.ls3b{letter-spacing:0.234667pt;}
.ls35{letter-spacing:0.251733pt;}
.ls1d{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.293333pt;}
.ls1b{letter-spacing:0.320000pt;}
.ls2b{letter-spacing:0.347200pt;}
.ls3e{letter-spacing:0.352000pt;}
.ls11{letter-spacing:0.384000pt;}
.ls30{letter-spacing:0.392000pt;}
.ls47{letter-spacing:0.410667pt;}
.ls17{letter-spacing:0.448000pt;}
.ls3c{letter-spacing:0.469333pt;}
.ls19{letter-spacing:0.512000pt;}
.ls51{letter-spacing:0.528000pt;}
.ls1a{letter-spacing:0.576000pt;}
.ls41{letter-spacing:0.586667pt;}
.ls2a{letter-spacing:0.640000pt;}
.ls38{letter-spacing:0.645333pt;}
.ls26{letter-spacing:0.704000pt;}
.ls45{letter-spacing:0.762667pt;}
.ls53{letter-spacing:0.821333pt;}
.ls1e{letter-spacing:0.832000pt;}
.ls4b{letter-spacing:0.880000pt;}
.ls1f{letter-spacing:0.896000pt;}
.ls57{letter-spacing:0.938667pt;}
.ls52{letter-spacing:0.997333pt;}
.ls1c{letter-spacing:1.312000pt;}
.ls4a{letter-spacing:1.742400pt;}
.ls34{letter-spacing:2.592000pt;}
.ls48{letter-spacing:3.226667pt;}
.ls5a{letter-spacing:3.344000pt;}
.ls27{letter-spacing:3.416000pt;}
.ls54{letter-spacing:3.549333pt;}
.ls49{letter-spacing:3.637333pt;}
.ls0{letter-spacing:3.733333pt;}
.ls2c{letter-spacing:3.904000pt;}
.ls31{letter-spacing:3.976000pt;}
.ls55{letter-spacing:4.048000pt;}
.ls56{letter-spacing:4.065600pt;}
.lsf{letter-spacing:4.722874pt;}
.ls62{letter-spacing:5.120000pt;}
.ls8{letter-spacing:5.280000pt;}
.ls3a{letter-spacing:5.333333pt;}
.ls44{letter-spacing:5.808000pt;}
.ls1{letter-spacing:5.866667pt;}
.ls3{letter-spacing:6.400000pt;}
.ls46{letter-spacing:6.629333pt;}
.ls50{letter-spacing:7.626667pt;}
.ls39{letter-spacing:7.779200pt;}
.ls12{letter-spacing:8.765333pt;}
.ls63{letter-spacing:8.917333pt;}
.ls2{letter-spacing:9.066667pt;}
.ls59{letter-spacing:9.445333pt;}
.ls5c{letter-spacing:9.621333pt;}
.ls5d{letter-spacing:9.738667pt;}
.ls60{letter-spacing:9.973333pt;}
.ls5b{letter-spacing:10.677333pt;}
.ls5e{letter-spacing:17.600000pt;}
.ws1{word-spacing:-34.544000pt;}
.ws1d{word-spacing:-24.384000pt;}
.ws62{word-spacing:-20.320000pt;}
.ws41{word-spacing:-18.432000pt;}
.ws24{word-spacing:-17.984000pt;}
.ws6c{word-spacing:-17.600000pt;}
.ws23{word-spacing:-16.640000pt;}
.ws53{word-spacing:-16.485333pt;}
.ws33{word-spacing:-16.256000pt;}
.ws6d{word-spacing:-16.250667pt;}
.ws54{word-spacing:-16.192000pt;}
.ws20{word-spacing:-16.128000pt;}
.ws22{word-spacing:-16.064000pt;}
.ws2{word-spacing:-15.840000pt;}
.ws11{word-spacing:-15.808000pt;}
.ws25{word-spacing:-15.680000pt;}
.ws38{word-spacing:-15.616000pt;}
.ws21{word-spacing:-15.552000pt;}
.ws1e{word-spacing:-15.488000pt;}
.ws1f{word-spacing:-15.360000pt;}
.ws3c{word-spacing:-15.104000pt;}
.ws6e{word-spacing:-15.077333pt;}
.ws0{word-spacing:-14.986667pt;}
.ws4a{word-spacing:-14.960000pt;}
.ws32{word-spacing:-14.912000pt;}
.ws55{word-spacing:-14.842667pt;}
.ws43{word-spacing:-14.666667pt;}
.ws44{word-spacing:-14.490667pt;}
.ws64{word-spacing:-14.432000pt;}
.ws49{word-spacing:-14.314667pt;}
.ws13{word-spacing:-14.237333pt;}
.ws5d{word-spacing:-14.138667pt;}
.ws63{word-spacing:-13.962667pt;}
.ws3f{word-spacing:-13.832000pt;}
.ws26{word-spacing:-12.514667pt;}
.ws12{word-spacing:-10.790400pt;}
.ws66{word-spacing:-10.677333pt;}
.ws68{word-spacing:-9.973333pt;}
.ws69{word-spacing:-9.738667pt;}
.ws67{word-spacing:-9.621333pt;}
.ws42{word-spacing:-9.484800pt;}
.ws65{word-spacing:-9.445333pt;}
.ws6{word-spacing:-9.066667pt;}
.ws71{word-spacing:-8.917333pt;}
.wsa{word-spacing:-6.400000pt;}
.ws45{word-spacing:-5.333333pt;}
.ws8{word-spacing:-5.280000pt;}
.ws6f{word-spacing:-5.120000pt;}
.ws14{word-spacing:-3.733333pt;}
.ws5f{word-spacing:-0.938667pt;}
.ws30{word-spacing:-0.896000pt;}
.ws56{word-spacing:-0.880000pt;}
.ws31{word-spacing:-0.832000pt;}
.ws60{word-spacing:-0.821333pt;}
.ws57{word-spacing:-0.762667pt;}
.ws36{word-spacing:-0.704000pt;}
.ws48{word-spacing:-0.645333pt;}
.ws37{word-spacing:-0.640000pt;}
.ws4d{word-spacing:-0.586667pt;}
.ws2b{word-spacing:-0.576000pt;}
.ws5e{word-spacing:-0.528000pt;}
.ws2a{word-spacing:-0.512000pt;}
.ws4e{word-spacing:-0.469333pt;}
.ws1a{word-spacing:-0.448000pt;}
.ws5b{word-spacing:-0.410667pt;}
.ws3d{word-spacing:-0.392000pt;}
.ws1b{word-spacing:-0.384000pt;}
.ws52{word-spacing:-0.352000pt;}
.ws2d{word-spacing:-0.320000pt;}
.ws10{word-spacing:-0.293333pt;}
.ws2f{word-spacing:-0.256000pt;}
.ws47{word-spacing:-0.234667pt;}
.ws40{word-spacing:-0.192000pt;}
.ws46{word-spacing:-0.176000pt;}
.ws18{word-spacing:-0.128000pt;}
.wsf{word-spacing:-0.117333pt;}
.ws51{word-spacing:-0.058667pt;}
.ws3{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.050667pt;}
.ws9{word-spacing:0.058667pt;}
.ws2e{word-spacing:0.064000pt;}
.wse{word-spacing:0.117333pt;}
.ws17{word-spacing:0.128000pt;}
.ws3b{word-spacing:0.152000pt;}
.ws4b{word-spacing:0.176000pt;}
.ws5a{word-spacing:0.234667pt;}
.ws39{word-spacing:0.256000pt;}
.wsb{word-spacing:0.293333pt;}
.ws15{word-spacing:0.320000pt;}
.ws61{word-spacing:0.352000pt;}
.ws19{word-spacing:0.384000pt;}
.ws50{word-spacing:0.410667pt;}
.ws2c{word-spacing:0.448000pt;}
.ws4f{word-spacing:0.469333pt;}
.ws3e{word-spacing:0.512000pt;}
.ws70{word-spacing:0.528000pt;}
.wsd{word-spacing:0.586667pt;}
.ws3a{word-spacing:0.640000pt;}
.wsc{word-spacing:0.645333pt;}
.ws27{word-spacing:0.704000pt;}
.ws58{word-spacing:0.762667pt;}
.ws28{word-spacing:0.768000pt;}
.ws16{word-spacing:0.832000pt;}
.ws29{word-spacing:0.896000pt;}
.ws34{word-spacing:0.960000pt;}
.ws4{word-spacing:1.664000pt;}
.ws5c{word-spacing:2.346667pt;}
.ws7{word-spacing:3.536000pt;}
.ws6a{word-spacing:3.733333pt;}
.ws5{word-spacing:4.106667pt;}
.ws4c{word-spacing:5.866667pt;}
.ws35{word-spacing:5.888000pt;}
.ws59{word-spacing:6.160000pt;}
.ws6b{word-spacing:9.664000pt;}
._19{margin-left:-17.386667pt;}
._15{margin-left:-12.253867pt;}
._13{margin-left:-10.101867pt;}
._a{margin-left:-9.084800pt;}
._9{margin-left:-7.597867pt;}
._1{margin-left:-6.675200pt;}
._4{margin-left:-5.386667pt;}
._5{margin-left:-4.194133pt;}
._7{margin-left:-2.783467pt;}
._0{margin-left:-1.456000pt;}
._2{width:1.605333pt;}
._e{width:2.792533pt;}
._3{width:3.770667pt;}
._10{width:4.765333pt;}
._c{width:5.668800pt;}
._d{width:6.843733pt;}
._f{width:7.758400pt;}
._b{width:9.066667pt;}
._11{width:10.033067pt;}
._14{width:11.129067pt;}
._6{width:14.615467pt;}
._8{width:16.274667pt;}
._18{width:17.408000pt;}
._17{width:18.656000pt;}
._16{width:19.801067pt;}
._12{width:50.598400pt;}
.fs8{font-size:32.000000pt;}
.fs0{font-size:37.333333pt;}
.fs7{font-size:38.400000pt;}
.fs1{font-size:42.666667pt;}
.fs9{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fsa{font-size:56.000000pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.fs6{font-size:188.316267pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:56.830667pt;}
.y3{bottom:67.857200pt;}
.y1{bottom:69.630667pt;}
.y6b{bottom:124.720400pt;}
.yb3{bottom:124.721733pt;}
.y47{bottom:124.723067pt;}
.y1e9{bottom:126.669600pt;}
.yf6{bottom:126.898667pt;}
.y24{bottom:126.917467pt;}
.y1c1{bottom:127.109600pt;}
.y17d{bottom:127.162133pt;}
.y13a{bottom:127.680933pt;}
.y20a{bottom:128.825600pt;}
.y159{bottom:128.890933pt;}
.y91{bottom:129.037467pt;}
.y22f{bottom:129.132000pt;}
.y118{bottom:129.264800pt;}
.yd4{bottom:129.556800pt;}
.y24f{bottom:130.414933pt;}
.y6a{bottom:139.388400pt;}
.yb2{bottom:139.389733pt;}
.y17c{bottom:142.758133pt;}
.y1e8{bottom:144.137600pt;}
.y23{bottom:144.253467pt;}
.y46{bottom:144.324400pt;}
.yd3{bottom:144.886800pt;}
.y1c0{bottom:144.973600pt;}
.y90{bottom:145.165467pt;}
.yf5{bottom:146.626667pt;}
.y209{bottom:146.689600pt;}
.y22e{bottom:146.864000pt;}
.y139{bottom:147.408933pt;}
.y24e{bottom:148.674933pt;}
.y158{bottom:148.762933pt;}
.y117{bottom:149.264800pt;}
.y69{bottom:154.056400pt;}
.y17b{bottom:158.354133pt;}
.y45{bottom:158.991067pt;}
.yd2{bottom:160.748800pt;}
.y8f{bottom:161.293467pt;}
.y1e7{bottom:161.605600pt;}
.y22{bottom:161.853467pt;}
.y1bf{bottom:162.969600pt;}
.y208{bottom:164.553600pt;}
.y22d{bottom:164.596000pt;}
.yf4{bottom:166.354667pt;}
.y24d{bottom:166.934933pt;}
.y138{bottom:167.136933pt;}
.y157{bottom:168.634933pt;}
.yb1{bottom:168.720400pt;}
.y116{bottom:169.264800pt;}
.y68{bottom:173.657733pt;}
.y17a{bottom:173.950133pt;}
.y8e{bottom:177.421467pt;}
.y1e6{bottom:179.073600pt;}
.y21{bottom:179.453467pt;}
.y1be{bottom:180.965600pt;}
.y19a{bottom:181.237733pt;}
.y22c{bottom:182.328000pt;}
.y207{bottom:182.417600pt;}
.yb0{bottom:183.388400pt;}
.y24c{bottom:185.194933pt;}
.yf3{bottom:186.082667pt;}
.y137{bottom:186.864933pt;}
.yd1{bottom:187.950800pt;}
.y156{bottom:188.506933pt;}
.y115{bottom:189.264800pt;}
.y44{bottom:190.785600pt;}
.y8d{bottom:193.549467pt;}
.y1e5{bottom:196.409600pt;}
.y20{bottom:197.053467pt;}
.yaf{bottom:198.056400pt;}
.y1bd{bottom:198.961600pt;}
.y199{bottom:199.365733pt;}
.y22b{bottom:200.060000pt;}
.y206{bottom:200.281600pt;}
.y179{bottom:200.886133pt;}
.y24b{bottom:203.454933pt;}
.yd0{bottom:203.812800pt;}
.y67{bottom:205.507867pt;}
.y155{bottom:208.378933pt;}
.y114{bottom:209.264800pt;}
.y8c{bottom:209.677467pt;}
.y43{bottom:210.113600pt;}
.y1e4{bottom:213.745600pt;}
.y1f{bottom:214.653467pt;}
.y178{bottom:216.482133pt;}
.y1bc{bottom:216.957600pt;}
.yf2{bottom:217.152533pt;}
.y198{bottom:217.493733pt;}
.yae{bottom:217.657733pt;}
.y22a{bottom:217.792000pt;}
.y136{bottom:217.926000pt;}
.y205{bottom:218.145600pt;}
.ycf{bottom:219.674800pt;}
.y24a{bottom:221.714933pt;}
.y66{bottom:224.579867pt;}
.y8b{bottom:225.805467pt;}
.y154{bottom:228.250933pt;}
.y113{bottom:229.264800pt;}
.y42{bottom:229.441600pt;}
.y1e3{bottom:231.081600pt;}
.y177{bottom:232.078133pt;}
.y1e{bottom:232.253467pt;}
.yf1{bottom:233.686533pt;}
.y135{bottom:234.460000pt;}
.y1bb{bottom:234.953600pt;}
.y229{bottom:235.524000pt;}
.yce{bottom:235.536800pt;}
.y197{bottom:235.621733pt;}
.y204{bottom:236.009600pt;}
.y249{bottom:239.974933pt;}
.y8a{bottom:241.933467pt;}
.y65{bottom:243.651867pt;}
.y176{bottom:247.674133pt;}
.y153{bottom:248.122933pt;}
.y1e2{bottom:248.417600pt;}
.y41{bottom:248.769600pt;}
.y1d{bottom:249.853467pt;}
.yf0{bottom:250.220533pt;}
.y134{bottom:250.994000pt;}
.yad{bottom:251.456533pt;}
.y1ba{bottom:252.949600pt;}
.y228{bottom:253.256000pt;}
.y196{bottom:253.749733pt;}
.y203{bottom:253.873600pt;}
.y248{bottom:258.234933pt;}
.y112{bottom:260.603467pt;}
.ycd{bottom:262.736667pt;}
.y1e1{bottom:265.753600pt;}
.yef{bottom:266.754533pt;}
.y1c{bottom:267.453467pt;}
.y133{bottom:267.528000pt;}
.y152{bottom:267.994933pt;}
.y40{bottom:268.097600pt;}
.y89{bottom:269.416133pt;}
.y1b9{bottom:270.945600pt;}
.y227{bottom:270.988000pt;}
.yac{bottom:271.184533pt;}
.y202{bottom:271.737600pt;}
.y195{bottom:271.877733pt;}
.y175{bottom:274.610133pt;}
.y247{bottom:276.494933pt;}
.y111{bottom:277.403467pt;}
.y64{bottom:281.779867pt;}
.ycc{bottom:281.808667pt;}
.y1e0{bottom:283.089600pt;}
.y132{bottom:284.062000pt;}
.y3f{bottom:287.425600pt;}
.y151{bottom:287.866933pt;}
.y226{bottom:288.720000pt;}
.y88{bottom:288.744133pt;}
.y1b8{bottom:288.941600pt;}
.y201{bottom:289.601600pt;}
.y194{bottom:290.005733pt;}
.y174{bottom:290.206133pt;}
.yab{bottom:290.912533pt;}
.y1b{bottom:292.612533pt;}
.y110{bottom:294.203467pt;}
.yee{bottom:294.727733pt;}
.y246{bottom:294.754933pt;}
.y1df{bottom:300.425600pt;}
.y131{bottom:300.596000pt;}
.y63{bottom:300.851867pt;}
.ycb{bottom:300.880667pt;}
.y173{bottom:305.802133pt;}
.y225{bottom:306.452000pt;}
.y3e{bottom:306.753600pt;}
.y1b7{bottom:306.937600pt;}
.y200{bottom:307.465600pt;}
.y150{bottom:307.738933pt;}
.y87{bottom:308.072133pt;}
.y193{bottom:308.133733pt;}
.yaa{bottom:310.640533pt;}
.y10f{bottom:311.003467pt;}
.y245{bottom:313.014933pt;}
.yed{bottom:314.455733pt;}
.y130{bottom:317.130000pt;}
.y1de{bottom:317.761600pt;}
.y62{bottom:319.923867pt;}
.yca{bottom:319.952667pt;}
.y172{bottom:321.398133pt;}
.y224{bottom:324.184000pt;}
.y1b6{bottom:324.933600pt;}
.y1ff{bottom:325.329600pt;}
.y3d{bottom:326.081600pt;}
.y192{bottom:326.261733pt;}
.ya9{bottom:330.368533pt;}
.y1a{bottom:331.012400pt;}
.y244{bottom:331.274933pt;}
.y12f{bottom:333.664000pt;}
.yec{bottom:334.183733pt;}
.y1dd{bottom:335.097600pt;}
.y86{bottom:338.801200pt;}
.y61{bottom:338.995867pt;}
.yc9{bottom:339.024667pt;}
.y10e{bottom:339.142000pt;}
.y223{bottom:341.916000pt;}
.y1b5{bottom:342.929600pt;}
.y1fe{bottom:343.193600pt;}
.y191{bottom:344.389733pt;}
.y3c{bottom:345.409600pt;}
.y14f{bottom:347.466933pt;}
.y171{bottom:348.342133pt;}
.y19{bottom:348.612400pt;}
.y243{bottom:349.534933pt;}
.ya8{bottom:350.096533pt;}
.y12e{bottom:350.198000pt;}
.y1dc{bottom:352.433600pt;}
.yeb{bottom:353.911733pt;}
.y85{bottom:354.929200pt;}
.y60{bottom:358.067867pt;}
.y10d{bottom:359.142000pt;}
.y1b4{bottom:360.925600pt;}
.y1fd{bottom:361.057600pt;}
.y190{bottom:362.517733pt;}
.y3b{bottom:364.737600pt;}
.y18{bottom:366.212400pt;}
.y12d{bottom:366.732000pt;}
.y170{bottom:367.270133pt;}
.y14e{bottom:367.338933pt;}
.y242{bottom:367.794933pt;}
.y1db{bottom:369.769600pt;}
.ya7{bottom:369.824533pt;}
.y84{bottom:371.057200pt;}
.yea{bottom:373.639733pt;}
.yc8{bottom:377.024667pt;}
.y5f{bottom:377.139867pt;}
.y1b3{bottom:378.921600pt;}
.y222{bottom:378.982667pt;}
.y10c{bottom:379.142000pt;}
.y18f{bottom:380.645733pt;}
.y12c{bottom:383.266000pt;}
.y17{bottom:383.812400pt;}
.y3a{bottom:384.065600pt;}
.y241{bottom:386.054933pt;}
.y1da{bottom:387.105600pt;}
.y83{bottom:387.185200pt;}
.y14d{bottom:387.210933pt;}
.ya6{bottom:389.552533pt;}
.ye9{bottom:393.367733pt;}
.yc7{bottom:395.952667pt;}
.y5e{bottom:396.211867pt;}
.y1fc{bottom:396.785600pt;}
.y1b2{bottom:396.917600pt;}
.y16f{bottom:397.568667pt;}
.y18e{bottom:398.773733pt;}
.y10b{bottom:399.142000pt;}
.y16{bottom:401.412400pt;}
.y82{bottom:403.313200pt;}
.y39{bottom:403.393600pt;}
.y1d9{bottom:404.441600pt;}
.y14c{bottom:407.082933pt;}
.y12b{bottom:411.140000pt;}
.ye8{bottom:413.095733pt;}
.y16e{bottom:413.164667pt;}
.y1fb{bottom:414.649600pt;}
.yc6{bottom:414.880667pt;}
.y1b1{bottom:414.913600pt;}
.y5d{bottom:415.283867pt;}
.y221{bottom:416.060000pt;}
.y18d{bottom:416.901733pt;}
.y15{bottom:419.012400pt;}
.y81{bottom:419.441200pt;}
.ya5{bottom:420.621067pt;}
.y1d8{bottom:421.777600pt;}
.y38{bottom:422.790933pt;}
.y240{bottom:424.188267pt;}
.y14b{bottom:426.954933pt;}
.y12a{bottom:427.674000pt;}
.y16d{bottom:428.760667pt;}
.y10a{bottom:430.476400pt;}
.y1fa{bottom:432.513600pt;}
.ye7{bottom:432.823733pt;}
.y1b0{bottom:432.909600pt;}
.yc5{bottom:433.808667pt;}
.y5c{bottom:434.355867pt;}
.y18c{bottom:435.029733pt;}
.y220{bottom:435.388000pt;}
.y80{bottom:435.569200pt;}
.y14{bottom:436.612400pt;}
.ya4{bottom:437.155067pt;}
.y1d7{bottom:439.245600pt;}
.y37{bottom:442.118933pt;}
.y129{bottom:444.208000pt;}
.y16c{bottom:444.356667pt;}
.y14a{bottom:446.826933pt;}
.y109{bottom:447.276400pt;}
.y1f9{bottom:450.377600pt;}
.y1af{bottom:450.905600pt;}
.y7f{bottom:451.697200pt;}
.ye6{bottom:452.551733pt;}
.y18b{bottom:453.157733pt;}
.y5b{bottom:453.427867pt;}
.y13{bottom:454.212400pt;}
.y21f{bottom:454.716000pt;}
.y1d6{bottom:456.713600pt;}
.y128{bottom:460.742000pt;}
.y36{bottom:461.446933pt;}
.y23f{bottom:462.316267pt;}
.yc4{bottom:464.071200pt;}
.y108{bottom:464.076400pt;}
.ya3{bottom:465.029067pt;}
.y149{bottom:466.698933pt;}
.y1f8{bottom:468.241600pt;}
.y1ae{bottom:468.901600pt;}
.y16b{bottom:471.292667pt;}
.y12{bottom:471.812400pt;}
.ye5{bottom:472.279733pt;}
.y5a{bottom:472.499867pt;}
.y21e{bottom:474.049333pt;}
.y1d5{bottom:474.181600pt;}
.y18a{bottom:478.850133pt;}
.y7e{bottom:479.165200pt;}
.yc3{bottom:479.807200pt;}
.y35{bottom:480.774933pt;}
.ya2{bottom:481.563067pt;}
.y23e{bottom:482.188267pt;}
.y1f7{bottom:486.105600pt;}
.y148{bottom:486.570933pt;}
.y16a{bottom:486.888667pt;}
.y1ad{bottom:486.897600pt;}
.y127{bottom:488.608667pt;}
.y11{bottom:489.412400pt;}
.y59{bottom:491.571867pt;}
.y1d4{bottom:491.649600pt;}
.ye4{bottom:492.007733pt;}
.y107{bottom:492.216400pt;}
.y7d{bottom:495.293200pt;}
.y34{bottom:500.102933pt;}
.y23d{bottom:502.054933pt;}
.y169{bottom:502.484667pt;}
.y1f6{bottom:503.969600pt;}
.y1ac{bottom:504.893600pt;}
.y147{bottom:506.442933pt;}
.yc2{bottom:506.883200pt;}
.y10{bottom:507.012400pt;}
.y126{bottom:508.080667pt;}
.y106{bottom:509.016400pt;}
.y1d3{bottom:509.117600pt;}
.y21d{bottom:509.255333pt;}
.ya1{bottom:509.477600pt;}
.y58{bottom:510.643867pt;}
.y7c{bottom:511.421200pt;}
.ye3{bottom:511.735733pt;}
.y168{bottom:518.080667pt;}
.y33{bottom:519.430933pt;}
.y1f5{bottom:521.833600pt;}
.yc1{bottom:522.619200pt;}
.y189{bottom:522.702533pt;}
.y1ab{bottom:522.889600pt;}
.y21c{bottom:524.316000pt;}
.y105{bottom:525.816400pt;}
.y146{bottom:526.314933pt;}
.y1d2{bottom:526.585600pt;}
.y7b{bottom:527.549200pt;}
.ya0{bottom:529.205600pt;}
.y57{bottom:529.715867pt;}
.ye2{bottom:531.463733pt;}
.yf{bottom:532.171467pt;}
.y32{bottom:538.758933pt;}
.y125{bottom:538.909600pt;}
.y21b{bottom:539.362667pt;}
.y1f4{bottom:539.697600pt;}
.y1aa{bottom:540.885600pt;}
.y188{bottom:542.430533pt;}
.y104{bottom:542.616400pt;}
.y1d1{bottom:544.053600pt;}
.y167{bottom:545.019200pt;}
.y56{bottom:548.787867pt;}
.y9f{bottom:548.933600pt;}
.yc0{bottom:549.696400pt;}
.ye1{bottom:551.191733pt;}
.y124{bottom:555.037600pt;}
.y7a{bottom:555.053200pt;}
.y21a{bottom:556.830667pt;}
.y1f3{bottom:557.561600pt;}
.y31{bottom:558.086933pt;}
.y23c{bottom:558.454933pt;}
.y1a9{bottom:558.881600pt;}
.y103{bottom:559.416400pt;}
.y1d0{bottom:561.521600pt;}
.y187{bottom:562.158533pt;}
.y166{bottom:563.819200pt;}
.y145{bottom:566.042933pt;}
.y55{bottom:567.859867pt;}
.ybf{bottom:568.624400pt;}
.y9e{bottom:568.661600pt;}
.ye0{bottom:570.919733pt;}
.y219{bottom:574.298667pt;}
.y79{bottom:574.381200pt;}
.y23b{bottom:575.121600pt;}
.y1f2{bottom:575.425600pt;}
.y1a8{bottom:576.745600pt;}
.y30{bottom:577.414933pt;}
.y1cf{bottom:578.989600pt;}
.y186{bottom:581.886533pt;}
.y123{bottom:582.505600pt;}
.y144{bottom:585.914933pt;}
.y54{bottom:586.931867pt;}
.y102{bottom:587.556400pt;}
.y9d{bottom:588.389600pt;}
.ye{bottom:589.238133pt;}
.ydf{bottom:590.647733pt;}
.y218{bottom:591.766667pt;}
.y23a{bottom:591.788267pt;}
.y1f1{bottom:593.289600pt;}
.y78{bottom:593.709200pt;}
.y165{bottom:593.976400pt;}
.y1a7{bottom:594.609600pt;}
.y1ce{bottom:596.457600pt;}
.y2f{bottom:596.742933pt;}
.y122{bottom:598.633600pt;}
.ybe{bottom:598.888400pt;}
.y185{bottom:601.614533pt;}
.y101{bottom:604.356400pt;}
.y143{bottom:605.786933pt;}
.y53{bottom:606.003867pt;}
.yd{bottom:606.838133pt;}
.y9c{bottom:608.117600pt;}
.y239{bottom:608.454933pt;}
.y217{bottom:609.234667pt;}
.y164{bottom:609.572400pt;}
.y1f0{bottom:611.153600pt;}
.y1a6{bottom:612.473600pt;}
.y77{bottom:613.037200pt;}
.y1cd{bottom:613.925600pt;}
.ybd{bottom:614.624400pt;}
.y2e{bottom:616.070933pt;}
.y256{bottom:619.121600pt;}
.y100{bottom:621.156400pt;}
.y184{bottom:621.347867pt;}
.y52{bottom:625.075867pt;}
.y238{bottom:625.121600pt;}
.y142{bottom:625.658933pt;}
.y121{bottom:626.101600pt;}
.y216{bottom:626.702667pt;}
.y9b{bottom:627.845600pt;}
.y1ef{bottom:629.017600pt;}
.yde{bottom:630.119733pt;}
.y1a5{bottom:630.337600pt;}
.ybc{bottom:630.360400pt;}
.y1cc{bottom:631.393600pt;}
.y76{bottom:632.365200pt;}
.y255{bottom:635.121600pt;}
.y2d{bottom:635.398933pt;}
.y163{bottom:636.508400pt;}
.yff{bottom:637.956400pt;}
.y183{bottom:641.107867pt;}
.y120{bottom:642.229600pt;}
.yc{bottom:643.638133pt;}
.y215{bottom:644.170667pt;}
.y51{bottom:644.275867pt;}
.y141{bottom:645.530933pt;}
.ybb{bottom:646.096400pt;}
.y1ee{bottom:646.881600pt;}
.y9a{bottom:647.573600pt;}
.y1a4{bottom:648.201600pt;}
.y1cb{bottom:648.861600pt;}
.ydd{bottom:649.847733pt;}
.y254{bottom:651.121600pt;}
.y75{bottom:651.693200pt;}
.y162{bottom:652.104400pt;}
.y2c{bottom:654.726933pt;}
.y182{bottom:660.835867pt;}
.y214{bottom:661.638667pt;}
.y237{bottom:661.661600pt;}
.y50{bottom:663.475867pt;}
.y1ed{bottom:664.745600pt;}
.y140{bottom:665.402933pt;}
.y1a3{bottom:666.065600pt;}
.yfe{bottom:666.096400pt;}
.y1ca{bottom:666.329600pt;}
.y253{bottom:667.121600pt;}
.y99{bottom:667.322933pt;}
.y161{bottom:667.700400pt;}
.ydc{bottom:669.575733pt;}
.y11f{bottom:669.738933pt;}
.yb{bottom:670.838133pt;}
.y74{bottom:671.021200pt;}
.yba{bottom:673.194933pt;}
.y2b{bottom:674.076400pt;}
.y213{bottom:679.106667pt;}
.y236{bottom:679.921600pt;}
.y181{bottom:680.563867pt;}
.y1ec{bottom:682.609600pt;}
.y4f{bottom:682.675867pt;}
.yfd{bottom:682.896400pt;}
.y252{bottom:683.121600pt;}
.y160{bottom:683.296400pt;}
.y1c9{bottom:683.797600pt;}
.y1a2{bottom:683.929600pt;}
.y13f{bottom:685.274933pt;}
.y98{bottom:687.050933pt;}
.y11e{bottom:689.066933pt;}
.ydb{bottom:689.303733pt;}
.yb9{bottom:692.122933pt;}
.y2a{bottom:693.404400pt;}
.y212{bottom:696.574667pt;}
.ya{bottom:698.038133pt;}
.yfc{bottom:699.696400pt;}
.y180{bottom:700.291867pt;}
.y1eb{bottom:700.473600pt;}
.y1c8{bottom:701.265600pt;}
.y73{bottom:701.729067pt;}
.y1a1{bottom:701.793600pt;}
.y4e{bottom:701.875867pt;}
.y13e{bottom:705.146933pt;}
.y97{bottom:706.778933pt;}
.y11d{bottom:708.394933pt;}
.yda{bottom:709.031733pt;}
.y15f{bottom:710.250933pt;}
.yb8{bottom:711.050933pt;}
.y29{bottom:712.732400pt;}
.y211{bottom:714.042667pt;}
.yfb{bottom:716.496400pt;}
.y72{bottom:717.857067pt;}
.y235{bottom:718.073600pt;}
.y251{bottom:718.321600pt;}
.y1ea{bottom:718.337600pt;}
.y1c7{bottom:718.733600pt;}
.y1a0{bottom:719.657600pt;}
.y17f{bottom:720.019867pt;}
.y4d{bottom:721.075867pt;}
.y13d{bottom:725.018933pt;}
.y96{bottom:726.506933pt;}
.y11c{bottom:727.722933pt;}
.yd9{bottom:728.759733pt;}
.y15e{bottom:729.050933pt;}
.y210{bottom:731.510667pt;}
.y27{bottom:732.055067pt;}
.y28{bottom:732.060400pt;}
.y71{bottom:733.985067pt;}
.y234{bottom:735.541600pt;}
.y250{bottom:735.921600pt;}
.y1c6{bottom:736.201600pt;}
.y19f{bottom:737.521600pt;}
.y17e{bottom:739.747867pt;}
.y4c{bottom:740.275867pt;}
.yfa{bottom:744.634933pt;}
.y13c{bottom:744.890933pt;}
.y95{bottom:746.234933pt;}
.y11b{bottom:747.050933pt;}
.y9{bottom:747.159467pt;}
.y15d{bottom:747.978933pt;}
.yb7{bottom:748.922933pt;}
.y20f{bottom:748.978667pt;}
.y70{bottom:750.113067pt;}
.y233{bottom:753.009600pt;}
.y1c5{bottom:754.065600pt;}
.y19e{bottom:755.121600pt;}
.y4b{bottom:759.475867pt;}
.yd8{bottom:759.829067pt;}
.y8{bottom:763.159467pt;}
.yf9{bottom:764.634933pt;}
.y13b{bottom:764.762933pt;}
.y94{bottom:765.834933pt;}
.y11a{bottom:766.378933pt;}
.y20e{bottom:766.446667pt;}
.y15c{bottom:766.906933pt;}
.yb6{bottom:767.850933pt;}
.y232{bottom:771.137600pt;}
.y1c4{bottom:771.929600pt;}
.y19d{bottom:772.721600pt;}
.yd7{bottom:776.363067pt;}
.y6f{bottom:777.581067pt;}
.y4a{bottom:778.675867pt;}
.y7{bottom:779.159467pt;}
.y6{bottom:779.161600pt;}
.y20d{bottom:783.914667pt;}
.yf8{bottom:784.634933pt;}
.y93{bottom:785.434933pt;}
.y119{bottom:785.706933pt;}
.y15b{bottom:785.834933pt;}
.yb5{bottom:786.778933pt;}
.y231{bottom:789.265600pt;}
.y1c3{bottom:789.793600pt;}
.y26{bottom:790.057600pt;}
.y19c{bottom:790.321600pt;}
.yd6{bottom:792.897067pt;}
.y6e{bottom:793.709067pt;}
.y49{bottom:797.875867pt;}
.y20c{bottom:801.382667pt;}
.yf7{bottom:804.634933pt;}
.y15a{bottom:804.762933pt;}
.y92{bottom:805.034933pt;}
.yb4{bottom:805.706933pt;}
.y230{bottom:807.393600pt;}
.y1c2{bottom:807.657600pt;}
.y25{bottom:807.789600pt;}
.y19b{bottom:807.921600pt;}
.yd5{bottom:809.431067pt;}
.y5{bottom:809.521600pt;}
.y6d{bottom:809.837067pt;}
.y48{bottom:824.634933pt;}
.y4{bottom:825.521600pt;}
.y6c{bottom:825.965067pt;}
.y20b{bottom:826.408400pt;}
.hb{height:23.288802pt;}
.hf{height:27.171875pt;}
.h9{height:31.700521pt;}
.h13{height:35.546875pt;}
.h3{height:35.807292pt;}
.h2{height:36.229167pt;}
.h4{height:39.101562pt;}
.h14{height:39.388021pt;}
.h10{height:42.968750pt;}
.hc{height:43.022135pt;}
.h5{height:45.286458pt;}
.hd{height:47.550781pt;}
.h7{height:49.815104pt;}
.h8{height:54.343750pt;}
.h11{height:56.158250pt;}
.he{height:56.200917pt;}
.h12{height:56.264917pt;}
.h6{height:76.986979pt;}
.ha{height:131.677083pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x4{left:68.031467pt;}
.x8{left:86.929200pt;}
.x10{left:102.039733pt;}
.xa{left:105.817200pt;}
.x9{left:120.312000pt;}
.xd{left:124.717467pt;}
.x5{left:126.414267pt;}
.xb{left:133.929200pt;}
.x7{left:212.672133pt;}
.x11{left:232.364800pt;}
.x1{left:324.669867pt;}
.x6{left:346.362267pt;}
.x2{left:361.469067pt;}
.xf{left:471.125067pt;}
.xe{left:479.092400pt;}
.xc{left:535.590533pt;}
.x3{left:542.257200pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  