
    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_dd6ae93fd7be196f420694dc.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.854492;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_4fa8309625c47cb55629003a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_7e1e663a21240282fec96fa7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942871;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_01c5623c4b0cf6534b8366c9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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_5985e730749b61b813571418.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.884277;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_5c38dca4588018522797ee1d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c76df72d6c864a583d3febc4.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_7122073fdce06d302d220090.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_236f165c299a14ac5138fdbf.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.950684;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_4feb3c090f8a48f51d027b8f.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_5de8c2178f1c58fccdc91d4f.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_6f539f0263e027b33d348566.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.728027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_df3149e8a92e98b858933dba.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_4cb96b7e72de8d990b672955.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.728027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_a9d4cbdeb1eaf09006ee2f07.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_431933734f2a65e5d1f0ab7a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.728027;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);}
.v2{vertical-align:-19.798800px;}
.v3{vertical-align:-4.368000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.800000px;}
.v4{vertical-align:30.000000px;}
.v5{vertical-align:41.472000px;}
.ls37{letter-spacing:-3.312000px;}
.ls24{letter-spacing:-0.672000px;}
.ls22{letter-spacing:-0.604800px;}
.ls25{letter-spacing:-0.011400px;}
.ls21{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.001200px;}
.lsb{letter-spacing:0.003000px;}
.lse{letter-spacing:0.005700px;}
.ls2{letter-spacing:0.007200px;}
.lsa{letter-spacing:0.007800px;}
.lsf{letter-spacing:0.011400px;}
.ls9{letter-spacing:0.012000px;}
.ls27{letter-spacing:0.014400px;}
.ls19{letter-spacing:0.017100px;}
.ls14{letter-spacing:0.028500px;}
.ls29{letter-spacing:0.233700px;}
.ls28{letter-spacing:0.239400px;}
.ls5{letter-spacing:0.525600px;}
.ls4{letter-spacing:0.532800px;}
.ls20{letter-spacing:0.570000px;}
.ls36{letter-spacing:0.600000px;}
.ls2f{letter-spacing:0.632700px;}
.ls31{letter-spacing:0.638400px;}
.ls30{letter-spacing:0.644100px;}
.ls1c{letter-spacing:0.815100px;}
.ls1a{letter-spacing:0.820800px;}
.ls1b{letter-spacing:0.826500px;}
.ls15{letter-spacing:0.904800px;}
.ls13{letter-spacing:0.923400px;}
.ls12{letter-spacing:0.929100px;}
.ls8{letter-spacing:1.252800px;}
.ls1d{letter-spacing:1.607400px;}
.ls1e{letter-spacing:1.613100px;}
.ls1f{letter-spacing:1.655700px;}
.ls10{letter-spacing:1.732800px;}
.ls11{letter-spacing:1.738500px;}
.ls7{letter-spacing:1.814400px;}
.ls6{letter-spacing:1.821600px;}
.ls34{letter-spacing:2.274300px;}
.lsc{letter-spacing:2.280000px;}
.ls35{letter-spacing:2.285700px;}
.ls16{letter-spacing:2.456700px;}
.ls32{letter-spacing:2.462400px;}
.ls1{letter-spacing:2.534400px;}
.ls2e{letter-spacing:3.192900px;}
.ls2d{letter-spacing:3.220500px;}
.ls2c{letter-spacing:3.226200px;}
.ls0{letter-spacing:3.769200px;}
.ls23{letter-spacing:3.780000px;}
.ls2b{letter-spacing:4.611300px;}
.ls2a{letter-spacing:4.617000px;}
.ls18{letter-spacing:6.657600px;}
.ls17{letter-spacing:6.663300px;}
.ls26{letter-spacing:23.424000px;}
.ls33{letter-spacing:155.127900px;}
.lsd{letter-spacing:302.705700px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-74.534400px;}
.ws7{word-spacing:-73.821600px;}
.ws8{word-spacing:-73.814400px;}
.ws6{word-spacing:-72.000000px;}
.ws0{word-spacing:-66.000000px;}
.wsa{word-spacing:-60.000000px;}
.wsb{word-spacing:-59.328000px;}
.ws37{word-spacing:-59.280000px;}
.ws4{word-spacing:-57.780000px;}
.ws12{word-spacing:-57.570000px;}
.wsf{word-spacing:-57.000000px;}
.ws2{word-spacing:-54.000000px;}
.ws1{word-spacing:-53.395200px;}
.ws10{word-spacing:-51.000000px;}
.ws10a{word-spacing:-48.000000px;}
.ws3{word-spacing:-30.000000px;}
.ws35{word-spacing:-20.016000px;}
.wsc{word-spacing:-16.680000px;}
.ws75{word-spacing:-15.012000px;}
.ws108{word-spacing:-13.368000px;}
.ws11{word-spacing:-12.996000px;}
.ws5{word-spacing:-9.674400px;}
.ws6a{word-spacing:-4.608000px;}
.ws4f{word-spacing:-3.564000px;}
.wsea{word-spacing:-3.186000px;}
.wsb1{word-spacing:-3.132000px;}
.ws58{word-spacing:-3.108000px;}
.ws2a{word-spacing:-3.003900px;}
.wsf4{word-spacing:-2.994000px;}
.wsf5{word-spacing:-2.988000px;}
.ws7c{word-spacing:-2.904000px;}
.ws100{word-spacing:-2.898000px;}
.ws7a{word-spacing:-2.892000px;}
.ws87{word-spacing:-2.862000px;}
.ws45{word-spacing:-2.790000px;}
.ws7f{word-spacing:-2.592000px;}
.wsbd{word-spacing:-2.526000px;}
.ws9f{word-spacing:-2.502000px;}
.ws128{word-spacing:-2.380800px;}
.wsa6{word-spacing:-2.328000px;}
.wsa1{word-spacing:-2.298000px;}
.wsa7{word-spacing:-2.244000px;}
.ws73{word-spacing:-2.228700px;}
.ws16{word-spacing:-2.226000px;}
.ws20{word-spacing:-2.074800px;}
.ws9b{word-spacing:-2.034000px;}
.ws14{word-spacing:-2.003400px;}
.wsb9{word-spacing:-1.992000px;}
.wsaa{word-spacing:-1.866000px;}
.ws125{word-spacing:-1.828800px;}
.ws127{word-spacing:-1.809600px;}
.ws79{word-spacing:-1.746000px;}
.wsf1{word-spacing:-1.734000px;}
.ws68{word-spacing:-1.668000px;}
.wsd7{word-spacing:-1.662000px;}
.ws11d{word-spacing:-1.574400px;}
.ws10c{word-spacing:-1.560000px;}
.ws8d{word-spacing:-1.530000px;}
.ws6e{word-spacing:-1.527600px;}
.ws6f{word-spacing:-1.521900px;}
.ws12f{word-spacing:-1.512000px;}
.ws3d{word-spacing:-1.476000px;}
.wsf3{word-spacing:-1.470000px;}
.ws12a{word-spacing:-1.430400px;}
.ws12b{word-spacing:-1.416000px;}
.ws8c{word-spacing:-1.392000px;}
.wsc0{word-spacing:-1.344000px;}
.ws26{word-spacing:-1.311000px;}
.wsb2{word-spacing:-1.296000px;}
.ws15{word-spacing:-1.267200px;}
.ws56{word-spacing:-1.266000px;}
.wsb5{word-spacing:-1.260000px;}
.ws138{word-spacing:-1.224000px;}
.ws121{word-spacing:-1.209600px;}
.wsda{word-spacing:-1.176000px;}
.ws8f{word-spacing:-1.128000px;}
.ws9c{word-spacing:-1.050000px;}
.ws74{word-spacing:-1.008900px;}
.ws132{word-spacing:-0.940800px;}
.ws8e{word-spacing:-0.822000px;}
.ws23{word-spacing:-0.780900px;}
.wsdf{word-spacing:-0.744000px;}
.ws130{word-spacing:-0.734400px;}
.wsca{word-spacing:-0.642000px;}
.wsc9{word-spacing:-0.636000px;}
.ws2c{word-spacing:-0.524400px;}
.ws9a{word-spacing:-0.516000px;}
.wsfe{word-spacing:-0.498000px;}
.wsee{word-spacing:-0.492000px;}
.wsfd{word-spacing:-0.462000px;}
.ws72{word-spacing:-0.438900px;}
.ws71{word-spacing:-0.433200px;}
.ws81{word-spacing:-0.330000px;}
.ws137{word-spacing:-0.307200px;}
.ws34{word-spacing:-0.240000px;}
.ws17{word-spacing:-0.096900px;}
.wsec{word-spacing:-0.090000px;}
.ws2b{word-spacing:-0.085500px;}
.ws36{word-spacing:-0.060000px;}
.wse{word-spacing:-0.057000px;}
.ws76{word-spacing:-0.054000px;}
.ws109{word-spacing:-0.048000px;}
.ws11b{word-spacing:-0.043200px;}
.ws4e{word-spacing:-0.042000px;}
.ws13{word-spacing:0.000000px;}
.ws7e{word-spacing:0.132000px;}
.wsba{word-spacing:0.168000px;}
.ws57{word-spacing:0.180000px;}
.ws122{word-spacing:0.182400px;}
.wsa0{word-spacing:0.186000px;}
.ws105{word-spacing:0.192000px;}
.ws65{word-spacing:0.222000px;}
.ws106{word-spacing:0.228000px;}
.wsc5{word-spacing:0.324000px;}
.ws7b{word-spacing:0.336000px;}
.ws5c{word-spacing:0.408000px;}
.wsc6{word-spacing:0.582000px;}
.wse1{word-spacing:0.606000px;}
.wsa5{word-spacing:0.612000px;}
.ws61{word-spacing:0.630000px;}
.ws70{word-spacing:0.632700px;}
.wsaf{word-spacing:0.654000px;}
.wsd4{word-spacing:0.678000px;}
.wsb6{word-spacing:0.696000px;}
.ws115{word-spacing:0.705600px;}
.ws104{word-spacing:0.810000px;}
.ws31{word-spacing:0.815100px;}
.wscd{word-spacing:0.816000px;}
.ws32{word-spacing:0.820800px;}
.ws133{word-spacing:0.864000px;}
.ws134{word-spacing:0.868800px;}
.ws2d{word-spacing:0.929100px;}
.ws48{word-spacing:0.936000px;}
.ws22{word-spacing:0.963300px;}
.wsae{word-spacing:0.966000px;}
.ws11c{word-spacing:1.036800px;}
.wse7{word-spacing:1.038000px;}
.ws98{word-spacing:1.050000px;}
.ws126{word-spacing:1.104000px;}
.ws112{word-spacing:1.113600px;}
.ws113{word-spacing:1.118400px;}
.ws82{word-spacing:1.176000px;}
.ws3b{word-spacing:1.200000px;}
.ws116{word-spacing:1.224000px;}
.wsd8{word-spacing:1.266000px;}
.ws11e{word-spacing:1.329600px;}
.ws95{word-spacing:1.350000px;}
.wse3{word-spacing:1.380000px;}
.ws69{word-spacing:1.428000px;}
.ws7d{word-spacing:1.452000px;}
.wse5{word-spacing:1.596000px;}
.ws33{word-spacing:1.607400px;}
.ws5f{word-spacing:1.728000px;}
.ws10e{word-spacing:1.749600px;}
.wsfc{word-spacing:1.794000px;}
.wsb0{word-spacing:1.854000px;}
.wsc8{word-spacing:1.860000px;}
.ws88{word-spacing:1.866000px;}
.ws18{word-spacing:1.926600px;}
.ws120{word-spacing:1.972800px;}
.wsab{word-spacing:2.004000px;}
.wse0{word-spacing:2.052000px;}
.ws50{word-spacing:2.070000px;}
.wsff{word-spacing:2.118000px;}
.ws94{word-spacing:2.178000px;}
.ws1f{word-spacing:2.217300px;}
.ws24{word-spacing:2.257200px;}
.wsf7{word-spacing:2.316000px;}
.ws114{word-spacing:2.337600px;}
.ws2e{word-spacing:2.456700px;}
.ws42{word-spacing:2.490000px;}
.ws78{word-spacing:2.502000px;}
.ws29{word-spacing:2.502300px;}
.ws12e{word-spacing:2.606400px;}
.wsef{word-spacing:2.724000px;}
.ws67{word-spacing:2.832000px;}
.ws8b{word-spacing:2.892000px;}
.ws86{word-spacing:2.910000px;}
.ws118{word-spacing:2.928000px;}
.ws131{word-spacing:2.952000px;}
.ws1c{word-spacing:3.026700px;}
.ws1d{word-spacing:3.032400px;}
.wsa2{word-spacing:3.042000px;}
.ws21{word-spacing:3.078000px;}
.ws111{word-spacing:3.096000px;}
.wsed{word-spacing:3.102000px;}
.wsc2{word-spacing:3.144000px;}
.ws6d{word-spacing:3.220500px;}
.ws99{word-spacing:3.252000px;}
.wsf6{word-spacing:3.498000px;}
.ws136{word-spacing:3.499200px;}
.ws4b{word-spacing:3.540000px;}
.ws101{word-spacing:3.546000px;}
.wsd6{word-spacing:3.558000px;}
.ws124{word-spacing:3.609600px;}
.ws89{word-spacing:3.816000px;}
.wsc4{word-spacing:3.864000px;}
.wsbb{word-spacing:3.930000px;}
.wsdc{word-spacing:3.960000px;}
.wscc{word-spacing:3.966000px;}
.wsd9{word-spacing:4.044000px;}
.wsbf{word-spacing:4.086000px;}
.ws25{word-spacing:4.189500px;}
.ws10d{word-spacing:4.217400px;}
.wsce{word-spacing:4.254000px;}
.ws3a{word-spacing:4.290000px;}
.wse9{word-spacing:4.356000px;}
.ws55{word-spacing:4.374000px;}
.ws12d{word-spacing:4.401600px;}
.wsc1{word-spacing:4.494000px;}
.ws10f{word-spacing:4.552200px;}
.ws3c{word-spacing:4.566000px;}
.ws80{word-spacing:4.578000px;}
.wsa8{word-spacing:4.614000px;}
.ws1a{word-spacing:4.622700px;}
.wsdb{word-spacing:4.632000px;}
.ws51{word-spacing:4.716000px;}
.wse2{word-spacing:4.776000px;}
.wsde{word-spacing:4.998000px;}
.wscb{word-spacing:5.004000px;}
.ws110{word-spacing:5.108400px;}
.ws102{word-spacing:5.136000px;}
.wsb8{word-spacing:5.178000px;}
.wseb{word-spacing:5.196000px;}
.wsac{word-spacing:5.208000px;}
.wsf2{word-spacing:5.352000px;}
.wsbe{word-spacing:5.388000px;}
.wsb3{word-spacing:5.406000px;}
.ws97{word-spacing:5.436000px;}
.ws46{word-spacing:5.472000px;}
.wsd3{word-spacing:5.616000px;}
.wsfb{word-spacing:5.622000px;}
.wsc7{word-spacing:5.628000px;}
.ws135{word-spacing:5.635200px;}
.ws27{word-spacing:5.717100px;}
.ws28{word-spacing:5.722800px;}
.ws129{word-spacing:5.750400px;}
.ws103{word-spacing:5.832000px;}
.ws3f{word-spacing:5.838000px;}
.wsf9{word-spacing:5.844000px;}
.ws1e{word-spacing:5.848200px;}
.ws43{word-spacing:6.120000px;}
.ws5a{word-spacing:6.126000px;}
.ws117{word-spacing:6.144000px;}
.ws11f{word-spacing:6.283200px;}
.wsad{word-spacing:6.312000px;}
.ws39{word-spacing:6.348000px;}
.wscf{word-spacing:6.444000px;}
.wsd0{word-spacing:6.450000px;}
.ws4a{word-spacing:6.570000px;}
.wsb7{word-spacing:6.588000px;}
.ws12c{word-spacing:6.643200px;}
.ws30{word-spacing:6.651900px;}
.ws2f{word-spacing:6.657600px;}
.ws1b{word-spacing:6.800100px;}
.wsdd{word-spacing:6.816000px;}
.ws8a{word-spacing:6.882000px;}
.ws40{word-spacing:6.978000px;}
.ws123{word-spacing:7.161600px;}
.ws49{word-spacing:7.296000px;}
.ws47{word-spacing:7.470000px;}
.ws5b{word-spacing:7.596000px;}
.ws38{word-spacing:7.602000px;}
.wsd1{word-spacing:7.848000px;}
.ws9e{word-spacing:8.022000px;}
.wsa9{word-spacing:8.094000px;}
.ws6c{word-spacing:8.142000px;}
.ws44{word-spacing:8.322000px;}
.wse6{word-spacing:8.346000px;}
.ws4d{word-spacing:8.676000px;}
.ws53{word-spacing:8.934000px;}
.ws5d{word-spacing:8.964000px;}
.ws107{word-spacing:9.048000px;}
.wsd5{word-spacing:9.054000px;}
.ws52{word-spacing:9.096000px;}
.ws119{word-spacing:9.192000px;}
.wse4{word-spacing:9.288000px;}
.ws66{word-spacing:9.306000px;}
.ws60{word-spacing:9.438000px;}
.wsd2{word-spacing:9.444000px;}
.ws91{word-spacing:9.654000px;}
.ws5e{word-spacing:10.050000px;}
.ws90{word-spacing:10.458000px;}
.ws10b{word-spacing:10.692000px;}
.ws54{word-spacing:10.818000px;}
.ws19{word-spacing:11.120700px;}
.wsf0{word-spacing:11.184000px;}
.ws3e{word-spacing:11.196000px;}
.ws83{word-spacing:11.652000px;}
.ws63{word-spacing:12.354000px;}
.ws92{word-spacing:12.498000px;}
.ws85{word-spacing:12.612000px;}
.ws11a{word-spacing:12.849600px;}
.ws84{word-spacing:12.888000px;}
.ws62{word-spacing:12.978000px;}
.wsc3{word-spacing:13.254000px;}
.ws41{word-spacing:13.554000px;}
.wsb4{word-spacing:13.578000px;}
.wsf8{word-spacing:13.596000px;}
.ws96{word-spacing:13.620000px;}
.ws93{word-spacing:14.034000px;}
.ws9d{word-spacing:14.172000px;}
.wsbc{word-spacing:14.370000px;}
.wsfa{word-spacing:15.408000px;}
.ws64{word-spacing:15.792000px;}
.ws4c{word-spacing:16.956000px;}
.wse8{word-spacing:19.182000px;}
.wsa4{word-spacing:21.600000px;}
.ws6b{word-spacing:29.580000px;}
.ws59{word-spacing:43.848000px;}
.ws77{word-spacing:281.515200px;}
.wsd{word-spacing:283.341000px;}
.wsa3{word-spacing:763.800000px;}
._10{margin-left:-44.280000px;}
._3c{margin-left:-16.742400px;}
._f{margin-left:-15.591600px;}
._c{margin-left:-14.336400px;}
._e{margin-left:-13.095600px;}
._8{margin-left:-11.673600px;}
._d{margin-left:-9.591600px;}
._9{margin-left:-8.189700px;}
._6{margin-left:-6.687600px;}
._5{margin-left:-5.595600px;}
._1{margin-left:-4.415400px;}
._2{margin-left:-2.547600px;}
._0{margin-left:-1.452000px;}
._3{width:1.188000px;}
._4{width:2.527200px;}
._7{width:4.506000px;}
._a{width:5.768400px;}
._11{width:6.920400px;}
._3b{width:8.931000px;}
._2c{width:91.267200px;}
._1e{width:104.251200px;}
._25{width:106.117200px;}
._23{width:107.600400px;}
._1f{width:109.886400px;}
._19{width:111.358200px;}
._24{width:112.521000px;}
._17{width:117.595200px;}
._18{width:119.529600px;}
._2f{width:122.015400px;}
._27{width:123.081600px;}
._29{width:125.875200px;}
._1d{width:131.092800px;}
._2d{width:133.583400px;}
._2b{width:135.052800px;}
._22{width:136.728000px;}
._1c{width:144.446400px;}
._1a{width:149.160000px;}
._20{width:151.027200px;}
._2a{width:156.427200px;}
._21{width:157.641600px;}
._26{width:158.745600px;}
._28{width:162.355200px;}
._1b{width:164.443200px;}
._14{width:170.347200px;}
._3a{width:182.822400px;}
._13{width:197.409600px;}
._12{width:198.944400px;}
._16{width:220.459200px;}
._2e{width:221.971200px;}
._b{width:250.803000px;}
._37{width:316.161600px;}
._39{width:321.542400px;}
._38{width:329.510400px;}
._35{width:341.155200px;}
._15{width:443.299200px;}
._33{width:495.864000px;}
._34{width:543.888000px;}
._32{width:578.529600px;}
._36{width:674.644800px;}
._30{width:794.721600px;}
._31{width:805.136400px;}
.fc4{color:rgb(0,173,239);}
.fc3{color:transparent;}
.fc6{color:rgb(8,19,25);}
.fc5{color:rgb(8,19,25);}
.fc2{color:rgb(205,30,37);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(27,40,73);}
.fs2{font-size:30.000000px;}
.fs5{font-size:34.800000px;}
.fs8{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs1{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y8{bottom:0.045000px;}
.y39{bottom:71.469750px;}
.ycb{bottom:78.508950px;}
.y112{bottom:80.028900px;}
.y106{bottom:80.815650px;}
.y80{bottom:83.069400px;}
.y5e{bottom:84.388200px;}
.y38{bottom:87.969750px;}
.yca{bottom:91.221750px;}
.y111{bottom:98.778900px;}
.y105{bottom:99.565650px;}
.y7f{bottom:101.819400px;}
.y5d{bottom:103.138200px;}
.y104{bottom:118.315650px;}
.y7e{bottom:120.569400px;}
.y5c{bottom:121.888200px;}
.yc9{bottom:124.670550px;}
.yc7{bottom:128.871750px;}
.y110{bottom:130.283400px;}
.y103{bottom:137.065650px;}
.y7d{bottom:139.319400px;}
.y5b{bottom:140.638200px;}
.yc6{bottom:143.871750px;}
.yc8{bottom:146.739750px;}
.y37{bottom:150.490425px;}
.y102{bottom:155.815650px;}
.y5a{bottom:159.388200px;}
.y36{bottom:167.741550px;}
.yc5{bottom:168.807750px;}
.y7c{bottom:170.825400px;}
.y10f{bottom:174.545700px;}
.y101{bottom:174.565650px;}
.y59{bottom:178.138200px;}
.yc4{bottom:179.607750px;}
.y35{bottom:184.991175px;}
.y10e{bottom:193.295700px;}
.y100{bottom:193.315650px;}
.y58{bottom:196.888200px;}
.y34{bottom:202.240800px;}
.yc3{bottom:211.144950px;}
.y10d{bottom:212.045700px;}
.yff{bottom:212.065650px;}
.y7b{bottom:214.338450px;}
.y57{bottom:215.638200px;}
.y33{bottom:219.490425px;}
.yc2{bottom:221.512950px;}
.y10c{bottom:230.795700px;}
.yfe{bottom:230.815650px;}
.y7a{bottom:233.088450px;}
.y56{bottom:234.388200px;}
.y32{bottom:236.741325px;}
.y10b{bottom:249.545700px;}
.yfd{bottom:249.565650px;}
.y79{bottom:251.838450px;}
.yc1{bottom:252.618150px;}
.y31{bottom:253.990950px;}
.y55{bottom:265.894200px;}
.y10a{bottom:268.295700px;}
.yfc{bottom:268.315650px;}
.y78{bottom:270.588450px;}
.y30{bottom:271.240575px;}
.yc0{bottom:273.354150px;}
.y109{bottom:287.045700px;}
.yfb{bottom:287.065650px;}
.y77{bottom:289.338450px;}
.y2f{bottom:289.582200px;}
.ybf{bottom:294.091350px;}
.ybc{bottom:294.898950px;}
.y108{bottom:305.795700px;}
.yfa{bottom:305.815650px;}
.y76{bottom:308.088450px;}
.y54{bottom:310.157100px;}
.ybe{bottom:314.827350px;}
.yf9{bottom:324.565650px;}
.y75{bottom:326.838450px;}
.y53{bottom:328.907100px;}
.ybd{bottom:336.372150px;}
.y107{bottom:337.301850px;}
.yf8{bottom:343.315650px;}
.y2e{bottom:344.430225px;}
.y2c{bottom:345.522375px;}
.y74{bottom:345.588450px;}
.y52{bottom:347.657100px;}
.ybb{bottom:357.915750px;}
.y2d{bottom:361.679850px;}
.yf7{bottom:362.065650px;}
.y2b{bottom:362.771850px;}
.y73{bottom:364.338450px;}
.y51{bottom:366.407100px;}
.yba{bottom:368.283750px;}
.yf6{bottom:380.815650px;}
.y72{bottom:383.088450px;}
.y2a{bottom:385.147350px;}
.y50{bottom:385.157100px;}
.yf5{bottom:399.565650px;}
.yb8{bottom:400.909350px;}
.y71{bottom:401.838450px;}
.y4f{bottom:403.907100px;}
.y29{bottom:406.436475px;}
.yb7{bottom:408.409350px;}
.yb9{bottom:415.909350px;}
.yf4{bottom:418.315650px;}
.y70{bottom:420.588450px;}
.y4e{bottom:422.657100px;}
.y28{bottom:423.686100px;}
.yf3{bottom:437.065650px;}
.y6f{bottom:439.338450px;}
.y27{bottom:440.935725px;}
.y4d{bottom:441.407100px;}
.yb6{bottom:442.792500px;}
.yf2{bottom:455.815650px;}
.y6e{bottom:458.088450px;}
.y26{bottom:458.185350px;}
.y4c{bottom:460.157100px;}
.yf1{bottom:474.565650px;}
.y25{bottom:475.434975px;}
.y6d{bottom:476.838450px;}
.y4b{bottom:478.907100px;}
.yb5{bottom:482.796600px;}
.ydd{bottom:486.787500px;}
.y24{bottom:492.684600px;}
.yf0{bottom:493.315650px;}
.y6c{bottom:495.588450px;}
.y4a{bottom:497.657100px;}
.yb4{bottom:501.546600px;}
.ydc{bottom:501.787500px;}
.y23{bottom:509.934225px;}
.yef{bottom:512.065650px;}
.y6b{bottom:514.338450px;}
.y49{bottom:516.407100px;}
.yb3{bottom:520.296600px;}
.ydb{bottom:522.523500px;}
.y22{bottom:527.183850px;}
.yee{bottom:530.815650px;}
.y6a{bottom:533.088450px;}
.y48{bottom:535.157100px;}
.yb2{bottom:539.046600px;}
.yda{bottom:543.259500px;}
.y21{bottom:544.433475px;}
.yd6{bottom:548.995500px;}
.yed{bottom:549.565650px;}
.y69{bottom:551.838450px;}
.y47{bottom:553.907100px;}
.y150{bottom:553.999350px;}
.y12d{bottom:554.313750px;}
.yb1{bottom:557.796600px;}
.y20{bottom:561.683100px;}
.yd5{bottom:563.995500px;}
.yec{bottom:568.315650px;}
.y14f{bottom:569.749350px;}
.y68{bottom:570.588450px;}
.y12c{bottom:570.813750px;}
.y46{bottom:572.657100px;}
.yb0{bottom:576.546600px;}
.y1f{bottom:578.932725px;}
.yd9{bottom:584.732700px;}
.y14e{bottom:585.499350px;}
.yeb{bottom:587.065650px;}
.y12b{bottom:587.313750px;}
.y67{bottom:589.338450px;}
.y45{bottom:591.407100px;}
.yaf{bottom:595.296600px;}
.y1e{bottom:596.182350px;}
.y14d{bottom:601.249350px;}
.y12a{bottom:603.813750px;}
.yd8{bottom:605.468700px;}
.yea{bottom:605.815650px;}
.y66{bottom:608.088450px;}
.y44{bottom:610.157100px;}
.y1d{bottom:613.431975px;}
.yae{bottom:614.046600px;}
.y14c{bottom:617.749350px;}
.y129{bottom:620.313750px;}
.ye9{bottom:624.565650px;}
.yd7{bottom:626.204700px;}
.y65{bottom:626.838450px;}
.y43{bottom:628.907100px;}
.y1c{bottom:630.681600px;}
.yad{bottom:632.796600px;}
.y14b{bottom:634.249350px;}
.y128{bottom:636.813750px;}
.ye8{bottom:643.315650px;}
.y64{bottom:645.588450px;}
.yd4{bottom:646.940700px;}
.y42{bottom:647.657100px;}
.y1b{bottom:647.931225px;}
.y14a{bottom:650.749350px;}
.yac{bottom:652.296600px;}
.y127{bottom:653.313750px;}
.ye7{bottom:662.065650px;}
.y63{bottom:664.338450px;}
.y1a{bottom:665.180850px;}
.y41{bottom:666.407100px;}
.y149{bottom:667.249350px;}
.yd3{bottom:667.677900px;}
.y126{bottom:669.813750px;}
.yab{bottom:671.796600px;}
.ye6{bottom:680.815650px;}
.y19{bottom:682.430475px;}
.y148{bottom:683.749350px;}
.y40{bottom:685.157100px;}
.y125{bottom:686.313750px;}
.yd2{bottom:688.413900px;}
.y62{bottom:689.466450px;}
.yaa{bottom:691.296600px;}
.ye5{bottom:699.565650px;}
.y147{bottom:700.249350px;}
.y18{bottom:700.772100px;}
.y124{bottom:702.813750px;}
.y3f{bottom:703.907100px;}
.yd1{bottom:709.149900px;}
.ya9{bottom:710.796600px;}
.y146{bottom:716.749350px;}
.ye4{bottom:718.315650px;}
.y61{bottom:718.846200px;}
.y123{bottom:719.313750px;}
.y3e{bottom:722.657100px;}
.yd0{bottom:729.885900px;}
.ya8{bottom:730.296600px;}
.y145{bottom:733.249350px;}
.y122{bottom:735.813750px;}
.ye3{bottom:737.065650px;}
.y60{bottom:737.596200px;}
.y144{bottom:748.999350px;}
.ya7{bottom:749.796600px;}
.ycf{bottom:750.621900px;}
.y121{bottom:752.313750px;}
.y3d{bottom:754.163100px;}
.ye2{bottom:755.815650px;}
.y5f{bottom:756.346200px;}
.y17{bottom:761.019600px;}
.y143{bottom:764.749350px;}
.y120{bottom:768.813750px;}
.ya6{bottom:769.296600px;}
.yce{bottom:771.359100px;}
.ye1{bottom:774.565650px;}
.y16{bottom:779.769450px;}
.y142{bottom:780.499350px;}
.y11f{bottom:785.313750px;}
.ye0{bottom:793.315650px;}
.y141{bottom:796.249350px;}
.ycd{bottom:796.723050px;}
.y15{bottom:797.822250px;}
.ya5{bottom:801.552750px;}
.y11e{bottom:801.813750px;}
.y140{bottom:811.999350px;}
.ydf{bottom:812.065650px;}
.ycc{bottom:813.222750px;}
.y14{bottom:816.572250px;}
.y11d{bottom:818.313750px;}
.y13f{bottom:827.749350px;}
.yde{bottom:830.815650px;}
.y91{bottom:836.113275px;}
.y8f{bottom:837.205275px;}
.y11c{bottom:839.064750px;}
.y13e{bottom:843.499350px;}
.ya4{bottom:845.815650px;}
.y12{bottom:848.033400px;}
.y13{bottom:848.078400px;}
.y9f{bottom:849.565650px;}
.y90{bottom:853.362900px;}
.y8e{bottom:854.454750px;}
.y13d{bottom:859.249350px;}
.ya3{bottom:865.315650px;}
.y9e{bottom:868.315650px;}
.y10{bottom:872.033400px;}
.y11{bottom:872.078400px;}
.y13c{bottom:874.999350px;}
.y11b{bottom:876.568800px;}
.y8d{bottom:876.828900px;}
.ya2{bottom:884.815650px;}
.y9d{bottom:887.065650px;}
.y13b{bottom:890.749350px;}
.y11a{bottom:894.568350px;}
.y8c{bottom:898.112175px;}
.ya1{bottom:904.315650px;}
.y9c{bottom:905.815650px;}
.y13a{bottom:906.499350px;}
.y119{bottom:912.567900px;}
.y8b{bottom:915.361800px;}
.y139{bottom:922.249350px;}
.ya0{bottom:923.815650px;}
.y9b{bottom:924.565650px;}
.yf{bottom:930.094050px;}
.y118{bottom:930.567450px;}
.y8a{bottom:932.611425px;}
.y138{bottom:937.999350px;}
.y9a{bottom:943.315650px;}
.y117{bottom:948.567000px;}
.y89{bottom:949.863075px;}
.y137{bottom:953.749350px;}
.ye{bottom:953.793750px;}
.y99{bottom:962.065650px;}
.y116{bottom:966.566550px;}
.y88{bottom:967.112700px;}
.y136{bottom:969.499350px;}
.yd{bottom:971.846550px;}
.y98{bottom:980.815650px;}
.y87{bottom:984.362325px;}
.y115{bottom:984.566100px;}
.y135{bottom:985.249350px;}
.y97{bottom:999.565650px;}
.y134{bottom:1000.999350px;}
.y86{bottom:1001.611950px;}
.y114{bottom:1002.565650px;}
.yb{bottom:1003.306200px;}
.yc{bottom:1003.351200px;}
.y133{bottom:1016.749350px;}
.y96{bottom:1018.315650px;}
.y85{bottom:1018.861575px;}
.y113{bottom:1020.565200px;}
.y9{bottom:1027.306200px;}
.ya{bottom:1027.351200px;}
.y132{bottom:1032.499350px;}
.y84{bottom:1036.112775px;}
.y95{bottom:1037.065650px;}
.y131{bottom:1048.249350px;}
.y83{bottom:1053.362400px;}
.y94{bottom:1055.815650px;}
.y130{bottom:1063.999350px;}
.y82{bottom:1070.612025px;}
.y3a{bottom:1074.239850px;}
.y93{bottom:1074.565650px;}
.y12f{bottom:1079.749350px;}
.y81{bottom:1087.861650px;}
.y92{bottom:1093.315650px;}
.y12e{bottom:1095.499350px;}
.y5{bottom:1096.789650px;}
.y7{bottom:1100.989800px;}
.y4{bottom:1105.789650px;}
.y2{bottom:1106.036700px;}
.y3{bottom:1114.789650px;}
.y1{bottom:1122.236700px;}
.y6{bottom:1123.567200px;}
.y3b{bottom:1135.835400px;}
.y3c{bottom:1136.927550px;}
.h3{height:21.972656px;}
.hb{height:25.335352px;}
.ha{height:25.335952px;}
.h8{height:25.336552px;}
.h13{height:34.945312px;}
.h12{height:34.968750px;}
.h10{height:37.129395px;}
.hf{height:37.179223px;}
.hc{height:37.185223px;}
.h11{height:37.380047px;}
.h4{height:39.313477px;}
.h2{height:39.339844px;}
.hd{height:41.553223px;}
.he{height:41.748047px;}
.h9{height:43.681641px;}
.h14{height:43.710938px;}
.h7{height:45.135352px;}
.h1{height:48.082031px;}
.h6{height:52.417969px;}
.h15{height:64.945312px;}
.h18{height:64.968750px;}
.h16{height:76.440750px;}
.h17{height:76.445550px;}
.h5{height:1187.955000px;}
.h0{height:1188.000000px;}
.w1{width:914.175000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:1.913400px;}
.x18{left:59.315100px;}
.x1d{left:65.315100px;}
.x19{left:84.826950px;}
.xe{left:100.297050px;}
.xf{left:102.210450px;}
.x3{left:107.670450px;}
.x2a{left:114.590850px;}
.x2{left:118.263450px;}
.xb{left:122.020200px;}
.x2b{left:127.346700px;}
.x2c{left:130.094700px;}
.x14{left:148.117350px;}
.xc{left:164.101800px;}
.x7{left:165.948900px;}
.x8{left:167.862300px;}
.x10{left:172.935900px;}
.x11{left:174.849300px;}
.x1{left:184.468800px;}
.x15{left:188.505300px;}
.x12{left:201.075300px;}
.x16{left:226.890450px;}
.x9{left:240.431550px;}
.xa{left:242.344950px;}
.x28{left:262.391700px;}
.xd{left:277.508700px;}
.x29{left:293.858100px;}
.x13{left:382.866000px;}
.x1a{left:454.746450px;}
.x1b{left:480.260400px;}
.x1c{left:487.160550px;}
.x1f{left:497.270700px;}
.x2e{left:518.855100px;}
.x20{left:522.781050px;}
.x2d{left:525.529500px;}
.x21{left:577.881300px;}
.x1e{left:602.024700px;}
.x22{left:645.642900px;}
.x23{left:651.197700px;}
.x24{left:714.800100px;}
.x4{left:715.910850px;}
.x25{left:720.024900px;}
.x5{left:723.684150px;}
.x26{left:773.447700px;}
.x17{left:791.625150px;}
.x27{left:798.670500px;}
@media print{
.v2{vertical-align:-17.598933pt;}
.v3{vertical-align:-3.882667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.600000pt;}
.v4{vertical-align:26.666667pt;}
.v5{vertical-align:36.864000pt;}
.ls37{letter-spacing:-2.944000pt;}
.ls24{letter-spacing:-0.597333pt;}
.ls22{letter-spacing:-0.537600pt;}
.ls25{letter-spacing:-0.010133pt;}
.ls21{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.001067pt;}
.lsb{letter-spacing:0.002667pt;}
.lse{letter-spacing:0.005067pt;}
.ls2{letter-spacing:0.006400pt;}
.lsa{letter-spacing:0.006933pt;}
.lsf{letter-spacing:0.010133pt;}
.ls9{letter-spacing:0.010667pt;}
.ls27{letter-spacing:0.012800pt;}
.ls19{letter-spacing:0.015200pt;}
.ls14{letter-spacing:0.025333pt;}
.ls29{letter-spacing:0.207733pt;}
.ls28{letter-spacing:0.212800pt;}
.ls5{letter-spacing:0.467200pt;}
.ls4{letter-spacing:0.473600pt;}
.ls20{letter-spacing:0.506667pt;}
.ls36{letter-spacing:0.533333pt;}
.ls2f{letter-spacing:0.562400pt;}
.ls31{letter-spacing:0.567467pt;}
.ls30{letter-spacing:0.572533pt;}
.ls1c{letter-spacing:0.724533pt;}
.ls1a{letter-spacing:0.729600pt;}
.ls1b{letter-spacing:0.734667pt;}
.ls15{letter-spacing:0.804267pt;}
.ls13{letter-spacing:0.820800pt;}
.ls12{letter-spacing:0.825867pt;}
.ls8{letter-spacing:1.113600pt;}
.ls1d{letter-spacing:1.428800pt;}
.ls1e{letter-spacing:1.433867pt;}
.ls1f{letter-spacing:1.471733pt;}
.ls10{letter-spacing:1.540267pt;}
.ls11{letter-spacing:1.545333pt;}
.ls7{letter-spacing:1.612800pt;}
.ls6{letter-spacing:1.619200pt;}
.ls34{letter-spacing:2.021600pt;}
.lsc{letter-spacing:2.026667pt;}
.ls35{letter-spacing:2.031733pt;}
.ls16{letter-spacing:2.183733pt;}
.ls32{letter-spacing:2.188800pt;}
.ls1{letter-spacing:2.252800pt;}
.ls2e{letter-spacing:2.838133pt;}
.ls2d{letter-spacing:2.862667pt;}
.ls2c{letter-spacing:2.867733pt;}
.ls0{letter-spacing:3.350400pt;}
.ls23{letter-spacing:3.360000pt;}
.ls2b{letter-spacing:4.098933pt;}
.ls2a{letter-spacing:4.104000pt;}
.ls18{letter-spacing:5.917867pt;}
.ls17{letter-spacing:5.922933pt;}
.ls26{letter-spacing:20.821333pt;}
.ls33{letter-spacing:137.891467pt;}
.lsd{letter-spacing:269.071733pt;}
.ws9{word-spacing:-66.252800pt;}
.ws7{word-spacing:-65.619200pt;}
.ws8{word-spacing:-65.612800pt;}
.ws6{word-spacing:-64.000000pt;}
.ws0{word-spacing:-58.666667pt;}
.wsa{word-spacing:-53.333333pt;}
.wsb{word-spacing:-52.736000pt;}
.ws37{word-spacing:-52.693333pt;}
.ws4{word-spacing:-51.360000pt;}
.ws12{word-spacing:-51.173333pt;}
.wsf{word-spacing:-50.666667pt;}
.ws2{word-spacing:-48.000000pt;}
.ws1{word-spacing:-47.462400pt;}
.ws10{word-spacing:-45.333333pt;}
.ws10a{word-spacing:-42.666667pt;}
.ws3{word-spacing:-26.666667pt;}
.ws35{word-spacing:-17.792000pt;}
.wsc{word-spacing:-14.826667pt;}
.ws75{word-spacing:-13.344000pt;}
.ws108{word-spacing:-11.882667pt;}
.ws11{word-spacing:-11.552000pt;}
.ws5{word-spacing:-8.599467pt;}
.ws6a{word-spacing:-4.096000pt;}
.ws4f{word-spacing:-3.168000pt;}
.wsea{word-spacing:-2.832000pt;}
.wsb1{word-spacing:-2.784000pt;}
.ws58{word-spacing:-2.762667pt;}
.ws2a{word-spacing:-2.670133pt;}
.wsf4{word-spacing:-2.661333pt;}
.wsf5{word-spacing:-2.656000pt;}
.ws7c{word-spacing:-2.581333pt;}
.ws100{word-spacing:-2.576000pt;}
.ws7a{word-spacing:-2.570667pt;}
.ws87{word-spacing:-2.544000pt;}
.ws45{word-spacing:-2.480000pt;}
.ws7f{word-spacing:-2.304000pt;}
.wsbd{word-spacing:-2.245333pt;}
.ws9f{word-spacing:-2.224000pt;}
.ws128{word-spacing:-2.116267pt;}
.wsa6{word-spacing:-2.069333pt;}
.wsa1{word-spacing:-2.042667pt;}
.wsa7{word-spacing:-1.994667pt;}
.ws73{word-spacing:-1.981067pt;}
.ws16{word-spacing:-1.978667pt;}
.ws20{word-spacing:-1.844267pt;}
.ws9b{word-spacing:-1.808000pt;}
.ws14{word-spacing:-1.780800pt;}
.wsb9{word-spacing:-1.770667pt;}
.wsaa{word-spacing:-1.658667pt;}
.ws125{word-spacing:-1.625600pt;}
.ws127{word-spacing:-1.608533pt;}
.ws79{word-spacing:-1.552000pt;}
.wsf1{word-spacing:-1.541333pt;}
.ws68{word-spacing:-1.482667pt;}
.wsd7{word-spacing:-1.477333pt;}
.ws11d{word-spacing:-1.399467pt;}
.ws10c{word-spacing:-1.386667pt;}
.ws8d{word-spacing:-1.360000pt;}
.ws6e{word-spacing:-1.357867pt;}
.ws6f{word-spacing:-1.352800pt;}
.ws12f{word-spacing:-1.344000pt;}
.ws3d{word-spacing:-1.312000pt;}
.wsf3{word-spacing:-1.306667pt;}
.ws12a{word-spacing:-1.271467pt;}
.ws12b{word-spacing:-1.258667pt;}
.ws8c{word-spacing:-1.237333pt;}
.wsc0{word-spacing:-1.194667pt;}
.ws26{word-spacing:-1.165333pt;}
.wsb2{word-spacing:-1.152000pt;}
.ws15{word-spacing:-1.126400pt;}
.ws56{word-spacing:-1.125333pt;}
.wsb5{word-spacing:-1.120000pt;}
.ws138{word-spacing:-1.088000pt;}
.ws121{word-spacing:-1.075200pt;}
.wsda{word-spacing:-1.045333pt;}
.ws8f{word-spacing:-1.002667pt;}
.ws9c{word-spacing:-0.933333pt;}
.ws74{word-spacing:-0.896800pt;}
.ws132{word-spacing:-0.836267pt;}
.ws8e{word-spacing:-0.730667pt;}
.ws23{word-spacing:-0.694133pt;}
.wsdf{word-spacing:-0.661333pt;}
.ws130{word-spacing:-0.652800pt;}
.wsca{word-spacing:-0.570667pt;}
.wsc9{word-spacing:-0.565333pt;}
.ws2c{word-spacing:-0.466133pt;}
.ws9a{word-spacing:-0.458667pt;}
.wsfe{word-spacing:-0.442667pt;}
.wsee{word-spacing:-0.437333pt;}
.wsfd{word-spacing:-0.410667pt;}
.ws72{word-spacing:-0.390133pt;}
.ws71{word-spacing:-0.385067pt;}
.ws81{word-spacing:-0.293333pt;}
.ws137{word-spacing:-0.273067pt;}
.ws34{word-spacing:-0.213333pt;}
.ws17{word-spacing:-0.086133pt;}
.wsec{word-spacing:-0.080000pt;}
.ws2b{word-spacing:-0.076000pt;}
.ws36{word-spacing:-0.053333pt;}
.wse{word-spacing:-0.050667pt;}
.ws76{word-spacing:-0.048000pt;}
.ws109{word-spacing:-0.042667pt;}
.ws11b{word-spacing:-0.038400pt;}
.ws4e{word-spacing:-0.037333pt;}
.ws13{word-spacing:0.000000pt;}
.ws7e{word-spacing:0.117333pt;}
.wsba{word-spacing:0.149333pt;}
.ws57{word-spacing:0.160000pt;}
.ws122{word-spacing:0.162133pt;}
.wsa0{word-spacing:0.165333pt;}
.ws105{word-spacing:0.170667pt;}
.ws65{word-spacing:0.197333pt;}
.ws106{word-spacing:0.202667pt;}
.wsc5{word-spacing:0.288000pt;}
.ws7b{word-spacing:0.298667pt;}
.ws5c{word-spacing:0.362667pt;}
.wsc6{word-spacing:0.517333pt;}
.wse1{word-spacing:0.538667pt;}
.wsa5{word-spacing:0.544000pt;}
.ws61{word-spacing:0.560000pt;}
.ws70{word-spacing:0.562400pt;}
.wsaf{word-spacing:0.581333pt;}
.wsd4{word-spacing:0.602667pt;}
.wsb6{word-spacing:0.618667pt;}
.ws115{word-spacing:0.627200pt;}
.ws104{word-spacing:0.720000pt;}
.ws31{word-spacing:0.724533pt;}
.wscd{word-spacing:0.725333pt;}
.ws32{word-spacing:0.729600pt;}
.ws133{word-spacing:0.768000pt;}
.ws134{word-spacing:0.772267pt;}
.ws2d{word-spacing:0.825867pt;}
.ws48{word-spacing:0.832000pt;}
.ws22{word-spacing:0.856267pt;}
.wsae{word-spacing:0.858667pt;}
.ws11c{word-spacing:0.921600pt;}
.wse7{word-spacing:0.922667pt;}
.ws98{word-spacing:0.933333pt;}
.ws126{word-spacing:0.981333pt;}
.ws112{word-spacing:0.989867pt;}
.ws113{word-spacing:0.994133pt;}
.ws82{word-spacing:1.045333pt;}
.ws3b{word-spacing:1.066667pt;}
.ws116{word-spacing:1.088000pt;}
.wsd8{word-spacing:1.125333pt;}
.ws11e{word-spacing:1.181867pt;}
.ws95{word-spacing:1.200000pt;}
.wse3{word-spacing:1.226667pt;}
.ws69{word-spacing:1.269333pt;}
.ws7d{word-spacing:1.290667pt;}
.wse5{word-spacing:1.418667pt;}
.ws33{word-spacing:1.428800pt;}
.ws5f{word-spacing:1.536000pt;}
.ws10e{word-spacing:1.555200pt;}
.wsfc{word-spacing:1.594667pt;}
.wsb0{word-spacing:1.648000pt;}
.wsc8{word-spacing:1.653333pt;}
.ws88{word-spacing:1.658667pt;}
.ws18{word-spacing:1.712533pt;}
.ws120{word-spacing:1.753600pt;}
.wsab{word-spacing:1.781333pt;}
.wse0{word-spacing:1.824000pt;}
.ws50{word-spacing:1.840000pt;}
.wsff{word-spacing:1.882667pt;}
.ws94{word-spacing:1.936000pt;}
.ws1f{word-spacing:1.970933pt;}
.ws24{word-spacing:2.006400pt;}
.wsf7{word-spacing:2.058667pt;}
.ws114{word-spacing:2.077867pt;}
.ws2e{word-spacing:2.183733pt;}
.ws42{word-spacing:2.213333pt;}
.ws78{word-spacing:2.224000pt;}
.ws29{word-spacing:2.224267pt;}
.ws12e{word-spacing:2.316800pt;}
.wsef{word-spacing:2.421333pt;}
.ws67{word-spacing:2.517333pt;}
.ws8b{word-spacing:2.570667pt;}
.ws86{word-spacing:2.586667pt;}
.ws118{word-spacing:2.602667pt;}
.ws131{word-spacing:2.624000pt;}
.ws1c{word-spacing:2.690400pt;}
.ws1d{word-spacing:2.695467pt;}
.wsa2{word-spacing:2.704000pt;}
.ws21{word-spacing:2.736000pt;}
.ws111{word-spacing:2.752000pt;}
.wsed{word-spacing:2.757333pt;}
.wsc2{word-spacing:2.794667pt;}
.ws6d{word-spacing:2.862667pt;}
.ws99{word-spacing:2.890667pt;}
.wsf6{word-spacing:3.109333pt;}
.ws136{word-spacing:3.110400pt;}
.ws4b{word-spacing:3.146667pt;}
.ws101{word-spacing:3.152000pt;}
.wsd6{word-spacing:3.162667pt;}
.ws124{word-spacing:3.208533pt;}
.ws89{word-spacing:3.392000pt;}
.wsc4{word-spacing:3.434667pt;}
.wsbb{word-spacing:3.493333pt;}
.wsdc{word-spacing:3.520000pt;}
.wscc{word-spacing:3.525333pt;}
.wsd9{word-spacing:3.594667pt;}
.wsbf{word-spacing:3.632000pt;}
.ws25{word-spacing:3.724000pt;}
.ws10d{word-spacing:3.748800pt;}
.wsce{word-spacing:3.781333pt;}
.ws3a{word-spacing:3.813333pt;}
.wse9{word-spacing:3.872000pt;}
.ws55{word-spacing:3.888000pt;}
.ws12d{word-spacing:3.912533pt;}
.wsc1{word-spacing:3.994667pt;}
.ws10f{word-spacing:4.046400pt;}
.ws3c{word-spacing:4.058667pt;}
.ws80{word-spacing:4.069333pt;}
.wsa8{word-spacing:4.101333pt;}
.ws1a{word-spacing:4.109067pt;}
.wsdb{word-spacing:4.117333pt;}
.ws51{word-spacing:4.192000pt;}
.wse2{word-spacing:4.245333pt;}
.wsde{word-spacing:4.442667pt;}
.wscb{word-spacing:4.448000pt;}
.ws110{word-spacing:4.540800pt;}
.ws102{word-spacing:4.565333pt;}
.wsb8{word-spacing:4.602667pt;}
.wseb{word-spacing:4.618667pt;}
.wsac{word-spacing:4.629333pt;}
.wsf2{word-spacing:4.757333pt;}
.wsbe{word-spacing:4.789333pt;}
.wsb3{word-spacing:4.805333pt;}
.ws97{word-spacing:4.832000pt;}
.ws46{word-spacing:4.864000pt;}
.wsd3{word-spacing:4.992000pt;}
.wsfb{word-spacing:4.997333pt;}
.wsc7{word-spacing:5.002667pt;}
.ws135{word-spacing:5.009067pt;}
.ws27{word-spacing:5.081867pt;}
.ws28{word-spacing:5.086933pt;}
.ws129{word-spacing:5.111467pt;}
.ws103{word-spacing:5.184000pt;}
.ws3f{word-spacing:5.189333pt;}
.wsf9{word-spacing:5.194667pt;}
.ws1e{word-spacing:5.198400pt;}
.ws43{word-spacing:5.440000pt;}
.ws5a{word-spacing:5.445333pt;}
.ws117{word-spacing:5.461333pt;}
.ws11f{word-spacing:5.585067pt;}
.wsad{word-spacing:5.610667pt;}
.ws39{word-spacing:5.642667pt;}
.wscf{word-spacing:5.728000pt;}
.wsd0{word-spacing:5.733333pt;}
.ws4a{word-spacing:5.840000pt;}
.wsb7{word-spacing:5.856000pt;}
.ws12c{word-spacing:5.905067pt;}
.ws30{word-spacing:5.912800pt;}
.ws2f{word-spacing:5.917867pt;}
.ws1b{word-spacing:6.044533pt;}
.wsdd{word-spacing:6.058667pt;}
.ws8a{word-spacing:6.117333pt;}
.ws40{word-spacing:6.202667pt;}
.ws123{word-spacing:6.365867pt;}
.ws49{word-spacing:6.485333pt;}
.ws47{word-spacing:6.640000pt;}
.ws5b{word-spacing:6.752000pt;}
.ws38{word-spacing:6.757333pt;}
.wsd1{word-spacing:6.976000pt;}
.ws9e{word-spacing:7.130667pt;}
.wsa9{word-spacing:7.194667pt;}
.ws6c{word-spacing:7.237333pt;}
.ws44{word-spacing:7.397333pt;}
.wse6{word-spacing:7.418667pt;}
.ws4d{word-spacing:7.712000pt;}
.ws53{word-spacing:7.941333pt;}
.ws5d{word-spacing:7.968000pt;}
.ws107{word-spacing:8.042667pt;}
.wsd5{word-spacing:8.048000pt;}
.ws52{word-spacing:8.085333pt;}
.ws119{word-spacing:8.170667pt;}
.wse4{word-spacing:8.256000pt;}
.ws66{word-spacing:8.272000pt;}
.ws60{word-spacing:8.389333pt;}
.wsd2{word-spacing:8.394667pt;}
.ws91{word-spacing:8.581333pt;}
.ws5e{word-spacing:8.933333pt;}
.ws90{word-spacing:9.296000pt;}
.ws10b{word-spacing:9.504000pt;}
.ws54{word-spacing:9.616000pt;}
.ws19{word-spacing:9.885067pt;}
.wsf0{word-spacing:9.941333pt;}
.ws3e{word-spacing:9.952000pt;}
.ws83{word-spacing:10.357333pt;}
.ws63{word-spacing:10.981333pt;}
.ws92{word-spacing:11.109333pt;}
.ws85{word-spacing:11.210667pt;}
.ws11a{word-spacing:11.421867pt;}
.ws84{word-spacing:11.456000pt;}
.ws62{word-spacing:11.536000pt;}
.wsc3{word-spacing:11.781333pt;}
.ws41{word-spacing:12.048000pt;}
.wsb4{word-spacing:12.069333pt;}
.wsf8{word-spacing:12.085333pt;}
.ws96{word-spacing:12.106667pt;}
.ws93{word-spacing:12.474667pt;}
.ws9d{word-spacing:12.597333pt;}
.wsbc{word-spacing:12.773333pt;}
.wsfa{word-spacing:13.696000pt;}
.ws64{word-spacing:14.037333pt;}
.ws4c{word-spacing:15.072000pt;}
.wse8{word-spacing:17.050667pt;}
.wsa4{word-spacing:19.200000pt;}
.ws6b{word-spacing:26.293333pt;}
.ws59{word-spacing:38.976000pt;}
.ws77{word-spacing:250.235733pt;}
.wsd{word-spacing:251.858667pt;}
.wsa3{word-spacing:678.933333pt;}
._10{margin-left:-39.360000pt;}
._3c{margin-left:-14.882133pt;}
._f{margin-left:-13.859200pt;}
._c{margin-left:-12.743467pt;}
._e{margin-left:-11.640533pt;}
._8{margin-left:-10.376533pt;}
._d{margin-left:-8.525867pt;}
._9{margin-left:-7.279733pt;}
._6{margin-left:-5.944533pt;}
._5{margin-left:-4.973867pt;}
._1{margin-left:-3.924800pt;}
._2{margin-left:-2.264533pt;}
._0{margin-left:-1.290667pt;}
._3{width:1.056000pt;}
._4{width:2.246400pt;}
._7{width:4.005333pt;}
._a{width:5.127467pt;}
._11{width:6.151467pt;}
._3b{width:7.938667pt;}
._2c{width:81.126400pt;}
._1e{width:92.667733pt;}
._25{width:94.326400pt;}
._23{width:95.644800pt;}
._1f{width:97.676800pt;}
._19{width:98.985067pt;}
._24{width:100.018667pt;}
._17{width:104.529067pt;}
._18{width:106.248533pt;}
._2f{width:108.458133pt;}
._27{width:109.405867pt;}
._29{width:111.889067pt;}
._1d{width:116.526933pt;}
._2d{width:118.740800pt;}
._2b{width:120.046933pt;}
._22{width:121.536000pt;}
._1c{width:128.396800pt;}
._1a{width:132.586667pt;}
._20{width:134.246400pt;}
._2a{width:139.046400pt;}
._21{width:140.125867pt;}
._26{width:141.107200pt;}
._28{width:144.315733pt;}
._1b{width:146.171733pt;}
._14{width:151.419733pt;}
._3a{width:162.508800pt;}
._13{width:175.475200pt;}
._12{width:176.839467pt;}
._16{width:195.963733pt;}
._2e{width:197.307733pt;}
._b{width:222.936000pt;}
._37{width:281.032533pt;}
._39{width:285.815467pt;}
._38{width:292.898133pt;}
._35{width:303.249067pt;}
._15{width:394.043733pt;}
._33{width:440.768000pt;}
._34{width:483.456000pt;}
._32{width:514.248533pt;}
._36{width:599.684267pt;}
._30{width:706.419200pt;}
._31{width:715.676800pt;}
.fs2{font-size:26.666667pt;}
.fs5{font-size:30.933333pt;}
.fs8{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs1{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:0.040000pt;}
.y39{bottom:63.528667pt;}
.ycb{bottom:69.785733pt;}
.y112{bottom:71.136800pt;}
.y106{bottom:71.836133pt;}
.y80{bottom:73.839467pt;}
.y5e{bottom:75.011733pt;}
.y38{bottom:78.195333pt;}
.yca{bottom:81.086000pt;}
.y111{bottom:87.803467pt;}
.y105{bottom:88.502800pt;}
.y7f{bottom:90.506133pt;}
.y5d{bottom:91.678400pt;}
.y104{bottom:105.169467pt;}
.y7e{bottom:107.172800pt;}
.y5c{bottom:108.345067pt;}
.yc9{bottom:110.818267pt;}
.yc7{bottom:114.552667pt;}
.y110{bottom:115.807467pt;}
.y103{bottom:121.836133pt;}
.y7d{bottom:123.839467pt;}
.y5b{bottom:125.011733pt;}
.yc6{bottom:127.886000pt;}
.yc8{bottom:130.435333pt;}
.y37{bottom:133.769267pt;}
.y102{bottom:138.502800pt;}
.y5a{bottom:141.678400pt;}
.y36{bottom:149.103600pt;}
.yc5{bottom:150.051333pt;}
.y7c{bottom:151.844800pt;}
.y10f{bottom:155.151733pt;}
.y101{bottom:155.169467pt;}
.y59{bottom:158.345067pt;}
.yc4{bottom:159.651333pt;}
.y35{bottom:164.436600pt;}
.y10e{bottom:171.818400pt;}
.y100{bottom:171.836133pt;}
.y58{bottom:175.011733pt;}
.y34{bottom:179.769600pt;}
.yc3{bottom:187.684400pt;}
.y10d{bottom:188.485067pt;}
.yff{bottom:188.502800pt;}
.y7b{bottom:190.523067pt;}
.y57{bottom:191.678400pt;}
.y33{bottom:195.102600pt;}
.yc2{bottom:196.900400pt;}
.y10c{bottom:205.151733pt;}
.yfe{bottom:205.169467pt;}
.y7a{bottom:207.189733pt;}
.y56{bottom:208.345067pt;}
.y32{bottom:210.436733pt;}
.y10b{bottom:221.818400pt;}
.yfd{bottom:221.836133pt;}
.y79{bottom:223.856400pt;}
.yc1{bottom:224.549467pt;}
.y31{bottom:225.769733pt;}
.y55{bottom:236.350400pt;}
.y10a{bottom:238.485067pt;}
.yfc{bottom:238.502800pt;}
.y78{bottom:240.523067pt;}
.y30{bottom:241.102733pt;}
.yc0{bottom:242.981467pt;}
.y109{bottom:255.151733pt;}
.yfb{bottom:255.169467pt;}
.y77{bottom:257.189733pt;}
.y2f{bottom:257.406400pt;}
.ybf{bottom:261.414533pt;}
.ybc{bottom:262.132400pt;}
.y108{bottom:271.818400pt;}
.yfa{bottom:271.836133pt;}
.y76{bottom:273.856400pt;}
.y54{bottom:275.695200pt;}
.ybe{bottom:279.846533pt;}
.yf9{bottom:288.502800pt;}
.y75{bottom:290.523067pt;}
.y53{bottom:292.361867pt;}
.ybd{bottom:298.997467pt;}
.y107{bottom:299.823867pt;}
.yf8{bottom:305.169467pt;}
.y2e{bottom:306.160200pt;}
.y2c{bottom:307.131000pt;}
.y74{bottom:307.189733pt;}
.y52{bottom:309.028533pt;}
.ybb{bottom:318.147333pt;}
.y2d{bottom:321.493200pt;}
.yf7{bottom:321.836133pt;}
.y2b{bottom:322.463867pt;}
.y73{bottom:323.856400pt;}
.y51{bottom:325.695200pt;}
.yba{bottom:327.363333pt;}
.yf6{bottom:338.502800pt;}
.y72{bottom:340.523067pt;}
.y2a{bottom:342.353200pt;}
.y50{bottom:342.361867pt;}
.yf5{bottom:355.169467pt;}
.yb8{bottom:356.363867pt;}
.y71{bottom:357.189733pt;}
.y4f{bottom:359.028533pt;}
.y29{bottom:361.276867pt;}
.yb7{bottom:363.030533pt;}
.yb9{bottom:369.697200pt;}
.yf4{bottom:371.836133pt;}
.y70{bottom:373.856400pt;}
.y4e{bottom:375.695200pt;}
.y28{bottom:376.609867pt;}
.yf3{bottom:388.502800pt;}
.y6f{bottom:390.523067pt;}
.y27{bottom:391.942867pt;}
.y4d{bottom:392.361867pt;}
.yb6{bottom:393.593333pt;}
.yf2{bottom:405.169467pt;}
.y6e{bottom:407.189733pt;}
.y26{bottom:407.275867pt;}
.y4c{bottom:409.028533pt;}
.yf1{bottom:421.836133pt;}
.y25{bottom:422.608867pt;}
.y6d{bottom:423.856400pt;}
.y4b{bottom:425.695200pt;}
.yb5{bottom:429.152533pt;}
.ydd{bottom:432.700000pt;}
.y24{bottom:437.941867pt;}
.yf0{bottom:438.502800pt;}
.y6c{bottom:440.523067pt;}
.y4a{bottom:442.361867pt;}
.yb4{bottom:445.819200pt;}
.ydc{bottom:446.033333pt;}
.y23{bottom:453.274867pt;}
.yef{bottom:455.169467pt;}
.y6b{bottom:457.189733pt;}
.y49{bottom:459.028533pt;}
.yb3{bottom:462.485867pt;}
.ydb{bottom:464.465333pt;}
.y22{bottom:468.607867pt;}
.yee{bottom:471.836133pt;}
.y6a{bottom:473.856400pt;}
.y48{bottom:475.695200pt;}
.yb2{bottom:479.152533pt;}
.yda{bottom:482.897333pt;}
.y21{bottom:483.940867pt;}
.yd6{bottom:487.996000pt;}
.yed{bottom:488.502800pt;}
.y69{bottom:490.523067pt;}
.y47{bottom:492.361867pt;}
.y150{bottom:492.443867pt;}
.y12d{bottom:492.723333pt;}
.yb1{bottom:495.819200pt;}
.y20{bottom:499.273867pt;}
.yd5{bottom:501.329333pt;}
.yec{bottom:505.169467pt;}
.y14f{bottom:506.443867pt;}
.y68{bottom:507.189733pt;}
.y12c{bottom:507.390000pt;}
.y46{bottom:509.028533pt;}
.yb0{bottom:512.485867pt;}
.y1f{bottom:514.606867pt;}
.yd9{bottom:519.762400pt;}
.y14e{bottom:520.443867pt;}
.yeb{bottom:521.836133pt;}
.y12b{bottom:522.056667pt;}
.y67{bottom:523.856400pt;}
.y45{bottom:525.695200pt;}
.yaf{bottom:529.152533pt;}
.y1e{bottom:529.939867pt;}
.y14d{bottom:534.443867pt;}
.y12a{bottom:536.723333pt;}
.yd8{bottom:538.194400pt;}
.yea{bottom:538.502800pt;}
.y66{bottom:540.523067pt;}
.y44{bottom:542.361867pt;}
.y1d{bottom:545.272867pt;}
.yae{bottom:545.819200pt;}
.y14c{bottom:549.110533pt;}
.y129{bottom:551.390000pt;}
.ye9{bottom:555.169467pt;}
.yd7{bottom:556.626400pt;}
.y65{bottom:557.189733pt;}
.y43{bottom:559.028533pt;}
.y1c{bottom:560.605867pt;}
.yad{bottom:562.485867pt;}
.y14b{bottom:563.777200pt;}
.y128{bottom:566.056667pt;}
.ye8{bottom:571.836133pt;}
.y64{bottom:573.856400pt;}
.yd4{bottom:575.058400pt;}
.y42{bottom:575.695200pt;}
.y1b{bottom:575.938867pt;}
.y14a{bottom:578.443867pt;}
.yac{bottom:579.819200pt;}
.y127{bottom:580.723333pt;}
.ye7{bottom:588.502800pt;}
.y63{bottom:590.523067pt;}
.y1a{bottom:591.271867pt;}
.y41{bottom:592.361867pt;}
.y149{bottom:593.110533pt;}
.yd3{bottom:593.491467pt;}
.y126{bottom:595.390000pt;}
.yab{bottom:597.152533pt;}
.ye6{bottom:605.169467pt;}
.y19{bottom:606.604867pt;}
.y148{bottom:607.777200pt;}
.y40{bottom:609.028533pt;}
.y125{bottom:610.056667pt;}
.yd2{bottom:611.923467pt;}
.y62{bottom:612.859067pt;}
.yaa{bottom:614.485867pt;}
.ye5{bottom:621.836133pt;}
.y147{bottom:622.443867pt;}
.y18{bottom:622.908533pt;}
.y124{bottom:624.723333pt;}
.y3f{bottom:625.695200pt;}
.yd1{bottom:630.355467pt;}
.ya9{bottom:631.819200pt;}
.y146{bottom:637.110533pt;}
.ye4{bottom:638.502800pt;}
.y61{bottom:638.974400pt;}
.y123{bottom:639.390000pt;}
.y3e{bottom:642.361867pt;}
.yd0{bottom:648.787467pt;}
.ya8{bottom:649.152533pt;}
.y145{bottom:651.777200pt;}
.y122{bottom:654.056667pt;}
.ye3{bottom:655.169467pt;}
.y60{bottom:655.641067pt;}
.y144{bottom:665.777200pt;}
.ya7{bottom:666.485867pt;}
.ycf{bottom:667.219467pt;}
.y121{bottom:668.723333pt;}
.y3d{bottom:670.367200pt;}
.ye2{bottom:671.836133pt;}
.y5f{bottom:672.307733pt;}
.y17{bottom:676.461867pt;}
.y143{bottom:679.777200pt;}
.y120{bottom:683.390000pt;}
.ya6{bottom:683.819200pt;}
.yce{bottom:685.652533pt;}
.ye1{bottom:688.502800pt;}
.y16{bottom:693.128400pt;}
.y142{bottom:693.777200pt;}
.y11f{bottom:698.056667pt;}
.ye0{bottom:705.169467pt;}
.y141{bottom:707.777200pt;}
.ycd{bottom:708.198267pt;}
.y15{bottom:709.175333pt;}
.ya5{bottom:712.491333pt;}
.y11e{bottom:712.723333pt;}
.y140{bottom:721.777200pt;}
.ydf{bottom:721.836133pt;}
.ycc{bottom:722.864667pt;}
.y14{bottom:725.842000pt;}
.y11d{bottom:727.390000pt;}
.y13f{bottom:735.777200pt;}
.yde{bottom:738.502800pt;}
.y91{bottom:743.211800pt;}
.y8f{bottom:744.182467pt;}
.y11c{bottom:745.835333pt;}
.y13e{bottom:749.777200pt;}
.ya4{bottom:751.836133pt;}
.y12{bottom:753.807467pt;}
.y13{bottom:753.847467pt;}
.y9f{bottom:755.169467pt;}
.y90{bottom:758.544800pt;}
.y8e{bottom:759.515333pt;}
.y13d{bottom:763.777200pt;}
.ya3{bottom:769.169467pt;}
.y9e{bottom:771.836133pt;}
.y10{bottom:775.140800pt;}
.y11{bottom:775.180800pt;}
.y13c{bottom:777.777200pt;}
.y11b{bottom:779.172267pt;}
.y8d{bottom:779.403467pt;}
.ya2{bottom:786.502800pt;}
.y9d{bottom:788.502800pt;}
.y13b{bottom:791.777200pt;}
.y11a{bottom:795.171867pt;}
.y8c{bottom:798.321933pt;}
.ya1{bottom:803.836133pt;}
.y9c{bottom:805.169467pt;}
.y13a{bottom:805.777200pt;}
.y119{bottom:811.171467pt;}
.y8b{bottom:813.654933pt;}
.y139{bottom:819.777200pt;}
.ya0{bottom:821.169467pt;}
.y9b{bottom:821.836133pt;}
.yf{bottom:826.750267pt;}
.y118{bottom:827.171067pt;}
.y8a{bottom:828.987933pt;}
.y138{bottom:833.777200pt;}
.y9a{bottom:838.502800pt;}
.y117{bottom:843.170667pt;}
.y89{bottom:844.322733pt;}
.y137{bottom:847.777200pt;}
.ye{bottom:847.816667pt;}
.y99{bottom:855.169467pt;}
.y116{bottom:859.170267pt;}
.y88{bottom:859.655733pt;}
.y136{bottom:861.777200pt;}
.yd{bottom:863.863600pt;}
.y98{bottom:871.836133pt;}
.y87{bottom:874.988733pt;}
.y115{bottom:875.169867pt;}
.y135{bottom:875.777200pt;}
.y97{bottom:888.502800pt;}
.y134{bottom:889.777200pt;}
.y86{bottom:890.321733pt;}
.y114{bottom:891.169467pt;}
.yb{bottom:891.827733pt;}
.yc{bottom:891.867733pt;}
.y133{bottom:903.777200pt;}
.y96{bottom:905.169467pt;}
.y85{bottom:905.654733pt;}
.y113{bottom:907.169067pt;}
.y9{bottom:913.161067pt;}
.ya{bottom:913.201067pt;}
.y132{bottom:917.777200pt;}
.y84{bottom:920.989133pt;}
.y95{bottom:921.836133pt;}
.y131{bottom:931.777200pt;}
.y83{bottom:936.322133pt;}
.y94{bottom:938.502800pt;}
.y130{bottom:945.777200pt;}
.y82{bottom:951.655133pt;}
.y3a{bottom:954.879867pt;}
.y93{bottom:955.169467pt;}
.y12f{bottom:959.777200pt;}
.y81{bottom:966.988133pt;}
.y92{bottom:971.836133pt;}
.y12e{bottom:973.777200pt;}
.y5{bottom:974.924133pt;}
.y7{bottom:978.657600pt;}
.y4{bottom:982.924133pt;}
.y2{bottom:983.143733pt;}
.y3{bottom:990.924133pt;}
.y1{bottom:997.543733pt;}
.y6{bottom:998.726400pt;}
.y3b{bottom:1009.631467pt;}
.y3c{bottom:1010.602267pt;}
.h3{height:19.531250pt;}
.hb{height:22.520312pt;}
.ha{height:22.520846pt;}
.h8{height:22.521379pt;}
.h13{height:31.062500pt;}
.h12{height:31.083333pt;}
.h10{height:33.003906pt;}
.hf{height:33.048198pt;}
.hc{height:33.053531pt;}
.h11{height:33.226708pt;}
.h4{height:34.945312pt;}
.h2{height:34.968750pt;}
.hd{height:36.936198pt;}
.he{height:37.109375pt;}
.h9{height:38.828125pt;}
.h14{height:38.854167pt;}
.h7{height:40.120313pt;}
.h1{height:42.739583pt;}
.h6{height:46.593750pt;}
.h15{height:57.729167pt;}
.h18{height:57.750000pt;}
.h16{height:67.947333pt;}
.h17{height:67.951600pt;}
.h5{height:1055.960000pt;}
.h0{height:1056.000000pt;}
.w1{width:812.600000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:1.700800pt;}
.x18{left:52.724533pt;}
.x1d{left:58.057867pt;}
.x19{left:75.401733pt;}
.xe{left:89.152933pt;}
.xf{left:90.853733pt;}
.x3{left:95.707067pt;}
.x2a{left:101.858533pt;}
.x2{left:105.123067pt;}
.xb{left:108.462400pt;}
.x2b{left:113.197067pt;}
.x2c{left:115.639733pt;}
.x14{left:131.659867pt;}
.xc{left:145.868267pt;}
.x7{left:147.510133pt;}
.x8{left:149.210933pt;}
.x10{left:153.720800pt;}
.x11{left:155.421600pt;}
.x1{left:163.972267pt;}
.x15{left:167.560267pt;}
.x12{left:178.733600pt;}
.x16{left:201.680400pt;}
.x9{left:213.716933pt;}
.xa{left:215.417733pt;}
.x28{left:233.237067pt;}
.xd{left:246.674400pt;}
.x29{left:261.207200pt;}
.x13{left:340.325333pt;}
.x1a{left:404.219067pt;}
.x1b{left:426.898133pt;}
.x1c{left:433.031600pt;}
.x1f{left:442.018400pt;}
.x2e{left:461.204533pt;}
.x20{left:464.694267pt;}
.x2d{left:467.137333pt;}
.x21{left:513.672267pt;}
.x1e{left:535.133067pt;}
.x22{left:573.904800pt;}
.x23{left:578.842400pt;}
.x24{left:635.377867pt;}
.x4{left:636.365200pt;}
.x25{left:640.022133pt;}
.x5{left:643.274800pt;}
.x26{left:687.509067pt;}
.x17{left:703.666800pt;}
.x27{left:709.929333pt;}
}




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