
    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_4d523946b2188b7d47e0d377.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.909180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_15f2f6927d5e7b77f4c48762.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.908691;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_1b80cdacebe426e23350f12c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.979980;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_e7a1b218aacfe769df6b1547.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_29f0d6089d6018bfa221e6a7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_76af7cb46652904531fc1e81.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.979980;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_a50a0b3a38207408071925b5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.980469;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_d59e0d17f4b1a1b0202b94ab.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.920000;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_4d40df14af17d5bb1a823799.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;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_ed988df6a9963d87709dbc33.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.050056;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_be1bf517876aabdc37e4f200.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.979980;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_49c41cb5107fd285316bccf4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.980469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_be1bf517876aabdc37e4f200.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.979980;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_49c41cb5107fd285316bccf4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.980469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_d19b9e7f289e0051dd7a8f3d.woff2')format("woff");}.fff{font-family:fff;line-height:0.979004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_edbcd6e7b2b2f34a5a225e16.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_58227799a8405f4748867b2d.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v9{vertical-align:-33.000000px;}
.v8{vertical-align:-31.800000px;}
.v7{vertical-align:-28.800000px;}
.v2{vertical-align:-17.982000px;}
.v6{vertical-align:-15.984000px;}
.v3{vertical-align:-13.986000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.227800px;}
.v1{vertical-align:17.982000px;}
.v5{vertical-align:35.202000px;}
.ls1{letter-spacing:-3.510000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.010200px;}
.ls2{letter-spacing:904.824000px;}
.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;}
}
.ws0{word-spacing:-20.016000px;}
.ws39{word-spacing:-16.680000px;}
.ws6c{word-spacing:-13.500000px;}
.ws38{word-spacing:-13.344000px;}
.ws2{word-spacing:-12.000000px;}
.ws5{word-spacing:-11.676000px;}
.ws1{word-spacing:-7.870500px;}
.ws3a{word-spacing:-6.996000px;}
.ws4{word-spacing:-6.807108px;}
.ws36{word-spacing:-5.400000px;}
.ws68{word-spacing:-5.250000px;}
.ws4f{word-spacing:-4.536000px;}
.ws37{word-spacing:-4.200000px;}
.ws69{word-spacing:-3.984000px;}
.ws1b{word-spacing:-3.888000px;}
.ws21{word-spacing:-3.456000px;}
.ws9{word-spacing:-3.024000px;}
.ws35{word-spacing:-2.784000px;}
.wsb{word-spacing:-2.538000px;}
.ws47{word-spacing:-2.268000px;}
.ws76{word-spacing:-2.214000px;}
.ws5a{word-spacing:-2.106000px;}
.ws60{word-spacing:-2.064000px;}
.ws8a{word-spacing:-2.016000px;}
.ws80{word-spacing:-1.674000px;}
.ws6e{word-spacing:-1.458000px;}
.ws24{word-spacing:-1.350000px;}
.ws23{word-spacing:-1.242000px;}
.ws96{word-spacing:-1.056000px;}
.wse{word-spacing:-0.918000px;}
.ws2f{word-spacing:-0.816000px;}
.wsa0{word-spacing:-0.768000px;}
.ws55{word-spacing:-0.756000px;}
.ws2b{word-spacing:-0.576000px;}
.ws2a{word-spacing:-0.252000px;}
.ws22{word-spacing:-0.216000px;}
.ws6{word-spacing:-0.048000px;}
.ws7{word-spacing:0.000000px;}
.ws2c{word-spacing:0.048000px;}
.ws70{word-spacing:0.324000px;}
.ws4b{word-spacing:0.420000px;}
.ws7e{word-spacing:0.432000px;}
.ws3d{word-spacing:0.594000px;}
.ws1c{word-spacing:0.648000px;}
.ws97{word-spacing:0.672000px;}
.ws1f{word-spacing:0.702000px;}
.ws1e{word-spacing:0.810000px;}
.ws58{word-spacing:1.080000px;}
.ws88{word-spacing:1.248000px;}
.ws44{word-spacing:1.350000px;}
.ws91{word-spacing:1.392000px;}
.ws6b{word-spacing:1.458000px;}
.ws6d{word-spacing:1.836000px;}
.wsa{word-spacing:1.998000px;}
.ws74{word-spacing:2.106000px;}
.ws8f{word-spacing:2.160000px;}
.ws93{word-spacing:2.352000px;}
.ws9f{word-spacing:2.496000px;}
.ws42{word-spacing:2.538000px;}
.ws6f{word-spacing:2.592000px;}
.ws8c{word-spacing:2.640000px;}
.ws19{word-spacing:2.700000px;}
.ws41{word-spacing:2.916000px;}
.wsc{word-spacing:2.970000px;}
.ws28{word-spacing:3.132000px;}
.ws98{word-spacing:3.216000px;}
.wsf{word-spacing:3.240000px;}
.ws26{word-spacing:3.294000px;}
.ws9a{word-spacing:3.408000px;}
.ws34{word-spacing:3.504000px;}
.ws10{word-spacing:3.510000px;}
.wsa1{word-spacing:3.600000px;}
.ws30{word-spacing:3.744000px;}
.ws43{word-spacing:3.780000px;}
.ws94{word-spacing:3.840000px;}
.ws77{word-spacing:3.942000px;}
.ws57{word-spacing:4.104000px;}
.ws86{word-spacing:4.158000px;}
.ws15{word-spacing:4.212000px;}
.ws92{word-spacing:4.368000px;}
.ws9b{word-spacing:4.848000px;}
.ws7c{word-spacing:4.860000px;}
.ws66{word-spacing:4.968000px;}
.ws90{word-spacing:4.992000px;}
.ws9c{word-spacing:5.040000px;}
.ws2e{word-spacing:5.088000px;}
.ws9e{word-spacing:5.136000px;}
.ws1a{word-spacing:5.238000px;}
.ws18{word-spacing:5.292000px;}
.ws84{word-spacing:5.454000px;}
.ws71{word-spacing:5.616000px;}
.ws99{word-spacing:5.664000px;}
.ws9d{word-spacing:5.808000px;}
.ws75{word-spacing:5.832000px;}
.ws65{word-spacing:5.886000px;}
.wsd{word-spacing:5.994000px;}
.ws7f{word-spacing:6.102000px;}
.ws56{word-spacing:6.156000px;}
.ws5d{word-spacing:6.210000px;}
.ws81{word-spacing:6.264000px;}
.ws33{word-spacing:6.336000px;}
.ws5b{word-spacing:6.588000px;}
.ws31{word-spacing:6.624000px;}
.ws5c{word-spacing:6.696000px;}
.ws72{word-spacing:6.858000px;}
.ws4d{word-spacing:6.912000px;}
.ws87{word-spacing:6.960000px;}
.ws89{word-spacing:7.008000px;}
.ws5f{word-spacing:7.128000px;}
.ws8d{word-spacing:7.248000px;}
.ws8{word-spacing:7.344000px;}
.ws11{word-spacing:7.452000px;}
.ws14{word-spacing:7.506000px;}
.ws53{word-spacing:7.668000px;}
.ws2d{word-spacing:7.776000px;}
.ws27{word-spacing:7.830000px;}
.ws4c{word-spacing:8.046000px;}
.ws7a{word-spacing:8.208000px;}
.ws13{word-spacing:8.262000px;}
.ws48{word-spacing:8.478000px;}
.ws20{word-spacing:8.532000px;}
.ws3b{word-spacing:8.592000px;}
.ws64{word-spacing:8.748000px;}
.ws95{word-spacing:8.832000px;}
.ws3f{word-spacing:9.018000px;}
.ws5e{word-spacing:9.234000px;}
.ws78{word-spacing:9.720000px;}
.ws32{word-spacing:10.128000px;}
.ws7b{word-spacing:10.746000px;}
.ws40{word-spacing:11.124000px;}
.ws25{word-spacing:11.178000px;}
.ws50{word-spacing:11.232000px;}
.ws12{word-spacing:11.502000px;}
.ws17{word-spacing:11.556000px;}
.ws3c{word-spacing:11.610000px;}
.ws6a{word-spacing:11.826000px;}
.ws79{word-spacing:11.934000px;}
.ws16{word-spacing:11.988000px;}
.ws52{word-spacing:12.366000px;}
.ws3e{word-spacing:12.474000px;}
.ws8e{word-spacing:12.768000px;}
.ws67{word-spacing:13.554000px;}
.ws29{word-spacing:13.662000px;}
.ws7d{word-spacing:13.986000px;}
.ws82{word-spacing:14.202000px;}
.ws73{word-spacing:14.364000px;}
.ws4a{word-spacing:14.634000px;}
.ws46{word-spacing:15.444000px;}
.ws45{word-spacing:17.388000px;}
.ws49{word-spacing:17.658000px;}
.ws63{word-spacing:19.386000px;}
.ws4e{word-spacing:21.330000px;}
.ws59{word-spacing:22.086000px;}
.ws1d{word-spacing:22.842000px;}
.ws83{word-spacing:23.490000px;}
.ws8b{word-spacing:23.808000px;}
.ws51{word-spacing:23.868000px;}
.ws54{word-spacing:30.888000px;}
.ws85{word-spacing:34.182000px;}
.ws61{word-spacing:541.892400px;}
.ws62{word-spacing:760.470000px;}
.ws3{word-spacing:1625.890200px;}
._a{margin-left:-7.063800px;}
._10{margin-left:-5.977800px;}
._9{margin-left:-4.804800px;}
._3{margin-left:-3.216000px;}
._1{margin-left:-1.590000px;}
._6{width:1.758600px;}
._11{width:2.774400px;}
._5{width:3.780000px;}
._0{width:5.430000px;}
._8{width:6.588000px;}
._e{width:7.973400px;}
._7{width:8.980200px;}
._4{width:10.157400px;}
._d{width:11.534400px;}
._54{width:13.590000px;}
._2{width:14.979600px;}
._f{width:16.491000px;}
._53{width:18.014400px;}
._1c{width:24.100200px;}
._29{width:140.259000px;}
._24{width:143.706600px;}
._2a{width:153.757800px;}
._3b{width:160.398600px;}
._27{width:165.315000px;}
._31{width:168.340800px;}
._2d{width:172.896000px;}
._28{width:181.299000px;}
._3d{width:182.607600px;}
._30{width:193.240800px;}
._2c{width:197.796000px;}
._42{width:204.544800px;}
._38{width:207.148800px;}
._4b{width:208.761000px;}
._35{width:223.906800px;}
._41{width:228.800400px;}
._37{width:232.048800px;}
._34{width:248.806800px;}
._4e{width:256.239600px;}
._4d{width:258.767400px;}
._51{width:268.527600px;}
._4a{width:270.459600px;}
._23{width:281.306400px;}
._4c{width:307.413600px;}
._3a{width:351.406800px;}
._46{width:369.058800px;}
._36{width:376.997400px;}
._2f{width:379.840800px;}
._2b{width:384.396000px;}
._13{width:390.148800px;}
._1d{width:395.689200px;}
._3f{width:402.604800px;}
._18{width:405.840000px;}
._33{width:415.698600px;}
._20{width:427.748400px;}
._40{width:445.584600px;}
._3c{width:454.362600px;}
._17{width:458.352000px;}
._22{width:465.529200px;}
._1e{width:503.684400px;}
._15{width:506.208000px;}
._21{width:511.748400px;}
._4f{width:512.751600px;}
._12{width:546.240000px;}
._14{width:551.232000px;}
._16{width:563.232000px;}
._43{width:565.284000px;}
._44{width:570.966000px;}
._1a{width:578.736000px;}
._52{width:580.047600px;}
._19{width:586.383600px;}
._26{width:587.732400px;}
._3e{width:590.952000px;}
._2e{width:592.134000px;}
._25{width:595.380000px;}
._50{width:600.617400px;}
._32{width:613.554000px;}
._1b{width:618.720000px;}
._1f{width:627.716400px;}
._47{width:665.199600px;}
._39{width:672.564000px;}
._49{width:711.039600px;}
._48{width:718.687200px;}
._45{width:959.027400px;}
._b{width:2016.497400px;}
._c{width:2554.965600px;}
.fc7{color:rgb(0,0,255);}
.fc6{color:rgb(90,87,88);}
.fc3{color:rgb(43,90,157);}
.fc1{color:rgb(243,95,40);}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(57,53,54);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:24.486000px;}
.fsb{font-size:27.984000px;}
.fs0{font-size:30.000000px;}
.fs3{font-size:31.482000px;}
.fs6{font-size:36.000000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fsa{font-size:74.400000px;}
.fs7{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y31{bottom:58.281600px;}
.y30{bottom:70.281600px;}
.y69{bottom:70.918200px;}
.y68{bottom:85.318200px;}
.y1{bottom:86.902650px;}
.y2f{bottom:88.414350px;}
.yd2{bottom:126.652050px;}
.y151{bottom:137.923200px;}
.y9a{bottom:137.998200px;}
.y135{bottom:139.112100px;}
.yd1{bottom:141.052050px;}
.y17{bottom:144.980850px;}
.y187{bottom:145.065600px;}
.y2e{bottom:149.856900px;}
.y99{bottom:154.198200px;}
.y134{bottom:155.424600px;}
.y1bd{bottom:156.426150px;}
.y150{bottom:158.923200px;}
.yd0{bottom:159.448050px;}
.y186{bottom:161.265600px;}
.y2d{bottom:166.056900px;}
.y16{bottom:170.180850px;}
.y1bc{bottom:170.826150px;}
.y133{bottom:171.924600px;}
.y165{bottom:172.297200px;}
.ycf{bottom:174.674250px;}
.y185{bottom:177.465600px;}
.y98{bottom:179.398200px;}
.y14f{bottom:179.923200px;}
.y2c{bottom:182.256900px;}
.y1bb{bottom:185.226150px;}
.y15{bottom:186.380850px;}
.y132{bottom:188.424600px;}
.y164{bottom:188.497200px;}
.yce{bottom:190.874250px;}
.y184{bottom:193.665600px;}
.y2b{bottom:198.456900px;}
.y1ba{bottom:199.626150px;}
.y14e{bottom:200.923200px;}
.y14{bottom:202.580850px;}
.y163{bottom:204.697200px;}
.y131{bottom:204.924600px;}
.y97{bottom:206.398200px;}
.ycd{bottom:207.074400px;}
.y183{bottom:209.865600px;}
.y2a{bottom:214.656900px;}
.y13{bottom:218.780850px;}
.y162{bottom:220.897200px;}
.y130{bottom:221.424600px;}
.y14d{bottom:221.923200px;}
.y96{bottom:222.598050px;}
.y1b9{bottom:223.026150px;}
.ycc{bottom:223.274250px;}
.y29{bottom:230.856900px;}
.y12{bottom:234.980850px;}
.y182{bottom:235.065600px;}
.y1b8{bottom:237.426150px;}
.y12f{bottom:237.924600px;}
.ycb{bottom:239.474250px;}
.y14c{bottom:242.923200px;}
.y161{bottom:246.097200px;}
.y28{bottom:247.056900px;}
.y95{bottom:247.798050px;}
.y11{bottom:251.180850px;}
.y181{bottom:251.265600px;}
.y1b7{bottom:251.826150px;}
.y12e{bottom:254.424600px;}
.yca{bottom:255.674250px;}
.y27{bottom:263.256900px;}
.y14b{bottom:263.923200px;}
.y94{bottom:263.998200px;}
.y1b6{bottom:266.226150px;}
.y10{bottom:267.380850px;}
.y180{bottom:267.465600px;}
.y12d{bottom:270.924600px;}
.yc9{bottom:271.874250px;}
.y26{bottom:279.456900px;}
.y1b5{bottom:280.626150px;}
.yf{bottom:283.580850px;}
.y17f{bottom:283.665600px;}
.y14a{bottom:284.923200px;}
.y12c{bottom:287.424600px;}
.yc8{bottom:288.074400px;}
.y93{bottom:289.198200px;}
.y25{bottom:295.656900px;}
.y149{bottom:299.606100px;}
.ye{bottom:299.780850px;}
.y17e{bottom:299.865600px;}
.y160{bottom:300.097200px;}
.y12b{bottom:303.924600px;}
.y1b4{bottom:304.026150px;}
.yc7{bottom:304.274250px;}
.y24{bottom:311.856900px;}
.y148{bottom:314.006100px;}
.y92{bottom:314.398200px;}
.yd{bottom:315.980850px;}
.y17d{bottom:316.065600px;}
.y1b3{bottom:318.426150px;}
.y12a{bottom:320.424600px;}
.yc6{bottom:320.474250px;}
.y147{bottom:327.850950px;}
.y23{bottom:328.056900px;}
.yc{bottom:332.180850px;}
.y17c{bottom:332.265600px;}
.y1b2{bottom:332.826150px;}
.y129{bottom:336.624600px;}
.yc5{bottom:336.674250px;}
.y91{bottom:339.598050px;}
.y146{bottom:342.250950px;}
.y22{bottom:344.256900px;}
.y1b1{bottom:347.226150px;}
.yb{bottom:348.380850px;}
.y17b{bottom:348.465600px;}
.y128{bottom:352.599600px;}
.yc4{bottom:352.874250px;}
.y21{bottom:360.456900px;}
.y1b0{bottom:361.626150px;}
.y145{bottom:362.412600px;}
.ya{bottom:364.580850px;}
.y17a{bottom:364.665600px;}
.y90{bottom:364.798050px;}
.y127{bottom:367.824600px;}
.yc3{bottom:369.074250px;}
.y20{bottom:376.656900px;}
.y9{bottom:380.780850px;}
.y179{bottom:380.865600px;}
.y126{bottom:382.204050px;}
.y8f{bottom:382.798200px;}
.y1af{bottom:385.026150px;}
.yc2{bottom:385.274250px;}
.y144{bottom:392.095650px;}
.y1f{bottom:392.856900px;}
.y8{bottom:396.980850px;}
.y178{bottom:397.065600px;}
.y125{bottom:398.008650px;}
.y1ae{bottom:399.426150px;}
.yc1{bottom:401.474250px;}
.y1e{bottom:409.057050px;}
.y8e{bottom:409.798200px;}
.y7{bottom:413.180850px;}
.y177{bottom:413.265600px;}
.y1ad{bottom:413.826150px;}
.y143{bottom:415.495650px;}
.yc0{bottom:417.674250px;}
.y1d{bottom:425.256900px;}
.y124{bottom:425.260950px;}
.y8d{bottom:425.998050px;}
.y1ac{bottom:428.226150px;}
.y6{bottom:429.380700px;}
.y176{bottom:429.465600px;}
.y142{bottom:431.695650px;}
.ybf{bottom:433.874250px;}
.y1c{bottom:441.456900px;}
.y5{bottom:445.580850px;}
.y175{bottom:445.665600px;}
.y141{bottom:447.895650px;}
.ybe{bottom:450.074250px;}
.y8c{bottom:451.198200px;}
.y123{bottom:451.441200px;}
.y1ab{bottom:451.626150px;}
.y1b{bottom:457.656900px;}
.yfe{bottom:460.968600px;}
.y4{bottom:461.780850px;}
.y174{bottom:461.865600px;}
.y140{bottom:464.095650px;}
.y1aa{bottom:466.026150px;}
.ybd{bottom:466.274250px;}
.y122{bottom:467.941200px;}
.y1a{bottom:473.856900px;}
.y8b{bottom:476.398200px;}
.yfd{bottom:477.168600px;}
.y3{bottom:477.980850px;}
.y173{bottom:478.065600px;}
.y13f{bottom:480.295650px;}
.y1a9{bottom:480.426150px;}
.y121{bottom:484.441200px;}
.ybc{bottom:489.974250px;}
.y19{bottom:490.057050px;}
.y8a{bottom:492.598050px;}
.yfc{bottom:493.368600px;}
.y172{bottom:494.265600px;}
.y1a8{bottom:494.826150px;}
.y13e{bottom:496.495650px;}
.y120{bottom:500.941200px;}
.y2{bottom:503.180850px;}
.y18{bottom:506.256900px;}
.yfb{bottom:509.568600px;}
.y171{bottom:510.465600px;}
.y13d{bottom:512.695650px;}
.y11f{bottom:517.441200px;}
.y89{bottom:517.798200px;}
.y1a7{bottom:518.226150px;}
.ybb{bottom:518.474250px;}
.yfa{bottom:525.768600px;}
.y170{bottom:526.665600px;}
.y13c{bottom:528.895650px;}
.y1a6{bottom:532.626150px;}
.y11e{bottom:533.941200px;}
.y88{bottom:533.998050px;}
.yba{bottom:534.674250px;}
.yf9{bottom:541.968600px;}
.y16f{bottom:542.865600px;}
.y13b{bottom:545.095650px;}
.y1a5{bottom:547.026150px;}
.y11d{bottom:550.441200px;}
.yb9{bottom:550.874250px;}
.y61{bottom:553.774500px;}
.yf8{bottom:558.168600px;}
.y16e{bottom:559.065600px;}
.y87{bottom:559.198200px;}
.y13a{bottom:561.295650px;}
.y11c{bottom:566.941200px;}
.yb8{bottom:567.074250px;}
.y60{bottom:568.174500px;}
.y1a4{bottom:570.426150px;}
.yf7{bottom:574.368600px;}
.y16d{bottom:575.265600px;}
.y86{bottom:575.398200px;}
.y139{bottom:577.495650px;}
.yb7{bottom:583.274250px;}
.y11b{bottom:583.441200px;}
.yf6{bottom:590.568600px;}
.y16c{bottom:591.465600px;}
.y5f{bottom:591.574500px;}
.y85{bottom:591.598050px;}
.y138{bottom:593.695650px;}
.y11a{bottom:599.941200px;}
.y1a3{bottom:600.426150px;}
.y5e{bottom:605.974500px;}
.yf5{bottom:606.768600px;}
.yb6{bottom:606.974250px;}
.y16b{bottom:607.665600px;}
.y84{bottom:607.798200px;}
.y119{bottom:616.441200px;}
.y137{bottom:618.895650px;}
.y5d{bottom:620.374500px;}
.yf4{bottom:622.968600px;}
.y16a{bottom:623.865600px;}
.y1a2{bottom:625.626150px;}
.yb5{bottom:632.474250px;}
.y118{bottom:632.941200px;}
.y83{bottom:632.998050px;}
.y5c{bottom:634.774500px;}
.yf3{bottom:639.168600px;}
.y169{bottom:640.065600px;}
.y136{bottom:645.895650px;}
.yb4{bottom:648.674250px;}
.y5b{bottom:649.174500px;}
.y117{bottom:649.441200px;}
.yf2{bottom:655.368600px;}
.y1a1{bottom:655.626150px;}
.y168{bottom:656.265600px;}
.y82{bottom:658.198200px;}
.y47{bottom:662.583300px;}
.y5a{bottom:663.574500px;}
.yb3{bottom:664.874250px;}
.y116{bottom:665.941200px;}
.yf1{bottom:671.568600px;}
.y1a0{bottom:671.826150px;}
.y81{bottom:674.398200px;}
.y59{bottom:677.974500px;}
.yb2{bottom:681.074250px;}
.y167{bottom:681.465600px;}
.y115{bottom:682.441200px;}
.yf0{bottom:687.768600px;}
.y46{bottom:687.783300px;}
.y19f{bottom:688.026150px;}
.y58{bottom:692.374500px;}
.yb1{bottom:697.274250px;}
.y114{bottom:698.941200px;}
.y80{bottom:699.598050px;}
.y45{bottom:701.283300px;}
.y19e{bottom:704.226150px;}
.y57{bottom:706.774500px;}
.y166{bottom:711.465600px;}
.yef{bottom:712.968600px;}
.yb0{bottom:713.474250px;}
.y113{bottom:715.441200px;}
.y56{bottom:721.174500px;}
.y7f{bottom:724.798200px;}
.y19d{bottom:729.426150px;}
.yaf{bottom:729.674250px;}
.y44{bottom:731.779800px;}
.y112{bottom:731.941200px;}
.y1d5{bottom:736.000950px;}
.yee{bottom:738.110700px;}
.y55{bottom:744.574500px;}
.y43{bottom:745.279800px;}
.y111{bottom:748.441200px;}
.y7e{bottom:749.998050px;}
.y1d4{bottom:750.400950px;}
.yae{bottom:753.374250px;}
.yed{bottom:754.610700px;}
.y42{bottom:758.779800px;}
.y54{bottom:758.974500px;}
.y19c{bottom:759.426150px;}
.y1d3{bottom:764.800950px;}
.y110{bottom:764.941200px;}
.yec{bottom:771.110700px;}
.y41{bottom:772.279800px;}
.y53{bottom:773.374500px;}
.y19b{bottom:775.626150px;}
.y7d{bottom:776.998200px;}
.y10f{bottom:781.441350px;}
.yad{bottom:781.874250px;}
.y40{bottom:785.779800px;}
.yeb{bottom:787.610700px;}
.y52{bottom:787.774500px;}
.y1d2{bottom:788.200950px;}
.y19a{bottom:791.826150px;}
.y7c{bottom:793.198200px;}
.y10e{bottom:797.941350px;}
.yac{bottom:798.074400px;}
.y3f{bottom:799.279800px;}
.y51{bottom:802.174500px;}
.y1d1{bottom:802.600950px;}
.yea{bottom:804.110700px;}
.y199{bottom:808.026150px;}
.y7b{bottom:809.398200px;}
.y3e{bottom:812.779800px;}
.yab{bottom:814.274250px;}
.y10d{bottom:814.441350px;}
.y50{bottom:816.574350px;}
.y1d0{bottom:817.000950px;}
.ye9{bottom:820.610700px;}
.y7a{bottom:825.598050px;}
.y3d{bottom:826.279800px;}
.yaa{bottom:830.474250px;}
.y10c{bottom:830.941350px;}
.y4f{bottom:830.974500px;}
.y1cf{bottom:831.400950px;}
.y198{bottom:833.226150px;}
.ye8{bottom:837.110700px;}
.y3c{bottom:839.779800px;}
.y79{bottom:841.798050px;}
.y1ce{bottom:845.800950px;}
.ya9{bottom:846.674250px;}
.y10b{bottom:847.441350px;}
.y3b{bottom:853.279800px;}
.ye7{bottom:853.610700px;}
.y4e{bottom:854.374350px;}
.y1d9{bottom:854.800950px;}
.y15f{bottom:856.689300px;}
.y78{bottom:857.998200px;}
.y197{bottom:863.226150px;}
.y3a{bottom:863.283300px;}
.y10a{bottom:863.941350px;}
.y4d{bottom:868.774350px;}
.y1cd{bottom:869.200950px;}
.ye6{bottom:870.110700px;}
.ya8{bottom:870.374250px;}
.y77{bottom:874.198200px;}
.y15e{bottom:877.689300px;}
.y196{bottom:879.426150px;}
.y39{bottom:879.483300px;}
.y109{bottom:880.441350px;}
.y4c{bottom:883.174500px;}
.y1cc{bottom:883.600950px;}
.ye5{bottom:886.610700px;}
.y76{bottom:890.398200px;}
.ya7{bottom:894.074400px;}
.y195{bottom:895.626150px;}
.y38{bottom:895.683450px;}
.y108{bottom:896.941350px;}
.y1cb{bottom:898.000950px;}
.y15d{bottom:898.689300px;}
.ye4{bottom:903.110700px;}
.y4b{bottom:906.574350px;}
.y75{bottom:906.598050px;}
.y1d8{bottom:907.000950px;}
.ya6{bottom:910.274250px;}
.y194{bottom:911.826300px;}
.y37{bottom:911.883300px;}
.y107{bottom:913.441350px;}
.ye3{bottom:919.610700px;}
.y15c{bottom:919.689300px;}
.y4a{bottom:920.974500px;}
.y1ca{bottom:921.400950px;}
.y74{bottom:922.798050px;}
.y36{bottom:928.083300px;}
.y106{bottom:929.941350px;}
.ya5{bottom:933.974250px;}
.y49{bottom:935.374350px;}
.y1c9{bottom:935.800950px;}
.ye2{bottom:936.110700px;}
.y193{bottom:937.026150px;}
.y15b{bottom:940.689300px;}
.y105{bottom:946.441350px;}
.y73{bottom:947.998200px;}
.ya4{bottom:950.174250px;}
.y1c8{bottom:950.200950px;}
.ye1{bottom:952.610700px;}
.y35{bottom:958.683450px;}
.y48{bottom:958.774350px;}
.y15a{bottom:961.689300px;}
.y104{bottom:962.941350px;}
.y192{bottom:967.026150px;}
.ye0{bottom:969.110700px;}
.y1c7{bottom:973.600950px;}
.ya3{bottom:973.874250px;}
.y72{bottom:974.998200px;}
.y103{bottom:979.441350px;}
.y159{bottom:982.689300px;}
.y191{bottom:983.226150px;}
.ydf{bottom:985.610700px;}
.y1c6{bottom:988.000950px;}
.ya2{bottom:990.074400px;}
.y71{bottom:991.198200px;}
.y190{bottom:999.426150px;}
.yde{bottom:1002.110700px;}
.y1c5{bottom:1002.400950px;}
.y158{bottom:1003.689300px;}
.y102{bottom:1006.874250px;}
.y70{bottom:1007.398200px;}
.ya1{bottom:1013.774250px;}
.y18f{bottom:1015.626300px;}
.y1d7{bottom:1016.800950px;}
.y34{bottom:1017.201000px;}
.ydd{bottom:1018.610700px;}
.y6f{bottom:1023.598050px;}
.y157{bottom:1024.689300px;}
.y1c4{bottom:1025.800950px;}
.y101{bottom:1030.274250px;}
.y18e{bottom:1031.826300px;}
.ydc{bottom:1035.110700px;}
.ya0{bottom:1037.474250px;}
.y6e{bottom:1039.798050px;}
.y1c3{bottom:1040.200950px;}
.y156{bottom:1045.689300px;}
.y100{bottom:1046.474250px;}
.y18d{bottom:1048.026150px;}
.ydb{bottom:1051.610700px;}
.y9f{bottom:1053.674250px;}
.y1c2{bottom:1054.600950px;}
.y6d{bottom:1055.998200px;}
.y33{bottom:1056.201000px;}
.yff{bottom:1062.674250px;}
.y18c{bottom:1064.226150px;}
.y155{bottom:1066.996350px;}
.yda{bottom:1068.110700px;}
.y1d6{bottom:1069.000950px;}
.y6c{bottom:1072.198200px;}
.y1c1{bottom:1078.000950px;}
.y9e{bottom:1078.874250px;}
.y18b{bottom:1080.426150px;}
.y154{bottom:1081.396500px;}
.yd9{bottom:1084.610700px;}
.y1c0{bottom:1092.400950px;}
.y9d{bottom:1095.074400px;}
.y32{bottom:1095.201000px;}
.y18a{bottom:1096.626300px;}
.y6b{bottom:1097.398200px;}
.yd8{bottom:1101.110700px;}
.y153{bottom:1102.703700px;}
.y1bf{bottom:1106.800950px;}
.y9c{bottom:1111.274250px;}
.y189{bottom:1112.826300px;}
.y1be{bottom:1121.200950px;}
.y152{bottom:1123.703700px;}
.y6a{bottom:1124.398200px;}
.y9b{bottom:1127.474250px;}
.yd7{bottom:1128.543600px;}
.y188{bottom:1129.026150px;}
.y63{bottom:1140.079650px;}
.yd4{bottom:1166.847900px;}
.y65{bottom:1168.366650px;}
.yd6{bottom:1172.037300px;}
.y67{bottom:1173.555900px;}
.yd3{bottom:1181.247900px;}
.y64{bottom:1182.766500px;}
.yd5{bottom:1184.637300px;}
.y66{bottom:1186.155900px;}
.y62{bottom:1204.063500px;}
.hb{height:18.364500px;}
.h11{height:19.443961px;}
.h2{height:20.976562px;}
.h7{height:26.244000px;}
.hc{height:31.500000px;}
.h6{height:33.351562px;}
.h9{height:36.000000px;}
.h4{height:37.520508px;}
.h5{height:39.856456px;}
.h10{height:39.857056px;}
.hd{height:40.500000px;}
.ha{height:45.000000px;}
.h3{height:54.000000px;}
.he{height:58.032000px;}
.hf{height:67.733250px;}
.h12{height:67.733850px;}
.h8{height:108.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:54.000000px;}
.x11{left:60.000000px;}
.x2{left:63.000000px;}
.x25{left:66.000000px;}
.x21{left:67.940400px;}
.x1{left:71.333550px;}
.x17{left:72.372750px;}
.x14{left:74.623500px;}
.x16{left:76.133100px;}
.x18{left:77.751750px;}
.x12{left:79.129350px;}
.x3{left:81.000000px;}
.x13{left:87.000000px;}
.x15{left:93.000000px;}
.x20{left:119.644200px;}
.x5{left:250.245900px;}
.x6{left:323.464800px;}
.xd{left:325.491150px;}
.x4{left:455.456700px;}
.x26{left:458.456700px;}
.x22{left:460.397100px;}
.x23{left:462.956700px;}
.x1d{left:464.829450px;}
.x1e{left:466.457700px;}
.x1b{left:468.580200px;}
.x1f{left:470.208450px;}
.x1a{left:472.330950px;}
.x19{left:473.456700px;}
.x24{left:479.456700px;}
.x1c{left:485.456700px;}
.x7{left:544.008450px;}
.xc{left:680.959500px;}
.x10{left:715.196550px;}
.xf{left:756.027600px;}
.xa{left:782.367600px;}
.x8{left:791.253300px;}
.x9{left:799.227900px;}
.xb{left:803.966550px;}
@media print{
.v9{vertical-align:-29.333333pt;}
.v8{vertical-align:-28.266667pt;}
.v7{vertical-align:-25.600000pt;}
.v2{vertical-align:-15.984000pt;}
.v6{vertical-align:-14.208000pt;}
.v3{vertical-align:-12.432000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:4.646933pt;}
.v1{vertical-align:15.984000pt;}
.v5{vertical-align:31.290667pt;}
.ls1{letter-spacing:-3.120000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.009067pt;}
.ls2{letter-spacing:804.288000pt;}
.ws0{word-spacing:-17.792000pt;}
.ws39{word-spacing:-14.826667pt;}
.ws6c{word-spacing:-12.000000pt;}
.ws38{word-spacing:-11.861333pt;}
.ws2{word-spacing:-10.666667pt;}
.ws5{word-spacing:-10.378667pt;}
.ws1{word-spacing:-6.996000pt;}
.ws3a{word-spacing:-6.218667pt;}
.ws4{word-spacing:-6.050763pt;}
.ws36{word-spacing:-4.800000pt;}
.ws68{word-spacing:-4.666667pt;}
.ws4f{word-spacing:-4.032000pt;}
.ws37{word-spacing:-3.733333pt;}
.ws69{word-spacing:-3.541333pt;}
.ws1b{word-spacing:-3.456000pt;}
.ws21{word-spacing:-3.072000pt;}
.ws9{word-spacing:-2.688000pt;}
.ws35{word-spacing:-2.474667pt;}
.wsb{word-spacing:-2.256000pt;}
.ws47{word-spacing:-2.016000pt;}
.ws76{word-spacing:-1.968000pt;}
.ws5a{word-spacing:-1.872000pt;}
.ws60{word-spacing:-1.834667pt;}
.ws8a{word-spacing:-1.792000pt;}
.ws80{word-spacing:-1.488000pt;}
.ws6e{word-spacing:-1.296000pt;}
.ws24{word-spacing:-1.200000pt;}
.ws23{word-spacing:-1.104000pt;}
.ws96{word-spacing:-0.938667pt;}
.wse{word-spacing:-0.816000pt;}
.ws2f{word-spacing:-0.725333pt;}
.wsa0{word-spacing:-0.682667pt;}
.ws55{word-spacing:-0.672000pt;}
.ws2b{word-spacing:-0.512000pt;}
.ws2a{word-spacing:-0.224000pt;}
.ws22{word-spacing:-0.192000pt;}
.ws6{word-spacing:-0.042667pt;}
.ws7{word-spacing:0.000000pt;}
.ws2c{word-spacing:0.042667pt;}
.ws70{word-spacing:0.288000pt;}
.ws4b{word-spacing:0.373333pt;}
.ws7e{word-spacing:0.384000pt;}
.ws3d{word-spacing:0.528000pt;}
.ws1c{word-spacing:0.576000pt;}
.ws97{word-spacing:0.597333pt;}
.ws1f{word-spacing:0.624000pt;}
.ws1e{word-spacing:0.720000pt;}
.ws58{word-spacing:0.960000pt;}
.ws88{word-spacing:1.109333pt;}
.ws44{word-spacing:1.200000pt;}
.ws91{word-spacing:1.237333pt;}
.ws6b{word-spacing:1.296000pt;}
.ws6d{word-spacing:1.632000pt;}
.wsa{word-spacing:1.776000pt;}
.ws74{word-spacing:1.872000pt;}
.ws8f{word-spacing:1.920000pt;}
.ws93{word-spacing:2.090667pt;}
.ws9f{word-spacing:2.218667pt;}
.ws42{word-spacing:2.256000pt;}
.ws6f{word-spacing:2.304000pt;}
.ws8c{word-spacing:2.346667pt;}
.ws19{word-spacing:2.400000pt;}
.ws41{word-spacing:2.592000pt;}
.wsc{word-spacing:2.640000pt;}
.ws28{word-spacing:2.784000pt;}
.ws98{word-spacing:2.858667pt;}
.wsf{word-spacing:2.880000pt;}
.ws26{word-spacing:2.928000pt;}
.ws9a{word-spacing:3.029333pt;}
.ws34{word-spacing:3.114667pt;}
.ws10{word-spacing:3.120000pt;}
.wsa1{word-spacing:3.200000pt;}
.ws30{word-spacing:3.328000pt;}
.ws43{word-spacing:3.360000pt;}
.ws94{word-spacing:3.413333pt;}
.ws77{word-spacing:3.504000pt;}
.ws57{word-spacing:3.648000pt;}
.ws86{word-spacing:3.696000pt;}
.ws15{word-spacing:3.744000pt;}
.ws92{word-spacing:3.882667pt;}
.ws9b{word-spacing:4.309333pt;}
.ws7c{word-spacing:4.320000pt;}
.ws66{word-spacing:4.416000pt;}
.ws90{word-spacing:4.437333pt;}
.ws9c{word-spacing:4.480000pt;}
.ws2e{word-spacing:4.522667pt;}
.ws9e{word-spacing:4.565333pt;}
.ws1a{word-spacing:4.656000pt;}
.ws18{word-spacing:4.704000pt;}
.ws84{word-spacing:4.848000pt;}
.ws71{word-spacing:4.992000pt;}
.ws99{word-spacing:5.034667pt;}
.ws9d{word-spacing:5.162667pt;}
.ws75{word-spacing:5.184000pt;}
.ws65{word-spacing:5.232000pt;}
.wsd{word-spacing:5.328000pt;}
.ws7f{word-spacing:5.424000pt;}
.ws56{word-spacing:5.472000pt;}
.ws5d{word-spacing:5.520000pt;}
.ws81{word-spacing:5.568000pt;}
.ws33{word-spacing:5.632000pt;}
.ws5b{word-spacing:5.856000pt;}
.ws31{word-spacing:5.888000pt;}
.ws5c{word-spacing:5.952000pt;}
.ws72{word-spacing:6.096000pt;}
.ws4d{word-spacing:6.144000pt;}
.ws87{word-spacing:6.186667pt;}
.ws89{word-spacing:6.229333pt;}
.ws5f{word-spacing:6.336000pt;}
.ws8d{word-spacing:6.442667pt;}
.ws8{word-spacing:6.528000pt;}
.ws11{word-spacing:6.624000pt;}
.ws14{word-spacing:6.672000pt;}
.ws53{word-spacing:6.816000pt;}
.ws2d{word-spacing:6.912000pt;}
.ws27{word-spacing:6.960000pt;}
.ws4c{word-spacing:7.152000pt;}
.ws7a{word-spacing:7.296000pt;}
.ws13{word-spacing:7.344000pt;}
.ws48{word-spacing:7.536000pt;}
.ws20{word-spacing:7.584000pt;}
.ws3b{word-spacing:7.637333pt;}
.ws64{word-spacing:7.776000pt;}
.ws95{word-spacing:7.850667pt;}
.ws3f{word-spacing:8.016000pt;}
.ws5e{word-spacing:8.208000pt;}
.ws78{word-spacing:8.640000pt;}
.ws32{word-spacing:9.002667pt;}
.ws7b{word-spacing:9.552000pt;}
.ws40{word-spacing:9.888000pt;}
.ws25{word-spacing:9.936000pt;}
.ws50{word-spacing:9.984000pt;}
.ws12{word-spacing:10.224000pt;}
.ws17{word-spacing:10.272000pt;}
.ws3c{word-spacing:10.320000pt;}
.ws6a{word-spacing:10.512000pt;}
.ws79{word-spacing:10.608000pt;}
.ws16{word-spacing:10.656000pt;}
.ws52{word-spacing:10.992000pt;}
.ws3e{word-spacing:11.088000pt;}
.ws8e{word-spacing:11.349333pt;}
.ws67{word-spacing:12.048000pt;}
.ws29{word-spacing:12.144000pt;}
.ws7d{word-spacing:12.432000pt;}
.ws82{word-spacing:12.624000pt;}
.ws73{word-spacing:12.768000pt;}
.ws4a{word-spacing:13.008000pt;}
.ws46{word-spacing:13.728000pt;}
.ws45{word-spacing:15.456000pt;}
.ws49{word-spacing:15.696000pt;}
.ws63{word-spacing:17.232000pt;}
.ws4e{word-spacing:18.960000pt;}
.ws59{word-spacing:19.632000pt;}
.ws1d{word-spacing:20.304000pt;}
.ws83{word-spacing:20.880000pt;}
.ws8b{word-spacing:21.162667pt;}
.ws51{word-spacing:21.216000pt;}
.ws54{word-spacing:27.456000pt;}
.ws85{word-spacing:30.384000pt;}
.ws61{word-spacing:481.682133pt;}
.ws62{word-spacing:675.973333pt;}
.ws3{word-spacing:1445.235733pt;}
._a{margin-left:-6.278933pt;}
._10{margin-left:-5.313600pt;}
._9{margin-left:-4.270933pt;}
._3{margin-left:-2.858667pt;}
._1{margin-left:-1.413333pt;}
._6{width:1.563200pt;}
._11{width:2.466133pt;}
._5{width:3.360000pt;}
._0{width:4.826667pt;}
._8{width:5.856000pt;}
._e{width:7.087467pt;}
._7{width:7.982400pt;}
._4{width:9.028800pt;}
._d{width:10.252800pt;}
._54{width:12.080000pt;}
._2{width:13.315200pt;}
._f{width:14.658667pt;}
._53{width:16.012800pt;}
._1c{width:21.422400pt;}
._29{width:124.674667pt;}
._24{width:127.739200pt;}
._2a{width:136.673600pt;}
._3b{width:142.576533pt;}
._27{width:146.946667pt;}
._31{width:149.636267pt;}
._2d{width:153.685333pt;}
._28{width:161.154667pt;}
._3d{width:162.317867pt;}
._30{width:171.769600pt;}
._2c{width:175.818667pt;}
._42{width:181.817600pt;}
._38{width:184.132267pt;}
._4b{width:185.565333pt;}
._35{width:199.028267pt;}
._41{width:203.378133pt;}
._37{width:206.265600pt;}
._34{width:221.161600pt;}
._4e{width:227.768533pt;}
._4d{width:230.015467pt;}
._51{width:238.691200pt;}
._4a{width:240.408533pt;}
._23{width:250.050133pt;}
._4c{width:273.256533pt;}
._3a{width:312.361600pt;}
._46{width:328.052267pt;}
._36{width:335.108800pt;}
._2f{width:337.636267pt;}
._2b{width:341.685333pt;}
._13{width:346.798933pt;}
._1d{width:351.723733pt;}
._3f{width:357.870933pt;}
._18{width:360.746667pt;}
._33{width:369.509867pt;}
._20{width:380.220800pt;}
._40{width:396.075200pt;}
._3c{width:403.877867pt;}
._17{width:407.424000pt;}
._22{width:413.803733pt;}
._1e{width:447.719467pt;}
._15{width:449.962667pt;}
._21{width:454.887467pt;}
._4f{width:455.779200pt;}
._12{width:485.546667pt;}
._14{width:489.984000pt;}
._16{width:500.650667pt;}
._43{width:502.474667pt;}
._44{width:507.525333pt;}
._1a{width:514.432000pt;}
._52{width:515.597867pt;}
._19{width:521.229867pt;}
._26{width:522.428800pt;}
._3e{width:525.290667pt;}
._2e{width:526.341333pt;}
._25{width:529.226667pt;}
._50{width:533.882133pt;}
._32{width:545.381333pt;}
._1b{width:549.973333pt;}
._1f{width:557.970133pt;}
._47{width:591.288533pt;}
._39{width:597.834667pt;}
._49{width:632.035200pt;}
._48{width:638.833067pt;}
._45{width:852.468800pt;}
._b{width:1792.442133pt;}
._c{width:2271.080533pt;}
.fs9{font-size:21.765333pt;}
.fsb{font-size:24.874667pt;}
.fs0{font-size:26.666667pt;}
.fs3{font-size:27.984000pt;}
.fs6{font-size:32.000000pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fsa{font-size:66.133333pt;}
.fs7{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:51.805867pt;}
.y30{bottom:62.472533pt;}
.y69{bottom:63.038400pt;}
.y68{bottom:75.838400pt;}
.y1{bottom:77.246800pt;}
.y2f{bottom:78.590533pt;}
.yd2{bottom:112.579600pt;}
.y151{bottom:122.598400pt;}
.y9a{bottom:122.665067pt;}
.y135{bottom:123.655200pt;}
.yd1{bottom:125.379600pt;}
.y17{bottom:128.871867pt;}
.y187{bottom:128.947200pt;}
.y2e{bottom:133.206133pt;}
.y99{bottom:137.065067pt;}
.y134{bottom:138.155200pt;}
.y1bd{bottom:139.045467pt;}
.y150{bottom:141.265067pt;}
.yd0{bottom:141.731600pt;}
.y186{bottom:143.347200pt;}
.y2d{bottom:147.606133pt;}
.y16{bottom:151.271867pt;}
.y1bc{bottom:151.845467pt;}
.y133{bottom:152.821867pt;}
.y165{bottom:153.153067pt;}
.ycf{bottom:155.266000pt;}
.y185{bottom:157.747200pt;}
.y98{bottom:159.465067pt;}
.y14f{bottom:159.931733pt;}
.y2c{bottom:162.006133pt;}
.y1bb{bottom:164.645467pt;}
.y15{bottom:165.671867pt;}
.y132{bottom:167.488533pt;}
.y164{bottom:167.553067pt;}
.yce{bottom:169.666000pt;}
.y184{bottom:172.147200pt;}
.y2b{bottom:176.406133pt;}
.y1ba{bottom:177.445467pt;}
.y14e{bottom:178.598400pt;}
.y14{bottom:180.071867pt;}
.y163{bottom:181.953067pt;}
.y131{bottom:182.155200pt;}
.y97{bottom:183.465067pt;}
.ycd{bottom:184.066133pt;}
.y183{bottom:186.547200pt;}
.y2a{bottom:190.806133pt;}
.y13{bottom:194.471867pt;}
.y162{bottom:196.353067pt;}
.y130{bottom:196.821867pt;}
.y14d{bottom:197.265067pt;}
.y96{bottom:197.864933pt;}
.y1b9{bottom:198.245467pt;}
.ycc{bottom:198.466000pt;}
.y29{bottom:205.206133pt;}
.y12{bottom:208.871867pt;}
.y182{bottom:208.947200pt;}
.y1b8{bottom:211.045467pt;}
.y12f{bottom:211.488533pt;}
.ycb{bottom:212.866000pt;}
.y14c{bottom:215.931733pt;}
.y161{bottom:218.753067pt;}
.y28{bottom:219.606133pt;}
.y95{bottom:220.264933pt;}
.y11{bottom:223.271867pt;}
.y181{bottom:223.347200pt;}
.y1b7{bottom:223.845467pt;}
.y12e{bottom:226.155200pt;}
.yca{bottom:227.266000pt;}
.y27{bottom:234.006133pt;}
.y14b{bottom:234.598400pt;}
.y94{bottom:234.665067pt;}
.y1b6{bottom:236.645467pt;}
.y10{bottom:237.671867pt;}
.y180{bottom:237.747200pt;}
.y12d{bottom:240.821867pt;}
.yc9{bottom:241.666000pt;}
.y26{bottom:248.406133pt;}
.y1b5{bottom:249.445467pt;}
.yf{bottom:252.071867pt;}
.y17f{bottom:252.147200pt;}
.y14a{bottom:253.265067pt;}
.y12c{bottom:255.488533pt;}
.yc8{bottom:256.066133pt;}
.y93{bottom:257.065067pt;}
.y25{bottom:262.806133pt;}
.y149{bottom:266.316533pt;}
.ye{bottom:266.471867pt;}
.y17e{bottom:266.547200pt;}
.y160{bottom:266.753067pt;}
.y12b{bottom:270.155200pt;}
.y1b4{bottom:270.245467pt;}
.yc7{bottom:270.466000pt;}
.y24{bottom:277.206133pt;}
.y148{bottom:279.116533pt;}
.y92{bottom:279.465067pt;}
.yd{bottom:280.871867pt;}
.y17d{bottom:280.947200pt;}
.y1b3{bottom:283.045467pt;}
.y12a{bottom:284.821867pt;}
.yc6{bottom:284.866000pt;}
.y147{bottom:291.423067pt;}
.y23{bottom:291.606133pt;}
.yc{bottom:295.271867pt;}
.y17c{bottom:295.347200pt;}
.y1b2{bottom:295.845467pt;}
.y129{bottom:299.221867pt;}
.yc5{bottom:299.266000pt;}
.y91{bottom:301.864933pt;}
.y146{bottom:304.223067pt;}
.y22{bottom:306.006133pt;}
.y1b1{bottom:308.645467pt;}
.yb{bottom:309.671867pt;}
.y17b{bottom:309.747200pt;}
.y128{bottom:313.421867pt;}
.yc4{bottom:313.666000pt;}
.y21{bottom:320.406133pt;}
.y1b0{bottom:321.445467pt;}
.y145{bottom:322.144533pt;}
.ya{bottom:324.071867pt;}
.y17a{bottom:324.147200pt;}
.y90{bottom:324.264933pt;}
.y127{bottom:326.955200pt;}
.yc3{bottom:328.066000pt;}
.y20{bottom:334.806133pt;}
.y9{bottom:338.471867pt;}
.y179{bottom:338.547200pt;}
.y126{bottom:339.736933pt;}
.y8f{bottom:340.265067pt;}
.y1af{bottom:342.245467pt;}
.yc2{bottom:342.466000pt;}
.y144{bottom:348.529467pt;}
.y1f{bottom:349.206133pt;}
.y8{bottom:352.871867pt;}
.y178{bottom:352.947200pt;}
.y125{bottom:353.785467pt;}
.y1ae{bottom:355.045467pt;}
.yc1{bottom:356.866000pt;}
.y1e{bottom:363.606267pt;}
.y8e{bottom:364.265067pt;}
.y7{bottom:367.271867pt;}
.y177{bottom:367.347200pt;}
.y1ad{bottom:367.845467pt;}
.y143{bottom:369.329467pt;}
.yc0{bottom:371.266000pt;}
.y1d{bottom:378.006133pt;}
.y124{bottom:378.009733pt;}
.y8d{bottom:378.664933pt;}
.y1ac{bottom:380.645467pt;}
.y6{bottom:381.671733pt;}
.y176{bottom:381.747200pt;}
.y142{bottom:383.729467pt;}
.ybf{bottom:385.666000pt;}
.y1c{bottom:392.406133pt;}
.y5{bottom:396.071867pt;}
.y175{bottom:396.147200pt;}
.y141{bottom:398.129467pt;}
.ybe{bottom:400.066000pt;}
.y8c{bottom:401.065067pt;}
.y123{bottom:401.281067pt;}
.y1ab{bottom:401.445467pt;}
.y1b{bottom:406.806133pt;}
.yfe{bottom:409.749867pt;}
.y4{bottom:410.471867pt;}
.y174{bottom:410.547200pt;}
.y140{bottom:412.529467pt;}
.y1aa{bottom:414.245467pt;}
.ybd{bottom:414.466000pt;}
.y122{bottom:415.947733pt;}
.y1a{bottom:421.206133pt;}
.y8b{bottom:423.465067pt;}
.yfd{bottom:424.149867pt;}
.y3{bottom:424.871867pt;}
.y173{bottom:424.947200pt;}
.y13f{bottom:426.929467pt;}
.y1a9{bottom:427.045467pt;}
.y121{bottom:430.614400pt;}
.ybc{bottom:435.532667pt;}
.y19{bottom:435.606267pt;}
.y8a{bottom:437.864933pt;}
.yfc{bottom:438.549867pt;}
.y172{bottom:439.347200pt;}
.y1a8{bottom:439.845467pt;}
.y13e{bottom:441.329467pt;}
.y120{bottom:445.281067pt;}
.y2{bottom:447.271867pt;}
.y18{bottom:450.006133pt;}
.yfb{bottom:452.949867pt;}
.y171{bottom:453.747200pt;}
.y13d{bottom:455.729467pt;}
.y11f{bottom:459.947733pt;}
.y89{bottom:460.265067pt;}
.y1a7{bottom:460.645467pt;}
.ybb{bottom:460.866000pt;}
.yfa{bottom:467.349867pt;}
.y170{bottom:468.147200pt;}
.y13c{bottom:470.129467pt;}
.y1a6{bottom:473.445467pt;}
.y11e{bottom:474.614400pt;}
.y88{bottom:474.664933pt;}
.yba{bottom:475.266000pt;}
.yf9{bottom:481.749867pt;}
.y16f{bottom:482.547200pt;}
.y13b{bottom:484.529467pt;}
.y1a5{bottom:486.245467pt;}
.y11d{bottom:489.281067pt;}
.yb9{bottom:489.666000pt;}
.y61{bottom:492.244000pt;}
.yf8{bottom:496.149867pt;}
.y16e{bottom:496.947200pt;}
.y87{bottom:497.065067pt;}
.y13a{bottom:498.929467pt;}
.y11c{bottom:503.947733pt;}
.yb8{bottom:504.066000pt;}
.y60{bottom:505.044000pt;}
.y1a4{bottom:507.045467pt;}
.yf7{bottom:510.549867pt;}
.y16d{bottom:511.347200pt;}
.y86{bottom:511.465067pt;}
.y139{bottom:513.329467pt;}
.yb7{bottom:518.466000pt;}
.y11b{bottom:518.614400pt;}
.yf6{bottom:524.949867pt;}
.y16c{bottom:525.747200pt;}
.y5f{bottom:525.844000pt;}
.y85{bottom:525.864933pt;}
.y138{bottom:527.729467pt;}
.y11a{bottom:533.281067pt;}
.y1a3{bottom:533.712133pt;}
.y5e{bottom:538.644000pt;}
.yf5{bottom:539.349867pt;}
.yb6{bottom:539.532667pt;}
.y16b{bottom:540.147200pt;}
.y84{bottom:540.265067pt;}
.y119{bottom:547.947733pt;}
.y137{bottom:550.129467pt;}
.y5d{bottom:551.444000pt;}
.yf4{bottom:553.749867pt;}
.y16a{bottom:554.547200pt;}
.y1a2{bottom:556.112133pt;}
.yb5{bottom:562.199333pt;}
.y118{bottom:562.614400pt;}
.y83{bottom:562.664933pt;}
.y5c{bottom:564.244000pt;}
.yf3{bottom:568.149867pt;}
.y169{bottom:568.947200pt;}
.y136{bottom:574.129467pt;}
.yb4{bottom:576.599333pt;}
.y5b{bottom:577.044000pt;}
.y117{bottom:577.281067pt;}
.yf2{bottom:582.549867pt;}
.y1a1{bottom:582.778800pt;}
.y168{bottom:583.347200pt;}
.y82{bottom:585.065067pt;}
.y47{bottom:588.962933pt;}
.y5a{bottom:589.844000pt;}
.yb3{bottom:590.999333pt;}
.y116{bottom:591.947733pt;}
.yf1{bottom:596.949867pt;}
.y1a0{bottom:597.178800pt;}
.y81{bottom:599.465067pt;}
.y59{bottom:602.644000pt;}
.yb2{bottom:605.399333pt;}
.y167{bottom:605.747200pt;}
.y115{bottom:606.614400pt;}
.yf0{bottom:611.349867pt;}
.y46{bottom:611.362933pt;}
.y19f{bottom:611.578800pt;}
.y58{bottom:615.444000pt;}
.yb1{bottom:619.799333pt;}
.y114{bottom:621.281067pt;}
.y80{bottom:621.864933pt;}
.y45{bottom:623.362933pt;}
.y19e{bottom:625.978800pt;}
.y57{bottom:628.244000pt;}
.y166{bottom:632.413867pt;}
.yef{bottom:633.749867pt;}
.yb0{bottom:634.199333pt;}
.y113{bottom:635.947733pt;}
.y56{bottom:641.044000pt;}
.y7f{bottom:644.265067pt;}
.y19d{bottom:648.378800pt;}
.yaf{bottom:648.599333pt;}
.y44{bottom:650.470933pt;}
.y112{bottom:650.614400pt;}
.y1d5{bottom:654.223067pt;}
.yee{bottom:656.098400pt;}
.y55{bottom:661.844000pt;}
.y43{bottom:662.470933pt;}
.y111{bottom:665.281067pt;}
.y7e{bottom:666.664933pt;}
.y1d4{bottom:667.023067pt;}
.yae{bottom:669.666000pt;}
.yed{bottom:670.765067pt;}
.y42{bottom:674.470933pt;}
.y54{bottom:674.644000pt;}
.y19c{bottom:675.045467pt;}
.y1d3{bottom:679.823067pt;}
.y110{bottom:679.947733pt;}
.yec{bottom:685.431733pt;}
.y41{bottom:686.470933pt;}
.y53{bottom:687.444000pt;}
.y19b{bottom:689.445467pt;}
.y7d{bottom:690.665067pt;}
.y10f{bottom:694.614533pt;}
.yad{bottom:694.999333pt;}
.y40{bottom:698.470933pt;}
.yeb{bottom:700.098400pt;}
.y52{bottom:700.244000pt;}
.y1d2{bottom:700.623067pt;}
.y19a{bottom:703.845467pt;}
.y7c{bottom:705.065067pt;}
.y10e{bottom:709.281200pt;}
.yac{bottom:709.399467pt;}
.y3f{bottom:710.470933pt;}
.y51{bottom:713.044000pt;}
.y1d1{bottom:713.423067pt;}
.yea{bottom:714.765067pt;}
.y199{bottom:718.245467pt;}
.y7b{bottom:719.465067pt;}
.y3e{bottom:722.470933pt;}
.yab{bottom:723.799333pt;}
.y10d{bottom:723.947867pt;}
.y50{bottom:725.843867pt;}
.y1d0{bottom:726.223067pt;}
.ye9{bottom:729.431733pt;}
.y7a{bottom:733.864933pt;}
.y3d{bottom:734.470933pt;}
.yaa{bottom:738.199333pt;}
.y10c{bottom:738.614533pt;}
.y4f{bottom:738.644000pt;}
.y1cf{bottom:739.023067pt;}
.y198{bottom:740.645467pt;}
.ye8{bottom:744.098400pt;}
.y3c{bottom:746.470933pt;}
.y79{bottom:748.264933pt;}
.y1ce{bottom:751.823067pt;}
.ya9{bottom:752.599333pt;}
.y10b{bottom:753.281200pt;}
.y3b{bottom:758.470933pt;}
.ye7{bottom:758.765067pt;}
.y4e{bottom:759.443867pt;}
.y1d9{bottom:759.823067pt;}
.y15f{bottom:761.501600pt;}
.y78{bottom:762.665067pt;}
.y197{bottom:767.312133pt;}
.y3a{bottom:767.362933pt;}
.y10a{bottom:767.947867pt;}
.y4d{bottom:772.243867pt;}
.y1cd{bottom:772.623067pt;}
.ye6{bottom:773.431733pt;}
.ya8{bottom:773.666000pt;}
.y77{bottom:777.065067pt;}
.y15e{bottom:780.168267pt;}
.y196{bottom:781.712133pt;}
.y39{bottom:781.762933pt;}
.y109{bottom:782.614533pt;}
.y4c{bottom:785.044000pt;}
.y1cc{bottom:785.423067pt;}
.ye5{bottom:788.098400pt;}
.y76{bottom:791.465067pt;}
.ya7{bottom:794.732800pt;}
.y195{bottom:796.112133pt;}
.y38{bottom:796.163067pt;}
.y108{bottom:797.281200pt;}
.y1cb{bottom:798.223067pt;}
.y15d{bottom:798.834933pt;}
.ye4{bottom:802.765067pt;}
.y4b{bottom:805.843867pt;}
.y75{bottom:805.864933pt;}
.y1d8{bottom:806.223067pt;}
.ya6{bottom:809.132667pt;}
.y194{bottom:810.512267pt;}
.y37{bottom:810.562933pt;}
.y107{bottom:811.947867pt;}
.ye3{bottom:817.431733pt;}
.y15c{bottom:817.501600pt;}
.y4a{bottom:818.644000pt;}
.y1ca{bottom:819.023067pt;}
.y74{bottom:820.264933pt;}
.y36{bottom:824.962933pt;}
.y106{bottom:826.614533pt;}
.ya5{bottom:830.199333pt;}
.y49{bottom:831.443867pt;}
.y1c9{bottom:831.823067pt;}
.ye2{bottom:832.098400pt;}
.y193{bottom:832.912133pt;}
.y15b{bottom:836.168267pt;}
.y105{bottom:841.281200pt;}
.y73{bottom:842.665067pt;}
.ya4{bottom:844.599333pt;}
.y1c8{bottom:844.623067pt;}
.ye1{bottom:846.765067pt;}
.y35{bottom:852.163067pt;}
.y48{bottom:852.243867pt;}
.y15a{bottom:854.834933pt;}
.y104{bottom:855.947867pt;}
.y192{bottom:859.578800pt;}
.ye0{bottom:861.431733pt;}
.y1c7{bottom:865.423067pt;}
.ya3{bottom:865.666000pt;}
.y72{bottom:866.665067pt;}
.y103{bottom:870.614533pt;}
.y159{bottom:873.501600pt;}
.y191{bottom:873.978800pt;}
.ydf{bottom:876.098400pt;}
.y1c6{bottom:878.223067pt;}
.ya2{bottom:880.066133pt;}
.y71{bottom:881.065067pt;}
.y190{bottom:888.378800pt;}
.yde{bottom:890.765067pt;}
.y1c5{bottom:891.023067pt;}
.y158{bottom:892.168267pt;}
.y102{bottom:894.999333pt;}
.y70{bottom:895.465067pt;}
.ya1{bottom:901.132667pt;}
.y18f{bottom:902.778933pt;}
.y1d7{bottom:903.823067pt;}
.y34{bottom:904.178667pt;}
.ydd{bottom:905.431733pt;}
.y6f{bottom:909.864933pt;}
.y157{bottom:910.834933pt;}
.y1c4{bottom:911.823067pt;}
.y101{bottom:915.799333pt;}
.y18e{bottom:917.178933pt;}
.ydc{bottom:920.098400pt;}
.ya0{bottom:922.199333pt;}
.y6e{bottom:924.264933pt;}
.y1c3{bottom:924.623067pt;}
.y156{bottom:929.501600pt;}
.y100{bottom:930.199333pt;}
.y18d{bottom:931.578800pt;}
.ydb{bottom:934.765067pt;}
.y9f{bottom:936.599333pt;}
.y1c2{bottom:937.423067pt;}
.y6d{bottom:938.665067pt;}
.y33{bottom:938.845333pt;}
.yff{bottom:944.599333pt;}
.y18c{bottom:945.978800pt;}
.y155{bottom:948.441200pt;}
.yda{bottom:949.431733pt;}
.y1d6{bottom:950.223067pt;}
.y6c{bottom:953.065067pt;}
.y1c1{bottom:958.223067pt;}
.y9e{bottom:958.999333pt;}
.y18b{bottom:960.378800pt;}
.y154{bottom:961.241333pt;}
.yd9{bottom:964.098400pt;}
.y1c0{bottom:971.023067pt;}
.y9d{bottom:973.399467pt;}
.y32{bottom:973.512000pt;}
.y18a{bottom:974.778933pt;}
.y6b{bottom:975.465067pt;}
.yd8{bottom:978.765067pt;}
.y153{bottom:980.181067pt;}
.y1bf{bottom:983.823067pt;}
.y9c{bottom:987.799333pt;}
.y189{bottom:989.178933pt;}
.y1be{bottom:996.623067pt;}
.y152{bottom:998.847733pt;}
.y6a{bottom:999.465067pt;}
.y9b{bottom:1002.199333pt;}
.yd7{bottom:1003.149867pt;}
.y188{bottom:1003.578800pt;}
.y63{bottom:1013.404133pt;}
.yd4{bottom:1037.198133pt;}
.y65{bottom:1038.548133pt;}
.yd6{bottom:1041.810933pt;}
.y67{bottom:1043.160800pt;}
.yd3{bottom:1049.998133pt;}
.y64{bottom:1051.348000pt;}
.yd5{bottom:1053.010933pt;}
.y66{bottom:1054.360800pt;}
.y62{bottom:1070.278667pt;}
.hb{height:16.324000pt;}
.h11{height:17.283521pt;}
.h2{height:18.645833pt;}
.h7{height:23.328000pt;}
.hc{height:28.000000pt;}
.h6{height:29.645833pt;}
.h9{height:32.000000pt;}
.h4{height:33.351562pt;}
.h5{height:35.427961pt;}
.h10{height:35.428494pt;}
.hd{height:36.000000pt;}
.ha{height:40.000000pt;}
.h3{height:48.000000pt;}
.he{height:51.584000pt;}
.hf{height:60.207333pt;}
.h12{height:60.207867pt;}
.h8{height:96.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:48.000000pt;}
.x11{left:53.333333pt;}
.x2{left:56.000000pt;}
.x25{left:58.666667pt;}
.x21{left:60.391467pt;}
.x1{left:63.407600pt;}
.x17{left:64.331333pt;}
.x14{left:66.332000pt;}
.x16{left:67.673867pt;}
.x18{left:69.112667pt;}
.x12{left:70.337200pt;}
.x3{left:72.000000pt;}
.x13{left:77.333333pt;}
.x15{left:82.666667pt;}
.x20{left:106.350400pt;}
.x5{left:222.440800pt;}
.x6{left:287.524267pt;}
.xd{left:289.325467pt;}
.x4{left:404.850400pt;}
.x26{left:407.517067pt;}
.x22{left:409.241867pt;}
.x23{left:411.517067pt;}
.x1d{left:413.181733pt;}
.x1e{left:414.629067pt;}
.x1b{left:416.515733pt;}
.x1f{left:417.963067pt;}
.x1a{left:419.849733pt;}
.x19{left:420.850400pt;}
.x24{left:426.183733pt;}
.x1c{left:431.517067pt;}
.x7{left:483.563067pt;}
.xc{left:605.297333pt;}
.x10{left:635.730267pt;}
.xf{left:672.024533pt;}
.xa{left:695.437867pt;}
.x8{left:703.336267pt;}
.x9{left:710.424800pt;}
.xb{left:714.636933pt;}
}




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