
    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_e21cac7ead4b28c4518aa846.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.139160;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_396c29261734f2fa962336a8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.145508;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_a25201ba742ba6d0e5fac7e8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e8c37e7e48353f6c4abc0ef6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d966397f3953efdcf83915b7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.895996;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_a0301e083bfc00942b94fd47.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.770508;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_363063accc4d9cc4d882ae9f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8339ce42a6a422b4a3cedac9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.861816;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);}
.m2{transform:matrix(0.250673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250673,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls31{letter-spacing:-1.521345px;}
.ls2b{letter-spacing:-1.477878px;}
.ls2d{letter-spacing:-1.434411px;}
.ls2e{letter-spacing:-1.217076px;}
.ls35{letter-spacing:-1.086675px;}
.ls34{letter-spacing:-1.043208px;}
.ls1d{letter-spacing:-0.927360px;}
.ls1e{letter-spacing:-0.861120px;}
.ls60{letter-spacing:-0.829440px;}
.ls59{letter-spacing:-0.691200px;}
.ls16{letter-spacing:-0.662400px;}
.ls21{letter-spacing:-0.529920px;}
.ls3d{letter-spacing:-0.504000px;}
.ls5c{letter-spacing:-0.483840px;}
.ls3c{letter-spacing:-0.432000px;}
.ls5{letter-spacing:-0.421200px;}
.ls55{letter-spacing:-0.414720px;}
.ls26{letter-spacing:-0.360000px;}
.ls54{letter-spacing:-0.345600px;}
.ls2c{letter-spacing:-0.304269px;}
.ls63{letter-spacing:-0.298800px;}
.ls43{letter-spacing:-0.288000px;}
.ls57{letter-spacing:-0.276480px;}
.ls14{letter-spacing:-0.264960px;}
.ls2f{letter-spacing:-0.260802px;}
.ls9{letter-spacing:-0.252720px;}
.ls61{letter-spacing:-0.239040px;}
.ls27{letter-spacing:-0.216000px;}
.ls5a{letter-spacing:-0.207360px;}
.ls13{letter-spacing:-0.198720px;}
.ls64{letter-spacing:-0.179280px;}
.ls3{letter-spacing:-0.168480px;}
.ls28{letter-spacing:-0.144000px;}
.ls58{letter-spacing:-0.138240px;}
.ls1c{letter-spacing:-0.132480px;}
.ls7{letter-spacing:-0.084240px;}
.ls38{letter-spacing:-0.072000px;}
.ls5e{letter-spacing:-0.069120px;}
.ls15{letter-spacing:-0.066240px;}
.ls2{letter-spacing:0.000000px;}
.lse{letter-spacing:0.066240px;}
.ls24{letter-spacing:0.074440px;}
.ls8{letter-spacing:0.084240px;}
.ls6{letter-spacing:0.131760px;}
.lsf{letter-spacing:0.132480px;}
.ls52{letter-spacing:0.138240px;}
.ls44{letter-spacing:0.144000px;}
.ls46{letter-spacing:0.149760px;}
.ls18{letter-spacing:0.165600px;}
.lsa{letter-spacing:0.168480px;}
.lsc{letter-spacing:0.198720px;}
.ls51{letter-spacing:0.207360px;}
.ls29{letter-spacing:0.216000px;}
.ls65{letter-spacing:0.239040px;}
.ls4b{letter-spacing:0.264960px;}
.ls56{letter-spacing:0.276480px;}
.ls25{letter-spacing:0.288000px;}
.ls5f{letter-spacing:0.298800px;}
.ls4a{letter-spacing:0.331200px;}
.ls4{letter-spacing:0.336960px;}
.ls5b{letter-spacing:0.345600px;}
.ls42{letter-spacing:0.358560px;}
.ls23{letter-spacing:0.360000px;}
.ls36{letter-spacing:0.521604px;}
.ls3f{letter-spacing:0.662400px;}
.ls2a{letter-spacing:0.738939px;}
.lsb{letter-spacing:0.927360px;}
.ls33{letter-spacing:1.130142px;}
.ls32{letter-spacing:1.217076px;}
.ls41{letter-spacing:1.368000px;}
.ls1f{letter-spacing:1.656000px;}
.ls20{letter-spacing:1.689120px;}
.ls30{letter-spacing:2.042949px;}
.ls17{letter-spacing:2.484000px;}
.ls4d{letter-spacing:4.248000px;}
.ls3a{letter-spacing:5.688000px;}
.lsd{letter-spacing:6.756480px;}
.ls45{letter-spacing:7.128000px;}
.ls11{letter-spacing:8.147520px;}
.ls4c{letter-spacing:8.568000px;}
.ls12{letter-spacing:8.876160px;}
.ls39{letter-spacing:9.288000px;}
.ls40{letter-spacing:10.008000px;}
.ls37{letter-spacing:12.888000px;}
.ls19{letter-spacing:16.030080px;}
.ls1b{letter-spacing:17.487360px;}
.ls50{letter-spacing:19.673280px;}
.ls1a{letter-spacing:20.401920px;}
.ls10{letter-spacing:21.130560px;}
.ls22{letter-spacing:21.528000px;}
.ls4f{letter-spacing:103.104000px;}
.ls3b{letter-spacing:112.248000px;}
.ls4e{letter-spacing:123.264000px;}
.ls5d{letter-spacing:162.201600px;}
.ls53{letter-spacing:162.224640px;}
.ls62{letter-spacing:197.984880px;}
.ls47{letter-spacing:289.601280px;}
.ls48{letter-spacing:496.932480px;}
.ls49{letter-spacing:542.312640px;}
.ls1{letter-spacing:840.546720px;}
.ls3e{letter-spacing:1189.283760px;}
.ls0{letter-spacing:1204.403760px;}
.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:-39.659760px;}
.ws0{word-spacing:-25.693200px;}
.ws9{word-spacing:-25.440480px;}
.ws7{word-spacing:-25.272000px;}
.ws8{word-spacing:-25.103520px;}
.ws1{word-spacing:-24.935040px;}
.ws58{word-spacing:-22.032000px;}
.ws8c{word-spacing:-21.960000px;}
.ws8f{word-spacing:-21.888000px;}
.wsbc{word-spacing:-21.816000px;}
.ws8e{word-spacing:-21.672000px;}
.ws7a{word-spacing:-21.600000px;}
.ws7b{word-spacing:-21.528000px;}
.ws79{word-spacing:-21.456000px;}
.ws57{word-spacing:-21.312000px;}
.ws8d{word-spacing:-21.240000px;}
.wsb1{word-spacing:-21.168000px;}
.ws12{word-spacing:-20.004480px;}
.ws32{word-spacing:-19.938240px;}
.ws49{word-spacing:-19.872000px;}
.ws30{word-spacing:-19.805760px;}
.ws10{word-spacing:-19.739520px;}
.ws11{word-spacing:-19.673280px;}
.ws13{word-spacing:-19.275840px;}
.ws31{word-spacing:-19.077120px;}
.wsa6{word-spacing:-18.346320px;}
.wsf0{word-spacing:-18.286560px;}
.wsef{word-spacing:-18.226800px;}
.wsee{word-spacing:-17.808480px;}
.wsd7{word-spacing:-15.897600px;}
.wsd9{word-spacing:-15.621120px;}
.wsd6{word-spacing:-15.344640px;}
.wsb3{word-spacing:-15.301440px;}
.wsd4{word-spacing:-15.275520px;}
.wsb4{word-spacing:-15.235200px;}
.wsd5{word-spacing:-15.206400px;}
.wsd8{word-spacing:-15.137280px;}
.ws5f{word-spacing:-15.126516px;}
.wsb2{word-spacing:-14.970240px;}
.wsb6{word-spacing:-14.904000px;}
.wsb5{word-spacing:-14.705280px;}
.ws5d{word-spacing:-14.213709px;}
.ws5c{word-spacing:-11.562222px;}
.wsc2{word-spacing:-5.472000px;}
.ws94{word-spacing:-4.176000px;}
.ws7c{word-spacing:-4.032000px;}
.ws33{word-spacing:-3.908160px;}
.ws3a{word-spacing:-3.841920px;}
.ws7d{word-spacing:-3.312000px;}
.ws20{word-spacing:-3.179520px;}
.wsb7{word-spacing:-3.168000px;}
.wsaa{word-spacing:-2.952000px;}
.ws63{word-spacing:-2.592000px;}
.wscf{word-spacing:-2.520000px;}
.ws3c{word-spacing:-2.450880px;}
.ws46{word-spacing:-2.384640px;}
.ws64{word-spacing:-1.872000px;}
.ws21{word-spacing:-1.722240px;}
.ws74{word-spacing:-1.217076px;}
.ws86{word-spacing:-1.152000px;}
.ws18{word-spacing:-1.059840px;}
.wsf{word-spacing:-1.010880px;}
.ws17{word-spacing:-0.993600px;}
.wse7{word-spacing:-0.829440px;}
.wse9{word-spacing:-0.760320px;}
.ws60{word-spacing:-0.758160px;}
.ws73{word-spacing:-0.652005px;}
.wsf7{word-spacing:-0.537840px;}
.wsbb{word-spacing:-0.529920px;}
.wsda{word-spacing:-0.505440px;}
.wse0{word-spacing:-0.483840px;}
.ws24{word-spacing:-0.463680px;}
.ws66{word-spacing:-0.432000px;}
.wse8{word-spacing:-0.414720px;}
.wsa0{word-spacing:-0.360000px;}
.wsf3{word-spacing:-0.358560px;}
.wse5{word-spacing:-0.345600px;}
.wsa{word-spacing:-0.336960px;}
.ws2d{word-spacing:-0.331200px;}
.wsf4{word-spacing:-0.298800px;}
.ws7e{word-spacing:-0.288000px;}
.wse2{word-spacing:-0.276480px;}
.ws5{word-spacing:-0.263520px;}
.wsb{word-spacing:-0.252720px;}
.ws98{word-spacing:-0.216000px;}
.wsd{word-spacing:-0.168480px;}
.wse1{word-spacing:-0.138240px;}
.ws36{word-spacing:-0.132480px;}
.ws4{word-spacing:-0.131760px;}
.wsea{word-spacing:-0.119520px;}
.ws6{word-spacing:-0.084240px;}
.wsdd{word-spacing:-0.069120px;}
.ws3{word-spacing:0.000000px;}
.wsba{word-spacing:0.066240px;}
.ws68{word-spacing:0.072000px;}
.wsc{word-spacing:0.084240px;}
.ws3b{word-spacing:0.132480px;}
.wsde{word-spacing:0.138240px;}
.ws67{word-spacing:0.144000px;}
.wsf2{word-spacing:0.179280px;}
.ws16{word-spacing:0.198720px;}
.wsdb{word-spacing:0.207360px;}
.ws87{word-spacing:0.216000px;}
.wsec{word-spacing:0.239040px;}
.wse{word-spacing:0.252720px;}
.ws76{word-spacing:0.260802px;}
.ws28{word-spacing:0.264960px;}
.ws6e{word-spacing:0.288000px;}
.wsf1{word-spacing:0.298800px;}
.ws71{word-spacing:0.304269px;}
.wsdf{word-spacing:0.345600px;}
.ws95{word-spacing:0.360000px;}
.ws1f{word-spacing:0.397440px;}
.wse4{word-spacing:0.414720px;}
.ws97{word-spacing:0.432000px;}
.ws40{word-spacing:0.463680px;}
.wsed{word-spacing:0.483840px;}
.wsa4{word-spacing:0.504000px;}
.ws52{word-spacing:0.529920px;}
.wsdc{word-spacing:0.552960px;}
.wse6{word-spacing:0.622080px;}
.wse3{word-spacing:0.691200px;}
.wseb{word-spacing:0.829440px;}
.ws78{word-spacing:0.869340px;}
.ws3f{word-spacing:0.927360px;}
.wsaf{word-spacing:1.008000px;}
.ws15{word-spacing:1.126080px;}
.wsae{word-spacing:1.152000px;}
.ws70{word-spacing:1.434411px;}
.ws6f{word-spacing:1.477878px;}
.ws72{word-spacing:1.651746px;}
.wsa1{word-spacing:1.728000px;}
.ws4e{word-spacing:1.854720px;}
.wsa2{word-spacing:1.872000px;}
.ws34{word-spacing:1.920960px;}
.ws6b{word-spacing:2.448000px;}
.ws77{word-spacing:2.477619px;}
.wsa3{word-spacing:2.520000px;}
.ws14{word-spacing:2.583360px;}
.ws6d{word-spacing:2.592000px;}
.ws35{word-spacing:2.649600px;}
.ws75{word-spacing:2.912289px;}
.ws6c{word-spacing:3.168000px;}
.ws29{word-spacing:3.312000px;}
.wsf6{word-spacing:3.764880px;}
.wsc0{word-spacing:3.888000px;}
.ws55{word-spacing:4.040640px;}
.ws82{word-spacing:4.608000px;}
.wsbd{word-spacing:4.680000px;}
.ws1b{word-spacing:4.703040px;}
.ws1c{word-spacing:4.769280px;}
.ws81{word-spacing:5.328000px;}
.ws9e{word-spacing:5.472000px;}
.wsad{word-spacing:5.544000px;}
.ws83{word-spacing:6.048000px;}
.ws4b{word-spacing:6.160320px;}
.ws9a{word-spacing:6.192000px;}
.wsa8{word-spacing:6.768000px;}
.ws47{word-spacing:6.888960px;}
.wscb{word-spacing:7.488000px;}
.wsd2{word-spacing:7.560000px;}
.wsd1{word-spacing:7.632000px;}
.wsbe{word-spacing:8.208000px;}
.ws2c{word-spacing:8.346240px;}
.ws2f{word-spacing:8.412480px;}
.ws84{word-spacing:8.928000px;}
.wsbf{word-spacing:9.000000px;}
.ws96{word-spacing:9.072000px;}
.wsc8{word-spacing:9.074880px;}
.wsf5{word-spacing:9.561600px;}
.wsa5{word-spacing:9.648000px;}
.wsd3{word-spacing:9.720000px;}
.ws1d{word-spacing:9.737280px;}
.wsab{word-spacing:10.368000px;}
.ws25{word-spacing:10.995840px;}
.ws27{word-spacing:11.062080px;}
.wsa7{word-spacing:11.088000px;}
.ws26{word-spacing:11.790720px;}
.ws8b{word-spacing:11.808000px;}
.ws22{word-spacing:11.923200px;}
.ws38{word-spacing:11.989440px;}
.ws7f{word-spacing:12.528000px;}
.ws4a{word-spacing:12.651840px;}
.ws8a{word-spacing:13.248000px;}
.ws1e{word-spacing:13.380480px;}
.ws80{word-spacing:13.968000px;}
.ws23{word-spacing:14.109120px;}
.wsc5{word-spacing:14.688000px;}
.ws45{word-spacing:14.837760px;}
.wsb9{word-spacing:15.408000px;}
.ws50{word-spacing:15.500160px;}
.wsc3{word-spacing:16.128000px;}
.ws19{word-spacing:16.228800px;}
.ws37{word-spacing:16.957440px;}
.wsca{word-spacing:17.568000px;}
.wsc7{word-spacing:18.288000px;}
.ws42{word-spacing:18.414720px;}
.ws43{word-spacing:18.480960px;}
.wsc4{word-spacing:19.008000px;}
.ws4f{word-spacing:19.209600px;}
.ws9b{word-spacing:19.728000px;}
.ws3d{word-spacing:19.872000px;}
.ws91{word-spacing:20.448000px;}
.ws2b{word-spacing:20.534400px;}
.ws51{word-spacing:20.600640px;}
.ws90{word-spacing:20.880000px;}
.ws6a{word-spacing:21.168000px;}
.ws2e{word-spacing:21.329280px;}
.wscc{word-spacing:21.888000px;}
.ws1a{word-spacing:21.991680px;}
.wsb0{word-spacing:22.608000px;}
.ws39{word-spacing:23.448960px;}
.wscd{word-spacing:24.048000px;}
.ws2a{word-spacing:24.177600px;}
.ws44{word-spacing:24.243840px;}
.ws41{word-spacing:24.906240px;}
.ws92{word-spacing:25.488000px;}
.wsc9{word-spacing:26.208000px;}
.ws3e{word-spacing:26.297280px;}
.ws89{word-spacing:26.928000px;}
.ws56{word-spacing:27.754560px;}
.ws62{word-spacing:28.368000px;}
.ws61{word-spacing:28.440000px;}
.ws85{word-spacing:29.088000px;}
.ws4c{word-spacing:29.211840px;}
.ws4d{word-spacing:29.278080px;}
.ws65{word-spacing:30.528000px;}
.ws88{word-spacing:30.960000px;}
.ws9f{word-spacing:31.248000px;}
.ws48{word-spacing:32.060160px;}
.wsce{word-spacing:32.688000px;}
.wsc6{word-spacing:33.408000px;}
.wsb8{word-spacing:34.128000px;}
.wsac{word-spacing:34.848000px;}
.ws5e{word-spacing:35.034402px;}
.wsd0{word-spacing:35.568000px;}
.ws53{word-spacing:35.703360px;}
.wsc1{word-spacing:39.168000px;}
.ws93{word-spacing:41.328000px;}
.ws54{word-spacing:45.043200px;}
.ws99{word-spacing:47.808000px;}
.ws69{word-spacing:52.128000px;}
.ws5b{word-spacing:66.187201px;}
.ws9c{word-spacing:111.888000px;}
.ws9d{word-spacing:112.464000px;}
.wsa9{word-spacing:195.912000px;}
.ws59{word-spacing:452.300215px;}
.ws5a{word-spacing:599.405583px;}
._4{margin-left:-3.826656px;}
._5{margin-left:-2.568240px;}
._1{margin-left:-1.263600px;}
._0{width:1.044576px;}
._6{width:2.797344px;}
._c{width:4.420594px;}
._b{width:5.663750px;}
._d{width:6.924293px;}
._14{width:10.011024px;}
._2{width:11.525760px;}
._16{width:13.608000px;}
._17{width:15.614640px;}
._3{width:16.692480px;}
._7{width:18.776448px;}
._8{width:21.242592px;}
._13{width:31.283424px;}
._12{width:87.063586px;}
._f{width:106.099698px;}
._15{width:112.571424px;}
._11{width:145.158755px;}
._10{width:257.342009px;}
._18{width:334.939968px;}
._9{width:446.386172px;}
._a{width:454.327805px;}
._e{width:480.541123px;}
._19{width:531.046080px;}
._1a{width:558.408960px;}
.fc6{color:rgb(17,84,204);}
.fc5{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(50,50,50);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:43.467000px;}
.fs6{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs7{font-size:69.120000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:131.760000px;}
.y198{bottom:-23.220000px;}
.y0{bottom:0.000000px;}
.yfe{bottom:4.500000px;}
.yaa{bottom:7.240378px;}
.ya2{bottom:7.240828px;}
.ya6{bottom:7.242028px;}
.ya8{bottom:16.299600px;}
.ya0{bottom:16.300050px;}
.ya4{bottom:16.301250px;}
.y9e{bottom:18.106228px;}
.yff{bottom:24.660000px;}
.ya9{bottom:25.355250px;}
.ya1{bottom:25.355700px;}
.ya5{bottom:25.356900px;}
.y9c{bottom:27.165450px;}
.y9d{bottom:36.221100px;}
.y104{bottom:44.820000px;}
.y109{bottom:46.620000px;}
.y1{bottom:56.520000px;}
.y146{bottom:119.880000px;}
.y6c{bottom:126.424800px;}
.y4a{bottom:129.252960px;}
.y133{bottom:138.422160px;}
.y120{bottom:138.791160px;}
.y155{bottom:139.860000px;}
.y8a{bottom:142.935120px;}
.ydf{bottom:143.640000px;}
.y145{bottom:151.200000px;}
.y18{bottom:154.116360px;}
.y6b{bottom:155.040480px;}
.y49{bottom:157.868640px;}
.yf5{bottom:163.080000px;}
.y132{bottom:167.220000px;}
.y154{bottom:171.180000px;}
.y89{bottom:171.550800px;}
.yc0{bottom:173.520000px;}
.yde{bottom:174.960000px;}
.y1b2{bottom:177.308280px;}
.y10f{bottom:178.920000px;}
.y144{bottom:182.520000px;}
.y6a{bottom:183.838320px;}
.y11f{bottom:184.322880px;}
.yf4{bottom:194.400000px;}
.y9a{bottom:195.601200px;}
.y48{bottom:195.675120px;}
.y17{bottom:199.648080px;}
.y153{bottom:202.500000px;}
.ydd{bottom:206.280000px;}
.y88{bottom:209.357280px;}
.y10e{bottom:210.420000px;}
.y69{bottom:212.636160px;}
.y143{bottom:213.840000px;}
.ybf{bottom:214.020000px;}
.y11e{bottom:217.808280px;}
.y17d{bottom:218.194560px;}
.y1b1{bottom:222.840000px;}
.y47{bottom:224.472960px;}
.yf3{bottom:225.720000px;}
.y131{bottom:237.600000px;}
.y87{bottom:238.155120px;}
.y17c{bottom:239.258880px;}
.y10d{bottom:241.740000px;}
.y11d{bottom:242.280000px;}
.y152{bottom:242.820000px;}
.y16{bottom:245.179800px;}
.ybe{bottom:245.340000px;}
.ydc{bottom:246.600000px;}
.y68{bottom:250.260480px;}
.y46{bottom:253.088640px;}
.y142{bottom:254.160000px;}
.yf2{bottom:257.040000px;}
.y17b{bottom:260.323200px;}
.y1b0{bottom:266.040000px;}
.y86{bottom:266.770800px;}
.y130{bottom:269.100000px;}
.y151{bottom:274.320000px;}
.ybd{bottom:276.660000px;}
.ydb{bottom:278.100000px;}
.y15{bottom:278.833680px;}
.y67{bottom:279.058320px;}
.y17a{bottom:281.387520px;}
.y45{bottom:281.886480px;}
.y10c{bottom:282.060000px;}
.y11c{bottom:285.300000px;}
.y141{bottom:285.660000px;}
.yf1{bottom:297.540000px;}
.y12f{bottom:300.420000px;}
.y14{bottom:303.136920px;}
.y1af{bottom:304.135200px;}
.y85{bottom:304.577280px;}
.y98{bottom:305.100000px;}
.y150{bottom:305.640000px;}
.y179{bottom:305.873280px;}
.y66{bottom:307.856160px;}
.ybc{bottom:307.980000px;}
.y108{bottom:308.700000px;}
.yda{bottom:309.420000px;}
.y44{bottom:310.684320px;}
.y10b{bottom:315.006480px;}
.y140{bottom:316.980000px;}
.y11b{bottom:325.620000px;}
.y178{bottom:326.937600px;}
.y13{bottom:327.608640px;}
.yf0{bottom:328.860000px;}
.y1ae{bottom:330.414660px;}
.y12e{bottom:331.740000px;}
.y84{bottom:333.375120px;}
.y10a{bottom:335.160000px;}
.y97{bottom:336.420000px;}
.y14f{bottom:336.960000px;}
.y43{bottom:339.300000px;}
.yd9{bottom:340.740000px;}
.y65{bottom:345.480480px;}
.y177{bottom:347.811840px;}
.y13f{bottom:348.300000px;}
.y12{bottom:351.911880px;}
.yef{bottom:360.180000px;}
.y83{bottom:361.990800px;}
.y1ad{bottom:365.508720px;}
.y11a{bottom:365.940000px;}
.y96{bottom:367.920000px;}
.y42{bottom:368.097840px;}
.y14e{bottom:368.280000px;}
.ybb{bottom:370.620000px;}
.y12d{bottom:372.060000px;}
.y176{bottom:372.297600px;}
.y64{bottom:374.278320px;}
.y11{bottom:376.383600px;}
.y13e{bottom:379.620000px;}
.yd8{bottom:381.060000px;}
.y82{bottom:390.788640px;}
.y175{bottom:393.361920px;}
.y107{bottom:395.640000px;}
.y95{bottom:399.240000px;}
.y1ac{bottom:400.602780px;}
.y10{bottom:400.686840px;}
.yba{bottom:402.120000px;}
.yee{bottom:402.846120px;}
.y63{bottom:403.076160px;}
.y12c{bottom:403.380000px;}
.y41{bottom:405.904320px;}
.y119{bottom:406.440000px;}
.y14d{bottom:408.600000px;}
.y13d{bottom:410.940000px;}
.yd7{bottom:412.380000px;}
.y174{bottom:414.426240px;}
.yf{bottom:425.158560px;}
.y81{bottom:428.412960px;}
.y62{bottom:431.691840px;}
.y12b{bottom:434.700000px;}
.y173{bottom:435.490560px;}
.y1ab{bottom:435.696840px;}
.yed{bottom:436.500000px;}
.y14c{bottom:439.920000px;}
.y94{bottom:441.908280px;}
.yb9{bottom:442.440000px;}
.y40{bottom:443.528640px;}
.yd6{bottom:443.700000px;}
.y118{bottom:446.760000px;}
.ye{bottom:449.461800px;}
.y13c{bottom:451.260000px;}
.y106{bottom:451.440000px;}
.y172{bottom:456.554880px;}
.y80{bottom:457.210800px;}
.y61{bottom:460.489680px;}
.y12a{bottom:466.200000px;}
.y1aa{bottom:470.790900px;}
.y14b{bottom:471.420000px;}
.y3f{bottom:472.326480px;}
.yb8{bottom:473.760000px;}
.yd{bottom:473.765040px;}
.yd5{bottom:475.200000px;}
.y171{bottom:477.619200px;}
.yec{bottom:479.520000px;}
.y13b{bottom:482.760000px;}
.y101{bottom:485.280000px;}
.y7f{bottom:486.008640px;}
.y117{bottom:487.080000px;}
.y93{bottom:487.440000px;}
.y60{bottom:489.287520px;}
.y129{bottom:497.520000px;}
.yc{bottom:498.236760px;}
.y170{bottom:498.683520px;}
.y103{bottom:499.866480px;}
.y3e{bottom:501.124320px;}
.y14a{bottom:502.740000px;}
.y1a9{bottom:505.884960px;}
.yd4{bottom:506.520000px;}
.y99{bottom:508.194000px;}
.ya7{bottom:509.100000px;}
.y105{bottom:509.940000px;}
.yeb{bottom:510.840000px;}
.y29{bottom:512.892000px;}
.yb7{bottom:514.080000px;}
.y102{bottom:520.020000px;}
.y16f{bottom:523.169280px;}
.y7e{bottom:523.632960px;}
.y5f{bottom:526.911840px;}
.y116{bottom:527.400000px;}
.y128{bottom:528.840000px;}
.y3d{bottom:529.740000px;}
.y149{bottom:534.060000px;}
.yd3{bottom:537.840000px;}
.y1a8{bottom:540.979020px;}
.yea{bottom:542.160000px;}
.yb{bottom:543.600000px;}
.yb6{bottom:545.400000px;}
.yfd{bottom:546.480000px;}
.y16e{bottom:547.655040px;}
.ya3{bottom:548.943000px;}
.y5e{bottom:555.709680px;}
.y28{bottom:558.613260px;}
.y127{bottom:560.160000px;}
.y100{bottom:561.060000px;}
.y7d{bottom:561.439440px;}
.y148{bottom:565.380000px;}
.y3c{bottom:567.583200px;}
.y115{bottom:567.720000px;}
.yd2{bottom:569.160000px;}
.y16d{bottom:572.140800px;}
.y1a7{bottom:576.252360px;}
.yb5{bottom:576.720000px;}
.ya{bottom:579.769050px;}
.ye9{bottom:582.480000px;}
.y5d{bottom:584.507520px;}
.y9f{bottom:588.789000px;}
.y7c{bottom:590.237280px;}
.y126{bottom:591.480000px;}
.y3b{bottom:596.381040px;}
.y16c{bottom:596.626560px;}
.y147{bottom:596.700000px;}
.yd1{bottom:600.480000px;}
.y27{bottom:604.144980px;}
.y114{bottom:608.040000px;}
.yb4{bottom:608.220000px;}
.yfc{bottom:610.920000px;}
.y1a6{bottom:611.346420px;}
.y5c{bottom:613.123200px;}
.ye8{bottom:613.800000px;}
.y9{bottom:618.111210px;}
.y7b{bottom:618.852960px;}
.y16b{bottom:621.112320px;}
.y125{bottom:622.800000px;}
.y3a{bottom:624.996720px;}
.y9b{bottom:628.635000px;}
.y1b3{bottom:635.220000px;}
.y1a5{bottom:637.446600px;}
.y113{bottom:638.100000px;}
.y13a{bottom:639.360000px;}
.yb3{bottom:639.540000px;}
.yd0{bottom:640.800000px;}
.y5b{bottom:641.921040px;}
.ye7{bottom:645.300000px;}
.y16a{bottom:645.770880px;}
.y7a{bottom:647.650800px;}
.y26{bottom:649.676700px;}
.y17e{bottom:650.160000px;}
.y39{bottom:653.794560px;}
.y124{bottom:654.300000px;}
.y8{bottom:656.453370px;}
.y112{bottom:658.980000px;}
.y169{bottom:670.256640px;}
.y5a{bottom:670.718880px;}
.yb2{bottom:670.860000px;}
.ycf{bottom:672.300000px;}
.y1a4{bottom:672.540660px;}
.y79{bottom:676.448640px;}
.y111{bottom:679.860000px;}
.yfb{bottom:681.300000px;}
.ye6{bottom:685.620000px;}
.y38{bottom:691.601040px;}
.y123{bottom:694.620000px;}
.y168{bottom:694.742400px;}
.y7{bottom:694.795530px;}
.y25{bottom:695.208420px;}
.y59{bottom:699.334560px;}
.yb1{bottom:702.180000px;}
.yce{bottom:703.620000px;}
.y78{bottom:705.064320px;}
.y1a3{bottom:707.634720px;}
.yfa{bottom:712.620000px;}
.ye5{bottom:716.940000px;}
.y167{bottom:719.228160px;}
.y110{bottom:720.180000px;}
.y37{bottom:720.216720px;}
.y122{bottom:725.940000px;}
.y58{bottom:728.132400px;}
.y6{bottom:733.137690px;}
.y139{bottom:733.500000px;}
.y77{bottom:733.862160px;}
.ycd{bottom:734.940000px;}
.y24{bottom:740.740140px;}
.yb0{bottom:742.500000px;}
.y1a2{bottom:742.728780px;}
.y166{bottom:743.713920px;}
.yf9{bottom:743.940000px;}
.y92{bottom:748.260000px;}
.y36{bottom:749.014560px;}
.ye4{bottom:757.260000px;}
.y76{bottom:762.660000px;}
.y138{bottom:764.820000px;}
.y57{bottom:765.756720px;}
.ycc{bottom:766.260000px;}
.y165{bottom:768.199680px;}
.y5{bottom:771.479850px;}
.y197{bottom:771.660000px;}
.yf8{bottom:775.260000px;}
.y35{bottom:777.812400px;}
.y1a1{bottom:777.822840px;}
.yaf{bottom:782.820000px;}
.y23{bottom:786.271860px;}
.y91{bottom:788.580000px;}
.y164{bottom:792.858240px;}
.y196{bottom:794.027160px;}
.y56{bottom:794.554560px;}
.y137{bottom:796.140000px;}
.ycb{bottom:797.580000px;}
.y18d{bottom:799.929900px;}
.y75{bottom:804.068280px;}
.y34{bottom:806.428080px;}
.yf7{bottom:806.580000px;}
.y1a0{bottom:813.096180px;}
.y163{bottom:813.922560px;}
.yae{bottom:823.320000px;}
.y55{bottom:823.352400px;}
.y136{bottom:827.460000px;}
.y4{bottom:828.189180px;}
.y90{bottom:828.900000px;}
.y22{bottom:831.993120px;}
.y162{bottom:834.796800px;}
.y33{bottom:835.225920px;}
.yca{bottom:837.900000px;}
.y195{bottom:839.558880px;}
.y18c{bottom:843.814080px;}
.y19f{bottom:848.190240px;}
.y74{bottom:849.600000px;}
.y54{bottom:851.968080px;}
.yad{bottom:854.640000px;}
.y161{bottom:855.861120px;}
.y135{bottom:858.960000px;}
.y8f{bottom:860.400000px;}
.y32{bottom:864.023760px;}
.yc9{bottom:869.400000px;}
.y3{bottom:873.720900px;}
.y18b{bottom:875.315520px;}
.y160{bottom:876.925440px;}
.y21{bottom:877.524840px;}
.yf6{bottom:878.400000px;}
.y53{bottom:880.765920px;}
.y19e{bottom:883.284300px;}
.y194{bottom:885.090600px;}
.y73{bottom:891.546480px;}
.y8e{bottom:891.720000px;}
.y31{bottom:892.639440px;}
.yac{bottom:894.960000px;}
.y15f{bottom:897.989760px;}
.y134{bottom:899.280000px;}
.yc8{bottom:900.720000px;}
.y18a{bottom:905.382720px;}
.y19d{bottom:909.384480px;}
.y52{bottom:909.563760px;}
.ye3{bottom:909.720000px;}
.y2{bottom:910.260000px;}
.y15e{bottom:919.054080px;}
.y72{bottom:920.162160px;}
.y30{bottom:921.437280px;}
.y8d{bottom:923.040000px;}
.y20{bottom:923.056560px;}
.y189{bottom:926.447040px;}
.y193{bottom:930.811860px;}
.yc7{bottom:932.040000px;}
.yab{bottom:933.120000px;}
.y51{bottom:938.179440px;}
.y15d{bottom:940.118400px;}
.ye2{bottom:941.040000px;}
.y19c{bottom:944.478540px;}
.y188{bottom:947.511360px;}
.y71{bottom:948.960000px;}
.y2f{bottom:950.235120px;}
.y15c{bottom:961.182720px;}
.y8c{bottom:965.708280px;}
.y50{bottom:966.977280px;}
.y187{bottom:968.575680px;}
.y1f{bottom:968.588280px;}
.yc6{bottom:972.360000px;}
.y192{bottom:976.343580px;}
.y2e{bottom:978.850800px;}
.y19b{bottom:979.572600px;}
.y15b{bottom:982.247040px;}
.y70{bottom:986.766480px;}
.y186{bottom:989.648640px;}
.y4f{bottom:995.775120px;}
.y15a{bottom:1003.311360px;}
.yc5{bottom:1003.680000px;}
.y2d{bottom:1007.648640px;}
.y8b{bottom:1011.240000px;}
.y185{bottom:1012.294080px;}
.y121{bottom:1012.680000px;}
.y1e{bottom:1014.120000px;}
.y19a{bottom:1014.666660px;}
.y6f{bottom:1015.382160px;}
.y191{bottom:1021.875300px;}
.y159{bottom:1024.375680px;}
.y4e{bottom:1024.390800px;}
.y184{bottom:1033.358400px;}
.ye1{bottom:1035.000000px;}
.y2c{bottom:1036.264320px;}
.yc4{bottom:1044.000000px;}
.y6e{bottom:1044.180000px;}
.y158{bottom:1045.440000px;}
.y199{bottom:1049.940000px;}
.y4d{bottom:1053.188640px;}
.y183{bottom:1054.422720px;}
.y1d{bottom:1056.060000px;}
.y2b{bottom:1065.062160px;}
.ye0{bottom:1066.500000px;}
.y190{bottom:1067.407020px;}
.y157{bottom:1067.580000px;}
.y6d{bottom:1072.977840px;}
.y182{bottom:1075.487040px;}
.yc3{bottom:1075.500000px;}
.y4c{bottom:1081.986480px;}
.y1a{bottom:1089.728280px;}
.y156{bottom:1092.420000px;}
.y2a{bottom:1093.860000px;}
.y181{bottom:1096.551360px;}
.y1c{bottom:1097.460000px;}
.yc2{bottom:1106.820000px;}
.y4b{bottom:1110.602160px;}
.y18f{bottom:1112.938740px;}
.y180{bottom:1117.615680px;}
.y19{bottom:1135.260000px;}
.yc1{bottom:1138.140000px;}
.y17f{bottom:1138.680000px;}
.y1b{bottom:1139.400000px;}
.y18e{bottom:1158.660000px;}
.hf{height:38.940000px;}
.hc{height:39.858899px;}
.h11{height:40.320000px;}
.he{height:40.707864px;}
.h10{height:40.708464px;}
.h12{height:47.545312px;}
.h18{height:49.612500px;}
.h1a{height:49.716180px;}
.h19{height:50.186250px;}
.h16{height:51.679688px;}
.h15{height:54.773438px;}
.h1d{height:54.799453px;}
.h1e{height:55.966641px;}
.hd{height:59.766000px;}
.h13{height:60.480000px;}
.h7{height:60.741562px;}
.h17{height:61.164492px;}
.h1b{height:61.268172px;}
.h6{height:62.035312px;}
.h14{height:64.078500px;}
.ha{height:66.023438px;}
.h8{height:67.256887px;}
.h9{height:67.429688px;}
.h2{height:77.247422px;}
.h5{height:78.892734px;}
.h3{height:120.822891px;}
.h4{height:123.396328px;}
.hb{height:216.429000px;}
.h1c{height:415.800000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w6{width:133.200000px;}
.w4{width:137.109000px;}
.w7{width:155.701500px;}
.w3{width:157.084500px;}
.w5{width:197.281500px;}
.w8{width:718.920000px;}
.w2{width:841.717500px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x19{left:1.816500px;}
.x1e{left:4.860000px;}
.x27{left:18.360000px;}
.x17{left:32.407500px;}
.x20{left:35.640000px;}
.x29{left:48.600000px;}
.x18{left:53.572650px;}
.x31{left:90.540000px;}
.x1{left:135.000000px;}
.x6{left:141.310620px;}
.x2{left:145.260000px;}
.x2f{left:160.021440px;}
.x12{left:162.042480px;}
.x5{left:175.140000px;}
.x10{left:182.137500px;}
.x7{left:183.803220px;}
.x13{left:189.051840px;}
.x9{left:194.080500px;}
.xf{left:195.300000px;}
.x2b{left:216.000000px;}
.xb{left:233.280000px;}
.x11{left:236.520000px;}
.x8{left:251.857260px;}
.x2c{left:293.760000px;}
.xd{left:302.580000px;}
.x1c{left:310.537500px;}
.x14{left:321.128280px;}
.x16{left:323.819280px;}
.x3{left:325.449360px;}
.x1f{left:333.360000px;}
.x1a{left:341.128500px;}
.x22{left:353.340000px;}
.x15{left:356.588640px;}
.x32{left:359.460000px;}
.x23{left:370.794240px;}
.xa{left:377.128080px;}
.xc{left:378.720360px;}
.x2a{left:395.820000px;}
.x33{left:406.620000px;}
.x2d{left:409.500000px;}
.xe{left:414.180000px;}
.x4{left:446.249520px;}
.x1b{left:448.554000px;}
.x30{left:450.000000px;}
.x2e{left:458.640000px;}
.x24{left:498.057840px;}
.x25{left:515.694240px;}
.x21{left:543.240000px;}
.x26{left:622.800000px;}
.x28{left:657.360000px;}
.x1d{left:743.220000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls31{letter-spacing:-1.352307pt;}
.ls2b{letter-spacing:-1.313669pt;}
.ls2d{letter-spacing:-1.275032pt;}
.ls2e{letter-spacing:-1.081845pt;}
.ls35{letter-spacing:-0.965933pt;}
.ls34{letter-spacing:-0.927296pt;}
.ls1d{letter-spacing:-0.824320pt;}
.ls1e{letter-spacing:-0.765440pt;}
.ls60{letter-spacing:-0.737280pt;}
.ls59{letter-spacing:-0.614400pt;}
.ls16{letter-spacing:-0.588800pt;}
.ls21{letter-spacing:-0.471040pt;}
.ls3d{letter-spacing:-0.448000pt;}
.ls5c{letter-spacing:-0.430080pt;}
.ls3c{letter-spacing:-0.384000pt;}
.ls5{letter-spacing:-0.374400pt;}
.ls55{letter-spacing:-0.368640pt;}
.ls26{letter-spacing:-0.320000pt;}
.ls54{letter-spacing:-0.307200pt;}
.ls2c{letter-spacing:-0.270461pt;}
.ls63{letter-spacing:-0.265600pt;}
.ls43{letter-spacing:-0.256000pt;}
.ls57{letter-spacing:-0.245760pt;}
.ls14{letter-spacing:-0.235520pt;}
.ls2f{letter-spacing:-0.231824pt;}
.ls9{letter-spacing:-0.224640pt;}
.ls61{letter-spacing:-0.212480pt;}
.ls27{letter-spacing:-0.192000pt;}
.ls5a{letter-spacing:-0.184320pt;}
.ls13{letter-spacing:-0.176640pt;}
.ls64{letter-spacing:-0.159360pt;}
.ls3{letter-spacing:-0.149760pt;}
.ls28{letter-spacing:-0.128000pt;}
.ls58{letter-spacing:-0.122880pt;}
.ls1c{letter-spacing:-0.117760pt;}
.ls7{letter-spacing:-0.074880pt;}
.ls38{letter-spacing:-0.064000pt;}
.ls5e{letter-spacing:-0.061440pt;}
.ls15{letter-spacing:-0.058880pt;}
.ls2{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.058880pt;}
.ls24{letter-spacing:0.066169pt;}
.ls8{letter-spacing:0.074880pt;}
.ls6{letter-spacing:0.117120pt;}
.lsf{letter-spacing:0.117760pt;}
.ls52{letter-spacing:0.122880pt;}
.ls44{letter-spacing:0.128000pt;}
.ls46{letter-spacing:0.133120pt;}
.ls18{letter-spacing:0.147200pt;}
.lsa{letter-spacing:0.149760pt;}
.lsc{letter-spacing:0.176640pt;}
.ls51{letter-spacing:0.184320pt;}
.ls29{letter-spacing:0.192000pt;}
.ls65{letter-spacing:0.212480pt;}
.ls4b{letter-spacing:0.235520pt;}
.ls56{letter-spacing:0.245760pt;}
.ls25{letter-spacing:0.256000pt;}
.ls5f{letter-spacing:0.265600pt;}
.ls4a{letter-spacing:0.294400pt;}
.ls4{letter-spacing:0.299520pt;}
.ls5b{letter-spacing:0.307200pt;}
.ls42{letter-spacing:0.318720pt;}
.ls23{letter-spacing:0.320000pt;}
.ls36{letter-spacing:0.463648pt;}
.ls3f{letter-spacing:0.588800pt;}
.ls2a{letter-spacing:0.656835pt;}
.lsb{letter-spacing:0.824320pt;}
.ls33{letter-spacing:1.004571pt;}
.ls32{letter-spacing:1.081845pt;}
.ls41{letter-spacing:1.216000pt;}
.ls1f{letter-spacing:1.472000pt;}
.ls20{letter-spacing:1.501440pt;}
.ls30{letter-spacing:1.815955pt;}
.ls17{letter-spacing:2.208000pt;}
.ls4d{letter-spacing:3.776000pt;}
.ls3a{letter-spacing:5.056000pt;}
.lsd{letter-spacing:6.005760pt;}
.ls45{letter-spacing:6.336000pt;}
.ls11{letter-spacing:7.242240pt;}
.ls4c{letter-spacing:7.616000pt;}
.ls12{letter-spacing:7.889920pt;}
.ls39{letter-spacing:8.256000pt;}
.ls40{letter-spacing:8.896000pt;}
.ls37{letter-spacing:11.456000pt;}
.ls19{letter-spacing:14.248960pt;}
.ls1b{letter-spacing:15.544320pt;}
.ls50{letter-spacing:17.487360pt;}
.ls1a{letter-spacing:18.135040pt;}
.ls10{letter-spacing:18.782720pt;}
.ls22{letter-spacing:19.136000pt;}
.ls4f{letter-spacing:91.648000pt;}
.ls3b{letter-spacing:99.776000pt;}
.ls4e{letter-spacing:109.568000pt;}
.ls5d{letter-spacing:144.179200pt;}
.ls53{letter-spacing:144.199680pt;}
.ls62{letter-spacing:175.986560pt;}
.ls47{letter-spacing:257.423360pt;}
.ls48{letter-spacing:441.717760pt;}
.ls49{letter-spacing:482.055680pt;}
.ls1{letter-spacing:747.152640pt;}
.ls3e{letter-spacing:1057.141120pt;}
.ls0{letter-spacing:1070.581120pt;}
.ws2{word-spacing:-35.253120pt;}
.ws0{word-spacing:-22.838400pt;}
.ws9{word-spacing:-22.613760pt;}
.ws7{word-spacing:-22.464000pt;}
.ws8{word-spacing:-22.314240pt;}
.ws1{word-spacing:-22.164480pt;}
.ws58{word-spacing:-19.584000pt;}
.ws8c{word-spacing:-19.520000pt;}
.ws8f{word-spacing:-19.456000pt;}
.wsbc{word-spacing:-19.392000pt;}
.ws8e{word-spacing:-19.264000pt;}
.ws7a{word-spacing:-19.200000pt;}
.ws7b{word-spacing:-19.136000pt;}
.ws79{word-spacing:-19.072000pt;}
.ws57{word-spacing:-18.944000pt;}
.ws8d{word-spacing:-18.880000pt;}
.wsb1{word-spacing:-18.816000pt;}
.ws12{word-spacing:-17.781760pt;}
.ws32{word-spacing:-17.722880pt;}
.ws49{word-spacing:-17.664000pt;}
.ws30{word-spacing:-17.605120pt;}
.ws10{word-spacing:-17.546240pt;}
.ws11{word-spacing:-17.487360pt;}
.ws13{word-spacing:-17.134080pt;}
.ws31{word-spacing:-16.957440pt;}
.wsa6{word-spacing:-16.307840pt;}
.wsf0{word-spacing:-16.254720pt;}
.wsef{word-spacing:-16.201600pt;}
.wsee{word-spacing:-15.829760pt;}
.wsd7{word-spacing:-14.131200pt;}
.wsd9{word-spacing:-13.885440pt;}
.wsd6{word-spacing:-13.639680pt;}
.wsb3{word-spacing:-13.601280pt;}
.wsd4{word-spacing:-13.578240pt;}
.wsb4{word-spacing:-13.542400pt;}
.wsd5{word-spacing:-13.516800pt;}
.wsd8{word-spacing:-13.455360pt;}
.ws5f{word-spacing:-13.445792pt;}
.wsb2{word-spacing:-13.306880pt;}
.wsb6{word-spacing:-13.248000pt;}
.wsb5{word-spacing:-13.071360pt;}
.ws5d{word-spacing:-12.634408pt;}
.ws5c{word-spacing:-10.277531pt;}
.wsc2{word-spacing:-4.864000pt;}
.ws94{word-spacing:-3.712000pt;}
.ws7c{word-spacing:-3.584000pt;}
.ws33{word-spacing:-3.473920pt;}
.ws3a{word-spacing:-3.415040pt;}
.ws7d{word-spacing:-2.944000pt;}
.ws20{word-spacing:-2.826240pt;}
.wsb7{word-spacing:-2.816000pt;}
.wsaa{word-spacing:-2.624000pt;}
.ws63{word-spacing:-2.304000pt;}
.wscf{word-spacing:-2.240000pt;}
.ws3c{word-spacing:-2.178560pt;}
.ws46{word-spacing:-2.119680pt;}
.ws64{word-spacing:-1.664000pt;}
.ws21{word-spacing:-1.530880pt;}
.ws74{word-spacing:-1.081845pt;}
.ws86{word-spacing:-1.024000pt;}
.ws18{word-spacing:-0.942080pt;}
.wsf{word-spacing:-0.898560pt;}
.ws17{word-spacing:-0.883200pt;}
.wse7{word-spacing:-0.737280pt;}
.wse9{word-spacing:-0.675840pt;}
.ws60{word-spacing:-0.673920pt;}
.ws73{word-spacing:-0.579560pt;}
.wsf7{word-spacing:-0.478080pt;}
.wsbb{word-spacing:-0.471040pt;}
.wsda{word-spacing:-0.449280pt;}
.wse0{word-spacing:-0.430080pt;}
.ws24{word-spacing:-0.412160pt;}
.ws66{word-spacing:-0.384000pt;}
.wse8{word-spacing:-0.368640pt;}
.wsa0{word-spacing:-0.320000pt;}
.wsf3{word-spacing:-0.318720pt;}
.wse5{word-spacing:-0.307200pt;}
.wsa{word-spacing:-0.299520pt;}
.ws2d{word-spacing:-0.294400pt;}
.wsf4{word-spacing:-0.265600pt;}
.ws7e{word-spacing:-0.256000pt;}
.wse2{word-spacing:-0.245760pt;}
.ws5{word-spacing:-0.234240pt;}
.wsb{word-spacing:-0.224640pt;}
.ws98{word-spacing:-0.192000pt;}
.wsd{word-spacing:-0.149760pt;}
.wse1{word-spacing:-0.122880pt;}
.ws36{word-spacing:-0.117760pt;}
.ws4{word-spacing:-0.117120pt;}
.wsea{word-spacing:-0.106240pt;}
.ws6{word-spacing:-0.074880pt;}
.wsdd{word-spacing:-0.061440pt;}
.ws3{word-spacing:0.000000pt;}
.wsba{word-spacing:0.058880pt;}
.ws68{word-spacing:0.064000pt;}
.wsc{word-spacing:0.074880pt;}
.ws3b{word-spacing:0.117760pt;}
.wsde{word-spacing:0.122880pt;}
.ws67{word-spacing:0.128000pt;}
.wsf2{word-spacing:0.159360pt;}
.ws16{word-spacing:0.176640pt;}
.wsdb{word-spacing:0.184320pt;}
.ws87{word-spacing:0.192000pt;}
.wsec{word-spacing:0.212480pt;}
.wse{word-spacing:0.224640pt;}
.ws76{word-spacing:0.231824pt;}
.ws28{word-spacing:0.235520pt;}
.ws6e{word-spacing:0.256000pt;}
.wsf1{word-spacing:0.265600pt;}
.ws71{word-spacing:0.270461pt;}
.wsdf{word-spacing:0.307200pt;}
.ws95{word-spacing:0.320000pt;}
.ws1f{word-spacing:0.353280pt;}
.wse4{word-spacing:0.368640pt;}
.ws97{word-spacing:0.384000pt;}
.ws40{word-spacing:0.412160pt;}
.wsed{word-spacing:0.430080pt;}
.wsa4{word-spacing:0.448000pt;}
.ws52{word-spacing:0.471040pt;}
.wsdc{word-spacing:0.491520pt;}
.wse6{word-spacing:0.552960pt;}
.wse3{word-spacing:0.614400pt;}
.wseb{word-spacing:0.737280pt;}
.ws78{word-spacing:0.772747pt;}
.ws3f{word-spacing:0.824320pt;}
.wsaf{word-spacing:0.896000pt;}
.ws15{word-spacing:1.000960pt;}
.wsae{word-spacing:1.024000pt;}
.ws70{word-spacing:1.275032pt;}
.ws6f{word-spacing:1.313669pt;}
.ws72{word-spacing:1.468219pt;}
.wsa1{word-spacing:1.536000pt;}
.ws4e{word-spacing:1.648640pt;}
.wsa2{word-spacing:1.664000pt;}
.ws34{word-spacing:1.707520pt;}
.ws6b{word-spacing:2.176000pt;}
.ws77{word-spacing:2.202328pt;}
.wsa3{word-spacing:2.240000pt;}
.ws14{word-spacing:2.296320pt;}
.ws6d{word-spacing:2.304000pt;}
.ws35{word-spacing:2.355200pt;}
.ws75{word-spacing:2.588701pt;}
.ws6c{word-spacing:2.816000pt;}
.ws29{word-spacing:2.944000pt;}
.wsf6{word-spacing:3.346560pt;}
.wsc0{word-spacing:3.456000pt;}
.ws55{word-spacing:3.591680pt;}
.ws82{word-spacing:4.096000pt;}
.wsbd{word-spacing:4.160000pt;}
.ws1b{word-spacing:4.180480pt;}
.ws1c{word-spacing:4.239360pt;}
.ws81{word-spacing:4.736000pt;}
.ws9e{word-spacing:4.864000pt;}
.wsad{word-spacing:4.928000pt;}
.ws83{word-spacing:5.376000pt;}
.ws4b{word-spacing:5.475840pt;}
.ws9a{word-spacing:5.504000pt;}
.wsa8{word-spacing:6.016000pt;}
.ws47{word-spacing:6.123520pt;}
.wscb{word-spacing:6.656000pt;}
.wsd2{word-spacing:6.720000pt;}
.wsd1{word-spacing:6.784000pt;}
.wsbe{word-spacing:7.296000pt;}
.ws2c{word-spacing:7.418880pt;}
.ws2f{word-spacing:7.477760pt;}
.ws84{word-spacing:7.936000pt;}
.wsbf{word-spacing:8.000000pt;}
.ws96{word-spacing:8.064000pt;}
.wsc8{word-spacing:8.066560pt;}
.wsf5{word-spacing:8.499200pt;}
.wsa5{word-spacing:8.576000pt;}
.wsd3{word-spacing:8.640000pt;}
.ws1d{word-spacing:8.655360pt;}
.wsab{word-spacing:9.216000pt;}
.ws25{word-spacing:9.774080pt;}
.ws27{word-spacing:9.832960pt;}
.wsa7{word-spacing:9.856000pt;}
.ws26{word-spacing:10.480640pt;}
.ws8b{word-spacing:10.496000pt;}
.ws22{word-spacing:10.598400pt;}
.ws38{word-spacing:10.657280pt;}
.ws7f{word-spacing:11.136000pt;}
.ws4a{word-spacing:11.246080pt;}
.ws8a{word-spacing:11.776000pt;}
.ws1e{word-spacing:11.893760pt;}
.ws80{word-spacing:12.416000pt;}
.ws23{word-spacing:12.541440pt;}
.wsc5{word-spacing:13.056000pt;}
.ws45{word-spacing:13.189120pt;}
.wsb9{word-spacing:13.696000pt;}
.ws50{word-spacing:13.777920pt;}
.wsc3{word-spacing:14.336000pt;}
.ws19{word-spacing:14.425600pt;}
.ws37{word-spacing:15.073280pt;}
.wsca{word-spacing:15.616000pt;}
.wsc7{word-spacing:16.256000pt;}
.ws42{word-spacing:16.368640pt;}
.ws43{word-spacing:16.427520pt;}
.wsc4{word-spacing:16.896000pt;}
.ws4f{word-spacing:17.075200pt;}
.ws9b{word-spacing:17.536000pt;}
.ws3d{word-spacing:17.664000pt;}
.ws91{word-spacing:18.176000pt;}
.ws2b{word-spacing:18.252800pt;}
.ws51{word-spacing:18.311680pt;}
.ws90{word-spacing:18.560000pt;}
.ws6a{word-spacing:18.816000pt;}
.ws2e{word-spacing:18.959360pt;}
.wscc{word-spacing:19.456000pt;}
.ws1a{word-spacing:19.548160pt;}
.wsb0{word-spacing:20.096000pt;}
.ws39{word-spacing:20.843520pt;}
.wscd{word-spacing:21.376000pt;}
.ws2a{word-spacing:21.491200pt;}
.ws44{word-spacing:21.550080pt;}
.ws41{word-spacing:22.138880pt;}
.ws92{word-spacing:22.656000pt;}
.wsc9{word-spacing:23.296000pt;}
.ws3e{word-spacing:23.375360pt;}
.ws89{word-spacing:23.936000pt;}
.ws56{word-spacing:24.670720pt;}
.ws62{word-spacing:25.216000pt;}
.ws61{word-spacing:25.280000pt;}
.ws85{word-spacing:25.856000pt;}
.ws4c{word-spacing:25.966080pt;}
.ws4d{word-spacing:26.024960pt;}
.ws65{word-spacing:27.136000pt;}
.ws88{word-spacing:27.520000pt;}
.ws9f{word-spacing:27.776000pt;}
.ws48{word-spacing:28.497920pt;}
.wsce{word-spacing:29.056000pt;}
.wsc6{word-spacing:29.696000pt;}
.wsb8{word-spacing:30.336000pt;}
.wsac{word-spacing:30.976000pt;}
.ws5e{word-spacing:31.141691pt;}
.wsd0{word-spacing:31.616000pt;}
.ws53{word-spacing:31.736320pt;}
.wsc1{word-spacing:34.816000pt;}
.ws93{word-spacing:36.736000pt;}
.ws54{word-spacing:40.038400pt;}
.ws99{word-spacing:42.496000pt;}
.ws69{word-spacing:46.336000pt;}
.ws5b{word-spacing:58.833067pt;}
.ws9c{word-spacing:99.456000pt;}
.ws9d{word-spacing:99.968000pt;}
.wsa9{word-spacing:174.144000pt;}
.ws59{word-spacing:402.044636pt;}
.ws5a{word-spacing:532.804963pt;}
._4{margin-left:-3.401472pt;}
._5{margin-left:-2.282880pt;}
._1{margin-left:-1.123200pt;}
._0{width:0.928512pt;}
._6{width:2.486528pt;}
._c{width:3.929417pt;}
._b{width:5.034445pt;}
._d{width:6.154927pt;}
._14{width:8.898688pt;}
._2{width:10.245120pt;}
._16{width:12.096000pt;}
._17{width:13.879680pt;}
._3{width:14.837760pt;}
._7{width:16.690176pt;}
._8{width:18.882304pt;}
._13{width:27.807488pt;}
._12{width:77.389854pt;}
._f{width:94.310843pt;}
._15{width:100.063488pt;}
._11{width:129.030005pt;}
._10{width:228.748453pt;}
._18{width:297.724416pt;}
._9{width:396.787708pt;}
._a{width:403.846938pt;}
._e{width:427.147665pt;}
._19{width:472.040960pt;}
._1a{width:496.363520pt;}
.fs5{font-size:38.637333pt;}
.fs6{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs7{font-size:61.440000pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:117.120000pt;}
.y198{bottom:-20.640000pt;}
.y0{bottom:0.000000pt;}
.yfe{bottom:4.000000pt;}
.yaa{bottom:6.435891pt;}
.ya2{bottom:6.436291pt;}
.ya6{bottom:6.437358pt;}
.ya8{bottom:14.488533pt;}
.ya0{bottom:14.488933pt;}
.ya4{bottom:14.490000pt;}
.y9e{bottom:16.094425pt;}
.yff{bottom:21.920000pt;}
.ya9{bottom:22.538000pt;}
.ya1{bottom:22.538400pt;}
.ya5{bottom:22.539467pt;}
.y9c{bottom:24.147067pt;}
.y9d{bottom:32.196533pt;}
.y104{bottom:39.840000pt;}
.y109{bottom:41.440000pt;}
.y1{bottom:50.240000pt;}
.y146{bottom:106.560000pt;}
.y6c{bottom:112.377600pt;}
.y4a{bottom:114.891520pt;}
.y133{bottom:123.041920pt;}
.y120{bottom:123.369920pt;}
.y155{bottom:124.320000pt;}
.y8a{bottom:127.053440pt;}
.ydf{bottom:127.680000pt;}
.y145{bottom:134.400000pt;}
.y18{bottom:136.992320pt;}
.y6b{bottom:137.813760pt;}
.y49{bottom:140.327680pt;}
.yf5{bottom:144.960000pt;}
.y132{bottom:148.640000pt;}
.y154{bottom:152.160000pt;}
.y89{bottom:152.489600pt;}
.yc0{bottom:154.240000pt;}
.yde{bottom:155.520000pt;}
.y1b2{bottom:157.607360pt;}
.y10f{bottom:159.040000pt;}
.y144{bottom:162.240000pt;}
.y6a{bottom:163.411840pt;}
.y11f{bottom:163.842560pt;}
.yf4{bottom:172.800000pt;}
.y9a{bottom:173.867733pt;}
.y48{bottom:173.933440pt;}
.y17{bottom:177.464960pt;}
.y153{bottom:180.000000pt;}
.ydd{bottom:183.360000pt;}
.y88{bottom:186.095360pt;}
.y10e{bottom:187.040000pt;}
.y69{bottom:189.009920pt;}
.y143{bottom:190.080000pt;}
.ybf{bottom:190.240000pt;}
.y11e{bottom:193.607360pt;}
.y17d{bottom:193.950720pt;}
.y1b1{bottom:198.080000pt;}
.y47{bottom:199.531520pt;}
.yf3{bottom:200.640000pt;}
.y131{bottom:211.200000pt;}
.y87{bottom:211.693440pt;}
.y17c{bottom:212.674560pt;}
.y10d{bottom:214.880000pt;}
.y11d{bottom:215.360000pt;}
.y152{bottom:215.840000pt;}
.y16{bottom:217.937600pt;}
.ybe{bottom:218.080000pt;}
.ydc{bottom:219.200000pt;}
.y68{bottom:222.453760pt;}
.y46{bottom:224.967680pt;}
.y142{bottom:225.920000pt;}
.yf2{bottom:228.480000pt;}
.y17b{bottom:231.398400pt;}
.y1b0{bottom:236.480000pt;}
.y86{bottom:237.129600pt;}
.y130{bottom:239.200000pt;}
.y151{bottom:243.840000pt;}
.ybd{bottom:245.920000pt;}
.ydb{bottom:247.200000pt;}
.y15{bottom:247.852160pt;}
.y67{bottom:248.051840pt;}
.y17a{bottom:250.122240pt;}
.y45{bottom:250.565760pt;}
.y10c{bottom:250.720000pt;}
.y11c{bottom:253.600000pt;}
.y141{bottom:253.920000pt;}
.yf1{bottom:264.480000pt;}
.y12f{bottom:267.040000pt;}
.y14{bottom:269.455040pt;}
.y1af{bottom:270.342400pt;}
.y85{bottom:270.735360pt;}
.y98{bottom:271.200000pt;}
.y150{bottom:271.680000pt;}
.y179{bottom:271.887360pt;}
.y66{bottom:273.649920pt;}
.ybc{bottom:273.760000pt;}
.y108{bottom:274.400000pt;}
.yda{bottom:275.040000pt;}
.y44{bottom:276.163840pt;}
.y10b{bottom:280.005760pt;}
.y140{bottom:281.760000pt;}
.y11b{bottom:289.440000pt;}
.y178{bottom:290.611200pt;}
.y13{bottom:291.207680pt;}
.yf0{bottom:292.320000pt;}
.y1ae{bottom:293.701920pt;}
.y12e{bottom:294.880000pt;}
.y84{bottom:296.333440pt;}
.y10a{bottom:297.920000pt;}
.y97{bottom:299.040000pt;}
.y14f{bottom:299.520000pt;}
.y43{bottom:301.600000pt;}
.yd9{bottom:302.880000pt;}
.y65{bottom:307.093760pt;}
.y177{bottom:309.166080pt;}
.y13f{bottom:309.600000pt;}
.y12{bottom:312.810560pt;}
.yef{bottom:320.160000pt;}
.y83{bottom:321.769600pt;}
.y1ad{bottom:324.896640pt;}
.y11a{bottom:325.280000pt;}
.y96{bottom:327.040000pt;}
.y42{bottom:327.198080pt;}
.y14e{bottom:327.360000pt;}
.ybb{bottom:329.440000pt;}
.y12d{bottom:330.720000pt;}
.y176{bottom:330.931200pt;}
.y64{bottom:332.691840pt;}
.y11{bottom:334.563200pt;}
.y13e{bottom:337.440000pt;}
.yd8{bottom:338.720000pt;}
.y82{bottom:347.367680pt;}
.y175{bottom:349.655040pt;}
.y107{bottom:351.680000pt;}
.y95{bottom:354.880000pt;}
.y1ac{bottom:356.091360pt;}
.y10{bottom:356.166080pt;}
.yba{bottom:357.440000pt;}
.yee{bottom:358.085440pt;}
.y63{bottom:358.289920pt;}
.y12c{bottom:358.560000pt;}
.y41{bottom:360.803840pt;}
.y119{bottom:361.280000pt;}
.y14d{bottom:363.200000pt;}
.y13d{bottom:365.280000pt;}
.yd7{bottom:366.560000pt;}
.y174{bottom:368.378880pt;}
.yf{bottom:377.918720pt;}
.y81{bottom:380.811520pt;}
.y62{bottom:383.726080pt;}
.y12b{bottom:386.400000pt;}
.y173{bottom:387.102720pt;}
.y1ab{bottom:387.286080pt;}
.yed{bottom:388.000000pt;}
.y14c{bottom:391.040000pt;}
.y94{bottom:392.807360pt;}
.yb9{bottom:393.280000pt;}
.y40{bottom:394.247680pt;}
.yd6{bottom:394.400000pt;}
.y118{bottom:397.120000pt;}
.ye{bottom:399.521600pt;}
.y13c{bottom:401.120000pt;}
.y106{bottom:401.280000pt;}
.y172{bottom:405.826560pt;}
.y80{bottom:406.409600pt;}
.y61{bottom:409.324160pt;}
.y12a{bottom:414.400000pt;}
.y1aa{bottom:418.480800pt;}
.y14b{bottom:419.040000pt;}
.y3f{bottom:419.845760pt;}
.yb8{bottom:421.120000pt;}
.yd{bottom:421.124480pt;}
.yd5{bottom:422.400000pt;}
.y171{bottom:424.550400pt;}
.yec{bottom:426.240000pt;}
.y13b{bottom:429.120000pt;}
.y101{bottom:431.360000pt;}
.y7f{bottom:432.007680pt;}
.y117{bottom:432.960000pt;}
.y93{bottom:433.280000pt;}
.y60{bottom:434.922240pt;}
.y129{bottom:442.240000pt;}
.yc{bottom:442.877120pt;}
.y170{bottom:443.274240pt;}
.y103{bottom:444.325760pt;}
.y3e{bottom:445.443840pt;}
.y14a{bottom:446.880000pt;}
.y1a9{bottom:449.675520pt;}
.yd4{bottom:450.240000pt;}
.y99{bottom:451.728000pt;}
.ya7{bottom:452.533333pt;}
.y105{bottom:453.280000pt;}
.yeb{bottom:454.080000pt;}
.y29{bottom:455.904000pt;}
.yb7{bottom:456.960000pt;}
.y102{bottom:462.240000pt;}
.y16f{bottom:465.039360pt;}
.y7e{bottom:465.451520pt;}
.y5f{bottom:468.366080pt;}
.y116{bottom:468.800000pt;}
.y128{bottom:470.080000pt;}
.y3d{bottom:470.880000pt;}
.y149{bottom:474.720000pt;}
.yd3{bottom:478.080000pt;}
.y1a8{bottom:480.870240pt;}
.yea{bottom:481.920000pt;}
.yb{bottom:483.200000pt;}
.yb6{bottom:484.800000pt;}
.yfd{bottom:485.760000pt;}
.y16e{bottom:486.804480pt;}
.ya3{bottom:487.949333pt;}
.y5e{bottom:493.964160pt;}
.y28{bottom:496.545120pt;}
.y127{bottom:497.920000pt;}
.y100{bottom:498.720000pt;}
.y7d{bottom:499.057280pt;}
.y148{bottom:502.560000pt;}
.y3c{bottom:504.518400pt;}
.y115{bottom:504.640000pt;}
.yd2{bottom:505.920000pt;}
.y16d{bottom:508.569600pt;}
.y1a7{bottom:512.224320pt;}
.yb5{bottom:512.640000pt;}
.ya{bottom:515.350267pt;}
.ye9{bottom:517.760000pt;}
.y5d{bottom:519.562240pt;}
.y9f{bottom:523.368000pt;}
.y7c{bottom:524.655360pt;}
.y126{bottom:525.760000pt;}
.y3b{bottom:530.116480pt;}
.y16c{bottom:530.334720pt;}
.y147{bottom:530.400000pt;}
.yd1{bottom:533.760000pt;}
.y27{bottom:537.017760pt;}
.y114{bottom:540.480000pt;}
.yb4{bottom:540.640000pt;}
.yfc{bottom:543.040000pt;}
.y1a6{bottom:543.419040pt;}
.y5c{bottom:544.998400pt;}
.ye8{bottom:545.600000pt;}
.y9{bottom:549.432187pt;}
.y7b{bottom:550.091520pt;}
.y16b{bottom:552.099840pt;}
.y125{bottom:553.600000pt;}
.y3a{bottom:555.552640pt;}
.y9b{bottom:558.786667pt;}
.y1b3{bottom:564.640000pt;}
.y1a5{bottom:566.619200pt;}
.y113{bottom:567.200000pt;}
.y13a{bottom:568.320000pt;}
.yb3{bottom:568.480000pt;}
.yd0{bottom:569.600000pt;}
.y5b{bottom:570.596480pt;}
.ye7{bottom:573.600000pt;}
.y16a{bottom:574.018560pt;}
.y7a{bottom:575.689600pt;}
.y26{bottom:577.490400pt;}
.y17e{bottom:577.920000pt;}
.y39{bottom:581.150720pt;}
.y124{bottom:581.600000pt;}
.y8{bottom:583.514107pt;}
.y112{bottom:585.760000pt;}
.y169{bottom:595.783680pt;}
.y5a{bottom:596.194560pt;}
.yb2{bottom:596.320000pt;}
.ycf{bottom:597.600000pt;}
.y1a4{bottom:597.813920pt;}
.y79{bottom:601.287680pt;}
.y111{bottom:604.320000pt;}
.yfb{bottom:605.600000pt;}
.ye6{bottom:609.440000pt;}
.y38{bottom:614.756480pt;}
.y123{bottom:617.440000pt;}
.y168{bottom:617.548800pt;}
.y7{bottom:617.596027pt;}
.y25{bottom:617.963040pt;}
.y59{bottom:621.630720pt;}
.yb1{bottom:624.160000pt;}
.yce{bottom:625.440000pt;}
.y78{bottom:626.723840pt;}
.y1a3{bottom:629.008640pt;}
.yfa{bottom:633.440000pt;}
.ye5{bottom:637.280000pt;}
.y167{bottom:639.313920pt;}
.y110{bottom:640.160000pt;}
.y37{bottom:640.192640pt;}
.y122{bottom:645.280000pt;}
.y58{bottom:647.228800pt;}
.y6{bottom:651.677947pt;}
.y139{bottom:652.000000pt;}
.y77{bottom:652.321920pt;}
.ycd{bottom:653.280000pt;}
.y24{bottom:658.435680pt;}
.yb0{bottom:660.000000pt;}
.y1a2{bottom:660.203360pt;}
.y166{bottom:661.079040pt;}
.yf9{bottom:661.280000pt;}
.y92{bottom:665.120000pt;}
.y36{bottom:665.790720pt;}
.ye4{bottom:673.120000pt;}
.y76{bottom:677.920000pt;}
.y138{bottom:679.840000pt;}
.y57{bottom:680.672640pt;}
.ycc{bottom:681.120000pt;}
.y165{bottom:682.844160pt;}
.y5{bottom:685.759867pt;}
.y197{bottom:685.920000pt;}
.yf8{bottom:689.120000pt;}
.y35{bottom:691.388800pt;}
.y1a1{bottom:691.398080pt;}
.yaf{bottom:695.840000pt;}
.y23{bottom:698.908320pt;}
.y91{bottom:700.960000pt;}
.y164{bottom:704.762880pt;}
.y196{bottom:705.801920pt;}
.y56{bottom:706.270720pt;}
.y137{bottom:707.680000pt;}
.ycb{bottom:708.960000pt;}
.y18d{bottom:711.048800pt;}
.y75{bottom:714.727360pt;}
.y34{bottom:716.824960pt;}
.yf7{bottom:716.960000pt;}
.y1a0{bottom:722.752160pt;}
.y163{bottom:723.486720pt;}
.yae{bottom:731.840000pt;}
.y55{bottom:731.868800pt;}
.y136{bottom:735.520000pt;}
.y4{bottom:736.168160pt;}
.y90{bottom:736.800000pt;}
.y22{bottom:739.549440pt;}
.y162{bottom:742.041600pt;}
.y33{bottom:742.423040pt;}
.yca{bottom:744.800000pt;}
.y195{bottom:746.274560pt;}
.y18c{bottom:750.056960pt;}
.y19f{bottom:753.946880pt;}
.y74{bottom:755.200000pt;}
.y54{bottom:757.304960pt;}
.yad{bottom:759.680000pt;}
.y161{bottom:760.765440pt;}
.y135{bottom:763.520000pt;}
.y8f{bottom:764.800000pt;}
.y32{bottom:768.021120pt;}
.yc9{bottom:772.800000pt;}
.y3{bottom:776.640800pt;}
.y18b{bottom:778.058240pt;}
.y160{bottom:779.489280pt;}
.y21{bottom:780.022080pt;}
.yf6{bottom:780.800000pt;}
.y53{bottom:782.903040pt;}
.y19e{bottom:785.141600pt;}
.y194{bottom:786.747200pt;}
.y73{bottom:792.485760pt;}
.y8e{bottom:792.640000pt;}
.y31{bottom:793.457280pt;}
.yac{bottom:795.520000pt;}
.y15f{bottom:798.213120pt;}
.y134{bottom:799.360000pt;}
.yc8{bottom:800.640000pt;}
.y18a{bottom:804.784640pt;}
.y19d{bottom:808.341760pt;}
.y52{bottom:808.501120pt;}
.ye3{bottom:808.640000pt;}
.y2{bottom:809.120000pt;}
.y15e{bottom:816.936960pt;}
.y72{bottom:817.921920pt;}
.y30{bottom:819.055360pt;}
.y8d{bottom:820.480000pt;}
.y20{bottom:820.494720pt;}
.y189{bottom:823.508480pt;}
.y193{bottom:827.388320pt;}
.yc7{bottom:828.480000pt;}
.yab{bottom:829.440000pt;}
.y51{bottom:833.937280pt;}
.y15d{bottom:835.660800pt;}
.ye2{bottom:836.480000pt;}
.y19c{bottom:839.536480pt;}
.y188{bottom:842.232320pt;}
.y71{bottom:843.520000pt;}
.y2f{bottom:844.653440pt;}
.y15c{bottom:854.384640pt;}
.y8c{bottom:858.407360pt;}
.y50{bottom:859.535360pt;}
.y187{bottom:860.956160pt;}
.y1f{bottom:860.967360pt;}
.yc6{bottom:864.320000pt;}
.y192{bottom:867.860960pt;}
.y2e{bottom:870.089600pt;}
.y19b{bottom:870.731200pt;}
.y15b{bottom:873.108480pt;}
.y70{bottom:877.125760pt;}
.y186{bottom:879.687680pt;}
.y4f{bottom:885.133440pt;}
.y15a{bottom:891.832320pt;}
.yc5{bottom:892.160000pt;}
.y2d{bottom:895.687680pt;}
.y8b{bottom:898.880000pt;}
.y185{bottom:899.816960pt;}
.y121{bottom:900.160000pt;}
.y1e{bottom:901.440000pt;}
.y19a{bottom:901.925920pt;}
.y6f{bottom:902.561920pt;}
.y191{bottom:908.333600pt;}
.y159{bottom:910.556160pt;}
.y4e{bottom:910.569600pt;}
.y184{bottom:918.540800pt;}
.ye1{bottom:920.000000pt;}
.y2c{bottom:921.123840pt;}
.yc4{bottom:928.000000pt;}
.y6e{bottom:928.160000pt;}
.y158{bottom:929.280000pt;}
.y199{bottom:933.280000pt;}
.y4d{bottom:936.167680pt;}
.y183{bottom:937.264640pt;}
.y1d{bottom:938.720000pt;}
.y2b{bottom:946.721920pt;}
.ye0{bottom:948.000000pt;}
.y190{bottom:948.806240pt;}
.y157{bottom:948.960000pt;}
.y6d{bottom:953.758080pt;}
.y182{bottom:955.988480pt;}
.yc3{bottom:956.000000pt;}
.y4c{bottom:961.765760pt;}
.y1a{bottom:968.647360pt;}
.y156{bottom:971.040000pt;}
.y2a{bottom:972.320000pt;}
.y181{bottom:974.712320pt;}
.y1c{bottom:975.520000pt;}
.yc2{bottom:983.840000pt;}
.y4b{bottom:987.201920pt;}
.y18f{bottom:989.278880pt;}
.y180{bottom:993.436160pt;}
.y19{bottom:1009.120000pt;}
.yc1{bottom:1011.680000pt;}
.y17f{bottom:1012.160000pt;}
.y1b{bottom:1012.800000pt;}
.y18e{bottom:1029.920000pt;}
.hf{height:34.613333pt;}
.hc{height:35.430133pt;}
.h11{height:35.840000pt;}
.he{height:36.184768pt;}
.h10{height:36.185302pt;}
.h12{height:42.262500pt;}
.h18{height:44.100000pt;}
.h1a{height:44.192160pt;}
.h19{height:44.610000pt;}
.h16{height:45.937500pt;}
.h15{height:48.687500pt;}
.h1d{height:48.710625pt;}
.h1e{height:49.748125pt;}
.hd{height:53.125333pt;}
.h13{height:53.760000pt;}
.h7{height:53.992500pt;}
.h17{height:54.368437pt;}
.h1b{height:54.460597pt;}
.h6{height:55.142500pt;}
.h14{height:56.958667pt;}
.ha{height:58.687500pt;}
.h8{height:59.783900pt;}
.h9{height:59.937500pt;}
.h2{height:68.664375pt;}
.h5{height:70.126875pt;}
.h3{height:107.398125pt;}
.h4{height:109.685625pt;}
.hb{height:192.381333pt;}
.h1c{height:369.600000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w6{width:118.400000pt;}
.w4{width:121.874667pt;}
.w7{width:138.401333pt;}
.w3{width:139.630667pt;}
.w5{width:175.361333pt;}
.w8{width:639.040000pt;}
.w2{width:748.193333pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x19{left:1.614667pt;}
.x1e{left:4.320000pt;}
.x27{left:16.320000pt;}
.x17{left:28.806667pt;}
.x20{left:31.680000pt;}
.x29{left:43.200000pt;}
.x18{left:47.620133pt;}
.x31{left:80.480000pt;}
.x1{left:120.000000pt;}
.x6{left:125.609440pt;}
.x2{left:129.120000pt;}
.x2f{left:142.241280pt;}
.x12{left:144.037760pt;}
.x5{left:155.680000pt;}
.x10{left:161.900000pt;}
.x7{left:163.380640pt;}
.x13{left:168.046080pt;}
.x9{left:172.516000pt;}
.xf{left:173.600000pt;}
.x2b{left:192.000000pt;}
.xb{left:207.360000pt;}
.x11{left:210.240000pt;}
.x8{left:223.873120pt;}
.x2c{left:261.120000pt;}
.xd{left:268.960000pt;}
.x1c{left:276.033333pt;}
.x14{left:285.447360pt;}
.x16{left:287.839360pt;}
.x3{left:289.288320pt;}
.x1f{left:296.320000pt;}
.x1a{left:303.225333pt;}
.x22{left:314.080000pt;}
.x15{left:316.967680pt;}
.x32{left:319.520000pt;}
.x23{left:329.594880pt;}
.xa{left:335.224960pt;}
.xc{left:336.640320pt;}
.x2a{left:351.840000pt;}
.x33{left:361.440000pt;}
.x2d{left:364.000000pt;}
.xe{left:368.160000pt;}
.x4{left:396.666240pt;}
.x1b{left:398.714667pt;}
.x30{left:400.000000pt;}
.x2e{left:407.680000pt;}
.x24{left:442.718080pt;}
.x25{left:458.394880pt;}
.x21{left:482.880000pt;}
.x26{left:553.600000pt;}
.x28{left:584.320000pt;}
.x1d{left:660.640000pt;}
}




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