
    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_8480f3e238d8b258391818f2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_439db666601d0583368a28e1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.804000;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_ae73606622fb96ee39094b85.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.113281;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_78ebb01043ac73f48c434dc1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_ea9f5539bdb3de3287281d69.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_4658400239756b2a1db36524.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5a85c00cafefc6949bc7496e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-0.198180px;}
.ls34{letter-spacing:-0.180000px;}
.lsf{letter-spacing:-0.124488px;}
.ls23{letter-spacing:-0.114228px;}
.ls26{letter-spacing:-0.079200px;}
.ls24{letter-spacing:-0.060120px;}
.ls1e{letter-spacing:-0.054108px;}
.ls1b{letter-spacing:-0.048096px;}
.ls1f{letter-spacing:-0.042084px;}
.ls36{letter-spacing:-0.036072px;}
.ls25{letter-spacing:-0.030060px;}
.ls1c{letter-spacing:-0.024048px;}
.ls16{letter-spacing:-0.021600px;}
.ls13{letter-spacing:-0.018036px;}
.ls20{letter-spacing:-0.014400px;}
.ls22{letter-spacing:-0.012024px;}
.ls18{letter-spacing:-0.009600px;}
.ls14{letter-spacing:-0.007200px;}
.ls2b{letter-spacing:-0.006012px;}
.ls17{letter-spacing:-0.004800px;}
.ls12{letter-spacing:0.000000px;}
.ls39{letter-spacing:0.006012px;}
.ls3{letter-spacing:0.007200px;}
.ls21{letter-spacing:0.012024px;}
.ls15{letter-spacing:0.014400px;}
.ls2f{letter-spacing:0.018036px;}
.lsc{letter-spacing:0.021600px;}
.ls8{letter-spacing:0.028800px;}
.ls1a{letter-spacing:0.030060px;}
.ls5{letter-spacing:0.036000px;}
.ls38{letter-spacing:0.036072px;}
.ls6{letter-spacing:0.043200px;}
.ls4{letter-spacing:0.050400px;}
.lsa{letter-spacing:0.057600px;}
.ls2c{letter-spacing:0.060120px;}
.lsb{letter-spacing:0.064800px;}
.ls1d{letter-spacing:0.066132px;}
.ls2{letter-spacing:0.067104px;}
.ls2a{letter-spacing:0.071820px;}
.ls2e{letter-spacing:0.072000px;}
.ls19{letter-spacing:0.072144px;}
.ls9{letter-spacing:0.079200px;}
.ls0{letter-spacing:0.081000px;}
.ls10{letter-spacing:0.086400px;}
.ls11{letter-spacing:0.092268px;}
.ls7{letter-spacing:0.093600px;}
.lsd{letter-spacing:0.100800px;}
.ls2d{letter-spacing:0.115200px;}
.ls1{letter-spacing:0.144000px;}
.ls35{letter-spacing:2.664000px;}
.ls27{letter-spacing:15.001200px;}
.ls37{letter-spacing:18.338400px;}
.ls3a{letter-spacing:18.353400px;}
.ls29{letter-spacing:18.354000px;}
.ls33{letter-spacing:18.504000px;}
.ls32{letter-spacing:21.240000px;}
.ls30{letter-spacing:22.104000px;}
.ls31{letter-spacing:25.344000px;}
.ls28{letter-spacing:346.653000px;}
.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;}
}
.ws6c{word-spacing:-360.153000px;}
.ws114{word-spacing:-72.043200px;}
.ws45{word-spacing:-72.036000px;}
.ws46{word-spacing:-72.028800px;}
.ws0{word-spacing:-20.016180px;}
.wse6{word-spacing:-18.093600px;}
.ws6a{word-spacing:-13.581000px;}
.ws6b{word-spacing:-13.564800px;}
.ws3b{word-spacing:-0.342684px;}
.wsa2{word-spacing:-0.270540px;}
.ws41{word-spacing:-0.258516px;}
.ws61{word-spacing:-0.240480px;}
.wse4{word-spacing:-0.234468px;}
.ws58{word-spacing:-0.228456px;}
.ws2{word-spacing:-0.144000px;}
.ws6e{word-spacing:-0.136800px;}
.ws8{word-spacing:-0.114228px;}
.wsc0{word-spacing:-0.108000px;}
.ws20{word-spacing:-0.100800px;}
.ws98{word-spacing:-0.093600px;}
.ws23{word-spacing:-0.086400px;}
.ws2f{word-spacing:-0.079200px;}
.wsfe{word-spacing:-0.072000px;}
.ws12{word-spacing:-0.064800px;}
.wsb6{word-spacing:-0.043200px;}
.wsb7{word-spacing:-0.036000px;}
.ws42{word-spacing:-0.028800px;}
.ws3a{word-spacing:-0.021600px;}
.ws1f{word-spacing:-0.014400px;}
.ws13{word-spacing:-0.007200px;}
.ws3{word-spacing:0.000000px;}
.wsfd{word-spacing:0.007200px;}
.ws55{word-spacing:0.014400px;}
.ws5{word-spacing:0.016776px;}
.wse5{word-spacing:0.018036px;}
.ws22{word-spacing:0.024000px;}
.wsa3{word-spacing:0.030060px;}
.ws15{word-spacing:0.036000px;}
.ws107{word-spacing:0.054108px;}
.ws3c{word-spacing:0.060120px;}
.ws60{word-spacing:0.072144px;}
.ws56{word-spacing:0.078156px;}
.ws92{word-spacing:0.084168px;}
.ws57{word-spacing:0.102204px;}
.ws47{word-spacing:0.102600px;}
.ws1{word-spacing:0.108000px;}
.wsa4{word-spacing:0.108216px;}
.ws3e{word-spacing:0.114228px;}
.ws6{word-spacing:0.129600px;}
.ws40{word-spacing:0.132264px;}
.ws3d{word-spacing:0.138276px;}
.ws3f{word-spacing:0.144288px;}
.ws5a{word-spacing:0.150300px;}
.ws4{word-spacing:0.159372px;}
.wsb4{word-spacing:0.165600px;}
.ws7{word-spacing:0.172800px;}
.ws2e{word-spacing:0.187200px;}
.ws94{word-spacing:0.194400px;}
.ws59{word-spacing:0.204408px;}
.ws86{word-spacing:0.208800px;}
.wsdf{word-spacing:0.216000px;}
.ws5c{word-spacing:0.223200px;}
.wse{word-spacing:0.230400px;}
.wsba{word-spacing:0.237600px;}
.ws88{word-spacing:0.244800px;}
.wsb8{word-spacing:0.252000px;}
.ws37{word-spacing:0.266400px;}
.ws11c{word-spacing:0.280800px;}
.ws11b{word-spacing:0.295200px;}
.wsde{word-spacing:0.324000px;}
.wsf1{word-spacing:0.381600px;}
.ws95{word-spacing:0.590400px;}
.ws8e{word-spacing:0.619200px;}
.wsc4{word-spacing:0.640800px;}
.wsb{word-spacing:0.662400px;}
.ws63{word-spacing:0.684000px;}
.ws2c{word-spacing:0.705600px;}
.ws1c{word-spacing:0.734400px;}
.ws113{word-spacing:0.835200px;}
.ws39{word-spacing:0.871200px;}
.wsd1{word-spacing:0.979200px;}
.ws100{word-spacing:0.986400px;}
.ws109{word-spacing:1.008000px;}
.ws116{word-spacing:1.015200px;}
.ws78{word-spacing:1.022400px;}
.ws102{word-spacing:1.029600px;}
.ws71{word-spacing:1.036800px;}
.wsac{word-spacing:1.058400px;}
.wsd2{word-spacing:1.072800px;}
.ws49{word-spacing:1.317600px;}
.ws4f{word-spacing:1.339200px;}
.ws36{word-spacing:1.360800px;}
.ws80{word-spacing:1.368000px;}
.ws4b{word-spacing:1.375200px;}
.ws8d{word-spacing:1.382400px;}
.ws52{word-spacing:1.389600px;}
.ws7a{word-spacing:1.411200px;}
.ws108{word-spacing:1.418400px;}
.wscd{word-spacing:1.440000px;}
.ws115{word-spacing:1.620000px;}
.ws21{word-spacing:1.699200px;}
.ws17{word-spacing:1.706400px;}
.ws24{word-spacing:1.713600px;}
.wsa9{word-spacing:1.720800px;}
.ws6f{word-spacing:1.735200px;}
.ws53{word-spacing:1.742400px;}
.wsae{word-spacing:1.749600px;}
.ws64{word-spacing:1.764000px;}
.ws29{word-spacing:1.778400px;}
.ws51{word-spacing:1.800000px;}
.wsbd{word-spacing:1.807200px;}
.ws28{word-spacing:2.080800px;}
.ws4e{word-spacing:2.102400px;}
.ws9b{word-spacing:2.124000px;}
.ws79{word-spacing:2.145600px;}
.wsda{word-spacing:2.325600px;}
.ws68{word-spacing:2.383200px;}
.ws9d{word-spacing:2.404800px;}
.wsef{word-spacing:2.412000px;}
.ws9e{word-spacing:2.426400px;}
.ws11e{word-spacing:2.433600px;}
.ws5f{word-spacing:2.440800px;}
.ws72{word-spacing:2.455200px;}
.wsdb{word-spacing:2.462400px;}
.wsa0{word-spacing:2.469600px;}
.wsaa{word-spacing:2.491200px;}
.ws5e{word-spacing:2.498400px;}
.ws5d{word-spacing:2.505600px;}
.wsee{word-spacing:2.527200px;}
.ws69{word-spacing:2.541600px;}
.ws103{word-spacing:2.728800px;}
.ws83{word-spacing:2.743200px;}
.wsc3{word-spacing:2.750400px;}
.wse9{word-spacing:2.815200px;}
.ws91{word-spacing:2.829600px;}
.ws104{word-spacing:2.836800px;}
.ws8b{word-spacing:2.851200px;}
.wsb0{word-spacing:3.096000px;}
.wsab{word-spacing:3.110400px;}
.wsca{word-spacing:3.160800px;}
.ws81{word-spacing:3.175200px;}
.wscb{word-spacing:3.189600px;}
.wsc{word-spacing:3.196800px;}
.wsb9{word-spacing:3.225600px;}
.wsc9{word-spacing:3.232800px;}
.ws110{word-spacing:3.427200px;}
.ws7d{word-spacing:3.441600px;}
.wse8{word-spacing:3.463200px;}
.ws1e{word-spacing:3.513600px;}
.wscc{word-spacing:3.528000px;}
.wsc6{word-spacing:3.535200px;}
.ws77{word-spacing:3.542400px;}
.ws5b{word-spacing:3.549600px;}
.ws4d{word-spacing:3.556800px;}
.ws35{word-spacing:3.564000px;}
.ws8f{word-spacing:3.571200px;}
.wsd0{word-spacing:3.607200px;}
.ws111{word-spacing:3.736800px;}
.wsa{word-spacing:3.816000px;}
.wsec{word-spacing:3.823200px;}
.ws7e{word-spacing:3.830400px;}
.ws30{word-spacing:3.866400px;}
.ws8c{word-spacing:3.880800px;}
.ws2d{word-spacing:3.888000px;}
.ws7b{word-spacing:3.909600px;}
.wsd6{word-spacing:3.916800px;}
.wsaf{word-spacing:3.924000px;}
.wsd5{word-spacing:3.952800px;}
.wse1{word-spacing:3.960000px;}
.ws67{word-spacing:3.967200px;}
.wsfc{word-spacing:3.988800px;}
.ws118{word-spacing:4.197600px;}
.ws85{word-spacing:4.219200px;}
.ws75{word-spacing:4.240800px;}
.ws38{word-spacing:4.262400px;}
.ws117{word-spacing:4.269600px;}
.ws7c{word-spacing:4.298400px;}
.wse0{word-spacing:4.305600px;}
.wsf3{word-spacing:4.586400px;}
.wsce{word-spacing:4.615200px;}
.ws8a{word-spacing:4.644000px;}
.ws70{word-spacing:4.665600px;}
.ws90{word-spacing:4.672800px;}
.wsf8{word-spacing:4.802400px;}
.wsb3{word-spacing:4.917600px;}
.ws87{word-spacing:4.946400px;}
.wsa1{word-spacing:4.968000px;}
.wsd4{word-spacing:4.982400px;}
.ws48{word-spacing:4.989600px;}
.ws84{word-spacing:4.996800px;}
.ws50{word-spacing:5.004000px;}
.wse7{word-spacing:5.018400px;}
.ws119{word-spacing:5.025600px;}
.ws11a{word-spacing:5.054400px;}
.ws74{word-spacing:5.068800px;}
.ws65{word-spacing:5.256000px;}
.ws7f{word-spacing:5.263200px;}
.ws97{word-spacing:5.284800px;}
.wscf{word-spacing:5.292000px;}
.wse3{word-spacing:5.299200px;}
.ws1b{word-spacing:5.328000px;}
.wsa7{word-spacing:5.335200px;}
.ws93{word-spacing:5.349600px;}
.wsfb{word-spacing:5.544000px;}
.ws1d{word-spacing:5.623200px;}
.ws101{word-spacing:5.709600px;}
.ws73{word-spacing:5.724000px;}
.wseb{word-spacing:5.738400px;}
.ws27{word-spacing:5.752800px;}
.ws96{word-spacing:6.004800px;}
.ws9f{word-spacing:6.019200px;}
.ws62{word-spacing:6.048000px;}
.wsc1{word-spacing:6.055200px;}
.wsdc{word-spacing:6.357600px;}
.ws10a{word-spacing:6.386400px;}
.wsb2{word-spacing:6.408000px;}
.ws10{word-spacing:6.566400px;}
.ws99{word-spacing:6.696000px;}
.ws105{word-spacing:6.782400px;}
.wsea{word-spacing:6.789600px;}
.ws89{word-spacing:6.796800px;}
.wsf{word-spacing:6.825600px;}
.ws66{word-spacing:7.056000px;}
.wsc5{word-spacing:7.070400px;}
.wsd8{word-spacing:7.092000px;}
.wsbc{word-spacing:7.135200px;}
.wsbf{word-spacing:7.156800px;}
.wsbe{word-spacing:7.171200px;}
.wsd7{word-spacing:7.207200px;}
.wse2{word-spacing:7.459200px;}
.wsc7{word-spacing:7.488000px;}
.wsc8{word-spacing:7.509600px;}
.ws2b{word-spacing:7.545600px;}
.wsc2{word-spacing:7.776000px;}
.ws6d{word-spacing:7.869600px;}
.ws10b{word-spacing:7.884000px;}
.ws9a{word-spacing:7.934400px;}
.wsf7{word-spacing:8.071200px;}
.wsd9{word-spacing:8.200800px;}
.wsad{word-spacing:8.215200px;}
.wsa6{word-spacing:8.280000px;}
.wsb1{word-spacing:8.517600px;}
.ws9{word-spacing:8.553600px;}
.ws4c{word-spacing:8.611200px;}
.ws11{word-spacing:8.618400px;}
.wsf0{word-spacing:8.920800px;}
.wsf9{word-spacing:9.108000px;}
.ws54{word-spacing:9.180000px;}
.ws2a{word-spacing:9.223200px;}
.ws34{word-spacing:9.280800px;}
.ws33{word-spacing:9.295200px;}
.ws9c{word-spacing:9.331200px;}
.ws76{word-spacing:9.352800px;}
.wsff{word-spacing:9.590400px;}
.ws106{word-spacing:9.597600px;}
.wsdd{word-spacing:9.604800px;}
.wsa5{word-spacing:9.633600px;}
.wsbb{word-spacing:9.640800px;}
.ws82{word-spacing:9.648000px;}
.ws43{word-spacing:9.698400px;}
.ws18{word-spacing:9.964800px;}
.ws1a{word-spacing:10.008000px;}
.ws19{word-spacing:10.022400px;}
.wsf4{word-spacing:10.108800px;}
.wsb5{word-spacing:10.368000px;}
.wsfa{word-spacing:10.418400px;}
.ws26{word-spacing:10.425600px;}
.wsf6{word-spacing:11.419200px;}
.ws25{word-spacing:11.865600px;}
.ws11d{word-spacing:11.872800px;}
.ws10f{word-spacing:12.038400px;}
.wsa8{word-spacing:12.168000px;}
.ws16{word-spacing:12.232800px;}
.wsf2{word-spacing:12.571200px;}
.ws112{word-spacing:12.736800px;}
.ws4a{word-spacing:12.916800px;}
.ws32{word-spacing:13.017600px;}
.ws31{word-spacing:13.291200px;}
.wsed{word-spacing:13.939200px;}
.wsd3{word-spacing:13.982400px;}
.wsd{word-spacing:14.292000px;}
.wsf5{word-spacing:14.716800px;}
.ws44{word-spacing:19.238400px;}
.ws10d{word-spacing:20.930400px;}
.ws10e{word-spacing:21.492000px;}
.ws14{word-spacing:28.382400px;}
.ws10c{word-spacing:32.299200px;}
._d{margin-left:-1281.456000px;}
._1{margin-left:-1148.112000px;}
._6{margin-left:-362.847600px;}
._7{margin-left:-346.566600px;}
._13{margin-left:-328.213800px;}
._c{margin-left:-13.968000px;}
._10{margin-left:-6.415200px;}
._4{margin-left:-2.502000px;}
._0{margin-left:-1.020600px;}
._5{width:1.029600px;}
._3{width:2.592000px;}
._2{width:4.521600px;}
._12{width:6.228000px;}
._8{width:16.862400px;}
._9{width:20.908800px;}
._a{width:24.415200px;}
._11{width:31.125600px;}
._f{width:40.867200px;}
._e{width:449.956116px;}
._14{width:689.402052px;}
._b{width:788.918400px;}
.fc2{color:rgb(251,201,7);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(145,143,143);}
.fs3{font-size:47.880000px;}
.fs7{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:83.880000px;}
.fs4{font-size:108.000000px;}
.fs2{font-size:132.120000px;}
.y0{bottom:0.000000px;}
.ya{bottom:0.013500px;}
.y24{bottom:43.341300px;}
.y48{bottom:44.233200px;}
.y47{bottom:78.973200px;}
.y71{bottom:90.128400px;}
.y64{bottom:96.433350px;}
.ye8{bottom:96.872850px;}
.y46{bottom:102.823200px;}
.yba{bottom:103.629900px;}
.y14f{bottom:107.865150px;}
.y129{bottom:108.134250px;}
.y70{bottom:113.928000px;}
.ya2{bottom:119.743500px;}
.y63{bottom:120.238350px;}
.ye7{bottom:120.690450px;}
.y45{bottom:126.673200px;}
.yb9{bottom:127.424100px;}
.y14e{bottom:131.675550px;}
.y128{bottom:131.939250px;}
.y10d{bottom:135.853200px;}
.y6f{bottom:137.727600px;}
.ya1{bottom:143.548500px;}
.y62{bottom:144.043350px;}
.ye6{bottom:144.508050px;}
.yb8{bottom:151.218300px;}
.y12b{bottom:153.399030px;}
.y14d{bottom:155.485950px;}
.y127{bottom:155.744250px;}
.y44{bottom:159.253200px;}
.y10c{bottom:159.703200px;}
.y6d{bottom:161.513700px;}
.y6e{bottom:161.527200px;}
.y41{bottom:165.312363px;}
.ya0{bottom:167.353500px;}
.ye5{bottom:168.325650px;}
.y12a{bottom:170.593350px;}
.yb7{bottom:175.012500px;}
.y61{bottom:176.713350px;}
.y14b{bottom:179.282850px;}
.y14c{bottom:179.296350px;}
.y126{bottom:179.549250px;}
.y40{bottom:182.506683px;}
.y6c{bottom:185.325900px;}
.y9f{bottom:191.158500px;}
.ye4{bottom:192.143250px;}
.yb6{bottom:198.806700px;}
.y3f{bottom:199.791183px;}
.y14a{bottom:203.105550px;}
.y125{bottom:203.354250px;}
.y6a{bottom:209.112000px;}
.y6b{bottom:209.125500px;}
.y9e{bottom:214.963500px;}
.ye3{bottom:215.960850px;}
.y3e{bottom:217.075683px;}
.y10b{bottom:218.469030px;}
.yb5{bottom:222.600900px;}
.y149{bottom:226.915950px;}
.y124{bottom:227.159250px;}
.y68{bottom:232.911000px;}
.y69{bottom:232.924500px;}
.y3d{bottom:234.268500px;}
.y10a{bottom:235.663350px;}
.y9c{bottom:238.755000px;}
.y9d{bottom:238.768500px;}
.ye2{bottom:239.778450px;}
.y43{bottom:241.509030px;}
.yb4{bottom:246.395100px;}
.y148{bottom:250.726350px;}
.y123{bottom:250.964250px;}
.y22{bottom:251.144700px;}
.y67{bottom:256.723500px;}
.y42{bottom:258.703350px;}
.y9b{bottom:262.573650px;}
.ye1{bottom:263.596050px;}
.ydc{bottom:269.486400px;}
.y109{bottom:269.503650px;}
.yb3{bottom:270.189300px;}
.y21{bottom:271.844700px;}
.y147{bottom:274.536750px;}
.y122{bottom:274.769250px;}
.ye0{bottom:287.413650px;}
.y108{bottom:293.263650px;}
.ydb{bottom:293.286000px;}
.y66{bottom:293.889150px;}
.yb2{bottom:293.983500px;}
.y9a{bottom:295.153650px;}
.y20{bottom:296.864700px;}
.y121{bottom:298.574250px;}
.y65{bottom:311.173650px;}
.yda{bottom:317.085600px;}
.y106{bottom:317.100150px;}
.y107{bottom:317.113650px;}
.y60{bottom:320.063163px;}
.ydf{bottom:320.083650px;}
.y120{bottom:322.379250px;}
.y146{bottom:334.026750px;}
.y5f{bottom:337.257483px;}
.y105{bottom:340.875600px;}
.yd9{bottom:340.885200px;}
.y11f{bottom:346.184250px;}
.y1f{bottom:347.444700px;}
.y8f{bottom:353.119350px;}
.y5e{bottom:354.541983px;}
.y99{bottom:356.713650px;}
.y145{bottom:357.826350px;}
.yde{bottom:361.031163px;}
.yd7{bottom:364.671300px;}
.yd8{bottom:364.684800px;}
.y104{bottom:364.725600px;}
.y1e{bottom:368.144700px;}
.yb1{bottom:370.399290px;}
.y5d{bottom:371.826483px;}
.y8e{bottom:376.920750px;}
.ydd{bottom:378.133800px;}
.y11e{bottom:378.854250px;}
.y144{bottom:381.625950px;}
.yd6{bottom:388.483200px;}
.y1d{bottom:388.844700px;}
.y5c{bottom:389.019300px;}
.yb0{bottom:390.193800px;}
.y8d{bottom:400.722150px;}
.y103{bottom:403.515600px;}
.y143{bottom:405.425550px;}
.y5b{bottom:406.303800px;}
.y1c{bottom:409.544700px;}
.yd4{bottom:412.269300px;}
.yd5{bottom:412.282800px;}
.y8c{bottom:424.523550px;}
.y102{bottom:427.275600px;}
.y142{bottom:429.225150px;}
.y1b{bottom:430.244700px;}
.yd3{bottom:436.093950px;}
.y11d{bottom:438.524250px;}
.y8b{bottom:448.324950px;}
.y1a{bottom:450.944700px;}
.y101{bottom:451.125600px;}
.y141{bottom:453.024750px;}
.y15f{bottom:454.094400px;}
.y11c{bottom:462.329250px;}
.y19{bottom:471.644700px;}
.y8a{bottom:472.126350px;}
.yd2{bottom:474.883950px;}
.y100{bottom:474.885600px;}
.y140{bottom:476.824350px;}
.y15e{bottom:477.944400px;}
.y11b{bottom:486.134250px;}
.y18{bottom:492.344700px;}
.y89{bottom:495.927750px;}
.yd1{bottom:498.685350px;}
.y13f{bottom:500.623950px;}
.y15d{bottom:501.704400px;}
.y11a{bottom:509.939250px;}
.y17{bottom:513.044700px;}
.yff{bottom:516.375600px;}
.y88{bottom:519.729150px;}
.yd0{bottom:522.486750px;}
.y15c{bottom:525.554400px;}
.y119{bottom:533.744250px;}
.yfe{bottom:537.075600px;}
.y16{bottom:538.064700px;}
.y87{bottom:543.530550px;}
.ycf{bottom:546.288150px;}
.y3c{bottom:546.435600px;}
.y15b{bottom:549.314400px;}
.y13e{bottom:558.489600px;}
.y86{bottom:567.331950px;}
.yce{bottom:570.089550px;}
.y3b{bottom:570.195600px;}
.y118{bottom:572.534250px;}
.y15a{bottom:573.164400px;}
.yfd{bottom:575.865600px;}
.y85{bottom:591.133350px;}
.ycd{bottom:593.890950px;}
.y3a{bottom:594.045600px;}
.y117{bottom:596.339250px;}
.y159{bottom:596.924400px;}
.yfc{bottom:599.625600px;}
.y15{bottom:606.644700px;}
.y84{bottom:614.934750px;}
.ycc{bottom:617.692350px;}
.y39{bottom:617.805600px;}
.y116{bottom:620.144250px;}
.y158{bottom:620.774400px;}
.yfb{bottom:623.385600px;}
.y14{bottom:630.404700px;}
.y83{bottom:638.736150px;}
.ycb{bottom:641.493750px;}
.y38{bottom:641.655600px;}
.y157{bottom:644.534400px;}
.y13{bottom:655.514700px;}
.y115{bottom:660.824250px;}
.yfa{bottom:662.265600px;}
.y82{bottom:662.537550px;}
.yca{bottom:665.295150px;}
.y37{bottom:665.415600px;}
.y156{bottom:668.384400px;}
.yf9{bottom:686.025600px;}
.yc9{bottom:689.096550px;}
.y36{bottom:689.265600px;}
.y155{bottom:692.144400px;}
.y81{bottom:695.117550px;}
.y5a{bottom:707.265750px;}
.yf8{bottom:709.875600px;}
.yc8{bottom:712.897950px;}
.y35{bottom:713.025600px;}
.y12{bottom:715.094700px;}
.y154{bottom:715.994400px;}
.y59{bottom:731.025750px;}
.y11{bottom:735.794700px;}
.yc7{bottom:736.699350px;}
.y34{bottom:736.875600px;}
.y153{bottom:739.754400px;}
.yf7{bottom:748.665600px;}
.y58{bottom:754.875750px;}
.y80{bottom:754.877550px;}
.y10{bottom:756.494700px;}
.yc6{bottom:760.500750px;}
.y33{bottom:760.635600px;}
.yf6{bottom:772.425600px;}
.y152{bottom:777.010050px;}
.yf{bottom:777.194700px;}
.y57{bottom:778.635750px;}
.y7f{bottom:778.678950px;}
.yc5{bottom:784.302150px;}
.y32{bottom:784.485600px;}
.yf5{bottom:796.275600px;}
.ye{bottom:797.894700px;}
.yaf{bottom:799.335750px;}
.y7e{bottom:802.480350px;}
.y56{bottom:802.485750px;}
.yd{bottom:818.594700px;}
.yf4{bottom:820.035600px;}
.yc4{bottom:823.182150px;}
.yae{bottom:823.185750px;}
.y55{bottom:826.245750px;}
.y7d{bottom:826.281750px;}
.yb{bottom:839.281200px;}
.yc{bottom:839.294700px;}
.y31{bottom:843.975600px;}
.yad{bottom:846.945750px;}
.yc3{bottom:846.976350px;}
.y7c{bottom:850.083150px;}
.y54{bottom:850.095750px;}
.yf3{bottom:858.825600px;}
.y9{bottom:859.994700px;}
.y30{bottom:867.735600px;}
.yac{bottom:870.705750px;}
.yc2{bottom:870.770550px;}
.y7b{bottom:873.884550px;}
.y138{bottom:879.884700px;}
.y8{bottom:880.694700px;}
.yf2{bottom:882.675600px;}
.y114{bottom:883.125750px;}
.y98{bottom:885.735000px;}
.y2f{bottom:891.585600px;}
.yab{bottom:894.555750px;}
.yc1{bottom:894.564750px;}
.y7a{bottom:897.685950px;}
.y136{bottom:903.631200px;}
.y137{bottom:903.644700px;}
.y7{bottom:905.714700px;}
.y113{bottom:906.975750px;}
.y97{bottom:909.585000px;}
.y53{bottom:909.585750px;}
.y2e{bottom:915.345600px;}
.yaa{bottom:918.315750px;}
.yc0{bottom:918.358950px;}
.yf1{bottom:921.465600px;}
.y79{bottom:921.487350px;}
.y135{bottom:927.494850px;}
.y112{bottom:930.735750px;}
.y96{bottom:933.345000px;}
.y52{bottom:933.345750px;}
.y2d{bottom:939.195600px;}
.ybf{bottom:942.153150px;}
.ya9{bottom:942.165750px;}
.yf0{bottom:945.225600px;}
.y78{bottom:945.288750px;}
.y134{bottom:951.254850px;}
.y111{bottom:954.585750px;}
.y95{bottom:957.195000px;}
.y51{bottom:957.195750px;}
.y2c{bottom:962.955600px;}
.ya8{bottom:965.925750px;}
.ybe{bottom:965.947350px;}
.yef{bottom:969.075600px;}
.y77{bottom:969.090150px;}
.y132{bottom:975.091350px;}
.y133{bottom:975.104850px;}
.y94{bottom:980.955000px;}
.y50{bottom:980.955750px;}
.y6{bottom:983.475000px;}
.y2b{bottom:986.805600px;}
.ybd{bottom:989.741550px;}
.ya7{bottom:989.775750px;}
.yee{bottom:992.835600px;}
.y76{bottom:992.891550px;}
.y110{bottom:996.075750px;}
.y13d{bottom:998.864700px;}
.y131{bottom:998.865750px;}
.y5{bottom:1001.385000px;}
.y93{bottom:1004.805000px;}
.y4f{bottom:1004.805750px;}
.y2a{bottom:1010.565600px;}
.ya6{bottom:1013.535750px;}
.yed{bottom:1016.685600px;}
.y75{bottom:1016.692950px;}
.y10f{bottom:1016.775750px;}
.y13c{bottom:1022.714700px;}
.y130{bottom:1022.715750px;}
.y92{bottom:1028.565000px;}
.y4e{bottom:1028.565750px;}
.y29{bottom:1034.325600px;}
.ya5{bottom:1037.385750px;}
.y10e{bottom:1037.475750px;}
.y4{bottom:1039.545000px;}
.yec{bottom:1040.445600px;}
.y74{bottom:1040.494350px;}
.y13b{bottom:1046.474700px;}
.y12f{bottom:1046.475750px;}
.y90{bottom:1052.311500px;}
.y91{bottom:1052.325000px;}
.y4d{bottom:1052.325750px;}
.y28{bottom:1058.175600px;}
.ya4{bottom:1061.145750px;}
.y73{bottom:1064.295750px;}
.y13a{bottom:1070.234700px;}
.y12e{bottom:1070.235750px;}
.ybc{bottom:1076.130750px;}
.y4c{bottom:1076.175750px;}
.y27{bottom:1081.935600px;}
.ya3{bottom:1084.995750px;}
.y139{bottom:1094.084700px;}
.y12d{bottom:1094.085750px;}
.y3{bottom:1098.590250px;}
.yeb{bottom:1099.935600px;}
.y4b{bottom:1099.935750px;}
.y26{bottom:1105.785600px;}
.y2{bottom:1122.705750px;}
.ybb{bottom:1123.740750px;}
.ye9{bottom:1123.772100px;}
.y151{bottom:1123.785300px;}
.yea{bottom:1123.785600px;}
.y4a{bottom:1123.785750px;}
.y12c{bottom:1126.665750px;}
.y25{bottom:1147.365600px;}
.y150{bottom:1147.545300px;}
.y49{bottom:1147.545750px;}
.y72{bottom:1199.745300px;}
.y1{bottom:1199.745900px;}
.y23{bottom:1225.941300px;}
.h8{height:34.945312px;}
.hc{height:47.381836px;}
.ha{height:50.027344px;}
.h9{height:53.397598px;}
.h4{height:54.278262px;}
.h6{height:63.175781px;}
.hb{height:63.351562px;}
.h5{height:63.949219px;}
.h3{height:65.003906px;}
.h2{height:75.729551px;}
.h1{height:92.484000px;}
.h7{height:1262.956500px;}
.h0{height:1263.000000px;}
.w2{width:765.271500px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x7{left:63.825600px;}
.x10{left:67.613250px;}
.x15{left:68.840100px;}
.x8{left:72.842100px;}
.x16{left:76.833750px;}
.x14{left:116.925750px;}
.xc{left:127.605300px;}
.x1f{left:131.392950px;}
.x18{left:170.170260px;}
.x1a{left:180.705300px;}
.x1d{left:202.035450px;}
.x1b{left:223.276290px;}
.x2{left:229.785450px;}
.x11{left:240.428190px;}
.x4{left:242.385450px;}
.xa{left:372.610350px;}
.x6{left:377.025750px;}
.x12{left:395.139000px;}
.xf{left:436.390350px;}
.x1c{left:441.462900px;}
.x1{left:482.325900px;}
.x9{left:508.055550px;}
.xb{left:546.106050px;}
.xe{left:571.835550px;}
.xd{left:586.156200px;}
.x5{left:608.236200px;}
.x1e{left:609.481200px;}
.x19{left:616.927200px;}
.x13{left:627.106200px;}
.x3{left:634.506450px;}
.x17{left:680.707350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-0.176160pt;}
.ls34{letter-spacing:-0.160000pt;}
.lsf{letter-spacing:-0.110656pt;}
.ls23{letter-spacing:-0.101536pt;}
.ls26{letter-spacing:-0.070400pt;}
.ls24{letter-spacing:-0.053440pt;}
.ls1e{letter-spacing:-0.048096pt;}
.ls1b{letter-spacing:-0.042752pt;}
.ls1f{letter-spacing:-0.037408pt;}
.ls36{letter-spacing:-0.032064pt;}
.ls25{letter-spacing:-0.026720pt;}
.ls1c{letter-spacing:-0.021376pt;}
.ls16{letter-spacing:-0.019200pt;}
.ls13{letter-spacing:-0.016032pt;}
.ls20{letter-spacing:-0.012800pt;}
.ls22{letter-spacing:-0.010688pt;}
.ls18{letter-spacing:-0.008533pt;}
.ls14{letter-spacing:-0.006400pt;}
.ls2b{letter-spacing:-0.005344pt;}
.ls17{letter-spacing:-0.004267pt;}
.ls12{letter-spacing:0.000000pt;}
.ls39{letter-spacing:0.005344pt;}
.ls3{letter-spacing:0.006400pt;}
.ls21{letter-spacing:0.010688pt;}
.ls15{letter-spacing:0.012800pt;}
.ls2f{letter-spacing:0.016032pt;}
.lsc{letter-spacing:0.019200pt;}
.ls8{letter-spacing:0.025600pt;}
.ls1a{letter-spacing:0.026720pt;}
.ls5{letter-spacing:0.032000pt;}
.ls38{letter-spacing:0.032064pt;}
.ls6{letter-spacing:0.038400pt;}
.ls4{letter-spacing:0.044800pt;}
.lsa{letter-spacing:0.051200pt;}
.ls2c{letter-spacing:0.053440pt;}
.lsb{letter-spacing:0.057600pt;}
.ls1d{letter-spacing:0.058784pt;}
.ls2{letter-spacing:0.059648pt;}
.ls2a{letter-spacing:0.063840pt;}
.ls2e{letter-spacing:0.064000pt;}
.ls19{letter-spacing:0.064128pt;}
.ls9{letter-spacing:0.070400pt;}
.ls0{letter-spacing:0.072000pt;}
.ls10{letter-spacing:0.076800pt;}
.ls11{letter-spacing:0.082016pt;}
.ls7{letter-spacing:0.083200pt;}
.lsd{letter-spacing:0.089600pt;}
.ls2d{letter-spacing:0.102400pt;}
.ls1{letter-spacing:0.128000pt;}
.ls35{letter-spacing:2.368000pt;}
.ls27{letter-spacing:13.334400pt;}
.ls37{letter-spacing:16.300800pt;}
.ls3a{letter-spacing:16.314133pt;}
.ls29{letter-spacing:16.314667pt;}
.ls33{letter-spacing:16.448000pt;}
.ls32{letter-spacing:18.880000pt;}
.ls30{letter-spacing:19.648000pt;}
.ls31{letter-spacing:22.528000pt;}
.ls28{letter-spacing:308.136000pt;}
.ws6c{word-spacing:-320.136000pt;}
.ws114{word-spacing:-64.038400pt;}
.ws45{word-spacing:-64.032000pt;}
.ws46{word-spacing:-64.025600pt;}
.ws0{word-spacing:-17.792160pt;}
.wse6{word-spacing:-16.083200pt;}
.ws6a{word-spacing:-12.072000pt;}
.ws6b{word-spacing:-12.057600pt;}
.ws3b{word-spacing:-0.304608pt;}
.wsa2{word-spacing:-0.240480pt;}
.ws41{word-spacing:-0.229792pt;}
.ws61{word-spacing:-0.213760pt;}
.wse4{word-spacing:-0.208416pt;}
.ws58{word-spacing:-0.203072pt;}
.ws2{word-spacing:-0.128000pt;}
.ws6e{word-spacing:-0.121600pt;}
.ws8{word-spacing:-0.101536pt;}
.wsc0{word-spacing:-0.096000pt;}
.ws20{word-spacing:-0.089600pt;}
.ws98{word-spacing:-0.083200pt;}
.ws23{word-spacing:-0.076800pt;}
.ws2f{word-spacing:-0.070400pt;}
.wsfe{word-spacing:-0.064000pt;}
.ws12{word-spacing:-0.057600pt;}
.wsb6{word-spacing:-0.038400pt;}
.wsb7{word-spacing:-0.032000pt;}
.ws42{word-spacing:-0.025600pt;}
.ws3a{word-spacing:-0.019200pt;}
.ws1f{word-spacing:-0.012800pt;}
.ws13{word-spacing:-0.006400pt;}
.ws3{word-spacing:0.000000pt;}
.wsfd{word-spacing:0.006400pt;}
.ws55{word-spacing:0.012800pt;}
.ws5{word-spacing:0.014912pt;}
.wse5{word-spacing:0.016032pt;}
.ws22{word-spacing:0.021333pt;}
.wsa3{word-spacing:0.026720pt;}
.ws15{word-spacing:0.032000pt;}
.ws107{word-spacing:0.048096pt;}
.ws3c{word-spacing:0.053440pt;}
.ws60{word-spacing:0.064128pt;}
.ws56{word-spacing:0.069472pt;}
.ws92{word-spacing:0.074816pt;}
.ws57{word-spacing:0.090848pt;}
.ws47{word-spacing:0.091200pt;}
.ws1{word-spacing:0.096000pt;}
.wsa4{word-spacing:0.096192pt;}
.ws3e{word-spacing:0.101536pt;}
.ws6{word-spacing:0.115200pt;}
.ws40{word-spacing:0.117568pt;}
.ws3d{word-spacing:0.122912pt;}
.ws3f{word-spacing:0.128256pt;}
.ws5a{word-spacing:0.133600pt;}
.ws4{word-spacing:0.141664pt;}
.wsb4{word-spacing:0.147200pt;}
.ws7{word-spacing:0.153600pt;}
.ws2e{word-spacing:0.166400pt;}
.ws94{word-spacing:0.172800pt;}
.ws59{word-spacing:0.181696pt;}
.ws86{word-spacing:0.185600pt;}
.wsdf{word-spacing:0.192000pt;}
.ws5c{word-spacing:0.198400pt;}
.wse{word-spacing:0.204800pt;}
.wsba{word-spacing:0.211200pt;}
.ws88{word-spacing:0.217600pt;}
.wsb8{word-spacing:0.224000pt;}
.ws37{word-spacing:0.236800pt;}
.ws11c{word-spacing:0.249600pt;}
.ws11b{word-spacing:0.262400pt;}
.wsde{word-spacing:0.288000pt;}
.wsf1{word-spacing:0.339200pt;}
.ws95{word-spacing:0.524800pt;}
.ws8e{word-spacing:0.550400pt;}
.wsc4{word-spacing:0.569600pt;}
.wsb{word-spacing:0.588800pt;}
.ws63{word-spacing:0.608000pt;}
.ws2c{word-spacing:0.627200pt;}
.ws1c{word-spacing:0.652800pt;}
.ws113{word-spacing:0.742400pt;}
.ws39{word-spacing:0.774400pt;}
.wsd1{word-spacing:0.870400pt;}
.ws100{word-spacing:0.876800pt;}
.ws109{word-spacing:0.896000pt;}
.ws116{word-spacing:0.902400pt;}
.ws78{word-spacing:0.908800pt;}
.ws102{word-spacing:0.915200pt;}
.ws71{word-spacing:0.921600pt;}
.wsac{word-spacing:0.940800pt;}
.wsd2{word-spacing:0.953600pt;}
.ws49{word-spacing:1.171200pt;}
.ws4f{word-spacing:1.190400pt;}
.ws36{word-spacing:1.209600pt;}
.ws80{word-spacing:1.216000pt;}
.ws4b{word-spacing:1.222400pt;}
.ws8d{word-spacing:1.228800pt;}
.ws52{word-spacing:1.235200pt;}
.ws7a{word-spacing:1.254400pt;}
.ws108{word-spacing:1.260800pt;}
.wscd{word-spacing:1.280000pt;}
.ws115{word-spacing:1.440000pt;}
.ws21{word-spacing:1.510400pt;}
.ws17{word-spacing:1.516800pt;}
.ws24{word-spacing:1.523200pt;}
.wsa9{word-spacing:1.529600pt;}
.ws6f{word-spacing:1.542400pt;}
.ws53{word-spacing:1.548800pt;}
.wsae{word-spacing:1.555200pt;}
.ws64{word-spacing:1.568000pt;}
.ws29{word-spacing:1.580800pt;}
.ws51{word-spacing:1.600000pt;}
.wsbd{word-spacing:1.606400pt;}
.ws28{word-spacing:1.849600pt;}
.ws4e{word-spacing:1.868800pt;}
.ws9b{word-spacing:1.888000pt;}
.ws79{word-spacing:1.907200pt;}
.wsda{word-spacing:2.067200pt;}
.ws68{word-spacing:2.118400pt;}
.ws9d{word-spacing:2.137600pt;}
.wsef{word-spacing:2.144000pt;}
.ws9e{word-spacing:2.156800pt;}
.ws11e{word-spacing:2.163200pt;}
.ws5f{word-spacing:2.169600pt;}
.ws72{word-spacing:2.182400pt;}
.wsdb{word-spacing:2.188800pt;}
.wsa0{word-spacing:2.195200pt;}
.wsaa{word-spacing:2.214400pt;}
.ws5e{word-spacing:2.220800pt;}
.ws5d{word-spacing:2.227200pt;}
.wsee{word-spacing:2.246400pt;}
.ws69{word-spacing:2.259200pt;}
.ws103{word-spacing:2.425600pt;}
.ws83{word-spacing:2.438400pt;}
.wsc3{word-spacing:2.444800pt;}
.wse9{word-spacing:2.502400pt;}
.ws91{word-spacing:2.515200pt;}
.ws104{word-spacing:2.521600pt;}
.ws8b{word-spacing:2.534400pt;}
.wsb0{word-spacing:2.752000pt;}
.wsab{word-spacing:2.764800pt;}
.wsca{word-spacing:2.809600pt;}
.ws81{word-spacing:2.822400pt;}
.wscb{word-spacing:2.835200pt;}
.wsc{word-spacing:2.841600pt;}
.wsb9{word-spacing:2.867200pt;}
.wsc9{word-spacing:2.873600pt;}
.ws110{word-spacing:3.046400pt;}
.ws7d{word-spacing:3.059200pt;}
.wse8{word-spacing:3.078400pt;}
.ws1e{word-spacing:3.123200pt;}
.wscc{word-spacing:3.136000pt;}
.wsc6{word-spacing:3.142400pt;}
.ws77{word-spacing:3.148800pt;}
.ws5b{word-spacing:3.155200pt;}
.ws4d{word-spacing:3.161600pt;}
.ws35{word-spacing:3.168000pt;}
.ws8f{word-spacing:3.174400pt;}
.wsd0{word-spacing:3.206400pt;}
.ws111{word-spacing:3.321600pt;}
.wsa{word-spacing:3.392000pt;}
.wsec{word-spacing:3.398400pt;}
.ws7e{word-spacing:3.404800pt;}
.ws30{word-spacing:3.436800pt;}
.ws8c{word-spacing:3.449600pt;}
.ws2d{word-spacing:3.456000pt;}
.ws7b{word-spacing:3.475200pt;}
.wsd6{word-spacing:3.481600pt;}
.wsaf{word-spacing:3.488000pt;}
.wsd5{word-spacing:3.513600pt;}
.wse1{word-spacing:3.520000pt;}
.ws67{word-spacing:3.526400pt;}
.wsfc{word-spacing:3.545600pt;}
.ws118{word-spacing:3.731200pt;}
.ws85{word-spacing:3.750400pt;}
.ws75{word-spacing:3.769600pt;}
.ws38{word-spacing:3.788800pt;}
.ws117{word-spacing:3.795200pt;}
.ws7c{word-spacing:3.820800pt;}
.wse0{word-spacing:3.827200pt;}
.wsf3{word-spacing:4.076800pt;}
.wsce{word-spacing:4.102400pt;}
.ws8a{word-spacing:4.128000pt;}
.ws70{word-spacing:4.147200pt;}
.ws90{word-spacing:4.153600pt;}
.wsf8{word-spacing:4.268800pt;}
.wsb3{word-spacing:4.371200pt;}
.ws87{word-spacing:4.396800pt;}
.wsa1{word-spacing:4.416000pt;}
.wsd4{word-spacing:4.428800pt;}
.ws48{word-spacing:4.435200pt;}
.ws84{word-spacing:4.441600pt;}
.ws50{word-spacing:4.448000pt;}
.wse7{word-spacing:4.460800pt;}
.ws119{word-spacing:4.467200pt;}
.ws11a{word-spacing:4.492800pt;}
.ws74{word-spacing:4.505600pt;}
.ws65{word-spacing:4.672000pt;}
.ws7f{word-spacing:4.678400pt;}
.ws97{word-spacing:4.697600pt;}
.wscf{word-spacing:4.704000pt;}
.wse3{word-spacing:4.710400pt;}
.ws1b{word-spacing:4.736000pt;}
.wsa7{word-spacing:4.742400pt;}
.ws93{word-spacing:4.755200pt;}
.wsfb{word-spacing:4.928000pt;}
.ws1d{word-spacing:4.998400pt;}
.ws101{word-spacing:5.075200pt;}
.ws73{word-spacing:5.088000pt;}
.wseb{word-spacing:5.100800pt;}
.ws27{word-spacing:5.113600pt;}
.ws96{word-spacing:5.337600pt;}
.ws9f{word-spacing:5.350400pt;}
.ws62{word-spacing:5.376000pt;}
.wsc1{word-spacing:5.382400pt;}
.wsdc{word-spacing:5.651200pt;}
.ws10a{word-spacing:5.676800pt;}
.wsb2{word-spacing:5.696000pt;}
.ws10{word-spacing:5.836800pt;}
.ws99{word-spacing:5.952000pt;}
.ws105{word-spacing:6.028800pt;}
.wsea{word-spacing:6.035200pt;}
.ws89{word-spacing:6.041600pt;}
.wsf{word-spacing:6.067200pt;}
.ws66{word-spacing:6.272000pt;}
.wsc5{word-spacing:6.284800pt;}
.wsd8{word-spacing:6.304000pt;}
.wsbc{word-spacing:6.342400pt;}
.wsbf{word-spacing:6.361600pt;}
.wsbe{word-spacing:6.374400pt;}
.wsd7{word-spacing:6.406400pt;}
.wse2{word-spacing:6.630400pt;}
.wsc7{word-spacing:6.656000pt;}
.wsc8{word-spacing:6.675200pt;}
.ws2b{word-spacing:6.707200pt;}
.wsc2{word-spacing:6.912000pt;}
.ws6d{word-spacing:6.995200pt;}
.ws10b{word-spacing:7.008000pt;}
.ws9a{word-spacing:7.052800pt;}
.wsf7{word-spacing:7.174400pt;}
.wsd9{word-spacing:7.289600pt;}
.wsad{word-spacing:7.302400pt;}
.wsa6{word-spacing:7.360000pt;}
.wsb1{word-spacing:7.571200pt;}
.ws9{word-spacing:7.603200pt;}
.ws4c{word-spacing:7.654400pt;}
.ws11{word-spacing:7.660800pt;}
.wsf0{word-spacing:7.929600pt;}
.wsf9{word-spacing:8.096000pt;}
.ws54{word-spacing:8.160000pt;}
.ws2a{word-spacing:8.198400pt;}
.ws34{word-spacing:8.249600pt;}
.ws33{word-spacing:8.262400pt;}
.ws9c{word-spacing:8.294400pt;}
.ws76{word-spacing:8.313600pt;}
.wsff{word-spacing:8.524800pt;}
.ws106{word-spacing:8.531200pt;}
.wsdd{word-spacing:8.537600pt;}
.wsa5{word-spacing:8.563200pt;}
.wsbb{word-spacing:8.569600pt;}
.ws82{word-spacing:8.576000pt;}
.ws43{word-spacing:8.620800pt;}
.ws18{word-spacing:8.857600pt;}
.ws1a{word-spacing:8.896000pt;}
.ws19{word-spacing:8.908800pt;}
.wsf4{word-spacing:8.985600pt;}
.wsb5{word-spacing:9.216000pt;}
.wsfa{word-spacing:9.260800pt;}
.ws26{word-spacing:9.267200pt;}
.wsf6{word-spacing:10.150400pt;}
.ws25{word-spacing:10.547200pt;}
.ws11d{word-spacing:10.553600pt;}
.ws10f{word-spacing:10.700800pt;}
.wsa8{word-spacing:10.816000pt;}
.ws16{word-spacing:10.873600pt;}
.wsf2{word-spacing:11.174400pt;}
.ws112{word-spacing:11.321600pt;}
.ws4a{word-spacing:11.481600pt;}
.ws32{word-spacing:11.571200pt;}
.ws31{word-spacing:11.814400pt;}
.wsed{word-spacing:12.390400pt;}
.wsd3{word-spacing:12.428800pt;}
.wsd{word-spacing:12.704000pt;}
.wsf5{word-spacing:13.081600pt;}
.ws44{word-spacing:17.100800pt;}
.ws10d{word-spacing:18.604800pt;}
.ws10e{word-spacing:19.104000pt;}
.ws14{word-spacing:25.228800pt;}
.ws10c{word-spacing:28.710400pt;}
._d{margin-left:-1139.072000pt;}
._1{margin-left:-1020.544000pt;}
._6{margin-left:-322.531200pt;}
._7{margin-left:-308.059200pt;}
._13{margin-left:-291.745600pt;}
._c{margin-left:-12.416000pt;}
._10{margin-left:-5.702400pt;}
._4{margin-left:-2.224000pt;}
._0{margin-left:-0.907200pt;}
._5{width:0.915200pt;}
._3{width:2.304000pt;}
._2{width:4.019200pt;}
._12{width:5.536000pt;}
._8{width:14.988800pt;}
._9{width:18.585600pt;}
._a{width:21.702400pt;}
._11{width:27.667200pt;}
._f{width:36.326400pt;}
._e{width:399.960992pt;}
._14{width:612.801824pt;}
._b{width:701.260800pt;}
.fs3{font-size:42.560000pt;}
.fs7{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.560000pt;}
.fs4{font-size:96.000000pt;}
.fs2{font-size:117.440000pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:0.012000pt;}
.y24{bottom:38.525600pt;}
.y48{bottom:39.318400pt;}
.y47{bottom:70.198400pt;}
.y71{bottom:80.114133pt;}
.y64{bottom:85.718533pt;}
.ye8{bottom:86.109200pt;}
.y46{bottom:91.398400pt;}
.yba{bottom:92.115467pt;}
.y14f{bottom:95.880133pt;}
.y129{bottom:96.119333pt;}
.y70{bottom:101.269333pt;}
.ya2{bottom:106.438667pt;}
.y63{bottom:106.878533pt;}
.ye7{bottom:107.280400pt;}
.y45{bottom:112.598400pt;}
.yb9{bottom:113.265867pt;}
.y14e{bottom:117.044933pt;}
.y128{bottom:117.279333pt;}
.y10d{bottom:120.758400pt;}
.y6f{bottom:122.424533pt;}
.ya1{bottom:127.598667pt;}
.y62{bottom:128.038533pt;}
.ye6{bottom:128.451600pt;}
.yb8{bottom:134.416267pt;}
.y12b{bottom:136.354693pt;}
.y14d{bottom:138.209733pt;}
.y127{bottom:138.439333pt;}
.y44{bottom:141.558400pt;}
.y10c{bottom:141.958400pt;}
.y6d{bottom:143.567733pt;}
.y6e{bottom:143.579733pt;}
.y41{bottom:146.944323pt;}
.ya0{bottom:148.758667pt;}
.ye5{bottom:149.622800pt;}
.y12a{bottom:151.638533pt;}
.yb7{bottom:155.566667pt;}
.y61{bottom:157.078533pt;}
.y14b{bottom:159.362533pt;}
.y14c{bottom:159.374533pt;}
.y126{bottom:159.599333pt;}
.y40{bottom:162.228163pt;}
.y6c{bottom:164.734133pt;}
.y9f{bottom:169.918667pt;}
.ye4{bottom:170.794000pt;}
.yb6{bottom:176.717067pt;}
.y3f{bottom:177.592163pt;}
.y14a{bottom:180.538267pt;}
.y125{bottom:180.759333pt;}
.y6a{bottom:185.877333pt;}
.y6b{bottom:185.889333pt;}
.y9e{bottom:191.078667pt;}
.ye3{bottom:191.965200pt;}
.y3e{bottom:192.956163pt;}
.y10b{bottom:194.194693pt;}
.yb5{bottom:197.867467pt;}
.y149{bottom:201.703067pt;}
.y124{bottom:201.919333pt;}
.y68{bottom:207.032000pt;}
.y69{bottom:207.044000pt;}
.y3d{bottom:208.238667pt;}
.y10a{bottom:209.478533pt;}
.y9c{bottom:212.226667pt;}
.y9d{bottom:212.238667pt;}
.ye2{bottom:213.136400pt;}
.y43{bottom:214.674693pt;}
.yb4{bottom:219.017867pt;}
.y148{bottom:222.867867pt;}
.y123{bottom:223.079333pt;}
.y22{bottom:223.239733pt;}
.y67{bottom:228.198667pt;}
.y42{bottom:229.958533pt;}
.y9b{bottom:233.398800pt;}
.ye1{bottom:234.307600pt;}
.ydc{bottom:239.543467pt;}
.y109{bottom:239.558800pt;}
.yb3{bottom:240.168267pt;}
.y21{bottom:241.639733pt;}
.y147{bottom:244.032667pt;}
.y122{bottom:244.239333pt;}
.ye0{bottom:255.478800pt;}
.y108{bottom:260.678800pt;}
.ydb{bottom:260.698667pt;}
.y66{bottom:261.234800pt;}
.yb2{bottom:261.318667pt;}
.y9a{bottom:262.358800pt;}
.y20{bottom:263.879733pt;}
.y121{bottom:265.399333pt;}
.y65{bottom:276.598800pt;}
.yda{bottom:281.853867pt;}
.y106{bottom:281.866800pt;}
.y107{bottom:281.878800pt;}
.y60{bottom:284.500589pt;}
.ydf{bottom:284.518800pt;}
.y120{bottom:286.559333pt;}
.y146{bottom:296.912667pt;}
.y5f{bottom:299.784429pt;}
.y105{bottom:303.000533pt;}
.yd9{bottom:303.009067pt;}
.y11f{bottom:307.719333pt;}
.y1f{bottom:308.839733pt;}
.y8f{bottom:313.883867pt;}
.y5e{bottom:315.148429pt;}
.y99{bottom:317.078800pt;}
.y145{bottom:318.067867pt;}
.yde{bottom:320.916589pt;}
.yd7{bottom:324.152267pt;}
.yd8{bottom:324.164267pt;}
.y104{bottom:324.200533pt;}
.y1e{bottom:327.239733pt;}
.yb1{bottom:329.243813pt;}
.y5d{bottom:330.512429pt;}
.y8e{bottom:335.040667pt;}
.ydd{bottom:336.118933pt;}
.y11e{bottom:336.759333pt;}
.y144{bottom:339.223067pt;}
.yd6{bottom:345.318400pt;}
.y1d{bottom:345.639733pt;}
.y5c{bottom:345.794933pt;}
.yb0{bottom:346.838933pt;}
.y8d{bottom:356.197467pt;}
.y103{bottom:358.680533pt;}
.y143{bottom:360.378267pt;}
.y5b{bottom:361.158933pt;}
.y1c{bottom:364.039733pt;}
.yd4{bottom:366.461600pt;}
.yd5{bottom:366.473600pt;}
.y8c{bottom:377.354267pt;}
.y102{bottom:379.800533pt;}
.y142{bottom:381.533467pt;}
.y1b{bottom:382.439733pt;}
.yd3{bottom:387.639067pt;}
.y11d{bottom:389.799333pt;}
.y8b{bottom:398.511067pt;}
.y1a{bottom:400.839733pt;}
.y101{bottom:401.000533pt;}
.y141{bottom:402.688667pt;}
.y15f{bottom:403.639467pt;}
.y11c{bottom:410.959333pt;}
.y19{bottom:419.239733pt;}
.y8a{bottom:419.667867pt;}
.yd2{bottom:422.119067pt;}
.y100{bottom:422.120533pt;}
.y140{bottom:423.843867pt;}
.y15e{bottom:424.839467pt;}
.y11b{bottom:432.119333pt;}
.y18{bottom:437.639733pt;}
.y89{bottom:440.824667pt;}
.yd1{bottom:443.275867pt;}
.y13f{bottom:444.999067pt;}
.y15d{bottom:445.959467pt;}
.y11a{bottom:453.279333pt;}
.y17{bottom:456.039733pt;}
.yff{bottom:459.000533pt;}
.y88{bottom:461.981467pt;}
.yd0{bottom:464.432667pt;}
.y15c{bottom:467.159467pt;}
.y119{bottom:474.439333pt;}
.yfe{bottom:477.400533pt;}
.y16{bottom:478.279733pt;}
.y87{bottom:483.138267pt;}
.ycf{bottom:485.589467pt;}
.y3c{bottom:485.720533pt;}
.y15b{bottom:488.279467pt;}
.y13e{bottom:496.435200pt;}
.y86{bottom:504.295067pt;}
.yce{bottom:506.746267pt;}
.y3b{bottom:506.840533pt;}
.y118{bottom:508.919333pt;}
.y15a{bottom:509.479467pt;}
.yfd{bottom:511.880533pt;}
.y85{bottom:525.451867pt;}
.ycd{bottom:527.903067pt;}
.y3a{bottom:528.040533pt;}
.y117{bottom:530.079333pt;}
.y159{bottom:530.599467pt;}
.yfc{bottom:533.000533pt;}
.y15{bottom:539.239733pt;}
.y84{bottom:546.608667pt;}
.ycc{bottom:549.059867pt;}
.y39{bottom:549.160533pt;}
.y116{bottom:551.239333pt;}
.y158{bottom:551.799467pt;}
.yfb{bottom:554.120533pt;}
.y14{bottom:560.359733pt;}
.y83{bottom:567.765467pt;}
.ycb{bottom:570.216667pt;}
.y38{bottom:570.360533pt;}
.y157{bottom:572.919467pt;}
.y13{bottom:582.679733pt;}
.y115{bottom:587.399333pt;}
.yfa{bottom:588.680533pt;}
.y82{bottom:588.922267pt;}
.yca{bottom:591.373467pt;}
.y37{bottom:591.480533pt;}
.y156{bottom:594.119467pt;}
.yf9{bottom:609.800533pt;}
.yc9{bottom:612.530267pt;}
.y36{bottom:612.680533pt;}
.y155{bottom:615.239467pt;}
.y81{bottom:617.882267pt;}
.y5a{bottom:628.680667pt;}
.yf8{bottom:631.000533pt;}
.yc8{bottom:633.687067pt;}
.y35{bottom:633.800533pt;}
.y12{bottom:635.639733pt;}
.y154{bottom:636.439467pt;}
.y59{bottom:649.800667pt;}
.y11{bottom:654.039733pt;}
.yc7{bottom:654.843867pt;}
.y34{bottom:655.000533pt;}
.y153{bottom:657.559467pt;}
.yf7{bottom:665.480533pt;}
.y58{bottom:671.000667pt;}
.y80{bottom:671.002267pt;}
.y10{bottom:672.439733pt;}
.yc6{bottom:676.000667pt;}
.y33{bottom:676.120533pt;}
.yf6{bottom:686.600533pt;}
.y152{bottom:690.675600pt;}
.yf{bottom:690.839733pt;}
.y57{bottom:692.120667pt;}
.y7f{bottom:692.159067pt;}
.yc5{bottom:697.157467pt;}
.y32{bottom:697.320533pt;}
.yf5{bottom:707.800533pt;}
.ye{bottom:709.239733pt;}
.yaf{bottom:710.520667pt;}
.y7e{bottom:713.315867pt;}
.y56{bottom:713.320667pt;}
.yd{bottom:727.639733pt;}
.yf4{bottom:728.920533pt;}
.yc4{bottom:731.717467pt;}
.yae{bottom:731.720667pt;}
.y55{bottom:734.440667pt;}
.y7d{bottom:734.472667pt;}
.yb{bottom:746.027733pt;}
.yc{bottom:746.039733pt;}
.y31{bottom:750.200533pt;}
.yad{bottom:752.840667pt;}
.yc3{bottom:752.867867pt;}
.y7c{bottom:755.629467pt;}
.y54{bottom:755.640667pt;}
.yf3{bottom:763.400533pt;}
.y9{bottom:764.439733pt;}
.y30{bottom:771.320533pt;}
.yac{bottom:773.960667pt;}
.yc2{bottom:774.018267pt;}
.y7b{bottom:776.786267pt;}
.y138{bottom:782.119733pt;}
.y8{bottom:782.839733pt;}
.yf2{bottom:784.600533pt;}
.y114{bottom:785.000667pt;}
.y98{bottom:787.320000pt;}
.y2f{bottom:792.520533pt;}
.yab{bottom:795.160667pt;}
.yc1{bottom:795.168667pt;}
.y7a{bottom:797.943067pt;}
.y136{bottom:803.227733pt;}
.y137{bottom:803.239733pt;}
.y7{bottom:805.079733pt;}
.y113{bottom:806.200667pt;}
.y97{bottom:808.520000pt;}
.y53{bottom:808.520667pt;}
.y2e{bottom:813.640533pt;}
.yaa{bottom:816.280667pt;}
.yc0{bottom:816.319067pt;}
.yf1{bottom:819.080533pt;}
.y79{bottom:819.099867pt;}
.y135{bottom:824.439867pt;}
.y112{bottom:827.320667pt;}
.y96{bottom:829.640000pt;}
.y52{bottom:829.640667pt;}
.y2d{bottom:834.840533pt;}
.ybf{bottom:837.469467pt;}
.ya9{bottom:837.480667pt;}
.yf0{bottom:840.200533pt;}
.y78{bottom:840.256667pt;}
.y134{bottom:845.559867pt;}
.y111{bottom:848.520667pt;}
.y95{bottom:850.840000pt;}
.y51{bottom:850.840667pt;}
.y2c{bottom:855.960533pt;}
.ya8{bottom:858.600667pt;}
.ybe{bottom:858.619867pt;}
.yef{bottom:861.400533pt;}
.y77{bottom:861.413467pt;}
.y132{bottom:866.747867pt;}
.y133{bottom:866.759867pt;}
.y94{bottom:871.960000pt;}
.y50{bottom:871.960667pt;}
.y6{bottom:874.200000pt;}
.y2b{bottom:877.160533pt;}
.ybd{bottom:879.770267pt;}
.ya7{bottom:879.800667pt;}
.yee{bottom:882.520533pt;}
.y76{bottom:882.570267pt;}
.y110{bottom:885.400667pt;}
.y13d{bottom:887.879733pt;}
.y131{bottom:887.880667pt;}
.y5{bottom:890.120000pt;}
.y93{bottom:893.160000pt;}
.y4f{bottom:893.160667pt;}
.y2a{bottom:898.280533pt;}
.ya6{bottom:900.920667pt;}
.yed{bottom:903.720533pt;}
.y75{bottom:903.727067pt;}
.y10f{bottom:903.800667pt;}
.y13c{bottom:909.079733pt;}
.y130{bottom:909.080667pt;}
.y92{bottom:914.280000pt;}
.y4e{bottom:914.280667pt;}
.y29{bottom:919.400533pt;}
.ya5{bottom:922.120667pt;}
.y10e{bottom:922.200667pt;}
.y4{bottom:924.040000pt;}
.yec{bottom:924.840533pt;}
.y74{bottom:924.883867pt;}
.y13b{bottom:930.199733pt;}
.y12f{bottom:930.200667pt;}
.y90{bottom:935.388000pt;}
.y91{bottom:935.400000pt;}
.y4d{bottom:935.400667pt;}
.y28{bottom:940.600533pt;}
.ya4{bottom:943.240667pt;}
.y73{bottom:946.040667pt;}
.y13a{bottom:951.319733pt;}
.y12e{bottom:951.320667pt;}
.ybc{bottom:956.560667pt;}
.y4c{bottom:956.600667pt;}
.y27{bottom:961.720533pt;}
.ya3{bottom:964.440667pt;}
.y139{bottom:972.519733pt;}
.y12d{bottom:972.520667pt;}
.y3{bottom:976.524667pt;}
.yeb{bottom:977.720533pt;}
.y4b{bottom:977.720667pt;}
.y26{bottom:982.920533pt;}
.y2{bottom:997.960667pt;}
.ybb{bottom:998.880667pt;}
.ye9{bottom:998.908533pt;}
.y151{bottom:998.920267pt;}
.yea{bottom:998.920533pt;}
.y4a{bottom:998.920667pt;}
.y12c{bottom:1001.480667pt;}
.y25{bottom:1019.880533pt;}
.y150{bottom:1020.040267pt;}
.y49{bottom:1020.040667pt;}
.y72{bottom:1066.440267pt;}
.y1{bottom:1066.440800pt;}
.y23{bottom:1089.725600pt;}
.h8{height:31.062500pt;}
.hc{height:42.117188pt;}
.ha{height:44.468750pt;}
.h9{height:47.464531pt;}
.h4{height:48.247344pt;}
.h6{height:56.156250pt;}
.hb{height:56.312500pt;}
.h5{height:56.843750pt;}
.h3{height:57.781250pt;}
.h2{height:67.315156pt;}
.h1{height:82.208000pt;}
.h7{height:1122.628000pt;}
.h0{height:1122.666667pt;}
.w2{width:680.241333pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x7{left:56.733867pt;}
.x10{left:60.100667pt;}
.x15{left:61.191200pt;}
.x8{left:64.748533pt;}
.x16{left:68.296667pt;}
.x14{left:103.934000pt;}
.xc{left:113.426933pt;}
.x1f{left:116.793733pt;}
.x18{left:151.262453pt;}
.x1a{left:160.626933pt;}
.x1d{left:179.587067pt;}
.x1b{left:198.467813pt;}
.x2{left:204.253733pt;}
.x11{left:213.713947pt;}
.x4{left:215.453733pt;}
.xa{left:331.209200pt;}
.x6{left:335.134000pt;}
.x12{left:351.234667pt;}
.xf{left:387.902533pt;}
.x1c{left:392.411467pt;}
.x1{left:428.734133pt;}
.x9{left:451.604933pt;}
.xb{left:485.427600pt;}
.xe{left:508.298267pt;}
.xd{left:521.027733pt;}
.x5{left:540.654400pt;}
.x1e{left:541.761067pt;}
.x19{left:548.379733pt;}
.x13{left:557.427733pt;}
.x3{left:564.005733pt;}
.x17{left:605.073200pt;}
}




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