
    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_51d7614322e67eb27018bd86.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_52212239d952e6c8338859c8.woff')format("woff");}.ff2{font-family:ff2;line-height:1.016113;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_97ca019066091c1018d60448.woff')format("woff");}.ff3{font-family:ff3;line-height:0.907715;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_95526fe10d02b7467b90f5a1.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c692a2cb4a80253e2cdf3d1a.woff')format("woff");}.ff5{font-family:ff5;line-height:0.851000;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_bd42b18aa237a4705d4941cb.woff')format("woff");}.ff6{font-family:ff6;line-height:1.045000;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_d52fd09f94bbfe4ca3166f4d.woff')format("woff");}.ff7{font-family:ff7;line-height:1.016113;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_ae4866038000a4d349c61c2e.woff')format("woff");}.ff8{font-family:ff8;line-height:0.902344;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_0f9d9baf48f98ffbc62c9439.woff')format("woff");}.ff9{font-family:ff9;line-height:0.902344;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_ce430439fcd410ed231102b0.woff')format("woff");}.ffa{font-family:ffa;line-height:0.845703;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_b14e1b129ab120dace73a6db.woff')format("woff");}.ffb{font-family:ffb;line-height:0.892000;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_69cf004a3acd593fcafb052e.woff')format("woff");}.ffc{font-family:ffc;line-height:0.666992;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:37.500000px;}
