
    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_2800439f93f078f8cab628f5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.745000;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_bf0c7065e412c8a3cb307995.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.934000;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_05f7a7c2ea2b9b7fc6fa9451.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.907291;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_8226e245609ba04683229b19.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.911511;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_65f4a167dd6344dd64f99d37.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.738000;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_fc70830a6c074d37dc1949ee.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.919000;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_6be8e358bf36751766a80d79.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.081000;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_4cfe6c49827b515a6fb9c843.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.081000;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_c2d0419012c21a4b199dd24e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.916000;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_f041d30730617f3e858339e4.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.100000;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_2d3a99597d1dfe18b8272560.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.090000;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_d710de6d336ac84cdeac2d17.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.952000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_4cfe6c49827b515a6fb9c843.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.081000;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_a525e885c3155039009a65d7.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.708000;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_c53050b2378417cb09980e39.woff2')format("woff");}.fff{font-family:fff;line-height:0.892000;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_2bbdf1125026744cdefbc2fa.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.944000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-17.982000px;}
.v2{vertical-align:-14.385600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.828400px;}
.v5{vertical-align:21.966000px;}
.v3{vertical-align:23.976000px;}
.ls14{letter-spacing:-4.860000px;}
.ls1a{letter-spacing:-4.692000px;}
.ls12{letter-spacing:-4.482000px;}
.ls5{letter-spacing:-4.212000px;}
.ls16{letter-spacing:-3.996000px;}
.ls3{letter-spacing:-3.369600px;}
.ls19{letter-spacing:-3.276000px;}
.ls8{letter-spacing:-2.214000px;}
.ls15{letter-spacing:-2.052000px;}
.ls1b{letter-spacing:-1.638000px;}
.lse{letter-spacing:-0.594000px;}
.ls2{letter-spacing:-0.378000px;}
.ls4{letter-spacing:-0.357000px;}
.ls11{letter-spacing:-0.270000px;}
.ls1c{letter-spacing:-0.210000px;}
.ls13{letter-spacing:-0.192390px;}
.ls18{letter-spacing:-0.162000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000048px;}
.ls17{letter-spacing:0.153912px;}
.ls6{letter-spacing:0.162000px;}
.ls10{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.302400px;}
.lsd{letter-spacing:0.486000px;}
.lsf{letter-spacing:0.536706px;}
.lsc{letter-spacing:2.273400px;}
.lsb{letter-spacing:2.298186px;}
.lsa{letter-spacing:3.915000px;}
.ls9{letter-spacing:3.942000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-28.800000px;}
.ws54{word-spacing:-14.418000px;}
.ws34{word-spacing:-14.400000px;}
.wsa9{word-spacing:-14.148000px;}
.wsab{word-spacing:-12.366000px;}
.ws69{word-spacing:-11.534400px;}
.wsc1{word-spacing:-11.214000px;}
.wscf{word-spacing:-11.004000px;}
.ws3{word-spacing:-10.200000px;}
.ws53{word-spacing:-9.843000px;}
.ws4{word-spacing:-8.405694px;}
.ws56{word-spacing:-6.724555px;}
.wsce{word-spacing:-5.508000px;}
.ws7e{word-spacing:-3.024000px;}
.ws44{word-spacing:-2.862000px;}
.wsba{word-spacing:-2.808000px;}
.ws3d{word-spacing:-2.754000px;}
.wsb2{word-spacing:-2.700000px;}
.ws4a{word-spacing:-2.646000px;}
.ws90{word-spacing:-2.635200px;}
.ws94{word-spacing:-2.592000px;}
.ws86{word-spacing:-2.538000px;}
.ws3b{word-spacing:-2.376000px;}
.ws84{word-spacing:-2.322000px;}
.ws3e{word-spacing:-2.268000px;}
.ws68{word-spacing:-2.246400px;}
.ws9f{word-spacing:-2.214000px;}
.wscb{word-spacing:-2.184000px;}
.ws78{word-spacing:-2.160000px;}
.ws28{word-spacing:-2.106000px;}
.wse4{word-spacing:-2.100000px;}
.ws1f{word-spacing:-2.052000px;}
.ws33{word-spacing:-1.998000px;}
.ws22{word-spacing:-1.944000px;}
.ws3a{word-spacing:-1.890000px;}
.ws9c{word-spacing:-1.836000px;}
.ws4f{word-spacing:-1.782000px;}
.ws1d{word-spacing:-1.728000px;}
.ws48{word-spacing:-1.674000px;}
.wsb0{word-spacing:-1.620000px;}
.ws58{word-spacing:-1.566000px;}
.ws1b{word-spacing:-1.512000px;}
.wse{word-spacing:-1.404000px;}
.ws47{word-spacing:-1.350000px;}
.ws66{word-spacing:-1.296000px;}
.wsd1{word-spacing:-1.260000px;}
.ws85{word-spacing:-1.242000px;}
.ws4e{word-spacing:-1.188000px;}
.wsc7{word-spacing:-1.092000px;}
.wsa7{word-spacing:-1.080000px;}
.ws7{word-spacing:-0.972000px;}
.ws23{word-spacing:-0.918000px;}
.wsdd{word-spacing:-0.882000px;}
.ws6c{word-spacing:-0.864000px;}
.ws80{word-spacing:-0.810000px;}
.ws5b{word-spacing:-0.756000px;}
.ws5f{word-spacing:-0.702000px;}
.ws20{word-spacing:-0.648000px;}
.wsb8{word-spacing:-0.594000px;}
.wsaf{word-spacing:-0.486000px;}
.wsd5{word-spacing:-0.462000px;}
.wsf{word-spacing:-0.432000px;}
.wsd7{word-spacing:-0.420000px;}
.wse0{word-spacing:-0.336000px;}
.ws10{word-spacing:-0.324000px;}
.ws79{word-spacing:-0.270000px;}
.wsca{word-spacing:-0.252000px;}
.ws52{word-spacing:-0.216000px;}
.wsd9{word-spacing:-0.210000px;}
.wsac{word-spacing:-0.192390px;}
.ws6e{word-spacing:-0.162000px;}
.wsdb{word-spacing:-0.126000px;}
.ws24{word-spacing:-0.108000px;}
.wsdc{word-spacing:-0.084000px;}
.ws1{word-spacing:-0.066000px;}
.ws25{word-spacing:-0.054000px;}
.ws55{word-spacing:-0.038478px;}
.ws2{word-spacing:0.000000px;}
.ws8d{word-spacing:0.054000px;}
.wsaa{word-spacing:0.153912px;}
.wsb1{word-spacing:0.162000px;}
.wse2{word-spacing:0.210000px;}
.ws30{word-spacing:0.216000px;}
.ws11{word-spacing:0.270000px;}
.ws1c{word-spacing:0.324000px;}
.ws6{word-spacing:0.378000px;}
.ws6b{word-spacing:0.432000px;}
.ws50{word-spacing:0.486000px;}
.wse1{word-spacing:0.504000px;}
.wsa2{word-spacing:0.540000px;}
.wsd6{word-spacing:0.588000px;}
.wse3{word-spacing:0.630000px;}
.ws7a{word-spacing:0.702000px;}
.ws7f{word-spacing:0.756000px;}
.wsd8{word-spacing:0.798000px;}
.ws70{word-spacing:0.820800px;}
.ws6d{word-spacing:0.918000px;}
.ws9{word-spacing:0.972000px;}
.wsae{word-spacing:1.080000px;}
.ws43{word-spacing:1.134000px;}
.wsad{word-spacing:1.188000px;}
.wsb5{word-spacing:1.242000px;}
.wsbf{word-spacing:1.252800px;}
.wsa6{word-spacing:1.296000px;}
.wsc0{word-spacing:1.339200px;}
.ws62{word-spacing:1.350000px;}
.ws51{word-spacing:1.404000px;}
.wsc2{word-spacing:1.458000px;}
.ws89{word-spacing:1.512000px;}
.ws8{word-spacing:1.566000px;}
.ws19{word-spacing:1.620000px;}
.wsda{word-spacing:1.638000px;}
.ws2b{word-spacing:1.674000px;}
.ws2f{word-spacing:1.728000px;}
.ws5{word-spacing:1.782000px;}
.ws76{word-spacing:1.836000px;}
.ws9e{word-spacing:1.890000px;}
.wsc9{word-spacing:1.932000px;}
.wsbc{word-spacing:1.944000px;}
.ws71{word-spacing:2.030400px;}
.ws15{word-spacing:2.052000px;}
.wsa4{word-spacing:2.106000px;}
.ws1e{word-spacing:2.160000px;}
.ws6a{word-spacing:2.214000px;}
.ws3c{word-spacing:2.268000px;}
.wsbe{word-spacing:2.289600px;}
.wsd2{word-spacing:2.310000px;}
.ws91{word-spacing:2.322000px;}
.ws4c{word-spacing:2.376000px;}
.wsd3{word-spacing:2.394000px;}
.ws6f{word-spacing:2.419200px;}
.ws99{word-spacing:2.430000px;}
.ws60{word-spacing:2.484000px;}
.ws73{word-spacing:2.505600px;}
.ws4b{word-spacing:2.538000px;}
.ws95{word-spacing:2.592000px;}
.ws2e{word-spacing:2.646000px;}
.ws61{word-spacing:2.700000px;}
.ws32{word-spacing:2.754000px;}
.wsbd{word-spacing:2.764800px;}
.ws27{word-spacing:2.808000px;}
.ws31{word-spacing:2.916000px;}
.wsa0{word-spacing:2.970000px;}
.ws81{word-spacing:3.024000px;}
.ws2c{word-spacing:3.078000px;}
.ws39{word-spacing:3.186000px;}
.ws82{word-spacing:3.240000px;}
.wsc8{word-spacing:3.276000px;}
.ws37{word-spacing:3.294000px;}
.ws29{word-spacing:3.348000px;}
.ws42{word-spacing:3.369600px;}
.wsb7{word-spacing:3.402000px;}
.ws5c{word-spacing:3.456000px;}
.ws9a{word-spacing:3.510000px;}
.ws93{word-spacing:3.564000px;}
.ws4d{word-spacing:3.618000px;}
.ws92{word-spacing:3.672000px;}
.ws7c{word-spacing:3.726000px;}
.ws2a{word-spacing:3.780000px;}
.ws8a{word-spacing:3.942000px;}
.wsd0{word-spacing:3.948000px;}
.wsb4{word-spacing:3.996000px;}
.ws83{word-spacing:4.050000px;}
.ws21{word-spacing:4.104000px;}
.wsbb{word-spacing:4.158000px;}
.ws5a{word-spacing:4.212000px;}
.wsb9{word-spacing:4.266000px;}
.ws16{word-spacing:4.320000px;}
.ws41{word-spacing:4.374000px;}
.ws46{word-spacing:4.428000px;}
.ws45{word-spacing:4.482000px;}
.ws57{word-spacing:4.536000px;}
.wsdf{word-spacing:4.620000px;}
.ws5e{word-spacing:4.644000px;}
.ws75{word-spacing:4.698000px;}
.wsde{word-spacing:4.704000px;}
.ws49{word-spacing:4.752000px;}
.wsd{word-spacing:4.806000px;}
.wsa1{word-spacing:4.860000px;}
.ws98{word-spacing:4.914000px;}
.ws87{word-spacing:4.968000px;}
.ws7d{word-spacing:5.022000px;}
.wsb3{word-spacing:5.076000px;}
.ws13{word-spacing:5.184000px;}
.ws64{word-spacing:5.238000px;}
.ws97{word-spacing:5.292000px;}
.ws3f{word-spacing:5.400000px;}
.wsd4{word-spacing:5.460000px;}
.ws9d{word-spacing:5.562000px;}
.wsa8{word-spacing:5.724000px;}
.ws12{word-spacing:5.778000px;}
.ws38{word-spacing:5.832000px;}
.ws17{word-spacing:5.940000px;}
.ws74{word-spacing:5.994000px;}
.ws67{word-spacing:6.004800px;}
.ws8b{word-spacing:6.102000px;}
.wsc4{word-spacing:6.210000px;}
.ws9b{word-spacing:6.264000px;}
.ws14{word-spacing:6.318000px;}
.ws96{word-spacing:6.426000px;}
.ws26{word-spacing:6.534000px;}
.ws77{word-spacing:6.642000px;}
.ws59{word-spacing:6.696000px;}
.wsa3{word-spacing:6.750000px;}
.wsc{word-spacing:6.858000px;}
.ws35{word-spacing:6.912000px;}
.ws2d{word-spacing:7.074000px;}
.wsb6{word-spacing:7.182000px;}
.ws7b{word-spacing:7.290000px;}
.ws88{word-spacing:7.344000px;}
.ws36{word-spacing:7.398000px;}
.ws1a{word-spacing:7.452000px;}
.wscd{word-spacing:7.476000px;}
.ws8c{word-spacing:7.560000px;}
.ws5d{word-spacing:7.614000px;}
.ws40{word-spacing:7.830000px;}
.wsa5{word-spacing:8.154000px;}
.ws18{word-spacing:8.262000px;}
.ws63{word-spacing:8.316000px;}
.wsc3{word-spacing:11.610000px;}
.ws65{word-spacing:13.780800px;}
.wsa{word-spacing:13.986000px;}
.ws8f{word-spacing:14.428800px;}
.ws8e{word-spacing:15.552000px;}
.wscc{word-spacing:17.010000px;}
.wsb{word-spacing:18.792000px;}
.ws72{word-spacing:19.353600px;}
.wsc6{word-spacing:19.740000px;}
.wsc5{word-spacing:21.084000px;}
._5{margin-left:-1694.682600px;}
._f{margin-left:-1690.482600px;}
._e{margin-left:-13.216200px;}
._c{margin-left:-7.418400px;}
._6{margin-left:-5.940000px;}
._0{margin-left:-4.752000px;}
._3{margin-left:-3.570600px;}
._4{margin-left:-2.556000px;}
._1{margin-left:-1.296000px;}
._d{width:1.009800px;}
._2{width:2.016000px;}
._9{width:3.591000px;}
._8{width:5.184000px;}
._7{width:6.485400px;}
._b{width:7.580958px;}
._a{width:8.583840px;}
.fc3{color:rgb(91,155,213);}
.fc2{color:rgb(0,176,80);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,1,1);}
.fs8{font-size:25.185600px;}
.fs7{font-size:31.482000px;}
.fsb{font-size:38.478000px;}
.fsa{font-size:41.976000px;}
.fsc{font-size:42.000000px;}
.fs9{font-size:43.200000px;}
.fs4{font-size:51.000000px;}
.fs6{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs2{font-size:90.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y14d{bottom:84.890400px;}
.y7a{bottom:85.039350px;}
.y1cd{bottom:87.170400px;}
.y2e{bottom:88.635750px;}
.y96{bottom:90.285900px;}
.y55{bottom:95.163900px;}
.y79{bottom:97.999350px;}
.ydb{bottom:101.595750px;}
.y1cc{bottom:102.174900px;}
.y1a5{bottom:102.660150px;}
.y14c{bottom:103.344900px;}
.yb3{bottom:104.377350px;}
.y9{bottom:106.216500px;}
.y2d{bottom:107.973750px;}
.y95{bottom:108.281400px;}
.y185{bottom:110.959350px;}
.y54{bottom:112.862400px;}
.y78{bottom:114.555750px;}
.y1cb{bottom:117.179400px;}
.yda{bottom:117.337350px;}
.y1a4{bottom:117.664650px;}
.yb2{bottom:120.933750px;}
.y119{bottom:123.715350px;}
.y184{bottom:123.919350px;}
.y8{bottom:124.216500px;}
.y94{bottom:126.276900px;}
.yd9{bottom:130.297350px;}
.y53{bottom:130.560900px;}
.y118{bottom:136.675350px;}
.y183{bottom:136.879350px;}
.y128{bottom:137.733300px;}
.y14b{bottom:138.809400px;}
.yb1{bottom:140.271750px;}
.y7{bottom:142.216500px;}
.yd8{bottom:143.257350px;}
.y93{bottom:144.272400px;}
.y1ca{bottom:144.930900px;}
.y1a3{bottom:145.416150px;}
.y52{bottom:148.259400px;}
.y175{bottom:148.422000px;}
.y117{bottom:149.635350px;}
.y77{bottom:149.787000px;}
.y2c{bottom:153.422100px;}
.y127{bottom:155.728800px;}
.y15d{bottom:155.819400px;}
.yb0{bottom:156.013200px;}
.y14a{bottom:157.263900px;}
.yd7{bottom:159.813750px;}
.y1c9{bottom:159.935400px;}
.y1a2{bottom:160.420650px;}
.y92{bottom:162.267900px;}
.y116{bottom:166.191750px;}
.y76{bottom:167.782500px;}
.y174{bottom:169.428000px;}
.y2b{bottom:171.417600px;}
.yaf{bottom:172.569600px;}
.yf8{bottom:172.770600px;}
.y126{bottom:173.724300px;}
.y182{bottom:173.855400px;}
.y15c{bottom:174.273900px;}
.yd6{bottom:175.555200px;}
.y149{bottom:175.718400px;}
.y91{bottom:180.263400px;}
.y51{bottom:182.967900px;}
.y75{bottom:185.778000px;}
.y173{bottom:187.423500px;}
.y1c8{bottom:187.686900px;}
.y1a1{bottom:188.172150px;}
.y2a{bottom:189.413100px;}
.yf7{bottom:190.766100px;}
.y125{bottom:191.719800px;}
.y181{bottom:191.850900px;}
.yae{bottom:191.907600px;}
.yd5{bottom:192.111600px;}
.y15b{bottom:192.728400px;}
.y148{bottom:194.172900px;}
.y50{bottom:200.666400px;}
.y1c7{bottom:202.691400px;}
.y1a0{bottom:203.176650px;}
.y74{bottom:203.773500px;}
.y172{bottom:205.419000px;}
.y29{bottom:207.408600px;}
.yad{bottom:207.649200px;}
.yd4{bottom:207.853200px;}
.yf6{bottom:208.761600px;}
.y115{bottom:209.740200px;}
.y124{bottom:209.846400px;}
.y15a{bottom:211.182900px;}
.y147{bottom:212.627400px;}
.y90{bottom:215.519250px;}
.y1c6{bottom:217.695900px;}
.y19f{bottom:218.181150px;}
.y4f{bottom:218.364900px;}
.y73{bottom:221.769000px;}
.y171{bottom:223.414500px;}
.yac{bottom:224.205600px;}
.yd3{bottom:224.409600px;}
.y28{bottom:225.404100px;}
.yf5{bottom:226.757100px;}
.y114{bottom:227.735700px;}
.y123{bottom:227.841900px;}
.y159{bottom:229.637400px;}
.y146{bottom:231.081900px;}
.y4e{bottom:236.063400px;}
.y8f{bottom:237.119250px;}
.y72{bottom:239.764500px;}
.yd2{bottom:240.151200px;}
.yf4{bottom:244.752600px;}
.y1c5{bottom:245.447400px;}
.y113{bottom:245.731200px;}
.y122{bottom:245.837400px;}
.y19e{bottom:245.932650px;}
.y158{bottom:248.091900px;}
.y145{bottom:249.536400px;}
.y4d{bottom:253.761900px;}
.yd1{bottom:256.707600px;}
.y71{bottom:257.760000px;}
.y170{bottom:258.420000px;}
.y27{bottom:260.409600px;}
.y1c4{bottom:260.451900px;}
.y19d{bottom:260.937150px;}
.yf3{bottom:262.748100px;}
.y112{bottom:263.726700px;}
.y121{bottom:263.832900px;}
.y157{bottom:266.546400px;}
.y144{bottom:267.990900px;}
.y4c{bottom:271.460400px;}
.yd0{bottom:272.449050px;}
.y1c3{bottom:275.456400px;}
.y70{bottom:275.755500px;}
.y19c{bottom:275.941650px;}
.y16f{bottom:276.415500px;}
.y26{bottom:278.405100px;}
.y8e{bottom:279.857400px;}
.yf2{bottom:280.743600px;}
.y180{bottom:280.842900px;}
.y111{bottom:281.722200px;}
.y156{bottom:285.000900px;}
.y143{bottom:286.445400px;}
.ycf{bottom:289.005450px;}
.y4b{bottom:289.158900px;}
.y1c2{bottom:290.460900px;}
.yab{bottom:292.727700px;}
.y16e{bottom:294.411000px;}
.y25{bottom:296.400600px;}
.y8d{bottom:297.852900px;}
.yf1{bottom:298.739100px;}
.y120{bottom:298.838400px;}
.y155{bottom:303.455400px;}
.y19b{bottom:303.693150px;}
.yce{bottom:304.747050px;}
.y142{bottom:304.899900px;}
.y4a{bottom:306.857400px;}
.yaa{bottom:310.721700px;}
.y6f{bottom:311.011500px;}
.y16d{bottom:312.406500px;}
.y24{bottom:314.396100px;}
.y8c{bottom:315.848400px;}
.y110{bottom:316.727700px;}
.yf0{bottom:316.734600px;}
.y11f{bottom:316.833900px;}
.y1c1{bottom:318.212400px;}
.y19a{bottom:318.697650px;}
.ycd{bottom:321.303450px;}
.y154{bottom:321.909900px;}
.y141{bottom:323.354400px;}
.y49{bottom:324.555900px;}
.y16c{bottom:330.402000px;}
.ya9{bottom:331.727700px;}
.y23{bottom:332.391600px;}
.y6e{bottom:332.611500px;}
.y1c0{bottom:333.216900px;}
.y199{bottom:333.702150px;}
.y8b{bottom:333.843900px;}
.y10f{bottom:334.727700px;}
.yef{bottom:334.730100px;}
.y11e{bottom:334.829400px;}
.ycc{bottom:337.045050px;}
.y153{bottom:340.364400px;}
.y48{bottom:342.254400px;}
.ya8{bottom:349.726200px;}
.y22{bottom:350.387100px;}
.y8a{bottom:351.839400px;}
.y10e{bottom:352.815900px;}
.y11d{bottom:352.824900px;}
.ycb{bottom:353.601450px;}
.y140{bottom:358.818900px;}
.y1bf{bottom:360.968400px;}
.y198{bottom:361.453650px;}
.y16b{bottom:365.407500px;}
.y21{bottom:368.382600px;}
.yee{bottom:369.735600px;}
.y89{bottom:369.834900px;}
.ya7{bottom:370.732200px;}
.y10d{bottom:370.811400px;}
.y11c{bottom:370.820400px;}
.y6d{bottom:375.275400px;}
.y1be{bottom:375.972900px;}
.y47{bottom:376.962900px;}
.y13f{bottom:377.273400px;}
.y16a{bottom:383.403000px;}
.y20{bottom:386.378100px;}
.yed{bottom:387.796500px;}
.y88{bottom:387.830400px;}
.ya6{bottom:388.727700px;}
.y17f{bottom:388.815900px;}
.yca{bottom:389.160900px;}
.y197{bottom:389.205150px;}
.y6c{bottom:393.270900px;}
.y46{bottom:394.661400px;}
.y13e{bottom:395.727900px;}
.y169{bottom:401.398500px;}
.y1bd{bottom:403.724400px;}
.y196{bottom:404.209650px;}
.y1f{bottom:404.373600px;}
.y10c{bottom:405.816900px;}
.y87{bottom:405.825900px;}
.ya5{bottom:406.732200px;}
.y17e{bottom:406.811400px;}
.yc9{bottom:407.156400px;}
.y6b{bottom:410.375400px;}
.y45{bottom:412.359900px;}
.y13d{bottom:414.182400px;}
.y1bc{bottom:418.728900px;}
.y195{bottom:419.214150px;}
.y168{bottom:419.394000px;}
.y1e{bottom:422.369100px;}
.yec{bottom:422.802000px;}
.y10b{bottom:423.812400px;}
.y86{bottom:423.821400px;}
.ya4{bottom:424.727700px;}
.y17d{bottom:424.806900px;}
.yc8{bottom:425.151900px;}
.y6a{bottom:427.479900px;}
.y44{bottom:430.058400px;}
.y152{bottom:431.192400px;}
.y1d{bottom:440.364600px;}
.yeb{bottom:440.797500px;}
.y10a{bottom:441.807900px;}
.y85{bottom:441.816900px;}
.ya3{bottom:442.748100px;}
.y17c{bottom:442.802400px;}
.yc7{bottom:443.147400px;}
.y69{bottom:444.584400px;}
.y1bb{bottom:446.480400px;}
.y194{bottom:446.965650px;}
.y43{bottom:447.756900px;}
.y13c{bottom:449.646900px;}
.y167{bottom:454.399500px;}
.yea{bottom:458.793000px;}
.y109{bottom:459.803400px;}
.y84{bottom:459.812400px;}
.ya2{bottom:460.743600px;}
.y17b{bottom:460.797900px;}
.yc6{bottom:461.142900px;}
.y1ba{bottom:461.484900px;}
.y68{bottom:461.688900px;}
.y6{bottom:462.720450px;}
.y42{bottom:465.455400px;}
.y13b{bottom:468.101400px;}
.y166{bottom:472.395000px;}
.y193{bottom:474.717150px;}
.y1c{bottom:475.399500px;}
.ye9{bottom:476.788500px;}
.y108{bottom:477.798900px;}
.y83{bottom:477.807900px;}
.ya1{bottom:478.739100px;}
.y17a{bottom:478.793400px;}
.y13a{bottom:486.555900px;}
.y1b9{bottom:489.236400px;}
.y192{bottom:489.721650px;}
.y165{bottom:490.390500px;}
.y1b{bottom:493.395000px;}
.ye8{bottom:494.784000px;}
.y107{bottom:495.794400px;}
.y67{bottom:495.803400px;}
.yc5{bottom:496.148400px;}
.ya0{bottom:496.734600px;}
.y179{bottom:496.788900px;}
.y5{bottom:496.970700px;}
.y41{bottom:500.163900px;}
.y1b8{bottom:504.240900px;}
.y139{bottom:505.010400px;}
.y164{bottom:508.386000px;}
.y1a{bottom:511.390500px;}
.ye7{bottom:512.779500px;}
.y106{bottom:513.789900px;}
.y82{bottom:513.798900px;}
.yc4{bottom:514.143900px;}
.y9f{bottom:514.730100px;}
.y178{bottom:514.784400px;}
.y40{bottom:517.862400px;}
.y1b7{bottom:519.245400px;}
.y191{bottom:519.851550px;}
.y138{bottom:523.464900px;}
.y19{bottom:529.386000px;}
.ye6{bottom:530.775000px;}
.y66{bottom:530.808900px;}
.y105{bottom:531.785400px;}
.y81{bottom:531.794400px;}
.yc3{bottom:532.139400px;}
.y177{bottom:532.779900px;}
.y1b6{bottom:534.249900px;}
.y3f{bottom:535.560900px;}
.y4{bottom:540.170700px;}
.y137{bottom:541.919400px;}
.y163{bottom:543.391500px;}
.y18{bottom:547.381500px;}
.ye5{bottom:548.770500px;}
.y65{bottom:548.804400px;}
.y9e{bottom:549.735600px;}
.y104{bottom:549.780900px;}
.y80{bottom:549.789900px;}
.yc2{bottom:550.134900px;}
.y3e{bottom:553.259400px;}
.y151{bottom:560.373900px;}
.y162{bottom:561.387000px;}
.y1b5{bottom:562.001400px;}
.y190{bottom:562.467900px;}
.y17{bottom:565.377000px;}
.ye4{bottom:566.766000px;}
.y64{bottom:566.799900px;}
.y9d{bottom:567.756000px;}
.y7f{bottom:567.785400px;}
.yc1{bottom:568.130400px;}
.y3d{bottom:570.957900px;}
.y1b4{bottom:577.005900px;}
.y136{bottom:577.383900px;}
.y150{bottom:578.828400px;}
.y161{bottom:579.382500px;}
.y18f{bottom:580.463400px;}
.y3{bottom:583.370700px;}
.y16{bottom:583.372500px;}
.ye3{bottom:584.761500px;}
.y103{bottom:584.786400px;}
.y63{bottom:584.795400px;}
.y9c{bottom:585.751500px;}
.yc0{bottom:586.125900px;}
.y3c{bottom:588.656400px;}
.y1b3{bottom:592.010400px;}
.y135{bottom:595.838400px;}
.y14f{bottom:597.282900px;}
.y160{bottom:597.410400px;}
.ye2{bottom:602.757000px;}
.y102{bottom:602.781900px;}
.y62{bottom:602.790900px;}
.ybf{bottom:604.121400px;}
.y3b{bottom:606.354900px;}
.y134{bottom:614.292900px;}
.y18e{bottom:615.719400px;}
.y15{bottom:618.416400px;}
.y1b2{bottom:619.761900px;}
.ye1{bottom:620.752500px;}
.y9b{bottom:620.757000px;}
.y101{bottom:620.777400px;}
.y61{bottom:620.786400px;}
.ybe{bottom:622.116900px;}
.y3a{bottom:624.053400px;}
.y2{bottom:626.570700px;}
.y133{bottom:632.747400px;}
.y1b1{bottom:634.766400px;}
.y14{bottom:636.411900px;}
.ye0{bottom:638.748000px;}
.y9a{bottom:638.752500px;}
.y100{bottom:638.772900px;}
.y60{bottom:638.781900px;}
.ybd{bottom:640.112400px;}
.y39{bottom:641.751900px;}
.y132{bottom:651.201900px;}
.y13{bottom:654.407400px;}
.ydf{bottom:656.743500px;}
.y99{bottom:656.748000px;}
.yff{bottom:656.768400px;}
.y5f{bottom:656.777400px;}
.ybc{bottom:658.107900px;}
.y18d{bottom:658.356900px;}
.y1b0{bottom:662.517900px;}
.y131{bottom:669.656400px;}
.y1{bottom:669.770700px;}
.y15f{bottom:671.417400px;}
.y12{bottom:672.402900px;}
.y98{bottom:674.743500px;}
.yde{bottom:674.752500px;}
.yfe{bottom:674.763900px;}
.y5e{bottom:674.772900px;}
.y18c{bottom:676.352400px;}
.y38{bottom:676.460400px;}
.y1af{bottom:677.522400px;}
.y130{bottom:688.110900px;}
.y15e{bottom:689.412900px;}
.y1ae{bottom:692.526900px;}
.ydd{bottom:692.748000px;}
.yfd{bottom:692.759400px;}
.y5d{bottom:692.768400px;}
.ybb{bottom:693.111900px;}
.y37{bottom:694.158900px;}
.y18b{bottom:694.347900px;}
.y12f{bottom:706.565400px;}
.y11{bottom:707.408400px;}
.y1ad{bottom:707.531400px;}
.y11b{bottom:709.778400px;}
.ydc{bottom:710.743500px;}
.yfc{bottom:710.754900px;}
.y5c{bottom:710.763900px;}
.y36{bottom:711.857400px;}
.y18a{bottom:712.343400px;}
.yba{bottom:714.117900px;}
.y12e{bottom:725.019900px;}
.y10{bottom:725.403900px;}
.y11a{bottom:727.773900px;}
.yfb{bottom:728.750400px;}
.y7e{bottom:728.759400px;}
.y35{bottom:729.555900px;}
.y189{bottom:730.338900px;}
.yb9{bottom:732.107400px;}
.y1ac{bottom:735.282900px;}
.yf{bottom:743.399400px;}
.y12d{bottom:743.474400px;}
.y5b{bottom:745.769400px;}
.yfa{bottom:746.745900px;}
.y7d{bottom:746.754900px;}
.y34{bottom:747.254400px;}
.y188{bottom:748.334400px;}
.y1ab{bottom:750.287400px;}
.yb8{bottom:753.111900px;}
.ye{bottom:761.394900px;}
.y12c{bottom:761.928900px;}
.y5a{bottom:763.764900px;}
.y7c{bottom:764.750400px;}
.y33{bottom:764.952900px;}
.y1aa{bottom:765.291900px;}
.yb7{bottom:774.117900px;}
.yd{bottom:779.390400px;}
.y1a9{bottom:780.296400px;}
.y12b{bottom:780.383400px;}
.yf9{bottom:781.751400px;}
.y59{bottom:781.760400px;}
.y32{bottom:782.651400px;}
.y7b{bottom:782.745900px;}
.y187{bottom:783.339900px;}
.yb6{bottom:792.107400px;}
.yc{bottom:797.385900px;}
.y12a{bottom:798.837900px;}
.y58{bottom:799.755900px;}
.y31{bottom:800.349900px;}
.y1a8{bottom:808.047900px;}
.yb5{bottom:813.107400px;}
.y129{bottom:817.292400px;}
.y57{bottom:817.751400px;}
.y30{bottom:818.048400px;}
.y186{bottom:818.345400px;}
.y1a7{bottom:823.052400px;}
.yb{bottom:832.641750px;}
.yb4{bottom:834.113400px;}
.y2f{bottom:835.746900px;}
.y1a6{bottom:838.056900px;}
.y176{bottom:894.336600px;}
.y97{bottom:895.045200px;}
.ya{bottom:895.163400px;}
.y56{bottom:895.399500px;}
.y14e{bottom:896.108400px;}
.ha{height:23.198400px;}
.h16{height:30.744000px;}
.h15{height:36.540000px;}
.hc{height:37.584000px;}
.h6{height:43.020000px;}
.h7{height:45.594000px;}
.h4{height:46.860000px;}
.h9{height:46.980000px;}
.h14{height:47.763684px;}
.h13{height:47.935884px;}
.h11{height:47.984484px;}
.h12{height:48.012084px;}
.hd{height:48.054084px;}
.hf{height:48.066084px;}
.he{height:48.072084px;}
.h10{height:48.090084px;}
.h8{height:51.624000px;}
.hb{height:53.359200px;}
.h5{height:65.700000px;}
.h3{height:101.952000px;}
.h2{height:106.128000px;}
.h1{height:973.500000px;}
.h0{height:973.701000px;}
.w1{width:688.500000px;}
.w0{width:688.819500px;}
.x0{left:0.000000px;}
.x3{left:42.519600px;}
.x1{left:106.299150px;}
.x6{left:107.362200px;}
.x4{left:148.824150px;}
.x2{left:628.972200px;}
.x5{left:630.897300px;}
@media print{
.v4{vertical-align:-15.984000pt;}
.v2{vertical-align:-12.787200pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.847467pt;}
.v5{vertical-align:19.525333pt;}
.v3{vertical-align:21.312000pt;}
.ls14{letter-spacing:-4.320000pt;}
.ls1a{letter-spacing:-4.170667pt;}
.ls12{letter-spacing:-3.984000pt;}
.ls5{letter-spacing:-3.744000pt;}
.ls16{letter-spacing:-3.552000pt;}
.ls3{letter-spacing:-2.995200pt;}
.ls19{letter-spacing:-2.912000pt;}
.ls8{letter-spacing:-1.968000pt;}
.ls15{letter-spacing:-1.824000pt;}
.ls1b{letter-spacing:-1.456000pt;}
.lse{letter-spacing:-0.528000pt;}
.ls2{letter-spacing:-0.336000pt;}
.ls4{letter-spacing:-0.317333pt;}
.ls11{letter-spacing:-0.240000pt;}
.ls1c{letter-spacing:-0.186667pt;}
.ls13{letter-spacing:-0.171013pt;}
.ls18{letter-spacing:-0.144000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000043pt;}
.ls17{letter-spacing:0.136811pt;}
.ls6{letter-spacing:0.144000pt;}
.ls10{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.268800pt;}
.lsd{letter-spacing:0.432000pt;}
.lsf{letter-spacing:0.477072pt;}
.lsc{letter-spacing:2.020800pt;}
.lsb{letter-spacing:2.042832pt;}
.lsa{letter-spacing:3.480000pt;}
.ls9{letter-spacing:3.504000pt;}
.ws0{word-spacing:-25.600000pt;}
.ws54{word-spacing:-12.816000pt;}
.ws34{word-spacing:-12.800000pt;}
.wsa9{word-spacing:-12.576000pt;}
.wsab{word-spacing:-10.992000pt;}
.ws69{word-spacing:-10.252800pt;}
.wsc1{word-spacing:-9.968000pt;}
.wscf{word-spacing:-9.781333pt;}
.ws3{word-spacing:-9.066667pt;}
.ws53{word-spacing:-8.749333pt;}
.ws4{word-spacing:-7.471728pt;}
.ws56{word-spacing:-5.977382pt;}
.wsce{word-spacing:-4.896000pt;}
.ws7e{word-spacing:-2.688000pt;}
.ws44{word-spacing:-2.544000pt;}
.wsba{word-spacing:-2.496000pt;}
.ws3d{word-spacing:-2.448000pt;}
.wsb2{word-spacing:-2.400000pt;}
.ws4a{word-spacing:-2.352000pt;}
.ws90{word-spacing:-2.342400pt;}
.ws94{word-spacing:-2.304000pt;}
.ws86{word-spacing:-2.256000pt;}
.ws3b{word-spacing:-2.112000pt;}
.ws84{word-spacing:-2.064000pt;}
.ws3e{word-spacing:-2.016000pt;}
.ws68{word-spacing:-1.996800pt;}
.ws9f{word-spacing:-1.968000pt;}
.wscb{word-spacing:-1.941333pt;}
.ws78{word-spacing:-1.920000pt;}
.ws28{word-spacing:-1.872000pt;}
.wse4{word-spacing:-1.866667pt;}
.ws1f{word-spacing:-1.824000pt;}
.ws33{word-spacing:-1.776000pt;}
.ws22{word-spacing:-1.728000pt;}
.ws3a{word-spacing:-1.680000pt;}
.ws9c{word-spacing:-1.632000pt;}
.ws4f{word-spacing:-1.584000pt;}
.ws1d{word-spacing:-1.536000pt;}
.ws48{word-spacing:-1.488000pt;}
.wsb0{word-spacing:-1.440000pt;}
.ws58{word-spacing:-1.392000pt;}
.ws1b{word-spacing:-1.344000pt;}
.wse{word-spacing:-1.248000pt;}
.ws47{word-spacing:-1.200000pt;}
.ws66{word-spacing:-1.152000pt;}
.wsd1{word-spacing:-1.120000pt;}
.ws85{word-spacing:-1.104000pt;}
.ws4e{word-spacing:-1.056000pt;}
.wsc7{word-spacing:-0.970667pt;}
.wsa7{word-spacing:-0.960000pt;}
.ws7{word-spacing:-0.864000pt;}
.ws23{word-spacing:-0.816000pt;}
.wsdd{word-spacing:-0.784000pt;}
.ws6c{word-spacing:-0.768000pt;}
.ws80{word-spacing:-0.720000pt;}
.ws5b{word-spacing:-0.672000pt;}
.ws5f{word-spacing:-0.624000pt;}
.ws20{word-spacing:-0.576000pt;}
.wsb8{word-spacing:-0.528000pt;}
.wsaf{word-spacing:-0.432000pt;}
.wsd5{word-spacing:-0.410667pt;}
.wsf{word-spacing:-0.384000pt;}
.wsd7{word-spacing:-0.373333pt;}
.wse0{word-spacing:-0.298667pt;}
.ws10{word-spacing:-0.288000pt;}
.ws79{word-spacing:-0.240000pt;}
.wsca{word-spacing:-0.224000pt;}
.ws52{word-spacing:-0.192000pt;}
.wsd9{word-spacing:-0.186667pt;}
.wsac{word-spacing:-0.171013pt;}
.ws6e{word-spacing:-0.144000pt;}
.wsdb{word-spacing:-0.112000pt;}
.ws24{word-spacing:-0.096000pt;}
.wsdc{word-spacing:-0.074667pt;}
.ws1{word-spacing:-0.058667pt;}
.ws25{word-spacing:-0.048000pt;}
.ws55{word-spacing:-0.034203pt;}
.ws2{word-spacing:0.000000pt;}
.ws8d{word-spacing:0.048000pt;}
.wsaa{word-spacing:0.136811pt;}
.wsb1{word-spacing:0.144000pt;}
.wse2{word-spacing:0.186667pt;}
.ws30{word-spacing:0.192000pt;}
.ws11{word-spacing:0.240000pt;}
.ws1c{word-spacing:0.288000pt;}
.ws6{word-spacing:0.336000pt;}
.ws6b{word-spacing:0.384000pt;}
.ws50{word-spacing:0.432000pt;}
.wse1{word-spacing:0.448000pt;}
.wsa2{word-spacing:0.480000pt;}
.wsd6{word-spacing:0.522667pt;}
.wse3{word-spacing:0.560000pt;}
.ws7a{word-spacing:0.624000pt;}
.ws7f{word-spacing:0.672000pt;}
.wsd8{word-spacing:0.709333pt;}
.ws70{word-spacing:0.729600pt;}
.ws6d{word-spacing:0.816000pt;}
.ws9{word-spacing:0.864000pt;}
.wsae{word-spacing:0.960000pt;}
.ws43{word-spacing:1.008000pt;}
.wsad{word-spacing:1.056000pt;}
.wsb5{word-spacing:1.104000pt;}
.wsbf{word-spacing:1.113600pt;}
.wsa6{word-spacing:1.152000pt;}
.wsc0{word-spacing:1.190400pt;}
.ws62{word-spacing:1.200000pt;}
.ws51{word-spacing:1.248000pt;}
.wsc2{word-spacing:1.296000pt;}
.ws89{word-spacing:1.344000pt;}
.ws8{word-spacing:1.392000pt;}
.ws19{word-spacing:1.440000pt;}
.wsda{word-spacing:1.456000pt;}
.ws2b{word-spacing:1.488000pt;}
.ws2f{word-spacing:1.536000pt;}
.ws5{word-spacing:1.584000pt;}
.ws76{word-spacing:1.632000pt;}
.ws9e{word-spacing:1.680000pt;}
.wsc9{word-spacing:1.717333pt;}
.wsbc{word-spacing:1.728000pt;}
.ws71{word-spacing:1.804800pt;}
.ws15{word-spacing:1.824000pt;}
.wsa4{word-spacing:1.872000pt;}
.ws1e{word-spacing:1.920000pt;}
.ws6a{word-spacing:1.968000pt;}
.ws3c{word-spacing:2.016000pt;}
.wsbe{word-spacing:2.035200pt;}
.wsd2{word-spacing:2.053333pt;}
.ws91{word-spacing:2.064000pt;}
.ws4c{word-spacing:2.112000pt;}
.wsd3{word-spacing:2.128000pt;}
.ws6f{word-spacing:2.150400pt;}
.ws99{word-spacing:2.160000pt;}
.ws60{word-spacing:2.208000pt;}
.ws73{word-spacing:2.227200pt;}
.ws4b{word-spacing:2.256000pt;}
.ws95{word-spacing:2.304000pt;}
.ws2e{word-spacing:2.352000pt;}
.ws61{word-spacing:2.400000pt;}
.ws32{word-spacing:2.448000pt;}
.wsbd{word-spacing:2.457600pt;}
.ws27{word-spacing:2.496000pt;}
.ws31{word-spacing:2.592000pt;}
.wsa0{word-spacing:2.640000pt;}
.ws81{word-spacing:2.688000pt;}
.ws2c{word-spacing:2.736000pt;}
.ws39{word-spacing:2.832000pt;}
.ws82{word-spacing:2.880000pt;}
.wsc8{word-spacing:2.912000pt;}
.ws37{word-spacing:2.928000pt;}
.ws29{word-spacing:2.976000pt;}
.ws42{word-spacing:2.995200pt;}
.wsb7{word-spacing:3.024000pt;}
.ws5c{word-spacing:3.072000pt;}
.ws9a{word-spacing:3.120000pt;}
.ws93{word-spacing:3.168000pt;}
.ws4d{word-spacing:3.216000pt;}
.ws92{word-spacing:3.264000pt;}
.ws7c{word-spacing:3.312000pt;}
.ws2a{word-spacing:3.360000pt;}
.ws8a{word-spacing:3.504000pt;}
.wsd0{word-spacing:3.509333pt;}
.wsb4{word-spacing:3.552000pt;}
.ws83{word-spacing:3.600000pt;}
.ws21{word-spacing:3.648000pt;}
.wsbb{word-spacing:3.696000pt;}
.ws5a{word-spacing:3.744000pt;}
.wsb9{word-spacing:3.792000pt;}
.ws16{word-spacing:3.840000pt;}
.ws41{word-spacing:3.888000pt;}
.ws46{word-spacing:3.936000pt;}
.ws45{word-spacing:3.984000pt;}
.ws57{word-spacing:4.032000pt;}
.wsdf{word-spacing:4.106667pt;}
.ws5e{word-spacing:4.128000pt;}
.ws75{word-spacing:4.176000pt;}
.wsde{word-spacing:4.181333pt;}
.ws49{word-spacing:4.224000pt;}
.wsd{word-spacing:4.272000pt;}
.wsa1{word-spacing:4.320000pt;}
.ws98{word-spacing:4.368000pt;}
.ws87{word-spacing:4.416000pt;}
.ws7d{word-spacing:4.464000pt;}
.wsb3{word-spacing:4.512000pt;}
.ws13{word-spacing:4.608000pt;}
.ws64{word-spacing:4.656000pt;}
.ws97{word-spacing:4.704000pt;}
.ws3f{word-spacing:4.800000pt;}
.wsd4{word-spacing:4.853333pt;}
.ws9d{word-spacing:4.944000pt;}
.wsa8{word-spacing:5.088000pt;}
.ws12{word-spacing:5.136000pt;}
.ws38{word-spacing:5.184000pt;}
.ws17{word-spacing:5.280000pt;}
.ws74{word-spacing:5.328000pt;}
.ws67{word-spacing:5.337600pt;}
.ws8b{word-spacing:5.424000pt;}
.wsc4{word-spacing:5.520000pt;}
.ws9b{word-spacing:5.568000pt;}
.ws14{word-spacing:5.616000pt;}
.ws96{word-spacing:5.712000pt;}
.ws26{word-spacing:5.808000pt;}
.ws77{word-spacing:5.904000pt;}
.ws59{word-spacing:5.952000pt;}
.wsa3{word-spacing:6.000000pt;}
.wsc{word-spacing:6.096000pt;}
.ws35{word-spacing:6.144000pt;}
.ws2d{word-spacing:6.288000pt;}
.wsb6{word-spacing:6.384000pt;}
.ws7b{word-spacing:6.480000pt;}
.ws88{word-spacing:6.528000pt;}
.ws36{word-spacing:6.576000pt;}
.ws1a{word-spacing:6.624000pt;}
.wscd{word-spacing:6.645333pt;}
.ws8c{word-spacing:6.720000pt;}
.ws5d{word-spacing:6.768000pt;}
.ws40{word-spacing:6.960000pt;}
.wsa5{word-spacing:7.248000pt;}
.ws18{word-spacing:7.344000pt;}
.ws63{word-spacing:7.392000pt;}
.wsc3{word-spacing:10.320000pt;}
.ws65{word-spacing:12.249600pt;}
.wsa{word-spacing:12.432000pt;}
.ws8f{word-spacing:12.825600pt;}
.ws8e{word-spacing:13.824000pt;}
.wscc{word-spacing:15.120000pt;}
.wsb{word-spacing:16.704000pt;}
.ws72{word-spacing:17.203200pt;}
.wsc6{word-spacing:17.546667pt;}
.wsc5{word-spacing:18.741333pt;}
._5{margin-left:-1506.384533pt;}
._f{margin-left:-1502.651200pt;}
._e{margin-left:-11.747733pt;}
._c{margin-left:-6.594133pt;}
._6{margin-left:-5.280000pt;}
._0{margin-left:-4.224000pt;}
._3{margin-left:-3.173867pt;}
._4{margin-left:-2.272000pt;}
._1{margin-left:-1.152000pt;}
._d{width:0.897600pt;}
._2{width:1.792000pt;}
._9{width:3.192000pt;}
._8{width:4.608000pt;}
._7{width:5.764800pt;}
._b{width:6.738629pt;}
._a{width:7.630080pt;}
.fs8{font-size:22.387200pt;}
.fs7{font-size:27.984000pt;}
.fsb{font-size:34.202667pt;}
.fsa{font-size:37.312000pt;}
.fsc{font-size:37.333333pt;}
.fs9{font-size:38.400000pt;}
.fs4{font-size:45.333333pt;}
.fs6{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs2{font-size:80.000000pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y14d{bottom:75.458133pt;}
.y7a{bottom:75.590533pt;}
.y1cd{bottom:77.484800pt;}
.y2e{bottom:78.787333pt;}
.y96{bottom:80.254133pt;}
.y55{bottom:84.590133pt;}
.y79{bottom:87.110533pt;}
.ydb{bottom:90.307333pt;}
.y1cc{bottom:90.822133pt;}
.y1a5{bottom:91.253467pt;}
.y14c{bottom:91.862133pt;}
.yb3{bottom:92.779867pt;}
.y9{bottom:94.414667pt;}
.y2d{bottom:95.976667pt;}
.y95{bottom:96.250133pt;}
.y185{bottom:98.630533pt;}
.y54{bottom:100.322133pt;}
.y78{bottom:101.827333pt;}
.y1cb{bottom:104.159467pt;}
.yda{bottom:104.299867pt;}
.y1a4{bottom:104.590800pt;}
.yb2{bottom:107.496667pt;}
.y119{bottom:109.969200pt;}
.y184{bottom:110.150533pt;}
.y8{bottom:110.414667pt;}
.y94{bottom:112.246133pt;}
.yd9{bottom:115.819867pt;}
.y53{bottom:116.054133pt;}
.y118{bottom:121.489200pt;}
.y183{bottom:121.670533pt;}
.y128{bottom:122.429600pt;}
.y14b{bottom:123.386133pt;}
.yb1{bottom:124.686000pt;}
.y7{bottom:126.414667pt;}
.yd8{bottom:127.339867pt;}
.y93{bottom:128.242133pt;}
.y1ca{bottom:128.827467pt;}
.y1a3{bottom:129.258800pt;}
.y52{bottom:131.786133pt;}
.y175{bottom:131.930667pt;}
.y117{bottom:133.009200pt;}
.y77{bottom:133.144000pt;}
.y2c{bottom:136.375200pt;}
.y127{bottom:138.425600pt;}
.y15d{bottom:138.506133pt;}
.yb0{bottom:138.678400pt;}
.y14a{bottom:139.790133pt;}
.yd7{bottom:142.056667pt;}
.y1c9{bottom:142.164800pt;}
.y1a2{bottom:142.596133pt;}
.y92{bottom:144.238133pt;}
.y116{bottom:147.726000pt;}
.y76{bottom:149.140000pt;}
.y174{bottom:150.602667pt;}
.y2b{bottom:152.371200pt;}
.yaf{bottom:153.395200pt;}
.yf8{bottom:153.573867pt;}
.y126{bottom:154.421600pt;}
.y182{bottom:154.538133pt;}
.y15c{bottom:154.910133pt;}
.yd6{bottom:156.049067pt;}
.y149{bottom:156.194133pt;}
.y91{bottom:160.234133pt;}
.y51{bottom:162.638133pt;}
.y75{bottom:165.136000pt;}
.y173{bottom:166.598667pt;}
.y1c8{bottom:166.832800pt;}
.y1a1{bottom:167.264133pt;}
.y2a{bottom:168.367200pt;}
.yf7{bottom:169.569867pt;}
.y125{bottom:170.417600pt;}
.y181{bottom:170.534133pt;}
.yae{bottom:170.584533pt;}
.yd5{bottom:170.765867pt;}
.y15b{bottom:171.314133pt;}
.y148{bottom:172.598133pt;}
.y50{bottom:178.370133pt;}
.y1c7{bottom:180.170133pt;}
.y1a0{bottom:180.601467pt;}
.y74{bottom:181.132000pt;}
.y172{bottom:182.594667pt;}
.y29{bottom:184.363200pt;}
.yad{bottom:184.577067pt;}
.yd4{bottom:184.758400pt;}
.yf6{bottom:185.565867pt;}
.y115{bottom:186.435733pt;}
.y124{bottom:186.530133pt;}
.y15a{bottom:187.718133pt;}
.y147{bottom:189.002133pt;}
.y90{bottom:191.572667pt;}
.y1c6{bottom:193.507467pt;}
.y19f{bottom:193.938800pt;}
.y4f{bottom:194.102133pt;}
.y73{bottom:197.128000pt;}
.y171{bottom:198.590667pt;}
.yac{bottom:199.293867pt;}
.yd3{bottom:199.475200pt;}
.y28{bottom:200.359200pt;}
.yf5{bottom:201.561867pt;}
.y114{bottom:202.431733pt;}
.y123{bottom:202.526133pt;}
.y159{bottom:204.122133pt;}
.y146{bottom:205.406133pt;}
.y4e{bottom:209.834133pt;}
.y8f{bottom:210.772667pt;}
.y72{bottom:213.124000pt;}
.yd2{bottom:213.467733pt;}
.yf4{bottom:217.557867pt;}
.y1c5{bottom:218.175467pt;}
.y113{bottom:218.427733pt;}
.y122{bottom:218.522133pt;}
.y19e{bottom:218.606800pt;}
.y158{bottom:220.526133pt;}
.y145{bottom:221.810133pt;}
.y4d{bottom:225.566133pt;}
.yd1{bottom:228.184533pt;}
.y71{bottom:229.120000pt;}
.y170{bottom:229.706667pt;}
.y27{bottom:231.475200pt;}
.y1c4{bottom:231.512800pt;}
.y19d{bottom:231.944133pt;}
.yf3{bottom:233.553867pt;}
.y112{bottom:234.423733pt;}
.y121{bottom:234.518133pt;}
.y157{bottom:236.930133pt;}
.y144{bottom:238.214133pt;}
.y4c{bottom:241.298133pt;}
.yd0{bottom:242.176933pt;}
.y1c3{bottom:244.850133pt;}
.y70{bottom:245.116000pt;}
.y19c{bottom:245.281467pt;}
.y16f{bottom:245.702667pt;}
.y26{bottom:247.471200pt;}
.y8e{bottom:248.762133pt;}
.yf2{bottom:249.549867pt;}
.y180{bottom:249.638133pt;}
.y111{bottom:250.419733pt;}
.y156{bottom:253.334133pt;}
.y143{bottom:254.618133pt;}
.ycf{bottom:256.893733pt;}
.y4b{bottom:257.030133pt;}
.y1c2{bottom:258.187467pt;}
.yab{bottom:260.202400pt;}
.y16e{bottom:261.698667pt;}
.y25{bottom:263.467200pt;}
.y8d{bottom:264.758133pt;}
.yf1{bottom:265.545867pt;}
.y120{bottom:265.634133pt;}
.y155{bottom:269.738133pt;}
.y19b{bottom:269.949467pt;}
.yce{bottom:270.886267pt;}
.y142{bottom:271.022133pt;}
.y4a{bottom:272.762133pt;}
.yaa{bottom:276.197067pt;}
.y6f{bottom:276.454667pt;}
.y16d{bottom:277.694667pt;}
.y24{bottom:279.463200pt;}
.y8c{bottom:280.754133pt;}
.y110{bottom:281.535733pt;}
.yf0{bottom:281.541867pt;}
.y11f{bottom:281.630133pt;}
.y1c1{bottom:282.855467pt;}
.y19a{bottom:283.286800pt;}
.ycd{bottom:285.603067pt;}
.y154{bottom:286.142133pt;}
.y141{bottom:287.426133pt;}
.y49{bottom:288.494133pt;}
.y16c{bottom:293.690667pt;}
.ya9{bottom:294.869067pt;}
.y23{bottom:295.459200pt;}
.y6e{bottom:295.654667pt;}
.y1c0{bottom:296.192800pt;}
.y199{bottom:296.624133pt;}
.y8b{bottom:296.750133pt;}
.y10f{bottom:297.535733pt;}
.yef{bottom:297.537867pt;}
.y11e{bottom:297.626133pt;}
.ycc{bottom:299.595600pt;}
.y153{bottom:302.546133pt;}
.y48{bottom:304.226133pt;}
.ya8{bottom:310.867733pt;}
.y22{bottom:311.455200pt;}
.y8a{bottom:312.746133pt;}
.y10e{bottom:313.614133pt;}
.y11d{bottom:313.622133pt;}
.ycb{bottom:314.312400pt;}
.y140{bottom:318.950133pt;}
.y1bf{bottom:320.860800pt;}
.y198{bottom:321.292133pt;}
.y16b{bottom:324.806667pt;}
.y21{bottom:327.451200pt;}
.yee{bottom:328.653867pt;}
.y89{bottom:328.742133pt;}
.ya7{bottom:329.539733pt;}
.y10d{bottom:329.610133pt;}
.y11c{bottom:329.618133pt;}
.y6d{bottom:333.578133pt;}
.y1be{bottom:334.198133pt;}
.y47{bottom:335.078133pt;}
.y13f{bottom:335.354133pt;}
.y16a{bottom:340.802667pt;}
.y20{bottom:343.447200pt;}
.yed{bottom:344.708000pt;}
.y88{bottom:344.738133pt;}
.ya6{bottom:345.535733pt;}
.y17f{bottom:345.614133pt;}
.yca{bottom:345.920800pt;}
.y197{bottom:345.960133pt;}
.y6c{bottom:349.574133pt;}
.y46{bottom:350.810133pt;}
.y13e{bottom:351.758133pt;}
.y169{bottom:356.798667pt;}
.y1bd{bottom:358.866133pt;}
.y196{bottom:359.297467pt;}
.y1f{bottom:359.443200pt;}
.y10c{bottom:360.726133pt;}
.y87{bottom:360.734133pt;}
.ya5{bottom:361.539733pt;}
.y17e{bottom:361.610133pt;}
.yc9{bottom:361.916800pt;}
.y6b{bottom:364.778133pt;}
.y45{bottom:366.542133pt;}
.y13d{bottom:368.162133pt;}
.y1bc{bottom:372.203467pt;}
.y195{bottom:372.634800pt;}
.y168{bottom:372.794667pt;}
.y1e{bottom:375.439200pt;}
.yec{bottom:375.824000pt;}
.y10b{bottom:376.722133pt;}
.y86{bottom:376.730133pt;}
.ya4{bottom:377.535733pt;}
.y17d{bottom:377.606133pt;}
.yc8{bottom:377.912800pt;}
.y6a{bottom:379.982133pt;}
.y44{bottom:382.274133pt;}
.y152{bottom:383.282133pt;}
.y1d{bottom:391.435200pt;}
.yeb{bottom:391.820000pt;}
.y10a{bottom:392.718133pt;}
.y85{bottom:392.726133pt;}
.ya3{bottom:393.553867pt;}
.y17c{bottom:393.602133pt;}
.yc7{bottom:393.908800pt;}
.y69{bottom:395.186133pt;}
.y1bb{bottom:396.871467pt;}
.y194{bottom:397.302800pt;}
.y43{bottom:398.006133pt;}
.y13c{bottom:399.686133pt;}
.y167{bottom:403.910667pt;}
.yea{bottom:407.816000pt;}
.y109{bottom:408.714133pt;}
.y84{bottom:408.722133pt;}
.ya2{bottom:409.549867pt;}
.y17b{bottom:409.598133pt;}
.yc6{bottom:409.904800pt;}
.y1ba{bottom:410.208800pt;}
.y68{bottom:410.390133pt;}
.y6{bottom:411.307067pt;}
.y42{bottom:413.738133pt;}
.y13b{bottom:416.090133pt;}
.y166{bottom:419.906667pt;}
.y193{bottom:421.970800pt;}
.y1c{bottom:422.577333pt;}
.ye9{bottom:423.812000pt;}
.y108{bottom:424.710133pt;}
.y83{bottom:424.718133pt;}
.ya1{bottom:425.545867pt;}
.y17a{bottom:425.594133pt;}
.y13a{bottom:432.494133pt;}
.y1b9{bottom:434.876800pt;}
.y192{bottom:435.308133pt;}
.y165{bottom:435.902667pt;}
.y1b{bottom:438.573333pt;}
.ye8{bottom:439.808000pt;}
.y107{bottom:440.706133pt;}
.y67{bottom:440.714133pt;}
.yc5{bottom:441.020800pt;}
.ya0{bottom:441.541867pt;}
.y179{bottom:441.590133pt;}
.y5{bottom:441.751733pt;}
.y41{bottom:444.590133pt;}
.y1b8{bottom:448.214133pt;}
.y139{bottom:448.898133pt;}
.y164{bottom:451.898667pt;}
.y1a{bottom:454.569333pt;}
.ye7{bottom:455.804000pt;}
.y106{bottom:456.702133pt;}
.y82{bottom:456.710133pt;}
.yc4{bottom:457.016800pt;}
.y9f{bottom:457.537867pt;}
.y178{bottom:457.586133pt;}
.y40{bottom:460.322133pt;}
.y1b7{bottom:461.551467pt;}
.y191{bottom:462.090267pt;}
.y138{bottom:465.302133pt;}
.y19{bottom:470.565333pt;}
.ye6{bottom:471.800000pt;}
.y66{bottom:471.830133pt;}
.y105{bottom:472.698133pt;}
.y81{bottom:472.706133pt;}
.yc3{bottom:473.012800pt;}
.y177{bottom:473.582133pt;}
.y1b6{bottom:474.888800pt;}
.y3f{bottom:476.054133pt;}
.y4{bottom:480.151733pt;}
.y137{bottom:481.706133pt;}
.y163{bottom:483.014667pt;}
.y18{bottom:486.561333pt;}
.ye5{bottom:487.796000pt;}
.y65{bottom:487.826133pt;}
.y9e{bottom:488.653867pt;}
.y104{bottom:488.694133pt;}
.y80{bottom:488.702133pt;}
.yc2{bottom:489.008800pt;}
.y3e{bottom:491.786133pt;}
.y151{bottom:498.110133pt;}
.y162{bottom:499.010667pt;}
.y1b5{bottom:499.556800pt;}
.y190{bottom:499.971467pt;}
.y17{bottom:502.557333pt;}
.ye4{bottom:503.792000pt;}
.y64{bottom:503.822133pt;}
.y9d{bottom:504.672000pt;}
.y7f{bottom:504.698133pt;}
.yc1{bottom:505.004800pt;}
.y3d{bottom:507.518133pt;}
.y1b4{bottom:512.894133pt;}
.y136{bottom:513.230133pt;}
.y150{bottom:514.514133pt;}
.y161{bottom:515.006667pt;}
.y18f{bottom:515.967467pt;}
.y3{bottom:518.551733pt;}
.y16{bottom:518.553333pt;}
.ye3{bottom:519.788000pt;}
.y103{bottom:519.810133pt;}
.y63{bottom:519.818133pt;}
.y9c{bottom:520.668000pt;}
.yc0{bottom:521.000800pt;}
.y3c{bottom:523.250133pt;}
.y1b3{bottom:526.231467pt;}
.y135{bottom:529.634133pt;}
.y14f{bottom:530.918133pt;}
.y160{bottom:531.031467pt;}
.ye2{bottom:535.784000pt;}
.y102{bottom:535.806133pt;}
.y62{bottom:535.814133pt;}
.ybf{bottom:536.996800pt;}
.y3b{bottom:538.982133pt;}
.y134{bottom:546.038133pt;}
.y18e{bottom:547.306133pt;}
.y15{bottom:549.703467pt;}
.y1b2{bottom:550.899467pt;}
.ye1{bottom:551.780000pt;}
.y9b{bottom:551.784000pt;}
.y101{bottom:551.802133pt;}
.y61{bottom:551.810133pt;}
.ybe{bottom:552.992800pt;}
.y3a{bottom:554.714133pt;}
.y2{bottom:556.951733pt;}
.y133{bottom:562.442133pt;}
.y1b1{bottom:564.236800pt;}
.y14{bottom:565.699467pt;}
.ye0{bottom:567.776000pt;}
.y9a{bottom:567.780000pt;}
.y100{bottom:567.798133pt;}
.y60{bottom:567.806133pt;}
.ybd{bottom:568.988800pt;}
.y39{bottom:570.446133pt;}
.y132{bottom:578.846133pt;}
.y13{bottom:581.695467pt;}
.ydf{bottom:583.772000pt;}
.y99{bottom:583.776000pt;}
.yff{bottom:583.794133pt;}
.y5f{bottom:583.802133pt;}
.ybc{bottom:584.984800pt;}
.y18d{bottom:585.206133pt;}
.y1b0{bottom:588.904800pt;}
.y131{bottom:595.250133pt;}
.y1{bottom:595.351733pt;}
.y15f{bottom:596.815467pt;}
.y12{bottom:597.691467pt;}
.y98{bottom:599.772000pt;}
.yde{bottom:599.780000pt;}
.yfe{bottom:599.790133pt;}
.y5e{bottom:599.798133pt;}
.y18c{bottom:601.202133pt;}
.y38{bottom:601.298133pt;}
.y1af{bottom:602.242133pt;}
.y130{bottom:611.654133pt;}
.y15e{bottom:612.811467pt;}
.y1ae{bottom:615.579467pt;}
.ydd{bottom:615.776000pt;}
.yfd{bottom:615.786133pt;}
.y5d{bottom:615.794133pt;}
.ybb{bottom:616.099467pt;}
.y37{bottom:617.030133pt;}
.y18b{bottom:617.198133pt;}
.y12f{bottom:628.058133pt;}
.y11{bottom:628.807467pt;}
.y1ad{bottom:628.916800pt;}
.y11b{bottom:630.914133pt;}
.ydc{bottom:631.772000pt;}
.yfc{bottom:631.782133pt;}
.y5c{bottom:631.790133pt;}
.y36{bottom:632.762133pt;}
.y18a{bottom:633.194133pt;}
.yba{bottom:634.771467pt;}
.y12e{bottom:644.462133pt;}
.y10{bottom:644.803467pt;}
.y11a{bottom:646.910133pt;}
.yfb{bottom:647.778133pt;}
.y7e{bottom:647.786133pt;}
.y35{bottom:648.494133pt;}
.y189{bottom:649.190133pt;}
.yb9{bottom:650.762133pt;}
.y1ac{bottom:653.584800pt;}
.yf{bottom:660.799467pt;}
.y12d{bottom:660.866133pt;}
.y5b{bottom:662.906133pt;}
.yfa{bottom:663.774133pt;}
.y7d{bottom:663.782133pt;}
.y34{bottom:664.226133pt;}
.y188{bottom:665.186133pt;}
.y1ab{bottom:666.922133pt;}
.yb8{bottom:669.432800pt;}
.ye{bottom:676.795467pt;}
.y12c{bottom:677.270133pt;}
.y5a{bottom:678.902133pt;}
.y7c{bottom:679.778133pt;}
.y33{bottom:679.958133pt;}
.y1aa{bottom:680.259467pt;}
.yb7{bottom:688.104800pt;}
.yd{bottom:692.791467pt;}
.y1a9{bottom:693.596800pt;}
.y12b{bottom:693.674133pt;}
.yf9{bottom:694.890133pt;}
.y59{bottom:694.898133pt;}
.y32{bottom:695.690133pt;}
.y7b{bottom:695.774133pt;}
.y187{bottom:696.302133pt;}
.yb6{bottom:704.095467pt;}
.yc{bottom:708.787467pt;}
.y12a{bottom:710.078133pt;}
.y58{bottom:710.894133pt;}
.y31{bottom:711.422133pt;}
.y1a8{bottom:718.264800pt;}
.yb5{bottom:722.762133pt;}
.y129{bottom:726.482133pt;}
.y57{bottom:726.890133pt;}
.y30{bottom:727.154133pt;}
.y186{bottom:727.418133pt;}
.y1a7{bottom:731.602133pt;}
.yb{bottom:740.126000pt;}
.yb4{bottom:741.434133pt;}
.y2f{bottom:742.886133pt;}
.y1a6{bottom:744.939467pt;}
.y176{bottom:794.965867pt;}
.y97{bottom:795.595733pt;}
.ya{bottom:795.700800pt;}
.y56{bottom:795.910667pt;}
.y14e{bottom:796.540800pt;}
.ha{height:20.620800pt;}
.h16{height:27.328000pt;}
.h15{height:32.480000pt;}
.hc{height:33.408000pt;}
.h6{height:38.240000pt;}
.h7{height:40.528000pt;}
.h4{height:41.653333pt;}
.h9{height:41.760000pt;}
.h14{height:42.456608pt;}
.h13{height:42.609675pt;}
.h11{height:42.652875pt;}
.h12{height:42.677408pt;}
.hd{height:42.714741pt;}
.hf{height:42.725408pt;}
.he{height:42.730741pt;}
.h10{height:42.746741pt;}
.h8{height:45.888000pt;}
.hb{height:47.430400pt;}
.h5{height:58.400000pt;}
.h3{height:90.624000pt;}
.h2{height:94.336000pt;}
.h1{height:865.333333pt;}
.h0{height:865.512000pt;}
.w1{width:612.000000pt;}
.w0{width:612.284000pt;}
.x0{left:0.000000pt;}
.x3{left:37.795200pt;}
.x1{left:94.488133pt;}
.x6{left:95.433067pt;}
.x4{left:132.288133pt;}
.x2{left:559.086400pt;}
.x5{left:560.797600pt;}
}




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