
    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_4b22610ac4564b5c89840be8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c4b48c216628725ca0cf5fe0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_2d535977da6e29a2874a629c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_547fdd2d2039fe60a26f92e5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.080000;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_1871bca4b2f228f14616980c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.117000;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_ca9cd08d914b92408a968848.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.952000;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_bb3ed98855fcef3a9156bf0b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.049000;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_b7d801cec594b4e88a4f5e78.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.662000;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_f082b59bebead21b4ff7330e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.978000;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;}
.m6{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,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);}
.m5{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);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-1.655280px;}
.ls6{letter-spacing:-1.584000px;}
.ls1{letter-spacing:-1.056660px;}
.ls5{letter-spacing:-0.198660px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.132000px;}
.ls2{letter-spacing:0.180600px;}
.ls3{letter-spacing:0.696008px;}
.ls8{letter-spacing:0.864480px;}
.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;}
}
.ws2{word-spacing:-23.040000px;}
.ws11{word-spacing:-17.280000px;}
.ws2f{word-spacing:-15.972000px;}
.ws66{word-spacing:-15.840000px;}
.ws12{word-spacing:-15.240000px;}
.ws3{word-spacing:-14.580600px;}
.ws10{word-spacing:-14.400000px;}
.wsbc{word-spacing:-14.256000px;}
.ws100{word-spacing:-13.716000px;}
.ws0{word-spacing:-13.166044px;}
.wse0{word-spacing:-13.056480px;}
.wscb{word-spacing:-12.192000px;}
.ws2e{word-spacing:-9.906000px;}
.wsae{word-spacing:-3.480000px;}
.wsc7{word-spacing:-3.420600px;}
.wsd5{word-spacing:-3.179400px;}
.wsd6{word-spacing:-3.120000px;}
.ws64{word-spacing:-3.000000px;}
.ws8f{word-spacing:-2.880000px;}
.ws31{word-spacing:-2.820000px;}
.ws21{word-spacing:-2.760600px;}
.ws1d{word-spacing:-2.700000px;}
.ws59{word-spacing:-2.520600px;}
.ws54{word-spacing:-2.399400px;}
.ws56{word-spacing:-2.340000px;}
.wsff{word-spacing:-2.304000px;}
.wsb8{word-spacing:-2.220000px;}
.ws93{word-spacing:-2.160000px;}
.wsa3{word-spacing:-1.998000px;}
.wsa{word-spacing:-1.980000px;}
.ws60{word-spacing:-1.920000px;}
.ws95{word-spacing:-1.836000px;}
.ws106{word-spacing:-1.823520px;}
.wsd0{word-spacing:-1.800000px;}
.ws7d{word-spacing:-1.740600px;}
.wse5{word-spacing:-1.728000px;}
.wsfa{word-spacing:-1.632000px;}
.ws82{word-spacing:-1.620000px;}
.ws41{word-spacing:-1.619400px;}
.ws67{word-spacing:-1.560000px;}
.wse4{word-spacing:-1.536000px;}
.wsf3{word-spacing:-1.488480px;}
.ws1c{word-spacing:-1.440000px;}
.ws79{word-spacing:-1.379400px;}
.wsf2{word-spacing:-1.344000px;}
.ws7e{word-spacing:-1.320000px;}
.wsb1{word-spacing:-1.260000px;}
.ws68{word-spacing:-1.241460px;}
.ws50{word-spacing:-1.200000px;}
.wsdb{word-spacing:-1.152000px;}
.ws9d{word-spacing:-1.140000px;}
.wsdc{word-spacing:-1.103520px;}
.wsc6{word-spacing:-1.080600px;}
.wsb0{word-spacing:-1.020000px;}
.wsfe{word-spacing:-1.008000px;}
.wsb6{word-spacing:-0.918000px;}
.wsfc{word-spacing:-0.912000px;}
.ws32{word-spacing:-0.900000px;}
.ws13{word-spacing:-0.840600px;}
.wsf6{word-spacing:-0.816000px;}
.wse6{word-spacing:-0.720000px;}
.ws9b{word-spacing:-0.660000px;}
.ws87{word-spacing:-0.594000px;}
.wsee{word-spacing:-0.575520px;}
.ws57{word-spacing:-0.540000px;}
.ws4e{word-spacing:-0.480000px;}
.wsdf{word-spacing:-0.432000px;}
.ws85{word-spacing:-0.420000px;}
.wse7{word-spacing:-0.384000px;}
.ws4f{word-spacing:-0.360000px;}
.ws6d{word-spacing:-0.324000px;}
.ws62{word-spacing:-0.240000px;}
.ws44{word-spacing:-0.180600px;}
.wsa1{word-spacing:-0.162540px;}
.ws47{word-spacing:-0.120000px;}
.ws8d{word-spacing:-0.060600px;}
.ws1{word-spacing:0.000000px;}
.ws69{word-spacing:0.054540px;}
.ws49{word-spacing:0.060600px;}
.ws107{word-spacing:0.096000px;}
.ws38{word-spacing:0.120000px;}
.ws33{word-spacing:0.180600px;}
.ws92{word-spacing:0.198660px;}
.wsd2{word-spacing:0.240000px;}
.ws17{word-spacing:0.300000px;}
.ws9c{word-spacing:0.420000px;}
.wsf1{word-spacing:0.432000px;}
.wsd9{word-spacing:0.479520px;}
.wsd1{word-spacing:0.480000px;}
.wsa7{word-spacing:0.599400px;}
.ws9f{word-spacing:0.647460px;}
.wsf{word-spacing:0.660000px;}
.wse8{word-spacing:0.672480px;}
.ws1e{word-spacing:0.780000px;}
.ws84{word-spacing:0.840600px;}
.ws20{word-spacing:0.900000px;}
.ws103{word-spacing:0.960000px;}
.ws4{word-spacing:1.056660px;}
.wsce{word-spacing:1.080600px;}
.ws43{word-spacing:1.140000px;}
.wsda{word-spacing:1.152000px;}
.wsdd{word-spacing:1.199520px;}
.ws34{word-spacing:1.200000px;}
.ws90{word-spacing:1.260000px;}
.wsf5{word-spacing:1.295520px;}
.wsac{word-spacing:1.320000px;}
.wsa8{word-spacing:1.379400px;}
.wsa2{word-spacing:1.404000px;}
.ws30{word-spacing:1.440000px;}
.ws3f{word-spacing:1.499400px;}
.wsec{word-spacing:1.536000px;}
.ws74{word-spacing:1.560000px;}
.wsbd{word-spacing:1.619400px;}
.ws102{word-spacing:1.632000px;}
.wsc2{word-spacing:1.655280px;}
.wsa0{word-spacing:1.728000px;}
.ws29{word-spacing:1.800000px;}
.ws9{word-spacing:1.860600px;}
.wsb4{word-spacing:1.890000px;}
.ws16{word-spacing:1.920000px;}
.wsad{word-spacing:1.980000px;}
.wsfd{word-spacing:2.016480px;}
.ws8e{word-spacing:2.040000px;}
.wsc3{word-spacing:2.100000px;}
.ws6b{word-spacing:2.106000px;}
.ws104{word-spacing:2.112480px;}
.ws27{word-spacing:2.160000px;}
.ws5e{word-spacing:2.220000px;}
.ws45{word-spacing:2.279400px;}
.wsea{word-spacing:2.304000px;}
.ws71{word-spacing:2.322000px;}
.ws52{word-spacing:2.340000px;}
.ws80{word-spacing:2.484540px;}
.wsbe{word-spacing:2.520600px;}
.wsef{word-spacing:2.543520px;}
.ws51{word-spacing:2.640600px;}
.ws81{word-spacing:2.753460px;}
.wsa4{word-spacing:2.760600px;}
.ws6f{word-spacing:2.808000px;}
.ws8b{word-spacing:2.861460px;}
.ws48{word-spacing:2.880000px;}
.ws6c{word-spacing:2.969460px;}
.ws73{word-spacing:3.000000px;}
.ws42{word-spacing:3.059400px;}
.wsb7{word-spacing:3.078540px;}
.ws35{word-spacing:3.179400px;}
.wse3{word-spacing:3.216000px;}
.ws5f{word-spacing:3.299400px;}
.ws55{word-spacing:3.360000px;}
.wsf8{word-spacing:3.360480px;}
.ws105{word-spacing:3.456480px;}
.wsd4{word-spacing:3.480000px;}
.wsb3{word-spacing:3.660000px;}
.ws96{word-spacing:3.726000px;}
.wscf{word-spacing:3.780000px;}
.ws46{word-spacing:3.900000px;}
.wsb9{word-spacing:4.079400px;}
.ws14{word-spacing:4.200600px;}
.ws5{word-spacing:4.260000px;}
.ws101{word-spacing:4.320000px;}
.ws2a{word-spacing:4.320600px;}
.ws36{word-spacing:4.380000px;}
.ws24{word-spacing:4.440600px;}
.ws37{word-spacing:4.500000px;}
.ws65{word-spacing:4.620000px;}
.ws23{word-spacing:4.680000px;}
.ws99{word-spacing:4.739400px;}
.ws2c{word-spacing:4.800000px;}
.wsa6{word-spacing:4.859400px;}
.wsca{word-spacing:4.920000px;}
.ws98{word-spacing:4.979400px;}
.ws7b{word-spacing:5.040000px;}
.ws89{word-spacing:5.075460px;}
.wsf0{word-spacing:5.135520px;}
.wsc5{word-spacing:5.160000px;}
.wsfb{word-spacing:5.376000px;}
.ws40{word-spacing:5.400000px;}
.ws8a{word-spacing:5.454000px;}
.ws2d{word-spacing:5.520000px;}
.ws6e{word-spacing:5.562000px;}
.wsf4{word-spacing:5.616000px;}
.wse{word-spacing:5.639400px;}
.ws15{word-spacing:5.700000px;}
.ws8c{word-spacing:5.759400px;}
.ws61{word-spacing:5.880600px;}
.ws5a{word-spacing:6.000600px;}
.wsaf{word-spacing:6.060000px;}
.ws88{word-spacing:6.102540px;}
.ws5b{word-spacing:6.120600px;}
.ws19{word-spacing:6.180000px;}
.ws91{word-spacing:6.300000px;}
.ws63{word-spacing:6.360000px;}
.wsab{word-spacing:6.419400px;}
.ws5c{word-spacing:6.480000px;}
.ws7c{word-spacing:6.539400px;}
.ws4c{word-spacing:6.659400px;}
.ws26{word-spacing:6.720000px;}
.ws86{word-spacing:6.840000px;}
.wse9{word-spacing:6.864480px;}
.ws9a{word-spacing:6.900600px;}
.ws1b{word-spacing:6.960000px;}
.ws7a{word-spacing:7.020000px;}
.ws72{word-spacing:7.074000px;}
.ws25{word-spacing:7.140000px;}
.wsf9{word-spacing:7.152000px;}
.wsd{word-spacing:7.200000px;}
.wsbb{word-spacing:7.260000px;}
.ws5d{word-spacing:7.319400px;}
.wsaa{word-spacing:7.380000px;}
.wsde{word-spacing:7.392480px;}
.ws1f{word-spacing:7.439400px;}
.ws97{word-spacing:7.560600px;}
.wsb5{word-spacing:7.614540px;}
.ws3b{word-spacing:7.620000px;}
.wsc1{word-spacing:7.740000px;}
.ws22{word-spacing:7.800000px;}
.wseb{word-spacing:7.823520px;}
.ws7f{word-spacing:7.991460px;}
.wsc0{word-spacing:8.099400px;}
.ws4d{word-spacing:8.160000px;}
.wsb2{word-spacing:8.219400px;}
.ws3a{word-spacing:8.280000px;}
.ws6a{word-spacing:8.316540px;}
.ws6{word-spacing:8.400000px;}
.wse2{word-spacing:8.447520px;}
.ws9e{word-spacing:8.580600px;}
.wsd8{word-spacing:8.639520px;}
.ws3c{word-spacing:8.640000px;}
.wsc9{word-spacing:8.820000px;}
.ws94{word-spacing:8.909460px;}
.ws53{word-spacing:8.940000px;}
.ws58{word-spacing:8.999400px;}
.ws3e{word-spacing:9.119400px;}
.ws78{word-spacing:9.240600px;}
.ws39{word-spacing:9.300000px;}
.wsa5{word-spacing:9.360600px;}
.wsa9{word-spacing:9.540000px;}
.ws83{word-spacing:9.611460px;}
.ws76{word-spacing:9.660000px;}
.ws18{word-spacing:9.779400px;}
.ws7{word-spacing:10.080000px;}
.wsc{word-spacing:10.200000px;}
.ws4a{word-spacing:10.260600px;}
.wsd7{word-spacing:10.368000px;}
.ws28{word-spacing:10.380000px;}
.ws77{word-spacing:10.559400px;}
.ws8{word-spacing:10.620000px;}
.wsd3{word-spacing:10.740000px;}
.wsf7{word-spacing:11.376000px;}
.wscc{word-spacing:11.760000px;}
.wsbf{word-spacing:12.239400px;}
.wsc8{word-spacing:13.560000px;}
.ws3d{word-spacing:13.680000px;}
.ws1a{word-spacing:13.800000px;}
.wsb{word-spacing:14.700000px;}
.wsba{word-spacing:15.060600px;}
.ws75{word-spacing:15.240000px;}
.ws4b{word-spacing:15.360000px;}
.ws2b{word-spacing:15.480000px;}
.ws70{word-spacing:15.498000px;}
.wse1{word-spacing:16.656000px;}
.wsc4{word-spacing:17.220000px;}
.wscd{word-spacing:18.059400px;}
.wsed{word-spacing:29.520480px;}
._13{margin-left:-14.881804px;}
._10{margin-left:-9.050412px;}
._12{margin-left:-6.891591px;}
._11{margin-left:-5.868005px;}
._16{margin-left:-4.752003px;}
._f{margin-left:-3.721181px;}
._b{margin-left:-2.169595px;}
._c{margin-left:-1.056000px;}
._7{width:1.775995px;}
._4{width:3.463191px;}
._5{width:4.824787px;}
._e{width:6.906003px;}
._d{width:8.136000px;}
._15{width:9.363788px;}
._14{width:10.672818px;}
._0{width:11.721568px;}
._8{width:12.787165px;}
._6{width:17.286353px;}
._1{width:18.326579px;}
._9{width:22.436739px;}
._3{width:25.396731px;}
._a{width:40.551890px;}
._2{width:736.302239px;}
.fc4{color:rgb(29,29,27);}
.fc5{color:rgb(74,74,73);}
.fc3{color:rgb(87,87,86);}
.fc2{color:rgb(65,160,17);}
.fc1{color:rgb(255,101,0);}
.fc6{color:rgb(135,135,135);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:29.599920px;}
.fs3{font-size:33.828480px;}
.fs6{font-size:37.211328px;}
.fs7{font-size:38.057040px;}
.fs9{font-size:39.000000px;}
.fs2{font-size:42.285600px;}
.fs1{font-size:46.514160px;}
.fs5{font-size:47.359872px;}
.fsf{font-size:48.000000px;}
.fsd{font-size:54.000000px;}
.fs0{font-size:59.199840px;}
.fsc{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fse{font-size:72.000000px;}
.fsa{font-size:84.000000px;}
.fsb{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.267615px;}
.y23{bottom:35.529000px;}
.y22{bottom:36.291450px;}
.y35{bottom:37.366950px;}
.y21{bottom:45.087021px;}
.y20{bottom:57.074989px;}
.y12f{bottom:68.519548px;}
.y138{bottom:68.975400px;}
.y1f{bottom:69.062956px;}
.y5c{bottom:69.967500px;}
.y34{bottom:77.403145px;}
.y1e{bottom:81.050924px;}
.yc6{bottom:81.399454px;}
.y7f{bottom:83.225400px;}
.y12e{bottom:86.519548px;}
.ya0{bottom:86.975400px;}
.y5b{bottom:87.967495px;}
.y1d{bottom:91.294610px;}
.y10d{bottom:93.843452px;}
.y143{bottom:94.175400px;}
.y33{bottom:95.403145px;}
.yc5{bottom:97.599454px;}
.y7e{bottom:101.225395px;}
.ye9{bottom:101.553303px;}
.y174{bottom:103.818146px;}
.y12d{bottom:104.519554px;}
.y9f{bottom:104.975395px;}
.y5a{bottom:105.967495px;}
.y142{bottom:108.575395px;}
.y1c{bottom:110.703701px;}
.y10c{bottom:111.843452px;}
.y32{bottom:113.403145px;}
.yc4{bottom:113.799454px;}
.y173{bottom:118.218155px;}
.y7d{bottom:119.225395px;}
.ye8{bottom:119.553303px;}
.y12c{bottom:122.519554px;}
.y9e{bottom:122.975395px;}
.y59{bottom:123.967495px;}
.y10b{bottom:129.843452px;}
.y31{bottom:131.403145px;}
.y172{bottom:132.618153px;}
.y7c{bottom:137.225395px;}
.y141{bottom:137.375404px;}
.ye7{bottom:137.553303px;}
.y12b{bottom:140.519554px;}
.y9d{bottom:140.975395px;}
.y58{bottom:141.967506px;}
.yc3{bottom:142.755295px;}
.y171{bottom:147.018150px;}
.y10a{bottom:147.843452px;}
.y30{bottom:149.403145px;}
.y140{bottom:151.775402px;}
.y7b{bottom:155.225395px;}
.ye6{bottom:155.553303px;}
.y12a{bottom:158.519554px;}
.y9c{bottom:158.975395px;}
.y57{bottom:159.967506px;}
.yc2{bottom:160.755295px;}
.y170{bottom:161.418148px;}
.y109{bottom:165.843452px;}
.y13f{bottom:166.175400px;}
.y1b{bottom:167.091548px;}
.y2f{bottom:167.403145px;}
.y7a{bottom:173.225395px;}
.ye5{bottom:173.553303px;}
.y16f{bottom:175.818146px;}
.y1a{bottom:176.077238px;}
.y129{bottom:176.519554px;}
.y9b{bottom:176.975395px;}
.y56{bottom:177.967506px;}
.yc1{bottom:178.755295px;}
.y13e{bottom:180.575397px;}
.y108{bottom:183.843452px;}
.y19{bottom:184.322930px;}
.y2e{bottom:185.403145px;}
.y16e{bottom:190.218155px;}
.y79{bottom:191.225395px;}
.ye4{bottom:191.553291px;}
.y18{bottom:191.807482px;}
.y9a{bottom:194.975395px;}
.y55{bottom:195.967506px;}
.yc0{bottom:196.755295px;}
.y17{bottom:199.302604px;}
.y107{bottom:201.843452px;}
.y2d{bottom:203.403145px;}
.y16d{bottom:204.618150px;}
.y16{bottom:206.797727px;}
.y128{bottom:207.275391px;}
.y78{bottom:209.225395px;}
.y13d{bottom:209.375404px;}
.ye3{bottom:209.553291px;}
.y137{bottom:212.975395px;}
.y54{bottom:213.967506px;}
.y15{bottom:214.282278px;}
.ybf{bottom:214.755295px;}
.y16c{bottom:219.018150px;}
.y106{bottom:219.843452px;}
.y2c{bottom:221.403145px;}
.y99{bottom:221.479340px;}
.y14{bottom:221.777401px;}
.y127{bottom:223.475395px;}
.y13c{bottom:223.775391px;}
.y77{bottom:227.225395px;}
.ye2{bottom:227.553291px;}
.y136{bottom:230.975395px;}
.y53{bottom:231.967506px;}
.ybe{bottom:232.755295px;}
.y16b{bottom:233.418159px;}
.y13{bottom:237.190502px;}
.y105{bottom:237.843452px;}
.y13b{bottom:238.175400px;}
.y2b{bottom:239.403145px;}
.y126{bottom:239.675400px;}
.y76{bottom:245.225395px;}
.ye1{bottom:245.553291px;}
.y16a{bottom:247.818146px;}
.y135{bottom:248.975395px;}
.y52{bottom:249.967506px;}
.ybd{bottom:250.755295px;}
.y13a{bottom:252.575409px;}
.y104{bottom:255.843452px;}
.y125{bottom:255.875391px;}
.y2a{bottom:257.403145px;}
.y169{bottom:262.218155px;}
.y75{bottom:263.225395px;}
.ye0{bottom:263.553291px;}
.y134{bottom:266.975395px;}
.y51{bottom:267.967506px;}
.ybc{bottom:268.755295px;}
.y98{bottom:270.867142px;}
.y124{bottom:272.075391px;}
.y103{bottom:273.843452px;}
.y139{bottom:275.479340px;}
.y168{bottom:276.618141px;}
.y29{bottom:279.655060px;}
.y74{bottom:281.225395px;}
.ydf{bottom:281.553291px;}
.y133{bottom:284.975395px;}
.y50{bottom:285.967506px;}
.ybb{bottom:286.755295px;}
.y123{bottom:288.275391px;}
.y97{bottom:288.867142px;}
.y167{bottom:291.018150px;}
.y102{bottom:291.843452px;}
.y73{bottom:299.225395px;}
.yde{bottom:299.553291px;}
.y12{bottom:300.851473px;}
.y132{bottom:302.975395px;}
.y4f{bottom:303.967506px;}
.yba{bottom:304.755295px;}
.y166{bottom:305.418159px;}
.y96{bottom:306.867142px;}
.y101{bottom:309.843452px;}
.y72{bottom:317.225395px;}
.y122{bottom:317.231255px;}
.y165{bottom:319.818146px;}
.y131{bottom:320.975395px;}
.y4e{bottom:321.967506px;}
.yb9{bottom:322.755295px;}
.y95{bottom:324.867142px;}
.y100{bottom:327.843452px;}
.ydd{bottom:330.309150px;}
.y164{bottom:334.218141px;}
.y71{bottom:335.225395px;}
.y121{bottom:335.231255px;}
.y4d{bottom:339.967506px;}
.yb8{bottom:340.755295px;}
.y94{bottom:342.867142px;}
.ydc{bottom:346.509155px;}
.y130{bottom:347.479340px;}
.y163{bottom:348.618141px;}
.y70{bottom:353.225395px;}
.y120{bottom:353.231255px;}
.y4c{bottom:357.967506px;}
.yff{bottom:358.599449px;}
.yb7{bottom:358.755295px;}
.y93{bottom:360.867142px;}
.ydb{bottom:362.709160px;}
.y162{bottom:363.018150px;}
.y6f{bottom:371.225418px;}
.y11f{bottom:371.231255px;}
.yfe{bottom:374.799445px;}
.y4b{bottom:375.967506px;}
.yb6{bottom:376.755295px;}
.y161{bottom:377.418159px;}
.y92{bottom:378.867142px;}
.yda{bottom:378.909142px;}
.y28{bottom:382.694412px;}
.y6e{bottom:389.225418px;}
.y11e{bottom:389.231232px;}
.yfd{bottom:390.999445px;}
.y160{bottom:391.818146px;}
.y4a{bottom:393.967484px;}
.yb5{bottom:394.755295px;}
.yd9{bottom:395.109146px;}
.y91{bottom:396.867142px;}
.y15f{bottom:406.218155px;}
.yfc{bottom:407.199445px;}
.y6d{bottom:407.225418px;}
.y11d{bottom:407.231232px;}
.y27{bottom:411.194412px;}
.yd8{bottom:411.309128px;}
.y49{bottom:411.967484px;}
.yb4{bottom:412.755295px;}
.y90{bottom:414.867142px;}
.y15e{bottom:420.618164px;}
.y17d{bottom:422.818497px;}
.yfb{bottom:423.399445px;}
.y6c{bottom:425.225418px;}
.y11c{bottom:425.231232px;}
.y48{bottom:429.967484px;}
.yb3{bottom:430.755295px;}
.y8f{bottom:432.867142px;}
.yd7{bottom:433.887131px;}
.y15d{bottom:435.018127px;}
.yfa{bottom:439.599472px;}
.y26{bottom:439.694412px;}
.y6b{bottom:443.225418px;}
.y11b{bottom:443.231232px;}
.y11{bottom:446.324508px;}
.y47{bottom:447.967484px;}
.yb2{bottom:448.755295px;}
.y15c{bottom:449.418137px;}
.y8e{bottom:450.867142px;}
.y17c{bottom:451.168493px;}
.y6a{bottom:461.225418px;}
.y11a{bottom:461.231232px;}
.y15b{bottom:463.818146px;}
.y46{bottom:465.967484px;}
.yb1{bottom:466.755295px;}
.y17b{bottom:467.518478px;}
.y25{bottom:468.194412px;}
.yf9{bottom:468.555313px;}
.y8d{bottom:468.867142px;}
.y10{bottom:469.433588px;}
.yd6{bottom:471.145065px;}
.y15a{bottom:478.218155px;}
.y69{bottom:479.225418px;}
.y119{bottom:479.231232px;}
.yf{bottom:481.421556px;}
.y17a{bottom:483.868515px;}
.y45{bottom:483.967484px;}
.yb0{bottom:484.755295px;}
.yf8{bottom:486.555313px;}
.y8c{bottom:486.867142px;}
.yd5{bottom:489.145065px;}
.y159{bottom:492.618164px;}
.y68{bottom:497.225418px;}
.y118{bottom:497.231232px;}
.y179{bottom:500.218506px;}
.y44{bottom:501.967484px;}
.yaf{bottom:502.755295px;}
.yf7{bottom:504.555313px;}
.ye{bottom:504.752636px;}
.y8b{bottom:504.867142px;}
.y158{bottom:507.018127px;}
.yd4{bottom:507.145065px;}
.y24{bottom:507.324280px;}
.y67{bottom:515.225418px;}
.y117{bottom:515.231232px;}
.y178{bottom:516.568497px;}
.yd{bottom:516.740603px;}
.y43{bottom:519.967484px;}
.yae{bottom:520.755295px;}
.y157{bottom:521.418137px;}
.yf6{bottom:522.555313px;}
.y8a{bottom:522.867142px;}
.yd3{bottom:525.145065px;}
.yc{bottom:528.728571px;}
.y66{bottom:533.225418px;}
.y116{bottom:533.231232px;}
.y156{bottom:535.818146px;}
.y42{bottom:537.967484px;}
.yf5{bottom:540.555313px;}
.yb{bottom:540.716539px;}
.y89{bottom:540.867142px;}
.yd2{bottom:543.145065px;}
.y155{bottom:550.218155px;}
.y65{bottom:551.225418px;}
.y115{bottom:551.231232px;}
.yad{bottom:551.511292px;}
.ya{bottom:552.704506px;}
.y41{bottom:555.967484px;}
.y177{bottom:558.430344px;}
.yf4{bottom:558.555313px;}
.y88{bottom:558.867142px;}
.yd1{bottom:561.145065px;}
.y154{bottom:564.618164px;}
.y9{bottom:564.692474px;}
.yac{bottom:567.711282px;}
.y64{bottom:569.225418px;}
.y114{bottom:569.231232px;}
.y40{bottom:573.967484px;}
.yf3{bottom:576.555313px;}
.y8{bottom:576.669870px;}
.y87{bottom:576.867142px;}
.y153{bottom:579.018127px;}
.yab{bottom:583.911282px;}
.y63{bottom:587.225418px;}
.y113{bottom:587.231232px;}
.yd0{bottom:587.648987px;}
.y3f{bottom:591.967484px;}
.y152{bottom:593.418137px;}
.yf2{bottom:594.555313px;}
.y86{bottom:594.867142px;}
.yaa{bottom:600.111282px;}
.y62{bottom:605.225418px;}
.y112{bottom:605.231232px;}
.y151{bottom:607.818146px;}
.ycf{bottom:609.398987px;}
.yf1{bottom:612.555313px;}
.y85{bottom:612.867142px;}
.ya9{bottom:616.311172px;}
.y3e{bottom:618.471450px;}
.y150{bottom:622.218155px;}
.y61{bottom:623.225418px;}
.y111{bottom:623.231232px;}
.yf0{bottom:630.555313px;}
.y84{bottom:630.867142px;}
.ya8{bottom:632.511300px;}
.y7{bottom:632.539719px;}
.y14f{bottom:636.618164px;}
.y60{bottom:641.225418px;}
.y110{bottom:641.231232px;}
.yef{bottom:648.555313px;}
.ya7{bottom:648.711300px;}
.y83{bottom:648.867142px;}
.y6{bottom:649.020532px;}
.y14e{bottom:651.018127px;}
.yce{bottom:658.786789px;}
.y5f{bottom:659.225418px;}
.y10f{bottom:659.231232px;}
.ya6{bottom:664.911300px;}
.y14d{bottom:665.418137px;}
.y5{bottom:665.501344px;}
.y82{bottom:666.867142px;}
.y3d{bottom:667.859253px;}
.ycd{bottom:676.786789px;}
.yee{bottom:679.311172px;}
.y14c{bottom:679.818146px;}
.ya5{bottom:681.111282px;}
.y4{bottom:683.282439px;}
.y10e{bottom:683.609253px;}
.y81{bottom:684.867142px;}
.y5e{bottom:685.729400px;}
.y3c{bottom:685.859253px;}
.y176{bottom:694.218155px;}
.y14b{bottom:694.218164px;}
.ycc{bottom:694.786789px;}
.yed{bottom:695.511292px;}
.ya4{bottom:697.311172px;}
.y80{bottom:702.867142px;}
.y3{bottom:704.256097px;}
.y5d{bottom:707.479340px;}
.y14a{bottom:708.618164px;}
.yec{bottom:711.711300px;}
.ycb{bottom:712.786789px;}
.ya3{bottom:713.511292px;}
.y3b{bottom:720.867142px;}
.y149{bottom:723.018127px;}
.y2{bottom:725.240326px;}
.yeb{bottom:727.911300px;}
.ya2{bottom:729.711300px;}
.yca{bottom:730.786789px;}
.y148{bottom:737.418137px;}
.y3a{bottom:738.867142px;}
.ya1{bottom:745.911300px;}
.y175{bottom:751.818146px;}
.y147{bottom:751.818155px;}
.y39{bottom:756.867142px;}
.yea{bottom:756.867188px;}
.yc9{bottom:761.542648px;}
.y146{bottom:766.218155px;}
.y38{bottom:774.867188px;}
.yc8{bottom:777.742676px;}
.y145{bottom:780.618127px;}
.y37{bottom:792.867188px;}
.yc7{bottom:793.942657px;}
.y144{bottom:795.018127px;}
.y36{bottom:833.260803px;}
.h7{height:21.933541px;}
.h6{height:25.066904px;}
.h9{height:28.200267px;}
.h5{height:31.333630px;}
.hd{height:34.359000px;}
.h4{height:34.466993px;}
.h8{height:35.093665px;}
.h18{height:40.446000px;}
.h15{height:42.288000px;}
.h17{height:42.288055px;}
.h16{height:42.288146px;}
.h3{height:43.867081px;}
.h12{height:46.224000px;}
.h14{height:47.574000px;}
.h10{height:51.360000px;}
.h11{height:52.860000px;}
.hc{height:56.496000px;}
.he{height:60.732000px;}
.h13{height:61.632000px;}
.hf{height:82.176000px;}
.h2{height:889.995595px;}
.h1{height:890.250000px;}
.h0{height:890.520000px;}
.ha{height:892.914000px;}
.hb{height:893.250000px;}
.w1{width:629.250000px;}
.w3{width:629.292000px;}
.w2{width:629.294299px;}
.w0{width:629.295000px;}
.x0{left:0.000000px;}
.x3{left:32.961625px;}
.x1{left:38.955609px;}
.x5{left:80.787449px;}
.x7{left:93.543303px;}
.xd{left:95.669249px;}
.x2{left:104.878859px;}
.xa{left:144.262344px;}
.x12{left:163.228203px;}
.xe{left:174.866398px;}
.x13{left:212.598450px;}
.xf{left:233.751297px;}
.xb{left:272.898605px;}
.x4{left:308.653166px;}
.x10{left:358.417350px;}
.x11{left:372.059395px;}
.x8{left:445.146606px;}
.xc{left:526.917755px;}
.x9{left:534.113113px;}
.x6{left:548.467941px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-1.471360pt;}
.ls6{letter-spacing:-1.408000pt;}
.ls1{letter-spacing:-0.939253pt;}
.ls5{letter-spacing:-0.176587pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.117333pt;}
.ls2{letter-spacing:0.160533pt;}
.ls3{letter-spacing:0.618674pt;}
.ls8{letter-spacing:0.768427pt;}
.ws2{word-spacing:-20.480000pt;}
.ws11{word-spacing:-15.360000pt;}
.ws2f{word-spacing:-14.197333pt;}
.ws66{word-spacing:-14.080000pt;}
.ws12{word-spacing:-13.546667pt;}
.ws3{word-spacing:-12.960533pt;}
.ws10{word-spacing:-12.800000pt;}
.wsbc{word-spacing:-12.672000pt;}
.ws100{word-spacing:-12.192000pt;}
.ws0{word-spacing:-11.703151pt;}
.wse0{word-spacing:-11.605760pt;}
.wscb{word-spacing:-10.837333pt;}
.ws2e{word-spacing:-8.805333pt;}
.wsae{word-spacing:-3.093333pt;}
.wsc7{word-spacing:-3.040533pt;}
.wsd5{word-spacing:-2.826133pt;}
.wsd6{word-spacing:-2.773333pt;}
.ws64{word-spacing:-2.666667pt;}
.ws8f{word-spacing:-2.560000pt;}
.ws31{word-spacing:-2.506667pt;}
.ws21{word-spacing:-2.453867pt;}
.ws1d{word-spacing:-2.400000pt;}
.ws59{word-spacing:-2.240533pt;}
.ws54{word-spacing:-2.132800pt;}
.ws56{word-spacing:-2.080000pt;}
.wsff{word-spacing:-2.048000pt;}
.wsb8{word-spacing:-1.973333pt;}
.ws93{word-spacing:-1.920000pt;}
.wsa3{word-spacing:-1.776000pt;}
.wsa{word-spacing:-1.760000pt;}
.ws60{word-spacing:-1.706667pt;}
.ws95{word-spacing:-1.632000pt;}
.ws106{word-spacing:-1.620907pt;}
.wsd0{word-spacing:-1.600000pt;}
.ws7d{word-spacing:-1.547200pt;}
.wse5{word-spacing:-1.536000pt;}
.wsfa{word-spacing:-1.450667pt;}
.ws82{word-spacing:-1.440000pt;}
.ws41{word-spacing:-1.439467pt;}
.ws67{word-spacing:-1.386667pt;}
.wse4{word-spacing:-1.365333pt;}
.wsf3{word-spacing:-1.323093pt;}
.ws1c{word-spacing:-1.280000pt;}
.ws79{word-spacing:-1.226133pt;}
.wsf2{word-spacing:-1.194667pt;}
.ws7e{word-spacing:-1.173333pt;}
.wsb1{word-spacing:-1.120000pt;}
.ws68{word-spacing:-1.103520pt;}
.ws50{word-spacing:-1.066667pt;}
.wsdb{word-spacing:-1.024000pt;}
.ws9d{word-spacing:-1.013333pt;}
.wsdc{word-spacing:-0.980907pt;}
.wsc6{word-spacing:-0.960533pt;}
.wsb0{word-spacing:-0.906667pt;}
.wsfe{word-spacing:-0.896000pt;}
.wsb6{word-spacing:-0.816000pt;}
.wsfc{word-spacing:-0.810667pt;}
.ws32{word-spacing:-0.800000pt;}
.ws13{word-spacing:-0.747200pt;}
.wsf6{word-spacing:-0.725333pt;}
.wse6{word-spacing:-0.640000pt;}
.ws9b{word-spacing:-0.586667pt;}
.ws87{word-spacing:-0.528000pt;}
.wsee{word-spacing:-0.511573pt;}
.ws57{word-spacing:-0.480000pt;}
.ws4e{word-spacing:-0.426667pt;}
.wsdf{word-spacing:-0.384000pt;}
.ws85{word-spacing:-0.373333pt;}
.wse7{word-spacing:-0.341333pt;}
.ws4f{word-spacing:-0.320000pt;}
.ws6d{word-spacing:-0.288000pt;}
.ws62{word-spacing:-0.213333pt;}
.ws44{word-spacing:-0.160533pt;}
.wsa1{word-spacing:-0.144480pt;}
.ws47{word-spacing:-0.106667pt;}
.ws8d{word-spacing:-0.053867pt;}
.ws1{word-spacing:0.000000pt;}
.ws69{word-spacing:0.048480pt;}
.ws49{word-spacing:0.053867pt;}
.ws107{word-spacing:0.085333pt;}
.ws38{word-spacing:0.106667pt;}
.ws33{word-spacing:0.160533pt;}
.ws92{word-spacing:0.176587pt;}
.wsd2{word-spacing:0.213333pt;}
.ws17{word-spacing:0.266667pt;}
.ws9c{word-spacing:0.373333pt;}
.wsf1{word-spacing:0.384000pt;}
.wsd9{word-spacing:0.426240pt;}
.wsd1{word-spacing:0.426667pt;}
.wsa7{word-spacing:0.532800pt;}
.ws9f{word-spacing:0.575520pt;}
.wsf{word-spacing:0.586667pt;}
.wse8{word-spacing:0.597760pt;}
.ws1e{word-spacing:0.693333pt;}
.ws84{word-spacing:0.747200pt;}
.ws20{word-spacing:0.800000pt;}
.ws103{word-spacing:0.853333pt;}
.ws4{word-spacing:0.939253pt;}
.wsce{word-spacing:0.960533pt;}
.ws43{word-spacing:1.013333pt;}
.wsda{word-spacing:1.024000pt;}
.wsdd{word-spacing:1.066240pt;}
.ws34{word-spacing:1.066667pt;}
.ws90{word-spacing:1.120000pt;}
.wsf5{word-spacing:1.151573pt;}
.wsac{word-spacing:1.173333pt;}
.wsa8{word-spacing:1.226133pt;}
.wsa2{word-spacing:1.248000pt;}
.ws30{word-spacing:1.280000pt;}
.ws3f{word-spacing:1.332800pt;}
.wsec{word-spacing:1.365333pt;}
.ws74{word-spacing:1.386667pt;}
.wsbd{word-spacing:1.439467pt;}
.ws102{word-spacing:1.450667pt;}
.wsc2{word-spacing:1.471360pt;}
.wsa0{word-spacing:1.536000pt;}
.ws29{word-spacing:1.600000pt;}
.ws9{word-spacing:1.653867pt;}
.wsb4{word-spacing:1.680000pt;}
.ws16{word-spacing:1.706667pt;}
.wsad{word-spacing:1.760000pt;}
.wsfd{word-spacing:1.792427pt;}
.ws8e{word-spacing:1.813333pt;}
.wsc3{word-spacing:1.866667pt;}
.ws6b{word-spacing:1.872000pt;}
.ws104{word-spacing:1.877760pt;}
.ws27{word-spacing:1.920000pt;}
.ws5e{word-spacing:1.973333pt;}
.ws45{word-spacing:2.026133pt;}
.wsea{word-spacing:2.048000pt;}
.ws71{word-spacing:2.064000pt;}
.ws52{word-spacing:2.080000pt;}
.ws80{word-spacing:2.208480pt;}
.wsbe{word-spacing:2.240533pt;}
.wsef{word-spacing:2.260907pt;}
.ws51{word-spacing:2.347200pt;}
.ws81{word-spacing:2.447520pt;}
.wsa4{word-spacing:2.453867pt;}
.ws6f{word-spacing:2.496000pt;}
.ws8b{word-spacing:2.543520pt;}
.ws48{word-spacing:2.560000pt;}
.ws6c{word-spacing:2.639520pt;}
.ws73{word-spacing:2.666667pt;}
.ws42{word-spacing:2.719467pt;}
.wsb7{word-spacing:2.736480pt;}
.ws35{word-spacing:2.826133pt;}
.wse3{word-spacing:2.858667pt;}
.ws5f{word-spacing:2.932800pt;}
.ws55{word-spacing:2.986667pt;}
.wsf8{word-spacing:2.987093pt;}
.ws105{word-spacing:3.072427pt;}
.wsd4{word-spacing:3.093333pt;}
.wsb3{word-spacing:3.253333pt;}
.ws96{word-spacing:3.312000pt;}
.wscf{word-spacing:3.360000pt;}
.ws46{word-spacing:3.466667pt;}
.wsb9{word-spacing:3.626133pt;}
.ws14{word-spacing:3.733867pt;}
.ws5{word-spacing:3.786667pt;}
.ws101{word-spacing:3.840000pt;}
.ws2a{word-spacing:3.840533pt;}
.ws36{word-spacing:3.893333pt;}
.ws24{word-spacing:3.947200pt;}
.ws37{word-spacing:4.000000pt;}
.ws65{word-spacing:4.106667pt;}
.ws23{word-spacing:4.160000pt;}
.ws99{word-spacing:4.212800pt;}
.ws2c{word-spacing:4.266667pt;}
.wsa6{word-spacing:4.319467pt;}
.wsca{word-spacing:4.373333pt;}
.ws98{word-spacing:4.426133pt;}
.ws7b{word-spacing:4.480000pt;}
.ws89{word-spacing:4.511520pt;}
.wsf0{word-spacing:4.564907pt;}
.wsc5{word-spacing:4.586667pt;}
.wsfb{word-spacing:4.778667pt;}
.ws40{word-spacing:4.800000pt;}
.ws8a{word-spacing:4.848000pt;}
.ws2d{word-spacing:4.906667pt;}
.ws6e{word-spacing:4.944000pt;}
.wsf4{word-spacing:4.992000pt;}
.wse{word-spacing:5.012800pt;}
.ws15{word-spacing:5.066667pt;}
.ws8c{word-spacing:5.119467pt;}
.ws61{word-spacing:5.227200pt;}
.ws5a{word-spacing:5.333867pt;}
.wsaf{word-spacing:5.386667pt;}
.ws88{word-spacing:5.424480pt;}
.ws5b{word-spacing:5.440533pt;}
.ws19{word-spacing:5.493333pt;}
.ws91{word-spacing:5.600000pt;}
.ws63{word-spacing:5.653333pt;}
.wsab{word-spacing:5.706133pt;}
.ws5c{word-spacing:5.760000pt;}
.ws7c{word-spacing:5.812800pt;}
.ws4c{word-spacing:5.919467pt;}
.ws26{word-spacing:5.973333pt;}
.ws86{word-spacing:6.080000pt;}
.wse9{word-spacing:6.101760pt;}
.ws9a{word-spacing:6.133867pt;}
.ws1b{word-spacing:6.186667pt;}
.ws7a{word-spacing:6.240000pt;}
.ws72{word-spacing:6.288000pt;}
.ws25{word-spacing:6.346667pt;}
.wsf9{word-spacing:6.357333pt;}
.wsd{word-spacing:6.400000pt;}
.wsbb{word-spacing:6.453333pt;}
.ws5d{word-spacing:6.506133pt;}
.wsaa{word-spacing:6.560000pt;}
.wsde{word-spacing:6.571093pt;}
.ws1f{word-spacing:6.612800pt;}
.ws97{word-spacing:6.720533pt;}
.wsb5{word-spacing:6.768480pt;}
.ws3b{word-spacing:6.773333pt;}
.wsc1{word-spacing:6.880000pt;}
.ws22{word-spacing:6.933333pt;}
.wseb{word-spacing:6.954240pt;}
.ws7f{word-spacing:7.103520pt;}
.wsc0{word-spacing:7.199467pt;}
.ws4d{word-spacing:7.253333pt;}
.wsb2{word-spacing:7.306133pt;}
.ws3a{word-spacing:7.360000pt;}
.ws6a{word-spacing:7.392480pt;}
.ws6{word-spacing:7.466667pt;}
.wse2{word-spacing:7.508907pt;}
.ws9e{word-spacing:7.627200pt;}
.wsd8{word-spacing:7.679573pt;}
.ws3c{word-spacing:7.680000pt;}
.wsc9{word-spacing:7.840000pt;}
.ws94{word-spacing:7.919520pt;}
.ws53{word-spacing:7.946667pt;}
.ws58{word-spacing:7.999467pt;}
.ws3e{word-spacing:8.106133pt;}
.ws78{word-spacing:8.213867pt;}
.ws39{word-spacing:8.266667pt;}
.wsa5{word-spacing:8.320533pt;}
.wsa9{word-spacing:8.480000pt;}
.ws83{word-spacing:8.543520pt;}
.ws76{word-spacing:8.586667pt;}
.ws18{word-spacing:8.692800pt;}
.ws7{word-spacing:8.960000pt;}
.wsc{word-spacing:9.066667pt;}
.ws4a{word-spacing:9.120533pt;}
.wsd7{word-spacing:9.216000pt;}
.ws28{word-spacing:9.226667pt;}
.ws77{word-spacing:9.386133pt;}
.ws8{word-spacing:9.440000pt;}
.wsd3{word-spacing:9.546667pt;}
.wsf7{word-spacing:10.112000pt;}
.wscc{word-spacing:10.453333pt;}
.wsbf{word-spacing:10.879467pt;}
.wsc8{word-spacing:12.053333pt;}
.ws3d{word-spacing:12.160000pt;}
.ws1a{word-spacing:12.266667pt;}
.wsb{word-spacing:13.066667pt;}
.wsba{word-spacing:13.387200pt;}
.ws75{word-spacing:13.546667pt;}
.ws4b{word-spacing:13.653333pt;}
.ws2b{word-spacing:13.760000pt;}
.ws70{word-spacing:13.776000pt;}
.wse1{word-spacing:14.805333pt;}
.wsc4{word-spacing:15.306667pt;}
.wscd{word-spacing:16.052800pt;}
.wsed{word-spacing:26.240427pt;}
._13{margin-left:-13.228270pt;}
._10{margin-left:-8.044811pt;}
._12{margin-left:-6.125859pt;}
._11{margin-left:-5.216004pt;}
._16{margin-left:-4.224003pt;}
._f{margin-left:-3.307717pt;}
._b{margin-left:-1.928529pt;}
._c{margin-left:-0.938667pt;}
._7{width:1.578662pt;}
._4{width:3.078392pt;}
._5{width:4.288700pt;}
._e{width:6.138669pt;}
._d{width:7.232000pt;}
._15{width:8.323367pt;}
._14{width:9.486950pt;}
._0{width:10.419172pt;}
._8{width:11.366369pt;}
._6{width:15.365647pt;}
._1{width:16.290292pt;}
._9{width:19.943768pt;}
._3{width:22.574872pt;}
._a{width:36.046125pt;}
._2{width:654.490879pt;}
.fs4{font-size:26.311040pt;}
.fs3{font-size:30.069760pt;}
.fs6{font-size:33.076736pt;}
.fs7{font-size:33.828480pt;}
.fs9{font-size:34.666667pt;}
.fs2{font-size:37.587200pt;}
.fs1{font-size:41.345920pt;}
.fs5{font-size:42.097664pt;}
.fsf{font-size:42.666667pt;}
.fsd{font-size:48.000000pt;}
.fs0{font-size:52.622080pt;}
.fsc{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fse{font-size:64.000000pt;}
.fsa{font-size:74.666667pt;}
.fsb{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.237880pt;}
.y23{bottom:31.581333pt;}
.y22{bottom:32.259066pt;}
.y35{bottom:33.215067pt;}
.y21{bottom:40.077352pt;}
.y20{bottom:50.733323pt;}
.y12f{bottom:60.906265pt;}
.y138{bottom:61.311467pt;}
.y1f{bottom:61.389294pt;}
.y5c{bottom:62.193333pt;}
.y34{bottom:68.802795pt;}
.y1e{bottom:72.045266pt;}
.yc6{bottom:72.355070pt;}
.y7f{bottom:73.978133pt;}
.y12e{bottom:76.906265pt;}
.ya0{bottom:77.311467pt;}
.y5b{bottom:78.193329pt;}
.y1d{bottom:81.150765pt;}
.y10d{bottom:83.416402pt;}
.y143{bottom:83.711466pt;}
.y33{bottom:84.802795pt;}
.yc5{bottom:86.755070pt;}
.y7e{bottom:89.978129pt;}
.ye9{bottom:90.269602pt;}
.y174{bottom:92.282796pt;}
.y12d{bottom:92.906270pt;}
.y9f{bottom:93.311462pt;}
.y5a{bottom:94.193329pt;}
.y142{bottom:96.511462pt;}
.y1c{bottom:98.403290pt;}
.y10c{bottom:99.416402pt;}
.y32{bottom:100.802795pt;}
.yc4{bottom:101.155070pt;}
.y173{bottom:105.082804pt;}
.y7d{bottom:105.978129pt;}
.ye8{bottom:106.269602pt;}
.y12c{bottom:108.906270pt;}
.y9e{bottom:109.311462pt;}
.y59{bottom:110.193329pt;}
.y10b{bottom:115.416402pt;}
.y31{bottom:116.802795pt;}
.y172{bottom:117.882802pt;}
.y7c{bottom:121.978129pt;}
.y141{bottom:122.111471pt;}
.ye7{bottom:122.269602pt;}
.y12b{bottom:124.906270pt;}
.y9d{bottom:125.311462pt;}
.y58{bottom:126.193339pt;}
.yc3{bottom:126.893595pt;}
.y171{bottom:130.682800pt;}
.y10a{bottom:131.416402pt;}
.y30{bottom:132.802795pt;}
.y140{bottom:134.911469pt;}
.y7b{bottom:137.978129pt;}
.ye6{bottom:138.269602pt;}
.y12a{bottom:140.906270pt;}
.y9c{bottom:141.311462pt;}
.y57{bottom:142.193339pt;}
.yc2{bottom:142.893595pt;}
.y170{bottom:143.482798pt;}
.y109{bottom:147.416402pt;}
.y13f{bottom:147.711466pt;}
.y1b{bottom:148.525821pt;}
.y2f{bottom:148.802795pt;}
.y7a{bottom:153.978129pt;}
.ye5{bottom:154.269602pt;}
.y16f{bottom:156.282796pt;}
.y1a{bottom:156.513101pt;}
.y129{bottom:156.906270pt;}
.y9b{bottom:157.311462pt;}
.y56{bottom:158.193339pt;}
.yc1{bottom:158.893595pt;}
.y13e{bottom:160.511464pt;}
.y108{bottom:163.416402pt;}
.y19{bottom:163.842605pt;}
.y2e{bottom:164.802795pt;}
.y16e{bottom:169.082804pt;}
.y79{bottom:169.978129pt;}
.ye4{bottom:170.269592pt;}
.y18{bottom:170.495539pt;}
.y9a{bottom:173.311462pt;}
.y55{bottom:174.193339pt;}
.yc0{bottom:174.893595pt;}
.y17{bottom:177.157870pt;}
.y107{bottom:179.416402pt;}
.y2d{bottom:180.802795pt;}
.y16d{bottom:181.882800pt;}
.y16{bottom:183.820202pt;}
.y128{bottom:184.244792pt;}
.y78{bottom:185.978129pt;}
.y13d{bottom:186.111471pt;}
.ye3{bottom:186.269592pt;}
.y137{bottom:189.311462pt;}
.y54{bottom:190.193339pt;}
.y15{bottom:190.473136pt;}
.ybf{bottom:190.893595pt;}
.y16c{bottom:194.682800pt;}
.y106{bottom:195.416402pt;}
.y2c{bottom:196.802795pt;}
.y99{bottom:196.870524pt;}
.y14{bottom:197.135467pt;}
.y127{bottom:198.644796pt;}
.y13c{bottom:198.911458pt;}
.y77{bottom:201.978129pt;}
.ye2{bottom:202.269592pt;}
.y136{bottom:205.311462pt;}
.y53{bottom:206.193339pt;}
.ybe{bottom:206.893595pt;}
.y16b{bottom:207.482808pt;}
.y13{bottom:210.836002pt;}
.y105{bottom:211.416402pt;}
.y13b{bottom:211.711466pt;}
.y2b{bottom:212.802795pt;}
.y126{bottom:213.044800pt;}
.y76{bottom:217.978129pt;}
.ye1{bottom:218.269592pt;}
.y16a{bottom:220.282796pt;}
.y135{bottom:221.311462pt;}
.y52{bottom:222.193339pt;}
.ybd{bottom:222.893595pt;}
.y13a{bottom:224.511475pt;}
.y104{bottom:227.416402pt;}
.y125{bottom:227.444792pt;}
.y2a{bottom:228.802795pt;}
.y169{bottom:233.082804pt;}
.y75{bottom:233.978129pt;}
.ye0{bottom:234.269592pt;}
.y134{bottom:237.311462pt;}
.y51{bottom:238.193339pt;}
.ybc{bottom:238.893595pt;}
.y98{bottom:240.770793pt;}
.y124{bottom:241.844792pt;}
.y103{bottom:243.416402pt;}
.y139{bottom:244.870524pt;}
.y168{bottom:245.882792pt;}
.y29{bottom:248.582275pt;}
.y74{bottom:249.978129pt;}
.ydf{bottom:250.269592pt;}
.y133{bottom:253.311462pt;}
.y50{bottom:254.193339pt;}
.ybb{bottom:254.893595pt;}
.y123{bottom:256.244792pt;}
.y97{bottom:256.770793pt;}
.y167{bottom:258.682800pt;}
.y102{bottom:259.416402pt;}
.y73{bottom:265.978129pt;}
.yde{bottom:266.269592pt;}
.y12{bottom:267.423531pt;}
.y132{bottom:269.311462pt;}
.y4f{bottom:270.193339pt;}
.yba{bottom:270.893595pt;}
.y166{bottom:271.482808pt;}
.y96{bottom:272.770793pt;}
.y101{bottom:275.416402pt;}
.y72{bottom:281.978129pt;}
.y122{bottom:281.983337pt;}
.y165{bottom:284.282796pt;}
.y131{bottom:285.311462pt;}
.y4e{bottom:286.193339pt;}
.yb9{bottom:286.893595pt;}
.y95{bottom:288.770793pt;}
.y100{bottom:291.416402pt;}
.ydd{bottom:293.608133pt;}
.y164{bottom:297.082792pt;}
.y71{bottom:297.978129pt;}
.y121{bottom:297.983337pt;}
.y4d{bottom:302.193339pt;}
.yb8{bottom:302.893595pt;}
.y94{bottom:304.770793pt;}
.ydc{bottom:308.008138pt;}
.y130{bottom:308.870524pt;}
.y163{bottom:309.882792pt;}
.y70{bottom:313.978129pt;}
.y120{bottom:313.983337pt;}
.y4c{bottom:318.193339pt;}
.yff{bottom:318.755066pt;}
.yb7{bottom:318.893595pt;}
.y93{bottom:320.770793pt;}
.ydb{bottom:322.408142pt;}
.y162{bottom:322.682800pt;}
.y6f{bottom:329.978149pt;}
.y11f{bottom:329.983337pt;}
.yfe{bottom:333.155062pt;}
.y4b{bottom:334.193339pt;}
.yb6{bottom:334.893595pt;}
.y161{bottom:335.482808pt;}
.y92{bottom:336.770793pt;}
.yda{bottom:336.808126pt;}
.y28{bottom:340.172811pt;}
.y6e{bottom:345.978149pt;}
.y11e{bottom:345.983317pt;}
.yfd{bottom:347.555062pt;}
.y160{bottom:348.282796pt;}
.y4a{bottom:350.193319pt;}
.yb5{bottom:350.893595pt;}
.yd9{bottom:351.208130pt;}
.y91{bottom:352.770793pt;}
.y15f{bottom:361.082804pt;}
.yfc{bottom:361.955062pt;}
.y6d{bottom:361.978149pt;}
.y11d{bottom:361.983317pt;}
.y27{bottom:365.506144pt;}
.yd8{bottom:365.608114pt;}
.y49{bottom:366.193319pt;}
.yb4{bottom:366.893595pt;}
.y90{bottom:368.770793pt;}
.y15e{bottom:373.882812pt;}
.y17d{bottom:375.838664pt;}
.yfb{bottom:376.355062pt;}
.y6c{bottom:377.978149pt;}
.y11c{bottom:377.983317pt;}
.y48{bottom:382.193319pt;}
.yb3{bottom:382.893595pt;}
.y8f{bottom:384.770793pt;}
.yd7{bottom:385.677450pt;}
.y15d{bottom:386.682780pt;}
.yfa{bottom:390.755086pt;}
.y26{bottom:390.839478pt;}
.y6b{bottom:393.978149pt;}
.y11b{bottom:393.983317pt;}
.y11{bottom:396.732896pt;}
.y47{bottom:398.193319pt;}
.yb2{bottom:398.893595pt;}
.y15c{bottom:399.482788pt;}
.y8e{bottom:400.770793pt;}
.y17c{bottom:401.038661pt;}
.y6a{bottom:409.978149pt;}
.y11a{bottom:409.983317pt;}
.y15b{bottom:412.282796pt;}
.y46{bottom:414.193319pt;}
.yb1{bottom:414.893595pt;}
.y17b{bottom:415.571981pt;}
.y25{bottom:416.172811pt;}
.yf9{bottom:416.493612pt;}
.y8d{bottom:416.770793pt;}
.y10{bottom:417.274301pt;}
.yd6{bottom:418.795614pt;}
.y15a{bottom:425.082804pt;}
.y69{bottom:425.978149pt;}
.y119{bottom:425.983317pt;}
.yf{bottom:427.930272pt;}
.y17a{bottom:430.105347pt;}
.y45{bottom:430.193319pt;}
.yb0{bottom:430.893595pt;}
.yf8{bottom:432.493612pt;}
.y8c{bottom:432.770793pt;}
.yd5{bottom:434.795614pt;}
.y159{bottom:437.882812pt;}
.y68{bottom:441.978149pt;}
.y118{bottom:441.983317pt;}
.y179{bottom:444.638672pt;}
.y44{bottom:446.193319pt;}
.yaf{bottom:446.893595pt;}
.yf7{bottom:448.493612pt;}
.ye{bottom:448.669010pt;}
.y8b{bottom:448.770793pt;}
.y158{bottom:450.682780pt;}
.yd4{bottom:450.795614pt;}
.y24{bottom:450.954915pt;}
.y67{bottom:457.978149pt;}
.y117{bottom:457.983317pt;}
.y178{bottom:459.171997pt;}
.yd{bottom:459.324981pt;}
.y43{bottom:462.193319pt;}
.yae{bottom:462.893595pt;}
.y157{bottom:463.482788pt;}
.yf6{bottom:464.493612pt;}
.y8a{bottom:464.770793pt;}
.yd3{bottom:466.795614pt;}
.yc{bottom:469.980952pt;}
.y66{bottom:473.978149pt;}
.y116{bottom:473.983317pt;}
.y156{bottom:476.282796pt;}
.y42{bottom:478.193319pt;}
.yf5{bottom:480.493612pt;}
.yb{bottom:480.636923pt;}
.y89{bottom:480.770793pt;}
.yd2{bottom:482.795614pt;}
.y155{bottom:489.082804pt;}
.y65{bottom:489.978149pt;}
.y115{bottom:489.983317pt;}
.yad{bottom:490.232259pt;}
.ya{bottom:491.292894pt;}
.y41{bottom:494.193319pt;}
.y177{bottom:496.382528pt;}
.yf4{bottom:496.493612pt;}
.y88{bottom:496.770793pt;}
.yd1{bottom:498.795614pt;}
.y154{bottom:501.882812pt;}
.y9{bottom:501.948866pt;}
.yac{bottom:504.632251pt;}
.y64{bottom:505.978149pt;}
.y114{bottom:505.983317pt;}
.y40{bottom:510.193319pt;}
.yf3{bottom:512.493612pt;}
.y8{bottom:512.595440pt;}
.y87{bottom:512.770793pt;}
.y153{bottom:514.682780pt;}
.yab{bottom:519.032251pt;}
.y63{bottom:521.978149pt;}
.y113{bottom:521.983317pt;}
.yd0{bottom:522.354655pt;}
.y3f{bottom:526.193319pt;}
.y152{bottom:527.482788pt;}
.yf2{bottom:528.493612pt;}
.y86{bottom:528.770793pt;}
.yaa{bottom:533.432251pt;}
.y62{bottom:537.978149pt;}
.y112{bottom:537.983317pt;}
.y151{bottom:540.282796pt;}
.ycf{bottom:541.687988pt;}
.yf1{bottom:544.493612pt;}
.y85{bottom:544.770793pt;}
.ya9{bottom:547.832153pt;}
.y3e{bottom:549.752400pt;}
.y150{bottom:553.082804pt;}
.y61{bottom:553.978149pt;}
.y111{bottom:553.983317pt;}
.yf0{bottom:560.493612pt;}
.y84{bottom:560.770793pt;}
.ya8{bottom:562.232267pt;}
.y7{bottom:562.257528pt;}
.y14f{bottom:565.882812pt;}
.y60{bottom:569.978149pt;}
.y110{bottom:569.983317pt;}
.yef{bottom:576.493612pt;}
.ya7{bottom:576.632267pt;}
.y83{bottom:576.770793pt;}
.y6{bottom:576.907139pt;}
.y14e{bottom:578.682780pt;}
.yce{bottom:585.588257pt;}
.y5f{bottom:585.978149pt;}
.y10f{bottom:585.983317pt;}
.ya6{bottom:591.032267pt;}
.y14d{bottom:591.482788pt;}
.y5{bottom:591.556750pt;}
.y82{bottom:592.770793pt;}
.y3d{bottom:593.652669pt;}
.ycd{bottom:601.588257pt;}
.yee{bottom:603.832153pt;}
.y14c{bottom:604.282796pt;}
.ya5{bottom:605.432251pt;}
.y4{bottom:607.362168pt;}
.y10e{bottom:607.652669pt;}
.y81{bottom:608.770793pt;}
.y5e{bottom:609.537244pt;}
.y3c{bottom:609.652669pt;}
.y176{bottom:617.082804pt;}
.y14b{bottom:617.082812pt;}
.ycc{bottom:617.588257pt;}
.yed{bottom:618.232259pt;}
.ya4{bottom:619.832153pt;}
.y80{bottom:624.770793pt;}
.y3{bottom:626.005419pt;}
.y5d{bottom:628.870524pt;}
.y14a{bottom:629.882812pt;}
.yec{bottom:632.632267pt;}
.ycb{bottom:633.588257pt;}
.ya3{bottom:634.232259pt;}
.y3b{bottom:640.770793pt;}
.y149{bottom:642.682780pt;}
.y2{bottom:644.658067pt;}
.yeb{bottom:647.032267pt;}
.ya2{bottom:648.632267pt;}
.yca{bottom:649.588257pt;}
.y148{bottom:655.482788pt;}
.y3a{bottom:656.770793pt;}
.ya1{bottom:663.032267pt;}
.y175{bottom:668.282796pt;}
.y147{bottom:668.282804pt;}
.y39{bottom:672.770793pt;}
.yea{bottom:672.770833pt;}
.yc9{bottom:676.926799pt;}
.y146{bottom:681.082804pt;}
.y38{bottom:688.770833pt;}
.yc8{bottom:691.326823pt;}
.y145{bottom:693.882780pt;}
.y37{bottom:704.770833pt;}
.yc7{bottom:705.726807pt;}
.y144{bottom:706.682780pt;}
.y36{bottom:740.676270pt;}
.h7{height:19.496481pt;}
.h6{height:22.281692pt;}
.h9{height:25.066904pt;}
.h5{height:27.852115pt;}
.hd{height:30.541333pt;}
.h4{height:30.637327pt;}
.h8{height:31.194369pt;}
.h18{height:35.952000pt;}
.h15{height:37.589333pt;}
.h17{height:37.589382pt;}
.h16{height:37.589464pt;}
.h3{height:38.992961pt;}
.h12{height:41.088000pt;}
.h14{height:42.288000pt;}
.h10{height:45.653333pt;}
.h11{height:46.986667pt;}
.hc{height:50.218667pt;}
.he{height:53.984000pt;}
.h13{height:54.784000pt;}
.hf{height:73.045333pt;}
.h2{height:791.107195pt;}
.h1{height:791.333333pt;}
.h0{height:791.573333pt;}
.ha{height:793.701333pt;}
.hb{height:794.000000pt;}
.w1{width:559.333333pt;}
.w3{width:559.370667pt;}
.w2{width:559.372710pt;}
.w0{width:559.373333pt;}
.x0{left:0.000000pt;}
.x3{left:29.299222pt;}
.x1{left:34.627208pt;}
.x5{left:71.811066pt;}
.x7{left:83.149602pt;}
.xd{left:85.039332pt;}
.x2{left:93.225653pt;}
.xa{left:128.233195pt;}
.x12{left:145.091736pt;}
.xe{left:155.436798pt;}
.x13{left:188.976400pt;}
.xf{left:207.778931pt;}
.xb{left:242.576538pt;}
.x4{left:274.358370pt;}
.x10{left:318.593200pt;}
.x11{left:330.719462pt;}
.x8{left:395.685872pt;}
.xc{left:468.371338pt;}
.x9{left:474.767212pt;}
.x6{left:487.527059pt;}
}




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