.v2{vertical-align:75.000000px;}
.ls22{letter-spacing:-5.580000px;}
.lse{letter-spacing:-1.224000px;}
.ls1a{letter-spacing:-1.152000px;}
.ls2e{letter-spacing:-1.080000px;}
.ls19{letter-spacing:-1.008000px;}
.ls8{letter-spacing:-0.864000px;}
.ls2d{letter-spacing:-0.792000px;}
.ls18{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.648000px;}
.ls10{letter-spacing:-0.576000px;}
.ls1e{letter-spacing:-0.504000px;}
.ls12{letter-spacing:-0.432000px;}
.lsc{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.300000px;}
.ls11{letter-spacing:-0.288000px;}
.ls30{letter-spacing:-0.240000px;}
.ls21{letter-spacing:-0.216000px;}
.ls1d{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.072000px;}
.ls5{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.072000px;}
.ls26{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.216000px;}
.ls1c{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.360000px;}
.ls27{letter-spacing:0.381600px;}
.lsd{letter-spacing:0.432000px;}
.lsb{letter-spacing:0.504000px;}
.ls3{letter-spacing:0.576000px;}
.ls13{letter-spacing:0.648000px;}
.ls1f{letter-spacing:0.720000px;}
.ls28{letter-spacing:0.792000px;}
.ls20{letter-spacing:0.864000px;}
.ls16{letter-spacing:0.936000px;}
.ls14{letter-spacing:1.008000px;}
.ls23{letter-spacing:1.080000px;}
.ls24{letter-spacing:1.368000px;}
.ls17{letter-spacing:1.440000px;}
.ls29{letter-spacing:1.512000px;}
.ls2b{letter-spacing:4.260000px;}
.ls31{letter-spacing:4.416000px;}
.lsa{letter-spacing:4.558800px;}
.ls7{letter-spacing:4.560000px;}
.ls2f{letter-spacing:4.752000px;}
.ls2a{letter-spacing:8.436000px;}
.ls2{letter-spacing:8.460000px;}
.ls1{letter-spacing:10.740000px;}
.ls25{letter-spacing:13.190400px;}
.ls32{letter-spacing:30.120000px;}
.ls0{letter-spacing:61.140000px;}
.ls2c{letter-spacing:313.500000px;}
.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;}
}
.wsb7{word-spacing:-48.000000px;}
.ws74{word-spacing:-25.320000px;}
.ws80{word-spacing:-20.592000px;}
.ws73{word-spacing:-20.232000px;}
.ws26{word-spacing:-19.584000px;}
.ws7d{word-spacing:-18.792000px;}
.ws7f{word-spacing:-18.144000px;}
.ws19{word-spacing:-17.784000px;}
.ws93{word-spacing:-17.712000px;}
.ws92{word-spacing:-17.640000px;}
.ws7e{word-spacing:-17.568000px;}
.ws65{word-spacing:-17.424000px;}
.ws66{word-spacing:-17.064000px;}
.wsb9{word-spacing:-16.860000px;}
.ws77{word-spacing:-14.820000px;}
.wsb4{word-spacing:-11.616000px;}
.wsb6{word-spacing:-11.328000px;}
.ws75{word-spacing:-11.280000px;}
.ws49{word-spacing:-8.640000px;}
.wsac{word-spacing:-8.496000px;}
.ws45{word-spacing:-4.752000px;}
.ws7{word-spacing:-4.560000px;}
.ws46{word-spacing:-4.392000px;}
.ws43{word-spacing:-3.528000px;}
.ws5f{word-spacing:-2.088000px;}
.ws56{word-spacing:-2.016000px;}
.ws6e{word-spacing:-1.800000px;}
.ws6f{word-spacing:-1.728000px;}
.ws5d{word-spacing:-1.656000px;}
.wsa1{word-spacing:-1.008000px;}
.ws57{word-spacing:-0.936000px;}
.ws83{word-spacing:-0.720000px;}
.ws9d{word-spacing:-0.648000px;}
.ws6a{word-spacing:-0.504000px;}
.wsaf{word-spacing:-0.432000px;}
.ws62{word-spacing:-0.360000px;}
.ws2{word-spacing:0.000000px;}
.ws1b{word-spacing:0.072000px;}
.ws6d{word-spacing:0.144000px;}
.ws4a{word-spacing:0.216000px;}
.wsb5{word-spacing:0.240000px;}
.wsb8{word-spacing:0.300000px;}
.ws16{word-spacing:0.360000px;}
.wsf{word-spacing:0.432000px;}
.ws5c{word-spacing:0.576000px;}
.ws3d{word-spacing:0.648000px;}
.ws1c{word-spacing:0.720000px;}
.ws24{word-spacing:0.792000px;}
.ws37{word-spacing:0.864000px;}
.ws41{word-spacing:0.936000px;}
.ws5b{word-spacing:1.080000px;}
.ws44{word-spacing:1.152000px;}
.ws5a{word-spacing:1.224000px;}
.ws13{word-spacing:1.296000px;}
.ws67{word-spacing:1.368000px;}
.ws4e{word-spacing:1.440000px;}
.ws71{word-spacing:1.512000px;}
.ws90{word-spacing:1.584000px;}
.ws42{word-spacing:1.656000px;}
.ws39{word-spacing:1.728000px;}
.ws5{word-spacing:1.800000px;}
.ws25{word-spacing:1.872000px;}
.ws47{word-spacing:1.944000px;}
.ws86{word-spacing:2.088000px;}
.wsab{word-spacing:2.160000px;}
.ws48{word-spacing:2.232000px;}
.ws61{word-spacing:2.304000px;}
.ws72{word-spacing:2.400000px;}
.ws22{word-spacing:2.664000px;}
.ws3e{word-spacing:2.736000px;}
.ws11{word-spacing:2.808000px;}
.ws3f{word-spacing:2.880000px;}
.wsb0{word-spacing:2.952000px;}
.wsb3{word-spacing:2.976000px;}
.ws9e{word-spacing:3.024000px;}
.ws32{word-spacing:3.096000px;}
.ws9{word-spacing:3.168000px;}
.ws12{word-spacing:3.240000px;}
.ws9a{word-spacing:3.312000px;}
.wsb2{word-spacing:3.360000px;}
.wsa2{word-spacing:3.384000px;}
.ws2e{word-spacing:3.456000px;}
.ws34{word-spacing:3.528000px;}
.ws1a{word-spacing:3.600000px;}
.wse{word-spacing:3.672000px;}
.ws3{word-spacing:3.720000px;}
.wsa{word-spacing:3.744000px;}
.ws14{word-spacing:3.816000px;}
.ws4b{word-spacing:3.888000px;}
.ws27{word-spacing:3.960000px;}
.ws6c{word-spacing:4.032000px;}
.ws60{word-spacing:4.104000px;}
.ws31{word-spacing:4.176000px;}
.ws1{word-spacing:4.200000px;}
.ws6b{word-spacing:4.248000px;}
.ws50{word-spacing:4.320000px;}
.ws28{word-spacing:4.392000px;}
.ws6{word-spacing:4.464000px;}
.ws78{word-spacing:4.536000px;}
.ws5e{word-spacing:4.680000px;}
.ws8{word-spacing:4.740000px;}
.ws70{word-spacing:4.752000px;}
.ws68{word-spacing:4.824000px;}
.ws58{word-spacing:4.896000px;}
.ws38{word-spacing:4.968000px;}
.ws10{word-spacing:5.040000px;}
.ws63{word-spacing:5.184000px;}
.ws33{word-spacing:5.256000px;}
.ws30{word-spacing:5.328000px;}
.ws21{word-spacing:5.400000px;}
.ws18{word-spacing:5.544000px;}
.wsa0{word-spacing:5.580000px;}
.ws29{word-spacing:5.616000px;}
.ws98{word-spacing:5.760000px;}
.ws2b{word-spacing:5.832000px;}
.ws8f{word-spacing:5.904000px;}
.wsb1{word-spacing:5.976000px;}
.ws1f{word-spacing:6.048000px;}
.ws79{word-spacing:6.192000px;}
.wsc{word-spacing:6.264000px;}
.ws2c{word-spacing:6.336000px;}
.ws40{word-spacing:6.408000px;}
.ws4c{word-spacing:6.480000px;}
.ws2d{word-spacing:6.552000px;}
.ws55{word-spacing:6.696000px;}
.ws84{word-spacing:6.768000px;}
.ws54{word-spacing:6.840000px;}
.ws88{word-spacing:7.056000px;}
.ws97{word-spacing:7.128000px;}
.ws1d{word-spacing:7.272000px;}
.ws85{word-spacing:7.416000px;}
.ws3a{word-spacing:7.488000px;}
.ws69{word-spacing:7.632000px;}
.ws36{word-spacing:7.704000px;}
.ws51{word-spacing:7.776000px;}
.ws17{word-spacing:7.848000px;}
.ws59{word-spacing:7.920000px;}
.ws9c{word-spacing:7.992000px;}
.ws53{word-spacing:8.064000px;}
.ws64{word-spacing:8.136000px;}
.wsa3{word-spacing:8.352000px;}
.ws0{word-spacing:8.376000px;}
.ws4{word-spacing:8.400000px;}
.ws91{word-spacing:8.424000px;}
.ws35{word-spacing:8.496000px;}
.ws1e{word-spacing:8.640000px;}
.ws99{word-spacing:8.712000px;}
.ws23{word-spacing:8.784000px;}
.ws7a{word-spacing:8.856000px;}
.ws81{word-spacing:8.928000px;}
.ws20{word-spacing:9.000000px;}
.ws2a{word-spacing:9.072000px;}
.ws4d{word-spacing:9.360000px;}
.ws4f{word-spacing:9.432000px;}
.ws52{word-spacing:9.648000px;}
.wsb{word-spacing:9.720000px;}
.wsae{word-spacing:9.864000px;}
.ws15{word-spacing:9.936000px;}
.ws2f{word-spacing:10.080000px;}
.wsd{word-spacing:10.152000px;}
.ws3b{word-spacing:10.224000px;}
.ws3c{word-spacing:12.024000px;}
.ws87{word-spacing:12.960000px;}
.ws82{word-spacing:13.176000px;}
.ws7c{word-spacing:28.980000px;}
.ws76{word-spacing:43.980000px;}
.ws9b{word-spacing:99.360000px;}
.wsa9{word-spacing:108.060000px;}
.wsaa{word-spacing:111.300000px;}
.ws95{word-spacing:114.360000px;}
.ws96{word-spacing:129.360000px;}
.wsa4{word-spacing:146.196000px;}
.ws89{word-spacing:164.700000px;}
.ws7b{word-spacing:225.420000px;}
.wsa7{word-spacing:235.320000px;}
.wsa8{word-spacing:238.560000px;}
.ws8e{word-spacing:293.700000px;}
.ws94{word-spacing:303.600000px;}
.ws8b{word-spacing:305.880000px;}
.ws8a{word-spacing:308.700000px;}
.wsa6{word-spacing:320.340000px;}
.ws8c{word-spacing:320.880000px;}
.ws8d{word-spacing:323.700000px;}
.wsa5{word-spacing:378.282000px;}
.wsad{word-spacing:420.300000px;}
.ws9f{word-spacing:623.760000px;}
._58{margin-left:-948.820800px;}
._e{margin-left:-940.386000px;}
._12{margin-left:-18.459600px;}
._8{margin-left:-14.520000px;}
._a{margin-left:-11.334000px;}
._14{margin-left:-9.426000px;}
._d{margin-left:-8.000400px;}
._7{margin-left:-6.798000px;}
._4{margin-left:-5.682000px;}
._5d{margin-left:-4.611600px;}
._10{margin-left:-3.578400px;}
._2{margin-left:-2.094000px;}
._6{margin-left:-1.032000px;}
._b{width:1.008000px;}
._1{width:2.250000px;}
._5{width:3.780000px;}
._9{width:4.788000px;}
._c{width:5.953800px;}
._11{width:7.076400px;}
._f{width:8.280000px;}
._3{width:10.398000px;}
._13{width:11.418000px;}
._15{width:13.464000px;}
._1a{width:61.440000px;}
._16{width:62.940000px;}
._52{width:71.280000px;}
._1c{width:83.640000px;}
._51{width:94.860000px;}
._1e{width:107.160000px;}
._18{width:115.980000px;}
._20{width:138.198000px;}
._17{width:160.500000px;}
._3c{width:188.280000px;}
._21{width:191.640000px;}
._0{width:201.564000px;}
._40{width:208.860000px;}
._41{width:212.760000px;}
._34{width:215.646000px;}
._56{width:250.260000px;}
._5b{width:252.558000px;}
._1b{width:255.540000px;}
._37{width:258.360000px;}
._55{width:260.700000px;}
._4b{width:277.320000px;}
._35{width:280.674000px;}
._46{width:283.200000px;}
._19{width:288.660000px;}
._59{width:301.752000px;}
._1f{width:304.080000px;}
._1d{width:307.800000px;}
._33{width:309.960000px;}
._31{width:322.740000px;}
._2f{width:325.560000px;}
._25{width:335.460000px;}
._24{width:337.740000px;}
._26{width:340.560000px;}
._4a{width:342.540000px;}
._57{width:345.000000px;}
._4d{width:346.680000px;}
._42{width:350.760000px;}
._2a{width:352.140000px;}
._2e{width:354.960000px;}
._53{width:358.860000px;}
._30{width:364.920000px;}
._4e{width:367.380000px;}
._23{width:369.960000px;}
._2d{width:373.020000px;}
._29{width:375.180000px;}
._45{width:378.600000px;}
._39{width:380.220000px;}
._4c{width:381.480000px;}
._28{width:384.960000px;}
._54{width:386.580000px;}
._50{width:395.040000px;}
._32{width:400.020000px;}
._3e{width:402.300000px;}
._22{width:406.500000px;}
._49{width:408.240000px;}
._4f{width:410.040000px;}
._27{width:412.260000px;}
._2b{width:435.420000px;}
._38{width:445.440000px;}
._44{width:451.800000px;}
._47{width:462.900000px;}
._3b{width:464.580000px;}
._43{width:476.760000px;}
._3d{width:485.280000px;}
._3f{width:493.080000px;}
._2c{width:504.900000px;}
._36{width:511.140000px;}
._5c{width:561.498000px;}
._5a{width:569.640000px;}
._3a{width:585.540000px;}
._48{width:686.520000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:55.500000px;}
.y1{bottom:72.000000px;}
.y65{bottom:117.000000px;}
.y85{bottom:117.690000px;}
.y44{bottom:117.726000px;}
.yd5{bottom:117.732300px;}
.yf4{bottom:118.200000px;}
.y1ab{bottom:118.584000px;}
.y1d2{bottom:119.616000px;}
.y150{bottom:119.814300px;}
.y132{bottom:119.983800px;}
.y20{bottom:120.382650px;}
.y1fc{bottom:122.766150px;}
.yaf{bottom:126.958650px;}
.y113{bottom:127.873650px;}
.y1d1{bottom:134.616000px;}
.y64{bottom:139.500000px;}
.y43{bottom:140.532000px;}
.yd4{bottom:140.682300px;}
.yf3{bottom:140.700000px;}
.y1aa{bottom:140.940000px;}
.y1fb{bottom:141.516150px;}
.y14f{bottom:143.070300px;}
.y131{bottom:143.239800px;}
.y1f{bottom:143.782650px;}
.yae{bottom:145.708650px;}
.y1d0{bottom:149.616000px;}
.y84{bottom:151.296000px;}
.y112{bottom:154.858650px;}
.y1fa{bottom:160.266150px;}
.y63{bottom:162.000000px;}
.yf2{bottom:163.200000px;}
.y1a9{bottom:163.296000px;}
.y42{bottom:163.338000px;}
.yd3{bottom:163.632300px;}
.yad{bottom:164.458650px;}
.y1cf{bottom:164.616000px;}
.y14e{bottom:166.326300px;}
.y130{bottom:166.495800px;}
.y1e{bottom:167.182650px;}
.y83{bottom:174.102000px;}
.y1f9{bottom:179.466150px;}
.y1ce{bottom:179.616000px;}
.y111{bottom:181.843650px;}
.yac{bottom:183.208650px;}
.y62{bottom:184.500000px;}
.y1a8{bottom:185.652000px;}
.y41{bottom:186.144000px;}
.yd2{bottom:186.582300px;}
.y14d{bottom:189.582300px;}
.y12f{bottom:189.751800px;}
.y1d{bottom:190.582650px;}
.y16f{bottom:193.372050px;}
.y1cd{bottom:194.616000px;}
.y82{bottom:196.908000px;}
.y1f8{bottom:198.516150px;}
.y61{bottom:207.000000px;}
.y1a7{bottom:208.008000px;}
.y110{bottom:208.828650px;}
.y40{bottom:208.950000px;}
.yd1{bottom:209.532300px;}
.y1cc{bottom:209.616000px;}
.yab{bottom:210.193650px;}
.yf1{bottom:211.063650px;}
.y16e{bottom:211.972050px;}
.y14c{bottom:212.838300px;}
.y12e{bottom:213.007800px;}
.y1c{bottom:213.982650px;}
.y1f7{bottom:217.566150px;}
.y81{bottom:219.714000px;}
.y1cb{bottom:224.616000px;}
.yaa{bottom:228.943650px;}
.y60{bottom:229.500000px;}
.y1a6{bottom:230.364000px;}
.y16d{bottom:230.572050px;}
.yd0{bottom:232.482300px;}
.y10f{bottom:235.813650px;}
.y14b{bottom:236.094300px;}
.y12d{bottom:236.263800px;}
.y1f6{bottom:236.616150px;}
.y1b{bottom:237.382650px;}
.yf0{bottom:238.048650px;}
.y1ca{bottom:239.616000px;}
.y80{bottom:242.520000px;}
.y3f{bottom:242.556000px;}
.ya9{bottom:247.693650px;}
.y16c{bottom:249.172050px;}
.y5f{bottom:252.000000px;}
.y1a5{bottom:252.720000px;}
.y10e{bottom:254.563650px;}
.y1c9{bottom:254.616000px;}
.ycf{bottom:255.432300px;}
.y1f5{bottom:255.666150px;}
.y14a{bottom:259.350300px;}
.y12c{bottom:259.519800px;}
.y1a{bottom:260.782650px;}
.yef{bottom:265.033650px;}
.y7f{bottom:265.326000px;}
.y3e{bottom:265.362000px;}
.ya8{bottom:266.443650px;}
.y16b{bottom:267.772050px;}
.y1c8{bottom:269.616000px;}
.y5e{bottom:274.500000px;}
.y1f4{bottom:274.716150px;}
.y1a4{bottom:275.076000px;}
.yce{bottom:278.382300px;}
.y21c{bottom:280.800000px;}
.y149{bottom:282.606300px;}
.y12b{bottom:282.775800px;}
.y19{bottom:284.182650px;}
.y1c7{bottom:284.616000px;}
.y16a{bottom:286.372050px;}
.y7e{bottom:288.132000px;}
.y3d{bottom:288.168000px;}
.yee{bottom:292.018650px;}
.ya7{bottom:293.428650px;}
.y1f3{bottom:293.766150px;}
.y10d{bottom:294.300000px;}
.y5d{bottom:297.000000px;}
.y1a3{bottom:297.432000px;}
.y21b{bottom:299.550000px;}
.y1c6{bottom:299.616000px;}
.ycd{bottom:301.332300px;}
.y169{bottom:304.972050px;}
.y148{bottom:305.862300px;}
.y12a{bottom:306.031800px;}
.y18{bottom:307.582650px;}
.y7d{bottom:310.938000px;}
.y3c{bottom:310.974000px;}
.ya6{bottom:312.178650px;}
.y1f2{bottom:312.816150px;}
.y21a{bottom:318.300000px;}
.yed{bottom:319.003650px;}
.y5c{bottom:319.500000px;}
.y1a2{bottom:319.788000px;}
.y1c5{bottom:321.000000px;}
.ycc{bottom:324.282300px;}
.y147{bottom:329.118300px;}
.y129{bottom:329.287800px;}
.y17{bottom:330.982650px;}
.y1f1{bottom:331.866150px;}
.y168{bottom:331.957050px;}
.y7c{bottom:333.744000px;}
.y3b{bottom:333.780000px;}
.y219{bottom:337.050000px;}
.ya2{bottom:339.163650px;}
.y10c{bottom:339.444000px;}
.y5b{bottom:342.000000px;}
.y1a1{bottom:342.144000px;}
.yec{bottom:345.988650px;}
.ycb{bottom:347.232300px;}
.y18e{bottom:347.669250px;}
.ya5{bottom:348.538650px;}
.y167{bottom:350.557050px;}
.y1f0{bottom:350.916150px;}
.y146{bottom:352.374300px;}
.y128{bottom:352.543800px;}
.y16{bottom:354.382650px;}
.y7b{bottom:356.550000px;}
.y3a{bottom:356.586000px;}
.ya1{bottom:357.913650px;}
.y10b{bottom:362.988000px;}
.y5a{bottom:364.500000px;}
.y1c4{bottom:366.006000px;}
.y218{bottom:367.050000px;}
.ya4{bottom:367.288650px;}
.y1a0{bottom:368.362200px;}
.y166{bottom:369.157050px;}
.y1ef{bottom:369.966150px;}
.yca{bottom:370.182300px;}
.yeb{bottom:372.973650px;}
.y145{bottom:375.630300px;}
.y127{bottom:375.799800px;}
.ya0{bottom:376.663650px;}
.y15{bottom:377.782650px;}
.y7a{bottom:379.356000px;}
.y39{bottom:379.392000px;}
.y217{bottom:385.800000px;}
.ya3{bottom:386.038650px;}
.y10a{bottom:386.532000px;}
.y59{bottom:387.000000px;}
.y165{bottom:387.757050px;}
.y1c3{bottom:388.506000px;}
.y1ee{bottom:389.016150px;}
.yc9{bottom:393.132300px;}
.y9f{bottom:395.413650px;}
.y144{bottom:398.886300px;}
.y126{bottom:399.055800px;}
.yea{bottom:399.958650px;}
.y14{bottom:401.182650px;}
.y79{bottom:402.162000px;}
.y38{bottom:402.198000px;}
.y216{bottom:404.550000px;}
.y18d{bottom:405.177150px;}
.y58{bottom:409.500000px;}
.y109{bottom:410.076000px;}
.y1c2{bottom:411.006000px;}
.y19f{bottom:412.962000px;}
.y1ed{bottom:414.444000px;}
.y164{bottom:414.742050px;}
.yc8{bottom:416.082300px;}
.y143{bottom:422.142300px;}
.y125{bottom:422.311800px;}
.y215{bottom:423.300000px;}
.y18c{bottom:423.927150px;}
.y13{bottom:424.582650px;}
.y78{bottom:424.968000px;}
.y37{bottom:425.004000px;}
.ye9{bottom:426.943650px;}
.y57{bottom:432.000000px;}
.y1ec{bottom:432.744000px;}
.y163{bottom:433.342050px;}
.y1c1{bottom:433.506000px;}
.y108{bottom:433.620000px;}
.y9e{bottom:435.150000px;}
.y19e{bottom:435.318000px;}
.yc7{bottom:439.032300px;}
.y18b{bottom:442.677150px;}
.y142{bottom:445.398300px;}
.y77{bottom:447.774000px;}
.y36{bottom:447.810000px;}
.y12{bottom:447.982650px;}
.y162{bottom:451.942050px;}
.y214{bottom:453.300000px;}
.ye8{bottom:453.928650px;}
.y8a{bottom:454.210950px;}
.y56{bottom:454.500000px;}
.y1c0{bottom:456.006000px;}
.y107{bottom:457.164000px;}
.y19d{bottom:457.674000px;}
.y18a{bottom:461.427150px;}
.yc6{bottom:461.982300px;}
.y141{bottom:468.654300px;}
.y124{bottom:468.805800px;}
.y161{bottom:470.542050px;}
.y76{bottom:470.580000px;}
.y35{bottom:470.616000px;}
.y11{bottom:471.382650px;}
.y55{bottom:477.000000px;}
.y1eb{bottom:478.344000px;}
.y1bf{bottom:478.506000px;}
.y19c{bottom:480.030000px;}
.y9d{bottom:480.102000px;}
.y189{bottom:480.177150px;}
.y106{bottom:480.708000px;}
.ye7{bottom:480.913650px;}
.yc5{bottom:484.932300px;}
.y140{bottom:491.910300px;}
.y123{bottom:492.061800px;}
.y75{bottom:493.386000px;}
.y34{bottom:493.422000px;}
.y1ea{bottom:493.644000px;}
.y213{bottom:494.550000px;}
.y10{bottom:494.782650px;}
.y160{bottom:497.527050px;}
.y89{bottom:499.210950px;}
.y54{bottom:499.500000px;}
.y188{bottom:502.062150px;}
.y19b{bottom:502.386000px;}
.y9c{bottom:502.458000px;}
.y105{bottom:504.252000px;}
.yc4{bottom:507.882300px;}
.y1e9{bottom:508.944000px;}
.y1be{bottom:511.500000px;}
.y212{bottom:513.300000px;}
.y13f{bottom:515.103150px;}
.y122{bottom:515.317800px;}
.y15f{bottom:516.127050px;}
.y74{bottom:516.192000px;}
.y33{bottom:516.228000px;}
.yf{bottom:518.182650px;}
.ye6{bottom:520.650000px;}
.y187{bottom:520.812150px;}
.y88{bottom:521.710950px;}
.y53{bottom:522.000000px;}
.y1e8{bottom:524.244000px;}
.y19a{bottom:524.742000px;}
.y9b{bottom:524.814000px;}
.y104{bottom:527.796000px;}
.yc3{bottom:530.832300px;}
.y211{bottom:532.050000px;}
.y1bd{bottom:534.000000px;}
.y15e{bottom:534.727050px;}
.y13e{bottom:537.603150px;}
.y121{bottom:538.573800px;}
.y73{bottom:538.998000px;}
.y32{bottom:539.034000px;}
.y1e7{bottom:539.544000px;}
.y186{bottom:539.562150px;}
.ye{bottom:541.582650px;}
.y87{bottom:544.210950px;}
.y52{bottom:544.500000px;}
.y199{bottom:547.098000px;}
.y9a{bottom:547.170000px;}
.y210{bottom:550.800000px;}
.y103{bottom:551.340000px;}
.y15d{bottom:553.327050px;}
.yc2{bottom:553.782300px;}
.y1bc{bottom:556.500000px;}
.y185{bottom:558.312150px;}
.y1e6{bottom:561.228000px;}
.y72{bottom:561.804000px;}
.y120{bottom:561.829800px;}
.y31{bottom:561.840000px;}
.yd{bottom:564.982650px;}
.ye5{bottom:565.650000px;}
.y86{bottom:566.710950px;}
.y51{bottom:567.000000px;}
.y198{bottom:569.454000px;}
.y99{bottom:569.526000px;}
.y102{bottom:574.884000px;}
.yc1{bottom:576.732300px;}
.y184{bottom:577.062150px;}
.y1bb{bottom:579.000000px;}
.y20f{bottom:580.050000px;}
.y15c{bottom:580.312050px;}
.y71{bottom:584.610000px;}
.y30{bottom:584.646000px;}
.y11f{bottom:585.085800px;}
.ye4{bottom:588.150000px;}
.yc{bottom:588.382650px;}
.y50{bottom:589.500000px;}
.y197{bottom:591.810000px;}
.y98{bottom:591.882000px;}
.y13d{bottom:595.263150px;}
.y101{bottom:598.428000px;}
.y20e{bottom:598.800000px;}
.y15b{bottom:598.912050px;}
.y183{bottom:598.947150px;}
.yc0{bottom:599.682300px;}
.y1ba{bottom:601.500000px;}
.y1e5{bottom:606.828000px;}
.y70{bottom:607.416000px;}
.y2f{bottom:607.452000px;}
.y11e{bottom:608.341800px;}
.ye3{bottom:610.650000px;}
.y4f{bottom:612.000000px;}
.y196{bottom:614.166000px;}
.y97{bottom:614.238000px;}
.y15a{bottom:617.512050px;}
.y182{bottom:617.697150px;}
.y20d{bottom:618.000000px;}
.y100{bottom:621.972000px;}
.y1b9{bottom:624.000000px;}
.y13c{bottom:624.378150px;}
.y1e4{bottom:628.500000px;}
.y6f{bottom:630.222000px;}
.y2e{bottom:630.258000px;}
.y11d{bottom:631.597800px;}
.ye2{bottom:633.150000px;}
.y4e{bottom:634.500000px;}
.yb{bottom:635.182650px;}
.y159{bottom:636.112050px;}
.y181{bottom:636.447150px;}
.y195{bottom:636.522000px;}
.y96{bottom:636.594000px;}
.y20c{bottom:636.750000px;}
.yff{bottom:645.516000px;}
.y1b8{bottom:646.500000px;}
.ybf{bottom:648.000450px;}
.y6e{bottom:653.028000px;}
.y2d{bottom:653.064000px;}
.y13b{bottom:653.493150px;}
.ya{bottom:654.832650px;}
.y11c{bottom:654.853800px;}
.y180{bottom:655.197150px;}
.ye1{bottom:655.650000px;}
.y20b{bottom:655.950000px;}
.y4d{bottom:657.000000px;}
.y194{bottom:658.878000px;}
.y95{bottom:658.950000px;}
.y158{bottom:663.097050px;}
.y1b7{bottom:669.000000px;}
.yfe{bottom:669.060000px;}
.y17f{bottom:673.947150px;}
.y1e3{bottom:674.100000px;}
.y20a{bottom:674.700000px;}
.ybe{bottom:674.985450px;}
.y6d{bottom:675.834000px;}
.y2c{bottom:675.870000px;}
.y11b{bottom:678.109800px;}
.ye0{bottom:678.150000px;}
.y4c{bottom:679.500000px;}
.y193{bottom:681.234000px;}
.y157{bottom:681.697050px;}
.y13a{bottom:682.608150px;}
.y1e2{bottom:689.400000px;}
.y1b6{bottom:691.500000px;}
.yfd{bottom:692.604000px;}
.y17e{bottom:692.697150px;}
.y209{bottom:693.450000px;}
.y9{bottom:697.868550px;}
.y6c{bottom:698.640000px;}
.y2b{bottom:698.676000px;}
.y156{bottom:700.297050px;}
.ydf{bottom:700.650000px;}
.y11a{bottom:701.365800px;}
.ybd{bottom:701.970450px;}
.y4b{bottom:702.000000px;}
.y192{bottom:703.590000px;}
.y94{bottom:703.650000px;}
.y1e1{bottom:704.700000px;}
.y17d{bottom:711.447150px;}
.y139{bottom:711.723150px;}
.y208{bottom:712.650000px;}
.y1b5{bottom:714.000000px;}
.yfc{bottom:716.148000px;}
.y155{bottom:718.897050px;}
.y1e0{bottom:720.000000px;}
.y8{bottom:721.268550px;}
.y6b{bottom:721.446000px;}
.y2a{bottom:721.482000px;}
.yde{bottom:723.150000px;}
.y4a{bottom:724.500000px;}
.y191{bottom:725.946000px;}
.y93{bottom:726.000000px;}
.ybc{bottom:728.955450px;}
.y207{bottom:731.400000px;}
.y17c{bottom:733.332150px;}
.y1df{bottom:735.300000px;}
.y1b4{bottom:736.500000px;}
.y154{bottom:737.497050px;}
.yfb{bottom:739.692000px;}
.y138{bottom:740.838150px;}
.y6a{bottom:744.252000px;}
.y29{bottom:744.288000px;}
.ydd{bottom:745.650000px;}
.y49{bottom:747.000000px;}
.ybb{bottom:747.705450px;}
.y190{bottom:748.302000px;}
.y119{bottom:749.985450px;}
.y206{bottom:750.150000px;}
.y1de{bottom:750.600000px;}
.y17b{bottom:752.082150px;}
.y1b3{bottom:759.000000px;}
.yfa{bottom:763.236000px;}
.y153{bottom:764.482050px;}
.y1dd{bottom:765.900000px;}
.y69{bottom:767.058000px;}
.y28{bottom:767.094000px;}
.y7{bottom:768.054300px;}
.ydc{bottom:768.150000px;}
.y205{bottom:769.350000px;}
.y68{bottom:769.500000px;}
.y137{bottom:769.953150px;}
.y18f{bottom:770.658000px;}
.y17a{bottom:770.832150px;}
.yba{bottom:774.690450px;}
.y118{bottom:776.970450px;}
.y1dc{bottom:781.200000px;}
.y1b2{bottom:781.500000px;}
.y152{bottom:783.232050px;}
.yf9{bottom:786.780000px;}
.y204{bottom:788.100000px;}
.y179{bottom:789.582150px;}
.y27{bottom:789.864000px;}
.ydb{bottom:790.650000px;}
.y6{bottom:791.454300px;}
.y48{bottom:792.000000px;}
.y92{bottom:793.014000px;}
.y1db{bottom:796.500000px;}
.y136{bottom:799.068150px;}
.yb9{bottom:801.675450px;}
.y117{bottom:803.955450px;}
.y1b1{bottom:804.000000px;}
.y203{bottom:806.850000px;}
.yf8{bottom:810.324000px;}
.y178{bottom:811.467150px;}
.y1da{bottom:811.800000px;}
.y26{bottom:812.670000px;}
.yda{bottom:813.150000px;}
.y67{bottom:814.500000px;}
.y91{bottom:815.370000px;}
.yb8{bottom:820.425450px;}
.y151{bottom:822.975000px;}
.y202{bottom:825.600000px;}
.y1b0{bottom:826.500000px;}
.y1d9{bottom:827.100000px;}
.y135{bottom:828.183150px;}
.y177{bottom:830.217150px;}
.y116{bottom:830.940450px;}
.yf7{bottom:833.868000px;}
.y25{bottom:835.476000px;}
.yd9{bottom:835.650000px;}
.y66{bottom:837.000000px;}
.y90{bottom:837.726000px;}
.y1d8{bottom:842.400000px;}
.y201{bottom:844.350000px;}
.yb7{bottom:847.410450px;}
.y176{bottom:848.967150px;}
.y1af{bottom:849.000000px;}
.y134{bottom:857.298150px;}
.yf6{bottom:857.412000px;}
.y1d7{bottom:857.700000px;}
.y115{bottom:857.925450px;}
.yd8{bottom:858.150000px;}
.y24{bottom:858.282000px;}
.y5{bottom:859.500000px;}
.y8f{bottom:860.082000px;}
.y175{bottom:867.717150px;}
.y1ae{bottom:871.500000px;}
.y1d6{bottom:873.000000px;}
.y200{bottom:873.600000px;}
.yb3{bottom:874.395450px;}
.y172{bottom:880.281450px;}
.yf5{bottom:880.956000px;}
.y23{bottom:881.088000px;}
.y47{bottom:882.000000px;}
.y8e{bottom:882.438000px;}
.yb6{bottom:883.770450px;}
.y114{bottom:884.910450px;}
.y133{bottom:886.413150px;}
.y1d5{bottom:888.300000px;}
.y4{bottom:889.500000px;}
.y174{bottom:889.602150px;}
.y1ff{bottom:892.350000px;}
.yb2{bottom:893.145450px;}
.y1ad{bottom:894.000000px;}
.yb5{bottom:902.520450px;}
.y171{bottom:902.781450px;}
.yd7{bottom:903.600000px;}
.y22{bottom:903.894000px;}
.y46{bottom:904.500000px;}
.y8d{bottom:904.794000px;}
.y1fe{bottom:911.550000px;}
.yb1{bottom:911.895450px;}
.y1ac{bottom:916.500000px;}
.y1d4{bottom:918.900000px;}
.y3{bottom:919.500000px;}
.yb4{bottom:921.270450px;}
.y170{bottom:926.037450px;}
.yd6{bottom:926.550000px;}
.y21{bottom:926.700000px;}
.y173{bottom:926.787450px;}
.y8b{bottom:926.995950px;}
.y45{bottom:927.000000px;}
.y8c{bottom:927.150000px;}
.y1fd{bottom:930.300000px;}
.yb0{bottom:930.645450px;}
.y1d3{bottom:934.200000px;}
.hf{height:37.593750px;}
.he{height:39.888000px;}
.hd{height:39.990234px;}
.h10{height:40.757812px;}
.h1{height:46.992188px;}
.h5{height:47.988281px;}
.ha{height:48.832031px;}
.h9{height:49.860000px;}
.h4{height:50.580000px;}
.h2{height:50.947266px;}
.h6{height:56.390625px;}
.h7{height:56.534625px;}
.h8{height:61.136719px;}
.hc{height:84.492187px;}
.h3{height:93.984375px;}
.hb{height:121.992187px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x1{left:67.500000px;}
.x22{left:72.116250px;}
.x11{left:78.847650px;}
.x3{left:82.381950px;}
.x8{left:97.272000px;}
.x29{left:100.066650px;}
.x28{left:101.911650px;}
.x12{left:105.517650px;}
.xa{left:111.127650px;}
.x6{left:112.495950px;}
.xb{left:114.262650px;}
.x9{left:117.232650px;}
.x20{left:120.082650px;}
.x25{left:122.302200px;}
.x1d{left:123.847650px;}
.x5{left:127.381950px;}
.x2{left:135.000000px;}
.x32{left:142.285950px;}
.x7{left:150.749250px;}
.x16{left:156.127650px;}
.x17{left:159.262650px;}
.x15{left:162.232650px;}
.x23{left:167.302200px;}
.x27{left:183.022950px;}
.x2a{left:196.156650px;}
.x21{left:201.506250px;}
.x13{left:210.622650px;}
.xc{left:219.892650px;}
.xd{left:222.337650px;}
.x2e{left:245.562300px;}
.xe{left:247.447650px;}
.x1e{left:255.637650px;}
.x18{left:264.892650px;}
.x19{left:267.337650px;}
.x1a{left:292.447650px;}
.x31{left:316.002300px;}
.x14{left:364.252650px;}
.x2b{left:368.011650px;}
.x26{left:377.512200px;}
.x2f{left:402.882300px;}
.x2c{left:403.936650px;}
.x1f{left:409.282650px;}
.xf{left:418.702650px;}
.x24{left:422.512200px;}
.x10{left:426.442650px;}
.x1b{left:463.702650px;}
.x1c{left:471.442650px;}
.x30{left:603.972300px;}
.x2d{left:625.781250px;}
.x4{left:635.390550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:33.333333pt;}
.v2{vertical-align:66.666667pt;}
.ls22{letter-spacing:-4.960000pt;}
.lse{letter-spacing:-1.088000pt;}
.ls1a{letter-spacing:-1.024000pt;}
.ls2e{letter-spacing:-0.960000pt;}
.ls19{letter-spacing:-0.896000pt;}
.ls8{letter-spacing:-0.768000pt;}
.ls2d{letter-spacing:-0.704000pt;}
.ls18{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.576000pt;}
.ls10{letter-spacing:-0.512000pt;}
.ls1e{letter-spacing:-0.448000pt;}
.ls12{letter-spacing:-0.384000pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.266667pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls30{letter-spacing:-0.213333pt;}
.ls21{letter-spacing:-0.192000pt;}
.ls1d{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.064000pt;}
.ls26{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.192000pt;}
.ls1c{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.320000pt;}
.ls27{letter-spacing:0.339200pt;}
.lsd{letter-spacing:0.384000pt;}
.lsb{letter-spacing:0.448000pt;}
.ls3{letter-spacing:0.512000pt;}
.ls13{letter-spacing:0.576000pt;}
.ls1f{letter-spacing:0.640000pt;}
.ls28{letter-spacing:0.704000pt;}
.ls20{letter-spacing:0.768000pt;}
.ls16{letter-spacing:0.832000pt;}
.ls14{letter-spacing:0.896000pt;}
.ls23{letter-spacing:0.960000pt;}
.ls24{letter-spacing:1.216000pt;}
.ls17{letter-spacing:1.280000pt;}
.ls29{letter-spacing:1.344000pt;}
.ls2b{letter-spacing:3.786667pt;}
.ls31{letter-spacing:3.925333pt;}
.lsa{letter-spacing:4.052267pt;}
.ls7{letter-spacing:4.053333pt;}
.ls2f{letter-spacing:4.224000pt;}
.ls2a{letter-spacing:7.498667pt;}
.ls2{letter-spacing:7.520000pt;}
.ls1{letter-spacing:9.546667pt;}
.ls25{letter-spacing:11.724800pt;}
.ls32{letter-spacing:26.773333pt;}
.ls0{letter-spacing:54.346667pt;}
.ls2c{letter-spacing:278.666667pt;}
.wsb7{word-spacing:-42.666667pt;}
.ws74{word-spacing:-22.506667pt;}
.ws80{word-spacing:-18.304000pt;}
.ws73{word-spacing:-17.984000pt;}
.ws26{word-spacing:-17.408000pt;}
.ws7d{word-spacing:-16.704000pt;}
.ws7f{word-spacing:-16.128000pt;}
.ws19{word-spacing:-15.808000pt;}
.ws93{word-spacing:-15.744000pt;}
.ws92{word-spacing:-15.680000pt;}
.ws7e{word-spacing:-15.616000pt;}
.ws65{word-spacing:-15.488000pt;}
.ws66{word-spacing:-15.168000pt;}
.wsb9{word-spacing:-14.986667pt;}
.ws77{word-spacing:-13.173333pt;}
.wsb4{word-spacing:-10.325333pt;}
.wsb6{word-spacing:-10.069333pt;}
.ws75{word-spacing:-10.026667pt;}
.ws49{word-spacing:-7.680000pt;}
.wsac{word-spacing:-7.552000pt;}
.ws45{word-spacing:-4.224000pt;}
.ws7{word-spacing:-4.053333pt;}
.ws46{word-spacing:-3.904000pt;}
.ws43{word-spacing:-3.136000pt;}
.ws5f{word-spacing:-1.856000pt;}
.ws56{word-spacing:-1.792000pt;}
.ws6e{word-spacing:-1.600000pt;}
.ws6f{word-spacing:-1.536000pt;}
.ws5d{word-spacing:-1.472000pt;}
.wsa1{word-spacing:-0.896000pt;}
.ws57{word-spacing:-0.832000pt;}
.ws83{word-spacing:-0.640000pt;}
.ws9d{word-spacing:-0.576000pt;}
.ws6a{word-spacing:-0.448000pt;}
.wsaf{word-spacing:-0.384000pt;}
.ws62{word-spacing:-0.320000pt;}
.ws2{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.064000pt;}
.ws6d{word-spacing:0.128000pt;}
.ws4a{word-spacing:0.192000pt;}
.wsb5{word-spacing:0.213333pt;}
.wsb8{word-spacing:0.266667pt;}
.ws16{word-spacing:0.320000pt;}
.wsf{word-spacing:0.384000pt;}
.ws5c{word-spacing:0.512000pt;}
.ws3d{word-spacing:0.576000pt;}
.ws1c{word-spacing:0.640000pt;}
.ws24{word-spacing:0.704000pt;}
.ws37{word-spacing:0.768000pt;}
.ws41{word-spacing:0.832000pt;}
.ws5b{word-spacing:0.960000pt;}
.ws44{word-spacing:1.024000pt;}
.ws5a{word-spacing:1.088000pt;}
.ws13{word-spacing:1.152000pt;}
.ws67{word-spacing:1.216000pt;}
.ws4e{word-spacing:1.280000pt;}
.ws71{word-spacing:1.344000pt;}
.ws90{word-spacing:1.408000pt;}
.ws42{word-spacing:1.472000pt;}
.ws39{word-spacing:1.536000pt;}
.ws5{word-spacing:1.600000pt;}
.ws25{word-spacing:1.664000pt;}
.ws47{word-spacing:1.728000pt;}
.ws86{word-spacing:1.856000pt;}
.wsab{word-spacing:1.920000pt;}
.ws48{word-spacing:1.984000pt;}
.ws61{word-spacing:2.048000pt;}
.ws72{word-spacing:2.133333pt;}
.ws22{word-spacing:2.368000pt;}
.ws3e{word-spacing:2.432000pt;}
.ws11{word-spacing:2.496000pt;}
.ws3f{word-spacing:2.560000pt;}
.wsb0{word-spacing:2.624000pt;}
.wsb3{word-spacing:2.645333pt;}
.ws9e{word-spacing:2.688000pt;}
.ws32{word-spacing:2.752000pt;}
.ws9{word-spacing:2.816000pt;}
.ws12{word-spacing:2.880000pt;}
.ws9a{word-spacing:2.944000pt;}
.wsb2{word-spacing:2.986667pt;}
.wsa2{word-spacing:3.008000pt;}
.ws2e{word-spacing:3.072000pt;}
.ws34{word-spacing:3.136000pt;}
.ws1a{word-spacing:3.200000pt;}
.wse{word-spacing:3.264000pt;}
.ws3{word-spacing:3.306667pt;}
.wsa{word-spacing:3.328000pt;}
.ws14{word-spacing:3.392000pt;}
.ws4b{word-spacing:3.456000pt;}
.ws27{word-spacing:3.520000pt;}
.ws6c{word-spacing:3.584000pt;}
.ws60{word-spacing:3.648000pt;}
.ws31{word-spacing:3.712000pt;}
.ws1{word-spacing:3.733333pt;}
.ws6b{word-spacing:3.776000pt;}
.ws50{word-spacing:3.840000pt;}
.ws28{word-spacing:3.904000pt;}
.ws6{word-spacing:3.968000pt;}
.ws78{word-spacing:4.032000pt;}
.ws5e{word-spacing:4.160000pt;}
.ws8{word-spacing:4.213333pt;}
.ws70{word-spacing:4.224000pt;}
.ws68{word-spacing:4.288000pt;}
.ws58{word-spacing:4.352000pt;}
.ws38{word-spacing:4.416000pt;}
.ws10{word-spacing:4.480000pt;}
.ws63{word-spacing:4.608000pt;}
.ws33{word-spacing:4.672000pt;}
.ws30{word-spacing:4.736000pt;}
.ws21{word-spacing:4.800000pt;}
.ws18{word-spacing:4.928000pt;}
.wsa0{word-spacing:4.960000pt;}
.ws29{word-spacing:4.992000pt;}
.ws98{word-spacing:5.120000pt;}
.ws2b{word-spacing:5.184000pt;}
.ws8f{word-spacing:5.248000pt;}
.wsb1{word-spacing:5.312000pt;}
.ws1f{word-spacing:5.376000pt;}
.ws79{word-spacing:5.504000pt;}
.wsc{word-spacing:5.568000pt;}
.ws2c{word-spacing:5.632000pt;}
.ws40{word-spacing:5.696000pt;}
.ws4c{word-spacing:5.760000pt;}
.ws2d{word-spacing:5.824000pt;}
.ws55{word-spacing:5.952000pt;}
.ws84{word-spacing:6.016000pt;}
.ws54{word-spacing:6.080000pt;}
.ws88{word-spacing:6.272000pt;}
.ws97{word-spacing:6.336000pt;}
.ws1d{word-spacing:6.464000pt;}
.ws85{word-spacing:6.592000pt;}
.ws3a{word-spacing:6.656000pt;}
.ws69{word-spacing:6.784000pt;}
.ws36{word-spacing:6.848000pt;}
.ws51{word-spacing:6.912000pt;}
.ws17{word-spacing:6.976000pt;}
.ws59{word-spacing:7.040000pt;}
.ws9c{word-spacing:7.104000pt;}
.ws53{word-spacing:7.168000pt;}
.ws64{word-spacing:7.232000pt;}
.wsa3{word-spacing:7.424000pt;}
.ws0{word-spacing:7.445333pt;}
.ws4{word-spacing:7.466667pt;}
.ws91{word-spacing:7.488000pt;}
.ws35{word-spacing:7.552000pt;}
.ws1e{word-spacing:7.680000pt;}
.ws99{word-spacing:7.744000pt;}
.ws23{word-spacing:7.808000pt;}
.ws7a{word-spacing:7.872000pt;}
.ws81{word-spacing:7.936000pt;}
.ws20{word-spacing:8.000000pt;}
.ws2a{word-spacing:8.064000pt;}
.ws4d{word-spacing:8.320000pt;}
.ws4f{word-spacing:8.384000pt;}
.ws52{word-spacing:8.576000pt;}
.wsb{word-spacing:8.640000pt;}
.wsae{word-spacing:8.768000pt;}
.ws15{word-spacing:8.832000pt;}
.ws2f{word-spacing:8.960000pt;}
.wsd{word-spacing:9.024000pt;}
.ws3b{word-spacing:9.088000pt;}
.ws3c{word-spacing:10.688000pt;}
.ws87{word-spacing:11.520000pt;}
.ws82{word-spacing:11.712000pt;}
.ws7c{word-spacing:25.760000pt;}
.ws76{word-spacing:39.093333pt;}
.ws9b{word-spacing:88.320000pt;}
.wsa9{word-spacing:96.053333pt;}
.wsaa{word-spacing:98.933333pt;}
.ws95{word-spacing:101.653333pt;}
.ws96{word-spacing:114.986667pt;}
.wsa4{word-spacing:129.952000pt;}
.ws89{word-spacing:146.400000pt;}
.ws7b{word-spacing:200.373333pt;}
.wsa7{word-spacing:209.173333pt;}
.wsa8{word-spacing:212.053333pt;}
.ws8e{word-spacing:261.066667pt;}
.ws94{word-spacing:269.866667pt;}
.ws8b{word-spacing:271.893333pt;}
.ws8a{word-spacing:274.400000pt;}
.wsa6{word-spacing:284.746667pt;}
.ws8c{word-spacing:285.226667pt;}
.ws8d{word-spacing:287.733333pt;}
.wsa5{word-spacing:336.250667pt;}
.wsad{word-spacing:373.600000pt;}
.ws9f{word-spacing:554.453333pt;}
._58{margin-left:-843.396267pt;}
._e{margin-left:-835.898667pt;}
._12{margin-left:-16.408533pt;}
._8{margin-left:-12.906667pt;}
._a{margin-left:-10.074667pt;}
._14{margin-left:-8.378667pt;}
._d{margin-left:-7.111467pt;}
._7{margin-left:-6.042667pt;}
._4{margin-left:-5.050667pt;}
._5d{margin-left:-4.099200pt;}
._10{margin-left:-3.180800pt;}
._2{margin-left:-1.861333pt;}
._6{margin-left:-0.917333pt;}
._b{width:0.896000pt;}
._1{width:2.000000pt;}
._5{width:3.360000pt;}
._9{width:4.256000pt;}
._c{width:5.292267pt;}
._11{width:6.290133pt;}
._f{width:7.360000pt;}
._3{width:9.242667pt;}
._13{width:10.149333pt;}
._15{width:11.968000pt;}
._1a{width:54.613333pt;}
._16{width:55.946667pt;}
._52{width:63.360000pt;}
._1c{width:74.346667pt;}
._51{width:84.320000pt;}
._1e{width:95.253333pt;}
._18{width:103.093333pt;}
._20{width:122.842667pt;}
._17{width:142.666667pt;}
._3c{width:167.360000pt;}
._21{width:170.346667pt;}
._0{width:179.168000pt;}
._40{width:185.653333pt;}
._41{width:189.120000pt;}
._34{width:191.685333pt;}
._56{width:222.453333pt;}
._5b{width:224.496000pt;}
._1b{width:227.146667pt;}
._37{width:229.653333pt;}
._55{width:231.733333pt;}
._4b{width:246.506667pt;}
._35{width:249.488000pt;}
._46{width:251.733333pt;}
._19{width:256.586667pt;}
._59{width:268.224000pt;}
._1f{width:270.293333pt;}
._1d{width:273.600000pt;}
._33{width:275.520000pt;}
._31{width:286.880000pt;}
._2f{width:289.386667pt;}
._25{width:298.186667pt;}
._24{width:300.213333pt;}
._26{width:302.720000pt;}
._4a{width:304.480000pt;}
._57{width:306.666667pt;}
._4d{width:308.160000pt;}
._42{width:311.786667pt;}
._2a{width:313.013333pt;}
._2e{width:315.520000pt;}
._53{width:318.986667pt;}
._30{width:324.373333pt;}
._4e{width:326.560000pt;}
._23{width:328.853333pt;}
._2d{width:331.573333pt;}
._29{width:333.493333pt;}
._45{width:336.533333pt;}
._39{width:337.973333pt;}
._4c{width:339.093333pt;}
._28{width:342.186667pt;}
._54{width:343.626667pt;}
._50{width:351.146667pt;}
._32{width:355.573333pt;}
._3e{width:357.600000pt;}
._22{width:361.333333pt;}
._49{width:362.880000pt;}
._4f{width:364.480000pt;}
._27{width:366.453333pt;}
._2b{width:387.040000pt;}
._38{width:395.946667pt;}
._44{width:401.600000pt;}
._47{width:411.466667pt;}
._3b{width:412.960000pt;}
._43{width:423.786667pt;}
._3d{width:431.360000pt;}
._3f{width:438.293333pt;}
._2c{width:448.800000pt;}
._36{width:454.346667pt;}
._5c{width:499.109333pt;}
._5a{width:506.346667pt;}
._3a{width:520.480000pt;}
._48{width:610.240000pt;}
.fs3{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:49.333333pt;}
.y1{bottom:64.000000pt;}
.y65{bottom:104.000000pt;}
.y85{bottom:104.613333pt;}
.y44{bottom:104.645333pt;}
.yd5{bottom:104.650933pt;}
.yf4{bottom:105.066667pt;}
.y1ab{bottom:105.408000pt;}
.y1d2{bottom:106.325333pt;}
.y150{bottom:106.501600pt;}
.y132{bottom:106.652267pt;}
.y20{bottom:107.006800pt;}
.y1fc{bottom:109.125467pt;}
.yaf{bottom:112.852133pt;}
.y113{bottom:113.665467pt;}
.y1d1{bottom:119.658667pt;}
.y64{bottom:124.000000pt;}
.y43{bottom:124.917333pt;}
.yd4{bottom:125.050933pt;}
.yf3{bottom:125.066667pt;}
.y1aa{bottom:125.280000pt;}
.y1fb{bottom:125.792133pt;}
.y14f{bottom:127.173600pt;}
.y131{bottom:127.324267pt;}
.y1f{bottom:127.806800pt;}
.yae{bottom:129.518800pt;}
.y1d0{bottom:132.992000pt;}
.y84{bottom:134.485333pt;}
.y112{bottom:137.652133pt;}
.y1fa{bottom:142.458800pt;}
.y63{bottom:144.000000pt;}
.yf2{bottom:145.066667pt;}
.y1a9{bottom:145.152000pt;}
.y42{bottom:145.189333pt;}
.yd3{bottom:145.450933pt;}
.yad{bottom:146.185467pt;}
.y1cf{bottom:146.325333pt;}
.y14e{bottom:147.845600pt;}
.y130{bottom:147.996267pt;}
.y1e{bottom:148.606800pt;}
.y83{bottom:154.757333pt;}
.y1f9{bottom:159.525467pt;}
.y1ce{bottom:159.658667pt;}
.y111{bottom:161.638800pt;}
.yac{bottom:162.852133pt;}
.y62{bottom:164.000000pt;}
.y1a8{bottom:165.024000pt;}
.y41{bottom:165.461333pt;}
.yd2{bottom:165.850933pt;}
.y14d{bottom:168.517600pt;}
.y12f{bottom:168.668267pt;}
.y1d{bottom:169.406800pt;}
.y16f{bottom:171.886267pt;}
.y1cd{bottom:172.992000pt;}
.y82{bottom:175.029333pt;}
.y1f8{bottom:176.458800pt;}
.y61{bottom:184.000000pt;}
.y1a7{bottom:184.896000pt;}
.y110{bottom:185.625467pt;}
.y40{bottom:185.733333pt;}
.yd1{bottom:186.250933pt;}
.y1cc{bottom:186.325333pt;}
.yab{bottom:186.838800pt;}
.yf1{bottom:187.612133pt;}
.y16e{bottom:188.419600pt;}
.y14c{bottom:189.189600pt;}
.y12e{bottom:189.340267pt;}
.y1c{bottom:190.206800pt;}
.y1f7{bottom:193.392133pt;}
.y81{bottom:195.301333pt;}
.y1cb{bottom:199.658667pt;}
.yaa{bottom:203.505467pt;}
.y60{bottom:204.000000pt;}
.y1a6{bottom:204.768000pt;}
.y16d{bottom:204.952933pt;}
.yd0{bottom:206.650933pt;}
.y10f{bottom:209.612133pt;}
.y14b{bottom:209.861600pt;}
.y12d{bottom:210.012267pt;}
.y1f6{bottom:210.325467pt;}
.y1b{bottom:211.006800pt;}
.yf0{bottom:211.598800pt;}
.y1ca{bottom:212.992000pt;}
.y80{bottom:215.573333pt;}
.y3f{bottom:215.605333pt;}
.ya9{bottom:220.172133pt;}
.y16c{bottom:221.486267pt;}
.y5f{bottom:224.000000pt;}
.y1a5{bottom:224.640000pt;}
.y10e{bottom:226.278800pt;}
.y1c9{bottom:226.325333pt;}
.ycf{bottom:227.050933pt;}
.y1f5{bottom:227.258800pt;}
.y14a{bottom:230.533600pt;}
.y12c{bottom:230.684267pt;}
.y1a{bottom:231.806800pt;}
.yef{bottom:235.585467pt;}
.y7f{bottom:235.845333pt;}
.y3e{bottom:235.877333pt;}
.ya8{bottom:236.838800pt;}
.y16b{bottom:238.019600pt;}
.y1c8{bottom:239.658667pt;}
.y5e{bottom:244.000000pt;}
.y1f4{bottom:244.192133pt;}
.y1a4{bottom:244.512000pt;}
.yce{bottom:247.450933pt;}
.y21c{bottom:249.600000pt;}
.y149{bottom:251.205600pt;}
.y12b{bottom:251.356267pt;}
.y19{bottom:252.606800pt;}
.y1c7{bottom:252.992000pt;}
.y16a{bottom:254.552933pt;}
.y7e{bottom:256.117333pt;}
.y3d{bottom:256.149333pt;}
.yee{bottom:259.572133pt;}
.ya7{bottom:260.825467pt;}
.y1f3{bottom:261.125467pt;}
.y10d{bottom:261.600000pt;}
.y5d{bottom:264.000000pt;}
.y1a3{bottom:264.384000pt;}
.y21b{bottom:266.266667pt;}
.y1c6{bottom:266.325333pt;}
.ycd{bottom:267.850933pt;}
.y169{bottom:271.086267pt;}
.y148{bottom:271.877600pt;}
.y12a{bottom:272.028267pt;}
.y18{bottom:273.406800pt;}
.y7d{bottom:276.389333pt;}
.y3c{bottom:276.421333pt;}
.ya6{bottom:277.492133pt;}
.y1f2{bottom:278.058800pt;}
.y21a{bottom:282.933333pt;}
.yed{bottom:283.558800pt;}
.y5c{bottom:284.000000pt;}
.y1a2{bottom:284.256000pt;}
.y1c5{bottom:285.333333pt;}
.ycc{bottom:288.250933pt;}
.y147{bottom:292.549600pt;}
.y129{bottom:292.700267pt;}
.y17{bottom:294.206800pt;}
.y1f1{bottom:294.992133pt;}
.y168{bottom:295.072933pt;}
.y7c{bottom:296.661333pt;}
.y3b{bottom:296.693333pt;}
.y219{bottom:299.600000pt;}
.ya2{bottom:301.478800pt;}
.y10c{bottom:301.728000pt;}
.y5b{bottom:304.000000pt;}
.y1a1{bottom:304.128000pt;}
.yec{bottom:307.545467pt;}
.ycb{bottom:308.650933pt;}
.y18e{bottom:309.039333pt;}
.ya5{bottom:309.812133pt;}
.y167{bottom:311.606267pt;}
.y1f0{bottom:311.925467pt;}
.y146{bottom:313.221600pt;}
.y128{bottom:313.372267pt;}
.y16{bottom:315.006800pt;}
.y7b{bottom:316.933333pt;}
.y3a{bottom:316.965333pt;}
.ya1{bottom:318.145467pt;}
.y10b{bottom:322.656000pt;}
.y5a{bottom:324.000000pt;}
.y1c4{bottom:325.338667pt;}
.y218{bottom:326.266667pt;}
.ya4{bottom:326.478800pt;}
.y1a0{bottom:327.433067pt;}
.y166{bottom:328.139600pt;}
.y1ef{bottom:328.858800pt;}
.yca{bottom:329.050933pt;}
.yeb{bottom:331.532133pt;}
.y145{bottom:333.893600pt;}
.y127{bottom:334.044267pt;}
.ya0{bottom:334.812133pt;}
.y15{bottom:335.806800pt;}
.y7a{bottom:337.205333pt;}
.y39{bottom:337.237333pt;}
.y217{bottom:342.933333pt;}
.ya3{bottom:343.145467pt;}
.y10a{bottom:343.584000pt;}
.y59{bottom:344.000000pt;}
.y165{bottom:344.672933pt;}
.y1c3{bottom:345.338667pt;}
.y1ee{bottom:345.792133pt;}
.yc9{bottom:349.450933pt;}
.y9f{bottom:351.478800pt;}
.y144{bottom:354.565600pt;}
.y126{bottom:354.716267pt;}
.yea{bottom:355.518800pt;}
.y14{bottom:356.606800pt;}
.y79{bottom:357.477333pt;}
.y38{bottom:357.509333pt;}
.y216{bottom:359.600000pt;}
.y18d{bottom:360.157467pt;}
.y58{bottom:364.000000pt;}
.y109{bottom:364.512000pt;}
.y1c2{bottom:365.338667pt;}
.y19f{bottom:367.077333pt;}
.y1ed{bottom:368.394667pt;}
.y164{bottom:368.659600pt;}
.yc8{bottom:369.850933pt;}
.y143{bottom:375.237600pt;}
.y125{bottom:375.388267pt;}
.y215{bottom:376.266667pt;}
.y18c{bottom:376.824133pt;}
.y13{bottom:377.406800pt;}
.y78{bottom:377.749333pt;}
.y37{bottom:377.781333pt;}
.ye9{bottom:379.505467pt;}
.y57{bottom:384.000000pt;}
.y1ec{bottom:384.661333pt;}
.y163{bottom:385.192933pt;}
.y1c1{bottom:385.338667pt;}
.y108{bottom:385.440000pt;}
.y9e{bottom:386.800000pt;}
.y19e{bottom:386.949333pt;}
.yc7{bottom:390.250933pt;}
.y18b{bottom:393.490800pt;}
.y142{bottom:395.909600pt;}
.y77{bottom:398.021333pt;}
.y36{bottom:398.053333pt;}
.y12{bottom:398.206800pt;}
.y162{bottom:401.726267pt;}
.y214{bottom:402.933333pt;}
.ye8{bottom:403.492133pt;}
.y8a{bottom:403.743067pt;}
.y56{bottom:404.000000pt;}
.y1c0{bottom:405.338667pt;}
.y107{bottom:406.368000pt;}
.y19d{bottom:406.821333pt;}
.y18a{bottom:410.157467pt;}
.yc6{bottom:410.650933pt;}
.y141{bottom:416.581600pt;}
.y124{bottom:416.716267pt;}
.y161{bottom:418.259600pt;}
.y76{bottom:418.293333pt;}
.y35{bottom:418.325333pt;}
.y11{bottom:419.006800pt;}
.y55{bottom:424.000000pt;}
.y1eb{bottom:425.194667pt;}
.y1bf{bottom:425.338667pt;}
.y19c{bottom:426.693333pt;}
.y9d{bottom:426.757333pt;}
.y189{bottom:426.824133pt;}
.y106{bottom:427.296000pt;}
.ye7{bottom:427.478800pt;}
.yc5{bottom:431.050933pt;}
.y140{bottom:437.253600pt;}
.y123{bottom:437.388267pt;}
.y75{bottom:438.565333pt;}
.y34{bottom:438.597333pt;}
.y1ea{bottom:438.794667pt;}
.y213{bottom:439.600000pt;}
.y10{bottom:439.806800pt;}
.y160{bottom:442.246267pt;}
.y89{bottom:443.743067pt;}
.y54{bottom:444.000000pt;}
.y188{bottom:446.277467pt;}
.y19b{bottom:446.565333pt;}
.y9c{bottom:446.629333pt;}
.y105{bottom:448.224000pt;}
.yc4{bottom:451.450933pt;}
.y1e9{bottom:452.394667pt;}
.y1be{bottom:454.666667pt;}
.y212{bottom:456.266667pt;}
.y13f{bottom:457.869467pt;}
.y122{bottom:458.060267pt;}
.y15f{bottom:458.779600pt;}
.y74{bottom:458.837333pt;}
.y33{bottom:458.869333pt;}
.yf{bottom:460.606800pt;}
.ye6{bottom:462.800000pt;}
.y187{bottom:462.944133pt;}
.y88{bottom:463.743067pt;}
.y53{bottom:464.000000pt;}
.y1e8{bottom:465.994667pt;}
.y19a{bottom:466.437333pt;}
.y9b{bottom:466.501333pt;}
.y104{bottom:469.152000pt;}
.yc3{bottom:471.850933pt;}
.y211{bottom:472.933333pt;}
.y1bd{bottom:474.666667pt;}
.y15e{bottom:475.312933pt;}
.y13e{bottom:477.869467pt;}
.y121{bottom:478.732267pt;}
.y73{bottom:479.109333pt;}
.y32{bottom:479.141333pt;}
.y1e7{bottom:479.594667pt;}
.y186{bottom:479.610800pt;}
.ye{bottom:481.406800pt;}
.y87{bottom:483.743067pt;}
.y52{bottom:484.000000pt;}
.y199{bottom:486.309333pt;}
.y9a{bottom:486.373333pt;}
.y210{bottom:489.600000pt;}
.y103{bottom:490.080000pt;}
.y15d{bottom:491.846267pt;}
.yc2{bottom:492.250933pt;}
.y1bc{bottom:494.666667pt;}
.y185{bottom:496.277467pt;}
.y1e6{bottom:498.869333pt;}
.y72{bottom:499.381333pt;}
.y120{bottom:499.404267pt;}
.y31{bottom:499.413333pt;}
.yd{bottom:502.206800pt;}
.ye5{bottom:502.800000pt;}
.y86{bottom:503.743067pt;}
.y51{bottom:504.000000pt;}
.y198{bottom:506.181333pt;}
.y99{bottom:506.245333pt;}
.y102{bottom:511.008000pt;}
.yc1{bottom:512.650933pt;}
.y184{bottom:512.944133pt;}
.y1bb{bottom:514.666667pt;}
.y20f{bottom:515.600000pt;}
.y15c{bottom:515.832933pt;}
.y71{bottom:519.653333pt;}
.y30{bottom:519.685333pt;}
.y11f{bottom:520.076267pt;}
.ye4{bottom:522.800000pt;}
.yc{bottom:523.006800pt;}
.y50{bottom:524.000000pt;}
.y197{bottom:526.053333pt;}
.y98{bottom:526.117333pt;}
.y13d{bottom:529.122800pt;}
.y101{bottom:531.936000pt;}
.y20e{bottom:532.266667pt;}
.y15b{bottom:532.366267pt;}
.y183{bottom:532.397467pt;}
.yc0{bottom:533.050933pt;}
.y1ba{bottom:534.666667pt;}
.y1e5{bottom:539.402667pt;}
.y70{bottom:539.925333pt;}
.y2f{bottom:539.957333pt;}
.y11e{bottom:540.748267pt;}
.ye3{bottom:542.800000pt;}
.y4f{bottom:544.000000pt;}
.y196{bottom:545.925333pt;}
.y97{bottom:545.989333pt;}
.y15a{bottom:548.899600pt;}
.y182{bottom:549.064133pt;}
.y20d{bottom:549.333333pt;}
.y100{bottom:552.864000pt;}
.y1b9{bottom:554.666667pt;}
.y13c{bottom:555.002800pt;}
.y1e4{bottom:558.666667pt;}
.y6f{bottom:560.197333pt;}
.y2e{bottom:560.229333pt;}
.y11d{bottom:561.420267pt;}
.ye2{bottom:562.800000pt;}
.y4e{bottom:564.000000pt;}
.yb{bottom:564.606800pt;}
.y159{bottom:565.432933pt;}
.y181{bottom:565.730800pt;}
.y195{bottom:565.797333pt;}
.y96{bottom:565.861333pt;}
.y20c{bottom:566.000000pt;}
.yff{bottom:573.792000pt;}
.y1b8{bottom:574.666667pt;}
.ybf{bottom:576.000400pt;}
.y6e{bottom:580.469333pt;}
.y2d{bottom:580.501333pt;}
.y13b{bottom:580.882800pt;}
.ya{bottom:582.073467pt;}
.y11c{bottom:582.092267pt;}
.y180{bottom:582.397467pt;}
.ye1{bottom:582.800000pt;}
.y20b{bottom:583.066667pt;}
.y4d{bottom:584.000000pt;}
.y194{bottom:585.669333pt;}
.y95{bottom:585.733333pt;}
.y158{bottom:589.419600pt;}
.y1b7{bottom:594.666667pt;}
.yfe{bottom:594.720000pt;}
.y17f{bottom:599.064133pt;}
.y1e3{bottom:599.200000pt;}
.y20a{bottom:599.733333pt;}
.ybe{bottom:599.987067pt;}
.y6d{bottom:600.741333pt;}
.y2c{bottom:600.773333pt;}
.y11b{bottom:602.764267pt;}
.ye0{bottom:602.800000pt;}
.y4c{bottom:604.000000pt;}
.y193{bottom:605.541333pt;}
.y157{bottom:605.952933pt;}
.y13a{bottom:606.762800pt;}
.y1e2{bottom:612.800000pt;}
.y1b6{bottom:614.666667pt;}
.yfd{bottom:615.648000pt;}
.y17e{bottom:615.730800pt;}
.y209{bottom:616.400000pt;}
.y9{bottom:620.327600pt;}
.y6c{bottom:621.013333pt;}
.y2b{bottom:621.045333pt;}
.y156{bottom:622.486267pt;}
.ydf{bottom:622.800000pt;}
.y11a{bottom:623.436267pt;}
.ybd{bottom:623.973733pt;}
.y4b{bottom:624.000000pt;}
.y192{bottom:625.413333pt;}
.y94{bottom:625.466667pt;}
.y1e1{bottom:626.400000pt;}
.y17d{bottom:632.397467pt;}
.y139{bottom:632.642800pt;}
.y208{bottom:633.466667pt;}
.y1b5{bottom:634.666667pt;}
.yfc{bottom:636.576000pt;}
.y155{bottom:639.019600pt;}
.y1e0{bottom:640.000000pt;}
.y8{bottom:641.127600pt;}
.y6b{bottom:641.285333pt;}
.y2a{bottom:641.317333pt;}
.yde{bottom:642.800000pt;}
.y4a{bottom:644.000000pt;}
.y191{bottom:645.285333pt;}
.y93{bottom:645.333333pt;}
.ybc{bottom:647.960400pt;}
.y207{bottom:650.133333pt;}
.y17c{bottom:651.850800pt;}
.y1df{bottom:653.600000pt;}
.y1b4{bottom:654.666667pt;}
.y154{bottom:655.552933pt;}
.yfb{bottom:657.504000pt;}
.y138{bottom:658.522800pt;}
.y6a{bottom:661.557333pt;}
.y29{bottom:661.589333pt;}
.ydd{bottom:662.800000pt;}
.y49{bottom:664.000000pt;}
.ybb{bottom:664.627067pt;}
.y190{bottom:665.157333pt;}
.y119{bottom:666.653733pt;}
.y206{bottom:666.800000pt;}
.y1de{bottom:667.200000pt;}
.y17b{bottom:668.517467pt;}
.y1b3{bottom:674.666667pt;}
.yfa{bottom:678.432000pt;}
.y153{bottom:679.539600pt;}
.y1dd{bottom:680.800000pt;}
.y69{bottom:681.829333pt;}
.y28{bottom:681.861333pt;}
.y7{bottom:682.714933pt;}
.ydc{bottom:682.800000pt;}
.y205{bottom:683.866667pt;}
.y68{bottom:684.000000pt;}
.y137{bottom:684.402800pt;}
.y18f{bottom:685.029333pt;}
.y17a{bottom:685.184133pt;}
.yba{bottom:688.613733pt;}
.y118{bottom:690.640400pt;}
.y1dc{bottom:694.400000pt;}
.y1b2{bottom:694.666667pt;}
.y152{bottom:696.206267pt;}
.yf9{bottom:699.360000pt;}
.y204{bottom:700.533333pt;}
.y179{bottom:701.850800pt;}
.y27{bottom:702.101333pt;}
.ydb{bottom:702.800000pt;}
.y6{bottom:703.514933pt;}
.y48{bottom:704.000000pt;}
.y92{bottom:704.901333pt;}
.y1db{bottom:708.000000pt;}
.y136{bottom:710.282800pt;}
.yb9{bottom:712.600400pt;}
.y117{bottom:714.627067pt;}
.y1b1{bottom:714.666667pt;}
.y203{bottom:717.200000pt;}
.yf8{bottom:720.288000pt;}
.y178{bottom:721.304133pt;}
.y1da{bottom:721.600000pt;}
.y26{bottom:722.373333pt;}
.yda{bottom:722.800000pt;}
.y67{bottom:724.000000pt;}
.y91{bottom:724.773333pt;}
.yb8{bottom:729.267067pt;}
.y151{bottom:731.533333pt;}
.y202{bottom:733.866667pt;}
.y1b0{bottom:734.666667pt;}
.y1d9{bottom:735.200000pt;}
.y135{bottom:736.162800pt;}
.y177{bottom:737.970800pt;}
.y116{bottom:738.613733pt;}
.yf7{bottom:741.216000pt;}
.y25{bottom:742.645333pt;}
.yd9{bottom:742.800000pt;}
.y66{bottom:744.000000pt;}
.y90{bottom:744.645333pt;}
.y1d8{bottom:748.800000pt;}
.y201{bottom:750.533333pt;}
.yb7{bottom:753.253733pt;}
.y176{bottom:754.637467pt;}
.y1af{bottom:754.666667pt;}
.y134{bottom:762.042800pt;}
.yf6{bottom:762.144000pt;}
.y1d7{bottom:762.400000pt;}
.y115{bottom:762.600400pt;}
.yd8{bottom:762.800000pt;}
.y24{bottom:762.917333pt;}
.y5{bottom:764.000000pt;}
.y8f{bottom:764.517333pt;}
.y175{bottom:771.304133pt;}
.y1ae{bottom:774.666667pt;}
.y1d6{bottom:776.000000pt;}
.y200{bottom:776.533333pt;}
.yb3{bottom:777.240400pt;}
.y172{bottom:782.472400pt;}
.yf5{bottom:783.072000pt;}
.y23{bottom:783.189333pt;}
.y47{bottom:784.000000pt;}
.y8e{bottom:784.389333pt;}
.yb6{bottom:785.573733pt;}
.y114{bottom:786.587067pt;}
.y133{bottom:787.922800pt;}
.y1d5{bottom:789.600000pt;}
.y4{bottom:790.666667pt;}
.y174{bottom:790.757467pt;}
.y1ff{bottom:793.200000pt;}
.yb2{bottom:793.907067pt;}
.y1ad{bottom:794.666667pt;}
.yb5{bottom:802.240400pt;}
.y171{bottom:802.472400pt;}
.yd7{bottom:803.200000pt;}
.y22{bottom:803.461333pt;}
.y46{bottom:804.000000pt;}
.y8d{bottom:804.261333pt;}
.y1fe{bottom:810.266667pt;}
.yb1{bottom:810.573733pt;}
.y1ac{bottom:814.666667pt;}
.y1d4{bottom:816.800000pt;}
.y3{bottom:817.333333pt;}
.yb4{bottom:818.907067pt;}
.y170{bottom:823.144400pt;}
.yd6{bottom:823.600000pt;}
.y21{bottom:823.733333pt;}
.y173{bottom:823.811067pt;}
.y8b{bottom:823.996400pt;}
.y45{bottom:824.000000pt;}
.y8c{bottom:824.133333pt;}
.y1fd{bottom:826.933333pt;}
.yb0{bottom:827.240400pt;}
.y1d3{bottom:830.400000pt;}
.hf{height:33.416667pt;}
.he{height:35.456000pt;}
.hd{height:35.546875pt;}
.h10{height:36.229167pt;}
.h1{height:41.770833pt;}
.h5{height:42.656250pt;}
.ha{height:43.406250pt;}
.h9{height:44.320000pt;}
.h4{height:44.960000pt;}
.h2{height:45.286458pt;}
.h6{height:50.125000pt;}
.h7{height:50.253000pt;}
.h8{height:54.343750pt;}
.hc{height:75.104167pt;}
.h3{height:83.541667pt;}
.hb{height:108.437500pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.000000pt;}
.x22{left:64.103333pt;}
.x11{left:70.086800pt;}
.x3{left:73.228400pt;}
.x8{left:86.464000pt;}
.x29{left:88.948133pt;}
.x28{left:90.588133pt;}
.x12{left:93.793467pt;}
.xa{left:98.780133pt;}
.x6{left:99.996400pt;}
.xb{left:101.566800pt;}
.x9{left:104.206800pt;}
.x20{left:106.740133pt;}
.x25{left:108.713067pt;}
.x1d{left:110.086800pt;}
.x5{left:113.228400pt;}
.x2{left:120.000000pt;}
.x32{left:126.476400pt;}
.x7{left:133.999333pt;}
.x16{left:138.780133pt;}
.x17{left:141.566800pt;}
.x15{left:144.206800pt;}
.x23{left:148.713067pt;}
.x27{left:162.687067pt;}
.x2a{left:174.361467pt;}
.x21{left:179.116667pt;}
.x13{left:187.220133pt;}
.xc{left:195.460133pt;}
.xd{left:197.633467pt;}
.x2e{left:218.277600pt;}
.xe{left:219.953467pt;}
.x1e{left:227.233467pt;}
.x18{left:235.460133pt;}
.x19{left:237.633467pt;}
.x1a{left:259.953467pt;}
.x31{left:280.890933pt;}
.x14{left:323.780133pt;}
.x2b{left:327.121467pt;}
.x26{left:335.566400pt;}
.x2f{left:358.117600pt;}
.x2c{left:359.054800pt;}
.x1f{left:363.806800pt;}
.xf{left:372.180133pt;}
.x24{left:375.566400pt;}
.x10{left:379.060133pt;}
.x1b{left:412.180133pt;}
.x1c{left:419.060133pt;}
.x30{left:536.864267pt;}
.x2d{left:556.250000pt;}
.x4{left:564.791600pt;}
}




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