
    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_9d90a3516c4431d5d46b4f60.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.044000;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_cf98fad8744932654d017cd4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.022000;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_8fff890528e1deb008834f4f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.011000;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_d2fabca8f3e8389f04234d51.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3bcbe8b9300052eb74d7fd05.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.131000;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_5293dbacc87e8f88eec41a05.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941000;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_e152b19bc47c68982b22705d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.000000;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_b1b71c89a803b0ef6a3fe290.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.956000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.242499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242499,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.244998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244998,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.245002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245002,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.mc{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.751800px;}
.lsf{letter-spacing:-5.133600px;}
.ls5{letter-spacing:-2.008800px;}
.ls10{letter-spacing:-1.445400px;}
.lsd{letter-spacing:-1.004400px;}
.lsc{letter-spacing:-0.306600px;}
.ls8{letter-spacing:-0.282000px;}
.lse{letter-spacing:-0.262800px;}
.ls1{letter-spacing:-0.225000px;}
.ls2{letter-spacing:-0.175200px;}
.ls9{letter-spacing:-0.164406px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.065762px;}
.lsa{letter-spacing:0.112800px;}
.ls6{letter-spacing:0.564000px;}
.ls4{letter-spacing:0.630000px;}
.ls3{letter-spacing:0.744600px;}
.ls7{letter-spacing:31.956495px;}
.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;}
}
.wsda{word-spacing:-16.807200px;}
.wsc0{word-spacing:-16.694400px;}
.ws3b{word-spacing:-14.508000px;}
.ws11e{word-spacing:-13.680000px;}
.ws135{word-spacing:-11.160000px;}
.ws136{word-spacing:-10.320000px;}
.ws3{word-spacing:-9.000000px;}
.ws0{word-spacing:-8.775000px;}
.ws2{word-spacing:-8.760000px;}
.ws18{word-spacing:-8.584800px;}
.wsd9{word-spacing:-6.642002px;}
.ws1{word-spacing:-6.576240px;}
.ws17{word-spacing:-6.506280px;}
.wsc1{word-spacing:-6.411834px;}
.ws109{word-spacing:-3.666000px;}
.wscf{word-spacing:-3.214800px;}
.ws26{word-spacing:-3.069000px;}
.wsae{word-spacing:-2.989200px;}
.ws28{word-spacing:-2.845800px;}
.ws11a{word-spacing:-2.820000px;}
.wsf2{word-spacing:-2.763600px;}
.ws72{word-spacing:-2.734200px;}
.ws77{word-spacing:-2.678400px;}
.wsb7{word-spacing:-2.594400px;}
.ws91{word-spacing:-2.538000px;}
.ws8f{word-spacing:-2.481600px;}
.ws8e{word-spacing:-2.312400px;}
.wse7{word-spacing:-2.199600px;}
.ws2f{word-spacing:-2.120400px;}
.wse{word-spacing:-2.086800px;}
.ws105{word-spacing:-1.953000px;}
.wsf8{word-spacing:-1.917600px;}
.ws10a{word-spacing:-1.897200px;}
.wsab{word-spacing:-1.861200px;}
.ws13f{word-spacing:-1.857600px;}
.ws1a{word-spacing:-1.841400px;}
.ws31{word-spacing:-1.752000px;}
.ws79{word-spacing:-1.748400px;}
.ws67{word-spacing:-1.729800px;}
.ws43{word-spacing:-1.674000px;}
.ws6e{word-spacing:-1.664400px;}
.ws138{word-spacing:-1.651200px;}
.wsa9{word-spacing:-1.635600px;}
.ws6b{word-spacing:-1.620600px;}
.ws108{word-spacing:-1.562400px;}
.ws50{word-spacing:-1.533000px;}
.wscb{word-spacing:-1.522800px;}
.wsd4{word-spacing:-1.489200px;}
.wsd1{word-spacing:-1.353600px;}
.ws71{word-spacing:-1.339200px;}
.ws88{word-spacing:-1.314000px;}
.ws139{word-spacing:-1.290000px;}
.wsa8{word-spacing:-1.283400px;}
.ws13a{word-spacing:-1.238400px;}
.ws119{word-spacing:-1.184400px;}
.ws10c{word-spacing:-1.171800px;}
.wsef{word-spacing:-1.138800px;}
.wsed{word-spacing:-1.095000px;}
.ws6{word-spacing:-1.071600px;}
.ws73{word-spacing:-1.060200px;}
.wsec{word-spacing:-1.051200px;}
.ws45{word-spacing:-1.004400px;}
.ws35{word-spacing:-0.963600px;}
.wsc6{word-spacing:-0.958800px;}
.ws57{word-spacing:-0.948600px;}
.wsdd{word-spacing:-0.902400px;}
.ws1b{word-spacing:-0.892800px;}
.ws11{word-spacing:-0.876000px;}
.ws3c{word-spacing:-0.855000px;}
.ws102{word-spacing:-0.832200px;}
.ws15{word-spacing:-0.788400px;}
.ws2c{word-spacing:-0.781200px;}
.wsa7{word-spacing:-0.744600px;}
.ws126{word-spacing:-0.725400px;}
.ws141{word-spacing:-0.722400px;}
.ws4e{word-spacing:-0.700800px;}
.wsb2{word-spacing:-0.620400px;}
.ws9f{word-spacing:-0.613800px;}
.ws51{word-spacing:-0.613200px;}
.ws52{word-spacing:-0.569400px;}
.wscd{word-spacing:-0.564000px;}
.ws74{word-spacing:-0.558000px;}
.ws32{word-spacing:-0.525600px;}
.wsaf{word-spacing:-0.507600px;}
.ws59{word-spacing:-0.502200px;}
.wse8{word-spacing:-0.451200px;}
.ws106{word-spacing:-0.446400px;}
.ws14{word-spacing:-0.306600px;}
.ws7b{word-spacing:-0.282000px;}
.ws134{word-spacing:-0.219000px;}
.wsd0{word-spacing:-0.169200px;}
.wsb0{word-spacing:-0.112800px;}
.ws44{word-spacing:-0.055800px;}
.ws3a{word-spacing:-0.045000px;}
.wsd5{word-spacing:-0.043800px;}
.ws5{word-spacing:0.000000px;}
.ws89{word-spacing:0.043800px;}
.wsf7{word-spacing:0.056400px;}
.ws99{word-spacing:0.111600px;}
.ws90{word-spacing:0.112800px;}
.ws2e{word-spacing:0.167400px;}
.wse2{word-spacing:0.169200px;}
.ws37{word-spacing:0.175200px;}
.ws49{word-spacing:0.223200px;}
.ws65{word-spacing:0.225600px;}
.ws104{word-spacing:0.262800px;}
.ws127{word-spacing:0.279000px;}
.ws27{word-spacing:0.334800px;}
.wsac{word-spacing:0.338400px;}
.ws10f{word-spacing:0.350400px;}
.ws13d{word-spacing:0.361200px;}
.ws22{word-spacing:0.390600px;}
.ws53{word-spacing:0.394200px;}
.ws6d{word-spacing:0.438000px;}
.wsf1{word-spacing:0.481800px;}
.ws2d{word-spacing:0.502200px;}
.wse9{word-spacing:0.507600px;}
.ws39{word-spacing:0.525600px;}
.ws4a{word-spacing:0.558000px;}
.wse1{word-spacing:0.564000px;}
.ws4f{word-spacing:0.569400px;}
.ws87{word-spacing:0.613200px;}
.ws5f{word-spacing:0.613800px;}
.wsa2{word-spacing:0.657000px;}
.ws1c{word-spacing:0.781200px;}
.ws6a{word-spacing:0.788400px;}
.ws7d{word-spacing:0.789600px;}
.wsdf{word-spacing:0.846000px;}
.ws76{word-spacing:0.892800px;}
.ws64{word-spacing:0.902400px;}
.ws3d{word-spacing:0.948600px;}
.wsba{word-spacing:0.958800px;}
.ws113{word-spacing:1.004400px;}
.wsb1{word-spacing:1.015200px;}
.ws5a{word-spacing:1.116000px;}
.wsf5{word-spacing:1.128000px;}
.ws103{word-spacing:1.138800px;}
.ws5b{word-spacing:1.171800px;}
.wsa3{word-spacing:1.182600px;}
.wsce{word-spacing:1.184400px;}
.ws129{word-spacing:1.227600px;}
.ws140{word-spacing:1.238400px;}
.wsee{word-spacing:1.270200px;}
.ws48{word-spacing:1.283400px;}
.wsff{word-spacing:1.314000px;}
.ws9b{word-spacing:1.339200px;}
.ws128{word-spacing:1.395000px;}
.ws8c{word-spacing:1.410000px;}
.wsa6{word-spacing:1.445400px;}
.ws3e{word-spacing:1.450800px;}
.wsb4{word-spacing:1.466400px;}
.ws2b{word-spacing:1.506600px;}
.ws75{word-spacing:1.562400px;}
.ws85{word-spacing:1.620600px;}
.ws16{word-spacing:1.664400px;}
.ws69{word-spacing:1.729800px;}
.wsb5{word-spacing:1.748400px;}
.wsad{word-spacing:1.804800px;}
.wsd2{word-spacing:1.839600px;}
.ws94{word-spacing:1.841400px;}
.wsc8{word-spacing:1.861200px;}
.wseb{word-spacing:1.927200px;}
.ws2a{word-spacing:1.953000px;}
.wsf9{word-spacing:1.974000px;}
.ws42{word-spacing:2.008800px;}
.wsfc{word-spacing:2.014800px;}
.wsc4{word-spacing:2.030400px;}
.ws131{word-spacing:2.058600px;}
.ws13e{word-spacing:2.064000px;}
.ws117{word-spacing:2.086800px;}
.ws92{word-spacing:2.143200px;}
.ws83{word-spacing:2.146200px;}
.ws100{word-spacing:2.190000px;}
.ws21{word-spacing:2.232000px;}
.ws8b{word-spacing:2.233800px;}
.wsfb{word-spacing:2.312400px;}
.ws30{word-spacing:2.321400px;}
.wsfd{word-spacing:2.365200px;}
.wsea{word-spacing:2.368800px;}
.ws137{word-spacing:2.399400px;}
.wsf{word-spacing:2.409000px;}
.ws10{word-spacing:2.452800px;}
.wsa{word-spacing:2.481600px;}
.ws34{word-spacing:2.496600px;}
.ws12a{word-spacing:2.511000px;}
.wse5{word-spacing:2.538000px;}
.ws107{word-spacing:2.566800px;}
.ws55{word-spacing:2.622600px;}
.ws6c{word-spacing:2.628000px;}
.wsf4{word-spacing:2.707200px;}
.ws112{word-spacing:2.845800px;}
.ws12{word-spacing:2.847000px;}
.ws38{word-spacing:2.890800px;}
.ws13{word-spacing:2.934600px;}
.ws95{word-spacing:3.013200px;}
.ws9{word-spacing:3.045600px;}
.ws12e{word-spacing:3.066000px;}
.ws121{word-spacing:3.069000px;}
.wsd8{word-spacing:3.109800px;}
.ws6f{word-spacing:3.124800px;}
.ws13b{word-spacing:3.147600px;}
.wsd{word-spacing:3.158400px;}
.wsb9{word-spacing:3.271200px;}
.wsa5{word-spacing:3.328800px;}
.ws20{word-spacing:3.348000px;}
.ws8a{word-spacing:3.372600px;}
.ws7{word-spacing:3.384000px;}
.ws68{word-spacing:3.403800px;}
.ws130{word-spacing:3.416400px;}
.ws12f{word-spacing:3.460200px;}
.ws5c{word-spacing:3.515400px;}
.ws11b{word-spacing:3.547800px;}
.ws47{word-spacing:3.627000px;}
.ws11f{word-spacing:3.682800px;}
.ws61{word-spacing:3.722400px;}
.ws9c{word-spacing:3.738600px;}
.ws98{word-spacing:3.794400px;}
.ws133{word-spacing:3.810600px;}
.wsd3{word-spacing:3.854400px;}
.wsb6{word-spacing:4.004400px;}
.wsd6{word-spacing:4.029600px;}
.wsb8{word-spacing:4.117200px;}
.wsf3{word-spacing:4.230000px;}
.ws120{word-spacing:4.240800px;}
.ws101{word-spacing:4.292400px;}
.ws19{word-spacing:4.296600px;}
.ws10d{word-spacing:4.380000px;}
.ws111{word-spacing:4.408200px;}
.wsd7{word-spacing:4.423800px;}
.wsc{word-spacing:4.455600px;}
.ws70{word-spacing:4.464000px;}
.wsbf{word-spacing:4.599000px;}
.ws12d{word-spacing:4.631400px;}
.ws110{word-spacing:4.686600px;}
.ws41{word-spacing:4.687200px;}
.ws33{word-spacing:4.730400px;}
.wsc5{word-spacing:4.794000px;}
.wsa1{word-spacing:4.818000px;}
.wse6{word-spacing:4.850400px;}
.wsc7{word-spacing:4.906800px;}
.ws24{word-spacing:4.910400px;}
.wse3{word-spacing:5.019600px;}
.ws1d{word-spacing:5.022000px;}
.ws12c{word-spacing:5.077800px;}
.wsfe{word-spacing:5.124600px;}
.ws7e{word-spacing:5.132400px;}
.ws1f{word-spacing:5.133600px;}
.ws115{word-spacing:5.188800px;}
.ws58{word-spacing:5.189400px;}
.ws132{word-spacing:5.212200px;}
.ws54{word-spacing:5.299800px;}
.wsbb{word-spacing:5.301600px;}
.ws86{word-spacing:5.343600px;}
.ws5e{word-spacing:5.356800px;}
.ws4c{word-spacing:5.412600px;}
.ws93{word-spacing:5.414400px;}
.ws13c{word-spacing:5.418000px;}
.wsfa{word-spacing:5.470800px;}
.ws3f{word-spacing:5.580000px;}
.ws125{word-spacing:5.635800px;}
.wsb{word-spacing:5.640000px;}
.wse4{word-spacing:5.696400px;}
.ws36{word-spacing:5.869200px;}
.ws29{word-spacing:5.914800px;}
.ws78{word-spacing:5.970600px;}
.wsaa{word-spacing:5.978400px;}
.ws96{word-spacing:6.082200px;}
.ws122{word-spacing:6.138000px;}
.ws5d{word-spacing:6.193800px;}
.wsb3{word-spacing:6.260400px;}
.wse0{word-spacing:6.429600px;}
.wsc3{word-spacing:6.486000px;}
.ws46{word-spacing:6.528600px;}
.wsbc{word-spacing:6.542400px;}
.ws8d{word-spacing:6.598800px;}
.ws9a{word-spacing:6.640200px;}
.ws56{word-spacing:6.696000px;}
.ws4d{word-spacing:6.863400px;}
.wsf0{word-spacing:6.876600px;}
.ws63{word-spacing:6.880800px;}
.wsbd{word-spacing:6.937200px;}
.ws11d{word-spacing:6.964200px;}
.ws40{word-spacing:6.975000px;}
.ws7a{word-spacing:6.993600px;}
.ws116{word-spacing:7.050000px;}
.wsc2{word-spacing:7.106400px;}
.ws118{word-spacing:7.162800px;}
.wsbe{word-spacing:7.219200px;}
.ws84{word-spacing:7.227000px;}
.ws4b{word-spacing:7.365600px;}
.ws10b{word-spacing:7.421400px;}
.ws1e{word-spacing:7.477200px;}
.ws81{word-spacing:7.501200px;}
.ws12b{word-spacing:7.588800px;}
.wsa0{word-spacing:7.644600px;}
.ws7c{word-spacing:7.726800px;}
.ws123{word-spacing:7.756200px;}
.ws80{word-spacing:7.783200px;}
.wsca{word-spacing:7.839600px;}
.ws25{word-spacing:7.867800px;}
.ws82{word-spacing:7.884000px;}
.wsc9{word-spacing:7.952400px;}
.ws97{word-spacing:8.202600px;}
.wscc{word-spacing:8.516400px;}
.ws8{word-spacing:8.572800px;}
.ws23{word-spacing:8.593200px;}
.wsa4{word-spacing:8.628600px;}
.ws9d{word-spacing:8.649000px;}
.ws124{word-spacing:8.983800px;}
.wsde{word-spacing:9.024000px;}
.ws62{word-spacing:9.306000px;}
.wsdb{word-spacing:9.362400px;}
.wsdc{word-spacing:9.531600px;}
.wsf6{word-spacing:9.700800px;}
.ws66{word-spacing:9.709200px;}
.ws60{word-spacing:9.926400px;}
.ws7f{word-spacing:10.039200px;}
.ws114{word-spacing:10.434000px;}
.ws9e{word-spacing:10.769400px;}
.ws11c{word-spacing:32.236800px;}
.ws10e{word-spacing:32.280600px;}
.ws4{word-spacing:2180.700000px;}
._17{margin-left:-12.571765px;}
._16{margin-left:-9.651037px;}
._9{margin-left:-8.165544px;}
._5{margin-left:-6.246288px;}
._6{margin-left:-5.200080px;}
._f{margin-left:-4.167960px;}
._4{margin-left:-3.130200px;}
._3{margin-left:-2.047320px;}
._2{margin-left:-1.009560px;}
._0{width:1.287306px;}
._1{width:3.274776px;}
._18{width:5.133600px;}
._a{width:6.281400px;}
._10{width:24.264198px;}
._15{width:25.289920px;}
._12{width:27.549198px;}
._11{width:28.793920px;}
._13{width:30.001998px;}
._d{width:31.797798px;}
._e{width:32.848998px;}
._b{width:49.598920px;}
._8{width:53.041416px;}
._7{width:55.450416px;}
._14{width:1036.395000px;}
._c{width:1037.519694px;}
.fc1{color:rgb(0,88,158);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:25.535400px;}
.fs9{font-size:32.531400px;}
.fs5{font-size:32.881200px;}
.fs3{font-size:38.478000px;}
.fs6{font-size:43.800000px;}
.fs0{font-size:45.000000px;}
.fsb{font-size:51.600000px;}
.fsc{font-size:54.000000px;}
.fs8{font-size:55.800000px;}
.fs4{font-size:56.400000px;}
.fs1{font-size:66.000000px;}
.fs7{font-size:68.400000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y20{bottom:63.673350px;}
.ye3{bottom:104.167950px;}
.y14b{bottom:104.169300px;}
.y53{bottom:104.170650px;}
.y75{bottom:104.172000px;}
.y97{bottom:104.173350px;}
.yc1{bottom:104.174100px;}
.y1f{bottom:104.174250px;}
.y11d{bottom:104.175450px;}
.y132{bottom:111.668250px;}
.ye2{bottom:117.669300px;}
.y14a{bottom:117.670650px;}
.y52{bottom:117.672000px;}
.y74{bottom:117.672750px;}
.y96{bottom:117.673350px;}
.yc0{bottom:121.924050px;}
.y1e{bottom:121.924200px;}
.y11c{bottom:121.925400px;}
.y16e{bottom:121.926300px;}
.y131{bottom:129.418200px;}
.ye1{bottom:131.170650px;}
.y149{bottom:131.172000px;}
.y51{bottom:131.173350px;}
.y95{bottom:135.418200px;}
.y73{bottom:135.422700px;}
.y11b{bottom:135.424950px;}
.ybf{bottom:135.425400px;}
.y1d{bottom:135.425550px;}
.y16d{bottom:139.676250px;}
.y130{bottom:142.919550px;}
.ye0{bottom:144.672000px;}
.y148{bottom:144.673350px;}
.y50{bottom:144.674100px;}
.y1c{bottom:148.917000px;}
.y72{bottom:148.924050px;}
.ybe{bottom:148.927650px;}
.y94{bottom:153.168150px;}
.y11a{bottom:153.174900px;}
.y16c{bottom:153.176250px;}
.y100{bottom:153.177600px;}
.y12f{bottom:156.420300px;}
.ydf{bottom:158.173350px;}
.y191{bottom:162.422700px;}
.y4f{bottom:162.424050px;}
.y71{bottom:162.425400px;}
.y15c{bottom:162.426300px;}
.y1b{bottom:166.666950px;}
.y93{bottom:166.669500px;}
.y119{bottom:166.676250px;}
.ybd{bottom:166.677600px;}
.y16b{bottom:166.678350px;}
.yff{bottom:170.929650px;}
.y12e{bottom:174.170250px;}
.yde{bottom:175.918650px;}
.y190{bottom:175.924050px;}
.y70{bottom:175.924950px;}
.y4e{bottom:175.927650px;}
.y1a{bottom:180.168300px;}
.y92{bottom:180.170850px;}
.ybc{bottom:180.174300px;}
.y147{bottom:180.176250px;}
.y118{bottom:180.177600px;}
.y16a{bottom:184.428300px;}
.y12d{bottom:187.671600px;}
.yfe{bottom:188.681850px;}
.ydd{bottom:189.420000px;}
.y18e{bottom:189.424050px;}
.y18f{bottom:189.425400px;}
.y19{bottom:193.669650px;}
.y91{bottom:193.672200px;}
.y6f{bottom:193.674900px;}
.y117{bottom:193.677000px;}
.y4d{bottom:193.677600px;}
.ybb{bottom:197.924250px;}
.y169{bottom:197.929650px;}
.y12c{bottom:201.172500px;}
.ydc{bottom:202.921350px;}
.y18d{bottom:202.925400px;}
.yfd{bottom:206.436150px;}
.y18{bottom:207.171000px;}
.y90{bottom:207.173550px;}
.y6e{bottom:207.176250px;}
.y4c{bottom:207.177600px;}
.yba{bottom:211.425600px;}
.y116{bottom:211.426950px;}
.y15b{bottom:211.430550px;}
.ydb{bottom:216.422700px;}
.y12b{bottom:218.922450px;}
.y18c{bottom:220.670850px;}
.y17{bottom:220.672350px;}
.y8f{bottom:220.674900px;}
.y6d{bottom:220.679700px;}
.yfc{bottom:224.186100px;}
.y4b{bottom:224.925150px;}
.yb9{bottom:224.926950px;}
.y115{bottom:224.928300px;}
.y15a{bottom:229.180500px;}
.yda{bottom:229.924050px;}
.y12a{bottom:232.423800px;}
.y18b{bottom:234.172200px;}
.y16{bottom:234.173700px;}
.y8e{bottom:234.176250px;}
.yfb{bottom:237.686100px;}
.y114{bottom:238.426500px;}
.yb8{bottom:238.428300px;}
.y6c{bottom:238.429650px;}
.y4a{bottom:242.675100px;}
.y159{bottom:242.681850px;}
.yd9{bottom:243.425400px;}
.y129{bottom:245.925900px;}
.y18a{bottom:247.673550px;}
.y15{bottom:247.675050px;}
.y8d{bottom:247.679700px;}
.y146{bottom:251.929200px;}
.y6b{bottom:251.929650px;}
.yfa{bottom:255.438150px;}
.y49{bottom:256.176450px;}
.y189{bottom:261.174900px;}
.y14{bottom:261.176400px;}
.yd8{bottom:261.177600px;}
.y128{bottom:263.675850px;}
.y8b{bottom:265.429650px;}
.y8c{bottom:269.076000px;}
.y48{bottom:269.677800px;}
.y145{bottom:269.679150px;}
.y6a{bottom:269.681850px;}
.y188{bottom:274.676250px;}
.y13{bottom:274.677750px;}
.y127{bottom:277.174050px;}
.y8a{bottom:278.929650px;}
.y47{bottom:283.179150px;}
.y144{bottom:283.180500px;}
.y19c{bottom:286.411200px;}
.y158{bottom:286.423200px;}
.yb7{bottom:287.430750px;}
.y69{bottom:287.433900px;}
.y187{bottom:288.177600px;}
.y12{bottom:288.177750px;}
.y186{bottom:288.178350px;}
.y126{bottom:294.924000px;}
.y46{bottom:296.680500px;}
.y143{bottom:296.681850px;}
.y11{bottom:301.677750px;}
.yb6{bottom:305.180700px;}
.y68{bottom:305.186100px;}
.y185{bottom:305.928300px;}
.y156{bottom:306.662400px;}
.y19b{bottom:306.664200px;}
.y157{bottom:306.673200px;}
.yf9{bottom:306.678000px;}
.y125{bottom:308.425350px;}
.y45{bottom:310.181850px;}
.y113{bottom:310.183950px;}
.yb5{bottom:318.682050px;}
.y184{bottom:319.429650px;}
.y124{bottom:321.926700px;}
.y44{bottom:323.681850px;}
.y87{bottom:326.907000px;}
.yd7{bottom:326.912400px;}
.y19a{bottom:326.917200px;}
.y155{bottom:326.917800px;}
.y89{bottom:326.923200px;}
.yf8{bottom:326.925600px;}
.y142{bottom:327.927150px;}
.y112{bottom:327.933900px;}
.y88{bottom:331.568550px;}
.yb4{bottom:332.183400px;}
.y123{bottom:335.428050px;}
.y183{bottom:337.181850px;}
.y141{bottom:341.428500px;}
.y111{bottom:341.433900px;}
.yb3{bottom:345.684750px;}
.y86{bottom:347.162400px;}
.y67{bottom:347.167800px;}
.y199{bottom:347.170200px;}
.yf7{bottom:347.173200px;}
.y140{bottom:354.929850px;}
.yb2{bottom:359.185500px;}
.yd6{bottom:367.396200px;}
.y43{bottom:367.407000px;}
.y64{bottom:367.417800px;}
.y66{bottom:367.423200px;}
.yf6{bottom:367.430400px;}
.y168{bottom:367.440000px;}
.y13f{bottom:368.431200px;}
.y65{bottom:372.068550px;}
.yb1{bottom:376.935450px;}
.y13e{bottom:381.932550px;}
.yd5{bottom:387.651600px;}
.y42{bottom:387.662400px;}
.y182{bottom:387.667800px;}
.y63{bottom:387.673200px;}
.yf5{bottom:387.678000px;}
.y167{bottom:387.687600px;}
.yb0{bottom:390.436800px;}
.y85{bottom:392.318550px;}
.y13d{bottom:395.433900px;}
.yaf{bottom:403.938150px;}
.yd4{bottom:407.907000px;}
.y41{bottom:407.917800px;}
.y181{bottom:407.923200px;}
.yf4{bottom:407.925600px;}
.y122{bottom:407.930400px;}
.y166{bottom:407.935200px;}
.y180{bottom:412.568550px;}
.yae{bottom:417.438150px;}
.y3e{bottom:428.162400px;}
.y17f{bottom:428.167800px;}
.y40{bottom:428.173200px;}
.y121{bottom:428.178000px;}
.y110{bottom:428.180400px;}
.yf3{bottom:428.182800px;}
.y10{bottom:428.182950px;}
.y3f{bottom:432.818550px;}
.y17d{bottom:448.412400px;}
.y3d{bottom:448.417800px;}
.y17e{bottom:448.423200px;}
.y120{bottom:448.425600px;}
.y10f{bottom:448.428000px;}
.yf2{bottom:448.430400px;}
.yf{bottom:448.430550px;}
.yd3{bottom:468.662400px;}
.y17c{bottom:468.667800px;}
.y198{bottom:468.670200px;}
.y3c{bottom:468.673200px;}
.y10e{bottom:468.675600px;}
.yf1{bottom:468.678000px;}
.ye{bottom:468.678150px;}
.y11f{bottom:468.680400px;}
.yad{bottom:468.685200px;}
.y62{bottom:488.907000px;}
.y17a{bottom:488.912400px;}
.yd2{bottom:488.917800px;}
.y3b{bottom:488.923200px;}
.yf0{bottom:488.925600px;}
.yd{bottom:488.925750px;}
.y11e{bottom:488.928000px;}
.yac{bottom:488.932800px;}
.y10d{bottom:488.935200px;}
.y17b{bottom:493.568550px;}
.yd0{bottom:509.151600px;}
.y61{bottom:509.162400px;}
.y39{bottom:509.167800px;}
.y3a{bottom:509.173200px;}
.yef{bottom:509.175600px;}
.y165{bottom:509.178000px;}
.yc{bottom:509.178150px;}
.yab{bottom:509.180400px;}
.y10c{bottom:509.182800px;}
.yd1{bottom:513.818550px;}
.ycf{bottom:529.407000px;}
.y37{bottom:529.417800px;}
.y38{bottom:529.423200px;}
.y164{bottom:529.425600px;}
.yb{bottom:529.425750px;}
.yaa{bottom:529.428000px;}
.y10b{bottom:529.430400px;}
.y84{bottom:529.432800px;}
.y179{bottom:534.068550px;}
.y5f{bottom:549.640800px;}
.y35{bottom:549.646200px;}
.yce{bottom:549.662400px;}
.y36{bottom:549.673200px;}
.ya9{bottom:549.675600px;}
.y10a{bottom:549.678000px;}
.y83{bottom:549.680400px;}
.ya{bottom:549.680550px;}
.y163{bottom:549.690000px;}
.y60{bottom:554.318550px;}
.y5e{bottom:569.896200px;}
.y34{bottom:569.901600px;}
.ycd{bottom:569.917800px;}
.y109{bottom:569.925600px;}
.y82{bottom:569.928000px;}
.y9{bottom:569.928150px;}
.ya8{bottom:569.930400px;}
.y162{bottom:569.937600px;}
.yee{bottom:569.942400px;}
.y5d{bottom:590.151600px;}
.y33{bottom:590.157000px;}
.y178{bottom:590.162400px;}
.ycc{bottom:590.173200px;}
.y81{bottom:590.175600px;}
.y8{bottom:590.175750px;}
.ya7{bottom:590.178000px;}
.y13c{bottom:590.180400px;}
.y161{bottom:590.185200px;}
.yed{bottom:590.190000px;}
.y5c{bottom:610.407000px;}
.y32{bottom:610.412400px;}
.y197{bottom:610.417200px;}
.y177{bottom:610.417800px;}
.y154{bottom:610.423200px;}
.y7{bottom:610.423350px;}
.ya6{bottom:610.425600px;}
.y80{bottom:610.428000px;}
.y108{bottom:610.432800px;}
.yec{bottom:610.437600px;}
.y176{bottom:630.651600px;}
.y5b{bottom:630.662400px;}
.y31{bottom:630.667800px;}
.y196{bottom:630.670200px;}
.ya5{bottom:630.673200px;}
.y7f{bottom:630.675600px;}
.y107{bottom:630.680400px;}
.yeb{bottom:630.685200px;}
.y153{bottom:635.318550px;}
.y2e{bottom:650.901600px;}
.y175{bottom:650.907000px;}
.y5a{bottom:650.917800px;}
.y195{bottom:650.920200px;}
.y30{bottom:650.923200px;}
.y106{bottom:650.928000px;}
.yea{bottom:650.932800px;}
.y2f{bottom:655.568550px;}
.y7e{bottom:671.113800px;}
.y152{bottom:671.151600px;}
.y2d{bottom:671.157000px;}
.y174{bottom:671.162400px;}
.y194{bottom:671.164200px;}
.y59{bottom:671.173200px;}
.y105{bottom:671.175600px;}
.y13b{bottom:671.178000px;}
.ye9{bottom:671.180400px;}
.y58{bottom:675.818550px;}
.y7d{bottom:691.369200px;}
.y151{bottom:691.407000px;}
.y2c{bottom:691.412400px;}
.y193{bottom:691.417200px;}
.y173{bottom:691.417800px;}
.y13a{bottom:691.425600px;}
.ye8{bottom:691.428000px;}
.y160{bottom:691.432800px;}
.ycb{bottom:691.435200px;}
.y7c{bottom:711.624600px;}
.y150{bottom:711.662400px;}
.y2b{bottom:711.667800px;}
.y192{bottom:711.670200px;}
.y172{bottom:711.673200px;}
.ye7{bottom:711.675600px;}
.y15f{bottom:711.680400px;}
.yca{bottom:711.682800px;}
.y139{bottom:711.687600px;}
.y171{bottom:716.318550px;}
.y7b{bottom:731.880000px;}
.y28{bottom:731.890800px;}
.ya4{bottom:731.912400px;}
.y14f{bottom:731.917800px;}
.y2a{bottom:731.923200px;}
.y15e{bottom:731.928000px;}
.yc9{bottom:731.930400px;}
.y138{bottom:731.935200px;}
.y104{bottom:731.937600px;}
.y29{bottom:736.568550px;}
.y7a{bottom:752.135400px;}
.y27{bottom:752.146200px;}
.y170{bottom:752.157000px;}
.y14c{bottom:752.162400px;}
.ya3{bottom:752.167800px;}
.y14e{bottom:752.173200px;}
.y5{bottom:752.173350px;}
.y15d{bottom:752.175600px;}
.yc8{bottom:752.178000px;}
.y137{bottom:752.182800px;}
.y103{bottom:752.185200px;}
.y14d{bottom:756.818550px;}
.y6{bottom:757.667700px;}
.y79{bottom:772.390800px;}
.y26{bottom:772.401600px;}
.y16f{bottom:772.412400px;}
.ya0{bottom:772.417800px;}
.ya2{bottom:772.423200px;}
.yc7{bottom:772.425600px;}
.y136{bottom:772.430400px;}
.y102{bottom:772.432800px;}
.ya1{bottom:777.068550px;}
.y78{bottom:792.646200px;}
.y25{bottom:792.657000px;}
.y9d{bottom:792.667800px;}
.y9f{bottom:792.673200px;}
.y4{bottom:792.673350px;}
.ye6{bottom:792.675600px;}
.y135{bottom:792.678000px;}
.y101{bottom:792.680400px;}
.yc6{bottom:792.685200px;}
.y9e{bottom:797.318550px;}
.y77{bottom:812.901600px;}
.y24{bottom:812.912400px;}
.y9c{bottom:812.923200px;}
.y134{bottom:812.925600px;}
.ye5{bottom:812.928000px;}
.yc5{bottom:812.932800px;}
.y9b{bottom:817.568550px;}
.y76{bottom:833.157000px;}
.y23{bottom:833.167800px;}
.y133{bottom:833.173200px;}
.y3{bottom:833.173350px;}
.ye4{bottom:833.175600px;}
.yc4{bottom:833.180400px;}
.y56{bottom:853.412400px;}
.y9a{bottom:853.417800px;}
.y22{bottom:853.423200px;}
.yc3{bottom:853.428000px;}
.y57{bottom:858.068550px;}
.y55{bottom:873.667800px;}
.y99{bottom:873.673200px;}
.yc2{bottom:873.675600px;}
.y98{bottom:878.318550px;}
.y21{bottom:893.923200px;}
.y2{bottom:893.923350px;}
.y54{bottom:898.568550px;}
.y1{bottom:952.912500px;}
.h16{height:22.930789px;}
.hf{height:25.602212px;}
.h6{height:29.858928px;}
.h1d{height:31.667400px;}
.hc{height:35.415000px;}
.h2{height:36.450000px;}
.h12{height:39.323400px;}
.h13{height:39.324000px;}
.h1c{height:39.328800px;}
.ha{height:39.329400px;}
.h8{height:39.332400px;}
.h14{height:39.334200px;}
.h15{height:39.334800px;}
.h1b{height:39.339600px;}
.h18{height:39.345000px;}
.h19{height:39.345600px;}
.h11{height:39.350400px;}
.h17{height:39.361200px;}
.h9{height:39.366600px;}
.h10{height:40.176000px;}
.hb{height:40.410000px;}
.h20{height:41.796000px;}
.h21{height:42.498000px;}
.h1f{height:43.914600px;}
.he{height:47.374200px;}
.h1e{height:47.417400px;}
.h1a{height:47.482200px;}
.h7{height:47.883600px;}
.h5{height:51.216000px;}
.h3{height:53.460000px;}
.hd{height:53.830800px;}
.h4{height:84.996000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:76.535400px;}
.x2{left:80.787450px;}
.x31{left:87.609150px;}
.x4e{left:93.604650px;}
.x13{left:95.209950px;}
.x1d{left:97.795200px;}
.x5{left:102.047100px;}
.x14{left:103.817700px;}
.x40{left:117.426750px;}
.xa{left:121.608300px;}
.x3b{left:129.144900px;}
.x6{left:131.051550px;}
.x2e{left:144.223500px;}
.x41{left:171.600000px;}
.x4d{left:172.951800px;}
.x49{left:189.990150px;}
.x4a{left:198.597750px;}
.x28{left:208.002450px;}
.x29{left:216.610050px;}
.x47{left:219.283050px;}
.x19{left:223.286700px;}
.x10{left:224.977500px;}
.x48{left:227.890800px;}
.x11{left:229.281300px;}
.x1a{left:231.894300px;}
.x44{left:245.745300px;}
.x45{left:254.353050px;}
.xb{left:275.704200px;}
.x2c{left:282.666000px;}
.x2d{left:291.273600px;}
.x38{left:296.624100px;}
.x3a{left:300.334800px;}
.x1e{left:303.847500px;}
.x39{left:305.231850px;}
.x1f{left:312.455250px;}
.x20{left:316.161150px;}
.x3c{left:318.045900px;}
.x21{left:319.480200px;}
.x7{left:326.477850px;}
.x9{left:330.129000px;}
.x26{left:359.007600px;}
.x27{left:367.615200px;}
.x3f{left:375.648000px;}
.x4b{left:377.218650px;}
.x22{left:384.706650px;}
.x23{left:393.314400px;}
.x1b{left:401.578050px;}
.x1c{left:410.185800px;}
.xe{left:415.772250px;}
.xf{left:420.076050px;}
.x24{left:432.859800px;}
.x15{left:438.438600px;}
.x25{left:441.467550px;}
.x34{left:443.544900px;}
.x16{left:447.046350px;}
.x35{left:452.152500px;}
.x2f{left:484.392300px;}
.x30{left:492.999900px;}
.x8{left:507.419700px;}
.x3{left:511.337550px;}
.x4{left:516.428100px;}
.x4c{left:522.448800px;}
.x36{left:524.446050px;}
.x17{left:528.165000px;}
.x37{left:533.053800px;}
.x18{left:536.772750px;}
.x33{left:550.702050px;}
.x46{left:578.443950px;}
.x2a{left:596.129850px;}
.xc{left:598.677450px;}
.x4f{left:601.762500px;}
.x2b{left:604.737600px;}
.x42{left:606.243600px;}
.x43{left:614.851350px;}
.x32{left:624.261300px;}
.x3d{left:627.344100px;}
.x3e{left:630.775500px;}
.x12{left:633.439500px;}
.xd{left:642.047250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.668267pt;}
.lsf{letter-spacing:-4.563200pt;}
.ls5{letter-spacing:-1.785600pt;}
.ls10{letter-spacing:-1.284800pt;}
.lsd{letter-spacing:-0.892800pt;}
.lsc{letter-spacing:-0.272533pt;}
.ls8{letter-spacing:-0.250667pt;}
.lse{letter-spacing:-0.233600pt;}
.ls1{letter-spacing:-0.200000pt;}
.ls2{letter-spacing:-0.155733pt;}
.ls9{letter-spacing:-0.146139pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.058455pt;}
.lsa{letter-spacing:0.100267pt;}
.ls6{letter-spacing:0.501333pt;}
.ls4{letter-spacing:0.560000pt;}
.ls3{letter-spacing:0.661867pt;}
.ls7{letter-spacing:28.405773pt;}
.wsda{word-spacing:-14.939733pt;}
.wsc0{word-spacing:-14.839467pt;}
.ws3b{word-spacing:-12.896000pt;}
.ws11e{word-spacing:-12.160000pt;}
.ws135{word-spacing:-9.920000pt;}
.ws136{word-spacing:-9.173333pt;}
.ws3{word-spacing:-8.000000pt;}
.ws0{word-spacing:-7.800000pt;}
.ws2{word-spacing:-7.786667pt;}
.ws18{word-spacing:-7.630933pt;}
.wsd9{word-spacing:-5.904002pt;}
.ws1{word-spacing:-5.845547pt;}
.ws17{word-spacing:-5.783360pt;}
.wsc1{word-spacing:-5.699408pt;}
.ws109{word-spacing:-3.258667pt;}
.wscf{word-spacing:-2.857600pt;}
.ws26{word-spacing:-2.728000pt;}
.wsae{word-spacing:-2.657067pt;}
.ws28{word-spacing:-2.529600pt;}
.ws11a{word-spacing:-2.506667pt;}
.wsf2{word-spacing:-2.456533pt;}
.ws72{word-spacing:-2.430400pt;}
.ws77{word-spacing:-2.380800pt;}
.wsb7{word-spacing:-2.306133pt;}
.ws91{word-spacing:-2.256000pt;}
.ws8f{word-spacing:-2.205867pt;}
.ws8e{word-spacing:-2.055467pt;}
.wse7{word-spacing:-1.955200pt;}
.ws2f{word-spacing:-1.884800pt;}
.wse{word-spacing:-1.854933pt;}
.ws105{word-spacing:-1.736000pt;}
.wsf8{word-spacing:-1.704533pt;}
.ws10a{word-spacing:-1.686400pt;}
.wsab{word-spacing:-1.654400pt;}
.ws13f{word-spacing:-1.651200pt;}
.ws1a{word-spacing:-1.636800pt;}
.ws31{word-spacing:-1.557333pt;}
.ws79{word-spacing:-1.554133pt;}
.ws67{word-spacing:-1.537600pt;}
.ws43{word-spacing:-1.488000pt;}
.ws6e{word-spacing:-1.479467pt;}
.ws138{word-spacing:-1.467733pt;}
.wsa9{word-spacing:-1.453867pt;}
.ws6b{word-spacing:-1.440533pt;}
.ws108{word-spacing:-1.388800pt;}
.ws50{word-spacing:-1.362667pt;}
.wscb{word-spacing:-1.353600pt;}
.wsd4{word-spacing:-1.323733pt;}
.wsd1{word-spacing:-1.203200pt;}
.ws71{word-spacing:-1.190400pt;}
.ws88{word-spacing:-1.168000pt;}
.ws139{word-spacing:-1.146667pt;}
.wsa8{word-spacing:-1.140800pt;}
.ws13a{word-spacing:-1.100800pt;}
.ws119{word-spacing:-1.052800pt;}
.ws10c{word-spacing:-1.041600pt;}
.wsef{word-spacing:-1.012267pt;}
.wsed{word-spacing:-0.973333pt;}
.ws6{word-spacing:-0.952533pt;}
.ws73{word-spacing:-0.942400pt;}
.wsec{word-spacing:-0.934400pt;}
.ws45{word-spacing:-0.892800pt;}
.ws35{word-spacing:-0.856533pt;}
.wsc6{word-spacing:-0.852267pt;}
.ws57{word-spacing:-0.843200pt;}
.wsdd{word-spacing:-0.802133pt;}
.ws1b{word-spacing:-0.793600pt;}
.ws11{word-spacing:-0.778667pt;}
.ws3c{word-spacing:-0.760000pt;}
.ws102{word-spacing:-0.739733pt;}
.ws15{word-spacing:-0.700800pt;}
.ws2c{word-spacing:-0.694400pt;}
.wsa7{word-spacing:-0.661867pt;}
.ws126{word-spacing:-0.644800pt;}
.ws141{word-spacing:-0.642133pt;}
.ws4e{word-spacing:-0.622933pt;}
.wsb2{word-spacing:-0.551467pt;}
.ws9f{word-spacing:-0.545600pt;}
.ws51{word-spacing:-0.545067pt;}
.ws52{word-spacing:-0.506133pt;}
.wscd{word-spacing:-0.501333pt;}
.ws74{word-spacing:-0.496000pt;}
.ws32{word-spacing:-0.467200pt;}
.wsaf{word-spacing:-0.451200pt;}
.ws59{word-spacing:-0.446400pt;}
.wse8{word-spacing:-0.401067pt;}
.ws106{word-spacing:-0.396800pt;}
.ws14{word-spacing:-0.272533pt;}
.ws7b{word-spacing:-0.250667pt;}
.ws134{word-spacing:-0.194667pt;}
.wsd0{word-spacing:-0.150400pt;}
.wsb0{word-spacing:-0.100267pt;}
.ws44{word-spacing:-0.049600pt;}
.ws3a{word-spacing:-0.040000pt;}
.wsd5{word-spacing:-0.038933pt;}
.ws5{word-spacing:0.000000pt;}
.ws89{word-spacing:0.038933pt;}
.wsf7{word-spacing:0.050133pt;}
.ws99{word-spacing:0.099200pt;}
.ws90{word-spacing:0.100267pt;}
.ws2e{word-spacing:0.148800pt;}
.wse2{word-spacing:0.150400pt;}
.ws37{word-spacing:0.155733pt;}
.ws49{word-spacing:0.198400pt;}
.ws65{word-spacing:0.200533pt;}
.ws104{word-spacing:0.233600pt;}
.ws127{word-spacing:0.248000pt;}
.ws27{word-spacing:0.297600pt;}
.wsac{word-spacing:0.300800pt;}
.ws10f{word-spacing:0.311467pt;}
.ws13d{word-spacing:0.321067pt;}
.ws22{word-spacing:0.347200pt;}
.ws53{word-spacing:0.350400pt;}
.ws6d{word-spacing:0.389333pt;}
.wsf1{word-spacing:0.428267pt;}
.ws2d{word-spacing:0.446400pt;}
.wse9{word-spacing:0.451200pt;}
.ws39{word-spacing:0.467200pt;}
.ws4a{word-spacing:0.496000pt;}
.wse1{word-spacing:0.501333pt;}
.ws4f{word-spacing:0.506133pt;}
.ws87{word-spacing:0.545067pt;}
.ws5f{word-spacing:0.545600pt;}
.wsa2{word-spacing:0.584000pt;}
.ws1c{word-spacing:0.694400pt;}
.ws6a{word-spacing:0.700800pt;}
.ws7d{word-spacing:0.701867pt;}
.wsdf{word-spacing:0.752000pt;}
.ws76{word-spacing:0.793600pt;}
.ws64{word-spacing:0.802133pt;}
.ws3d{word-spacing:0.843200pt;}
.wsba{word-spacing:0.852267pt;}
.ws113{word-spacing:0.892800pt;}
.wsb1{word-spacing:0.902400pt;}
.ws5a{word-spacing:0.992000pt;}
.wsf5{word-spacing:1.002667pt;}
.ws103{word-spacing:1.012267pt;}
.ws5b{word-spacing:1.041600pt;}
.wsa3{word-spacing:1.051200pt;}
.wsce{word-spacing:1.052800pt;}
.ws129{word-spacing:1.091200pt;}
.ws140{word-spacing:1.100800pt;}
.wsee{word-spacing:1.129067pt;}
.ws48{word-spacing:1.140800pt;}
.wsff{word-spacing:1.168000pt;}
.ws9b{word-spacing:1.190400pt;}
.ws128{word-spacing:1.240000pt;}
.ws8c{word-spacing:1.253333pt;}
.wsa6{word-spacing:1.284800pt;}
.ws3e{word-spacing:1.289600pt;}
.wsb4{word-spacing:1.303467pt;}
.ws2b{word-spacing:1.339200pt;}
.ws75{word-spacing:1.388800pt;}
.ws85{word-spacing:1.440533pt;}
.ws16{word-spacing:1.479467pt;}
.ws69{word-spacing:1.537600pt;}
.wsb5{word-spacing:1.554133pt;}
.wsad{word-spacing:1.604267pt;}
.wsd2{word-spacing:1.635200pt;}
.ws94{word-spacing:1.636800pt;}
.wsc8{word-spacing:1.654400pt;}
.wseb{word-spacing:1.713067pt;}
.ws2a{word-spacing:1.736000pt;}
.wsf9{word-spacing:1.754667pt;}
.ws42{word-spacing:1.785600pt;}
.wsfc{word-spacing:1.790933pt;}
.wsc4{word-spacing:1.804800pt;}
.ws131{word-spacing:1.829867pt;}
.ws13e{word-spacing:1.834667pt;}
.ws117{word-spacing:1.854933pt;}
.ws92{word-spacing:1.905067pt;}
.ws83{word-spacing:1.907733pt;}
.ws100{word-spacing:1.946667pt;}
.ws21{word-spacing:1.984000pt;}
.ws8b{word-spacing:1.985600pt;}
.wsfb{word-spacing:2.055467pt;}
.ws30{word-spacing:2.063467pt;}
.wsfd{word-spacing:2.102400pt;}
.wsea{word-spacing:2.105600pt;}
.ws137{word-spacing:2.132800pt;}
.wsf{word-spacing:2.141333pt;}
.ws10{word-spacing:2.180267pt;}
.wsa{word-spacing:2.205867pt;}
.ws34{word-spacing:2.219200pt;}
.ws12a{word-spacing:2.232000pt;}
.wse5{word-spacing:2.256000pt;}
.ws107{word-spacing:2.281600pt;}
.ws55{word-spacing:2.331200pt;}
.ws6c{word-spacing:2.336000pt;}
.wsf4{word-spacing:2.406400pt;}
.ws112{word-spacing:2.529600pt;}
.ws12{word-spacing:2.530667pt;}
.ws38{word-spacing:2.569600pt;}
.ws13{word-spacing:2.608533pt;}
.ws95{word-spacing:2.678400pt;}
.ws9{word-spacing:2.707200pt;}
.ws12e{word-spacing:2.725333pt;}
.ws121{word-spacing:2.728000pt;}
.wsd8{word-spacing:2.764267pt;}
.ws6f{word-spacing:2.777600pt;}
.ws13b{word-spacing:2.797867pt;}
.wsd{word-spacing:2.807467pt;}
.wsb9{word-spacing:2.907733pt;}
.wsa5{word-spacing:2.958933pt;}
.ws20{word-spacing:2.976000pt;}
.ws8a{word-spacing:2.997867pt;}
.ws7{word-spacing:3.008000pt;}
.ws68{word-spacing:3.025600pt;}
.ws130{word-spacing:3.036800pt;}
.ws12f{word-spacing:3.075733pt;}
.ws5c{word-spacing:3.124800pt;}
.ws11b{word-spacing:3.153600pt;}
.ws47{word-spacing:3.224000pt;}
.ws11f{word-spacing:3.273600pt;}
.ws61{word-spacing:3.308800pt;}
.ws9c{word-spacing:3.323200pt;}
.ws98{word-spacing:3.372800pt;}
.ws133{word-spacing:3.387200pt;}
.wsd3{word-spacing:3.426133pt;}
.wsb6{word-spacing:3.559467pt;}
.wsd6{word-spacing:3.581867pt;}
.wsb8{word-spacing:3.659733pt;}
.wsf3{word-spacing:3.760000pt;}
.ws120{word-spacing:3.769600pt;}
.ws101{word-spacing:3.815467pt;}
.ws19{word-spacing:3.819200pt;}
.ws10d{word-spacing:3.893333pt;}
.ws111{word-spacing:3.918400pt;}
.wsd7{word-spacing:3.932267pt;}
.wsc{word-spacing:3.960533pt;}
.ws70{word-spacing:3.968000pt;}
.wsbf{word-spacing:4.088000pt;}
.ws12d{word-spacing:4.116800pt;}
.ws110{word-spacing:4.165867pt;}
.ws41{word-spacing:4.166400pt;}
.ws33{word-spacing:4.204800pt;}
.wsc5{word-spacing:4.261333pt;}
.wsa1{word-spacing:4.282667pt;}
.wse6{word-spacing:4.311467pt;}
.wsc7{word-spacing:4.361600pt;}
.ws24{word-spacing:4.364800pt;}
.wse3{word-spacing:4.461867pt;}
.ws1d{word-spacing:4.464000pt;}
.ws12c{word-spacing:4.513600pt;}
.wsfe{word-spacing:4.555200pt;}
.ws7e{word-spacing:4.562133pt;}
.ws1f{word-spacing:4.563200pt;}
.ws115{word-spacing:4.612267pt;}
.ws58{word-spacing:4.612800pt;}
.ws132{word-spacing:4.633067pt;}
.ws54{word-spacing:4.710933pt;}
.wsbb{word-spacing:4.712533pt;}
.ws86{word-spacing:4.749867pt;}
.ws5e{word-spacing:4.761600pt;}
.ws4c{word-spacing:4.811200pt;}
.ws93{word-spacing:4.812800pt;}
.ws13c{word-spacing:4.816000pt;}
.wsfa{word-spacing:4.862933pt;}
.ws3f{word-spacing:4.960000pt;}
.ws125{word-spacing:5.009600pt;}
.wsb{word-spacing:5.013333pt;}
.wse4{word-spacing:5.063467pt;}
.ws36{word-spacing:5.217067pt;}
.ws29{word-spacing:5.257600pt;}
.ws78{word-spacing:5.307200pt;}
.wsaa{word-spacing:5.314133pt;}
.ws96{word-spacing:5.406400pt;}
.ws122{word-spacing:5.456000pt;}
.ws5d{word-spacing:5.505600pt;}
.wsb3{word-spacing:5.564800pt;}
.wse0{word-spacing:5.715200pt;}
.wsc3{word-spacing:5.765333pt;}
.ws46{word-spacing:5.803200pt;}
.wsbc{word-spacing:5.815467pt;}
.ws8d{word-spacing:5.865600pt;}
.ws9a{word-spacing:5.902400pt;}
.ws56{word-spacing:5.952000pt;}
.ws4d{word-spacing:6.100800pt;}
.wsf0{word-spacing:6.112533pt;}
.ws63{word-spacing:6.116267pt;}
.wsbd{word-spacing:6.166400pt;}
.ws11d{word-spacing:6.190400pt;}
.ws40{word-spacing:6.200000pt;}
.ws7a{word-spacing:6.216533pt;}
.ws116{word-spacing:6.266667pt;}
.wsc2{word-spacing:6.316800pt;}
.ws118{word-spacing:6.366933pt;}
.wsbe{word-spacing:6.417067pt;}
.ws84{word-spacing:6.424000pt;}
.ws4b{word-spacing:6.547200pt;}
.ws10b{word-spacing:6.596800pt;}
.ws1e{word-spacing:6.646400pt;}
.ws81{word-spacing:6.667733pt;}
.ws12b{word-spacing:6.745600pt;}
.wsa0{word-spacing:6.795200pt;}
.ws7c{word-spacing:6.868267pt;}
.ws123{word-spacing:6.894400pt;}
.ws80{word-spacing:6.918400pt;}
.wsca{word-spacing:6.968533pt;}
.ws25{word-spacing:6.993600pt;}
.ws82{word-spacing:7.008000pt;}
.wsc9{word-spacing:7.068800pt;}
.ws97{word-spacing:7.291200pt;}
.wscc{word-spacing:7.570133pt;}
.ws8{word-spacing:7.620267pt;}
.ws23{word-spacing:7.638400pt;}
.wsa4{word-spacing:7.669867pt;}
.ws9d{word-spacing:7.688000pt;}
.ws124{word-spacing:7.985600pt;}
.wsde{word-spacing:8.021333pt;}
.ws62{word-spacing:8.272000pt;}
.wsdb{word-spacing:8.322133pt;}
.wsdc{word-spacing:8.472533pt;}
.wsf6{word-spacing:8.622933pt;}
.ws66{word-spacing:8.630400pt;}
.ws60{word-spacing:8.823467pt;}
.ws7f{word-spacing:8.923733pt;}
.ws114{word-spacing:9.274667pt;}
.ws9e{word-spacing:9.572800pt;}
.ws11c{word-spacing:28.654933pt;}
.ws10e{word-spacing:28.693867pt;}
.ws4{word-spacing:1938.400000pt;}
._17{margin-left:-11.174902pt;}
._16{margin-left:-8.578699pt;}
._9{margin-left:-7.258261pt;}
._5{margin-left:-5.552256pt;}
._6{margin-left:-4.622293pt;}
._f{margin-left:-3.704853pt;}
._4{margin-left:-2.782400pt;}
._3{margin-left:-1.819840pt;}
._2{margin-left:-0.897387pt;}
._0{width:1.144272pt;}
._1{width:2.910912pt;}
._18{width:4.563200pt;}
._a{width:5.583467pt;}
._10{width:21.568176pt;}
._15{width:22.479929pt;}
._12{width:24.488176pt;}
._11{width:25.594595pt;}
._13{width:26.668443pt;}
._d{width:28.264709pt;}
._e{width:29.199109pt;}
._b{width:44.087929pt;}
._8{width:47.147926pt;}
._7{width:49.289259pt;}
._14{width:921.240000pt;}
._c{width:922.239728pt;}
.fsa{font-size:22.698133pt;}
.fs9{font-size:28.916800pt;}
.fs5{font-size:29.227733pt;}
.fs3{font-size:34.202667pt;}
.fs6{font-size:38.933333pt;}
.fs0{font-size:40.000000pt;}
.fsb{font-size:45.866667pt;}
.fsc{font-size:48.000000pt;}
.fs8{font-size:49.600000pt;}
.fs4{font-size:50.133333pt;}
.fs1{font-size:58.666667pt;}
.fs7{font-size:60.800000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:56.598533pt;}
.ye3{bottom:92.593733pt;}
.y14b{bottom:92.594933pt;}
.y53{bottom:92.596133pt;}
.y75{bottom:92.597333pt;}
.y97{bottom:92.598533pt;}
.yc1{bottom:92.599200pt;}
.y1f{bottom:92.599333pt;}
.y11d{bottom:92.600400pt;}
.y132{bottom:99.260667pt;}
.ye2{bottom:104.594933pt;}
.y14a{bottom:104.596133pt;}
.y52{bottom:104.597333pt;}
.y74{bottom:104.598000pt;}
.y96{bottom:104.598533pt;}
.yc0{bottom:108.376933pt;}
.y1e{bottom:108.377067pt;}
.y11c{bottom:108.378133pt;}
.y16e{bottom:108.378933pt;}
.y131{bottom:115.038400pt;}
.ye1{bottom:116.596133pt;}
.y149{bottom:116.597333pt;}
.y51{bottom:116.598533pt;}
.y95{bottom:120.371733pt;}
.y73{bottom:120.375733pt;}
.y11b{bottom:120.377733pt;}
.ybf{bottom:120.378133pt;}
.y1d{bottom:120.378267pt;}
.y16d{bottom:124.156667pt;}
.y130{bottom:127.039600pt;}
.ye0{bottom:128.597333pt;}
.y148{bottom:128.598533pt;}
.y50{bottom:128.599200pt;}
.y1c{bottom:132.370667pt;}
.y72{bottom:132.376933pt;}
.ybe{bottom:132.380133pt;}
.y94{bottom:136.149467pt;}
.y11a{bottom:136.155467pt;}
.y16c{bottom:136.156667pt;}
.y100{bottom:136.157867pt;}
.y12f{bottom:139.040267pt;}
.ydf{bottom:140.598533pt;}
.y191{bottom:144.375733pt;}
.y4f{bottom:144.376933pt;}
.y71{bottom:144.378133pt;}
.y15c{bottom:144.378933pt;}
.y1b{bottom:148.148400pt;}
.y93{bottom:148.150667pt;}
.y119{bottom:148.156667pt;}
.ybd{bottom:148.157867pt;}
.y16b{bottom:148.158533pt;}
.yff{bottom:151.937467pt;}
.y12e{bottom:154.818000pt;}
.yde{bottom:156.372133pt;}
.y190{bottom:156.376933pt;}
.y70{bottom:156.377733pt;}
.y4e{bottom:156.380133pt;}
.y1a{bottom:160.149600pt;}
.y92{bottom:160.151867pt;}
.ybc{bottom:160.154933pt;}
.y147{bottom:160.156667pt;}
.y118{bottom:160.157867pt;}
.y16a{bottom:163.936267pt;}
.y12d{bottom:166.819200pt;}
.yfe{bottom:167.717200pt;}
.ydd{bottom:168.373333pt;}
.y18e{bottom:168.376933pt;}
.y18f{bottom:168.378133pt;}
.y19{bottom:172.150800pt;}
.y91{bottom:172.153067pt;}
.y6f{bottom:172.155467pt;}
.y117{bottom:172.157333pt;}
.y4d{bottom:172.157867pt;}
.ybb{bottom:175.932667pt;}
.y169{bottom:175.937467pt;}
.y12c{bottom:178.820000pt;}
.ydc{bottom:180.374533pt;}
.y18d{bottom:180.378133pt;}
.yfd{bottom:183.498800pt;}
.y18{bottom:184.152000pt;}
.y90{bottom:184.154267pt;}
.y6e{bottom:184.156667pt;}
.y4c{bottom:184.157867pt;}
.yba{bottom:187.933867pt;}
.y116{bottom:187.935067pt;}
.y15b{bottom:187.938267pt;}
.ydb{bottom:192.375733pt;}
.y12b{bottom:194.597733pt;}
.y18c{bottom:196.151867pt;}
.y17{bottom:196.153200pt;}
.y8f{bottom:196.155467pt;}
.y6d{bottom:196.159733pt;}
.yfc{bottom:199.276533pt;}
.y4b{bottom:199.933467pt;}
.yb9{bottom:199.935067pt;}
.y115{bottom:199.936267pt;}
.y15a{bottom:203.716000pt;}
.yda{bottom:204.376933pt;}
.y12a{bottom:206.598933pt;}
.y18b{bottom:208.153067pt;}
.y16{bottom:208.154400pt;}
.y8e{bottom:208.156667pt;}
.yfb{bottom:211.276533pt;}
.y114{bottom:211.934667pt;}
.yb8{bottom:211.936267pt;}
.y6c{bottom:211.937467pt;}
.y4a{bottom:215.711200pt;}
.y159{bottom:215.717200pt;}
.yd9{bottom:216.378133pt;}
.y129{bottom:218.600800pt;}
.y18a{bottom:220.154267pt;}
.y15{bottom:220.155600pt;}
.y8d{bottom:220.159733pt;}
.y146{bottom:223.937067pt;}
.y6b{bottom:223.937467pt;}
.yfa{bottom:227.056133pt;}
.y49{bottom:227.712400pt;}
.y189{bottom:232.155467pt;}
.y14{bottom:232.156800pt;}
.yd8{bottom:232.157867pt;}
.y128{bottom:234.378533pt;}
.y8b{bottom:235.937467pt;}
.y8c{bottom:239.178667pt;}
.y48{bottom:239.713600pt;}
.y145{bottom:239.714800pt;}
.y6a{bottom:239.717200pt;}
.y188{bottom:244.156667pt;}
.y13{bottom:244.158000pt;}
.y127{bottom:246.376933pt;}
.y8a{bottom:247.937467pt;}
.y47{bottom:251.714800pt;}
.y144{bottom:251.716000pt;}
.y19c{bottom:254.587733pt;}
.y158{bottom:254.598400pt;}
.yb7{bottom:255.494000pt;}
.y69{bottom:255.496800pt;}
.y187{bottom:256.157867pt;}
.y12{bottom:256.158000pt;}
.y186{bottom:256.158533pt;}
.y126{bottom:262.154667pt;}
.y46{bottom:263.716000pt;}
.y143{bottom:263.717200pt;}
.y11{bottom:268.158000pt;}
.yb6{bottom:271.271733pt;}
.y68{bottom:271.276533pt;}
.y185{bottom:271.936267pt;}
.y156{bottom:272.588800pt;}
.y19b{bottom:272.590400pt;}
.y157{bottom:272.598400pt;}
.yf9{bottom:272.602667pt;}
.y125{bottom:274.155867pt;}
.y45{bottom:275.717200pt;}
.y113{bottom:275.719067pt;}
.yb5{bottom:283.272933pt;}
.y184{bottom:283.937467pt;}
.y124{bottom:286.157067pt;}
.y44{bottom:287.717200pt;}
.y87{bottom:290.584000pt;}
.yd7{bottom:290.588800pt;}
.y19a{bottom:290.593067pt;}
.y155{bottom:290.593600pt;}
.y89{bottom:290.598400pt;}
.yf8{bottom:290.600533pt;}
.y142{bottom:291.490800pt;}
.y112{bottom:291.496800pt;}
.y88{bottom:294.727600pt;}
.yb4{bottom:295.274133pt;}
.y123{bottom:298.158267pt;}
.y183{bottom:299.717200pt;}
.y141{bottom:303.492000pt;}
.y111{bottom:303.496800pt;}
.yb3{bottom:307.275333pt;}
.y86{bottom:308.588800pt;}
.y67{bottom:308.593600pt;}
.y199{bottom:308.595733pt;}
.yf7{bottom:308.598400pt;}
.y140{bottom:315.493200pt;}
.yb2{bottom:319.276000pt;}
.yd6{bottom:326.574400pt;}
.y43{bottom:326.584000pt;}
.y64{bottom:326.593600pt;}
.y66{bottom:326.598400pt;}
.yf6{bottom:326.604800pt;}
.y168{bottom:326.613333pt;}
.y13f{bottom:327.494400pt;}
.y65{bottom:330.727600pt;}
.yb1{bottom:335.053733pt;}
.y13e{bottom:339.495600pt;}
.yd5{bottom:344.579200pt;}
.y42{bottom:344.588800pt;}
.y182{bottom:344.593600pt;}
.y63{bottom:344.598400pt;}
.yf5{bottom:344.602667pt;}
.y167{bottom:344.611200pt;}
.yb0{bottom:347.054933pt;}
.y85{bottom:348.727600pt;}
.y13d{bottom:351.496800pt;}
.yaf{bottom:359.056133pt;}
.yd4{bottom:362.584000pt;}
.y41{bottom:362.593600pt;}
.y181{bottom:362.598400pt;}
.yf4{bottom:362.600533pt;}
.y122{bottom:362.604800pt;}
.y166{bottom:362.609067pt;}
.y180{bottom:366.727600pt;}
.yae{bottom:371.056133pt;}
.y3e{bottom:380.588800pt;}
.y17f{bottom:380.593600pt;}
.y40{bottom:380.598400pt;}
.y121{bottom:380.602667pt;}
.y110{bottom:380.604800pt;}
.yf3{bottom:380.606933pt;}
.y10{bottom:380.607067pt;}
.y3f{bottom:384.727600pt;}
.y17d{bottom:398.588800pt;}
.y3d{bottom:398.593600pt;}
.y17e{bottom:398.598400pt;}
.y120{bottom:398.600533pt;}
.y10f{bottom:398.602667pt;}
.yf2{bottom:398.604800pt;}
.yf{bottom:398.604933pt;}
.yd3{bottom:416.588800pt;}
.y17c{bottom:416.593600pt;}
.y198{bottom:416.595733pt;}
.y3c{bottom:416.598400pt;}
.y10e{bottom:416.600533pt;}
.yf1{bottom:416.602667pt;}
.ye{bottom:416.602800pt;}
.y11f{bottom:416.604800pt;}
.yad{bottom:416.609067pt;}
.y62{bottom:434.584000pt;}
.y17a{bottom:434.588800pt;}
.yd2{bottom:434.593600pt;}
.y3b{bottom:434.598400pt;}
.yf0{bottom:434.600533pt;}
.yd{bottom:434.600667pt;}
.y11e{bottom:434.602667pt;}
.yac{bottom:434.606933pt;}
.y10d{bottom:434.609067pt;}
.y17b{bottom:438.727600pt;}
.yd0{bottom:452.579200pt;}
.y61{bottom:452.588800pt;}
.y39{bottom:452.593600pt;}
.y3a{bottom:452.598400pt;}
.yef{bottom:452.600533pt;}
.y165{bottom:452.602667pt;}
.yc{bottom:452.602800pt;}
.yab{bottom:452.604800pt;}
.y10c{bottom:452.606933pt;}
.yd1{bottom:456.727600pt;}
.ycf{bottom:470.584000pt;}
.y37{bottom:470.593600pt;}
.y38{bottom:470.598400pt;}
.y164{bottom:470.600533pt;}
.yb{bottom:470.600667pt;}
.yaa{bottom:470.602667pt;}
.y10b{bottom:470.604800pt;}
.y84{bottom:470.606933pt;}
.y179{bottom:474.727600pt;}
.y5f{bottom:488.569600pt;}
.y35{bottom:488.574400pt;}
.yce{bottom:488.588800pt;}
.y36{bottom:488.598400pt;}
.ya9{bottom:488.600533pt;}
.y10a{bottom:488.602667pt;}
.y83{bottom:488.604800pt;}
.ya{bottom:488.604933pt;}
.y163{bottom:488.613333pt;}
.y60{bottom:492.727600pt;}
.y5e{bottom:506.574400pt;}
.y34{bottom:506.579200pt;}
.ycd{bottom:506.593600pt;}
.y109{bottom:506.600533pt;}
.y82{bottom:506.602667pt;}
.y9{bottom:506.602800pt;}
.ya8{bottom:506.604800pt;}
.y162{bottom:506.611200pt;}
.yee{bottom:506.615467pt;}
.y5d{bottom:524.579200pt;}
.y33{bottom:524.584000pt;}
.y178{bottom:524.588800pt;}
.ycc{bottom:524.598400pt;}
.y81{bottom:524.600533pt;}
.y8{bottom:524.600667pt;}
.ya7{bottom:524.602667pt;}
.y13c{bottom:524.604800pt;}
.y161{bottom:524.609067pt;}
.yed{bottom:524.613333pt;}
.y5c{bottom:542.584000pt;}
.y32{bottom:542.588800pt;}
.y197{bottom:542.593067pt;}
.y177{bottom:542.593600pt;}
.y154{bottom:542.598400pt;}
.y7{bottom:542.598533pt;}
.ya6{bottom:542.600533pt;}
.y80{bottom:542.602667pt;}
.y108{bottom:542.606933pt;}
.yec{bottom:542.611200pt;}
.y176{bottom:560.579200pt;}
.y5b{bottom:560.588800pt;}
.y31{bottom:560.593600pt;}
.y196{bottom:560.595733pt;}
.ya5{bottom:560.598400pt;}
.y7f{bottom:560.600533pt;}
.y107{bottom:560.604800pt;}
.yeb{bottom:560.609067pt;}
.y153{bottom:564.727600pt;}
.y2e{bottom:578.579200pt;}
.y175{bottom:578.584000pt;}
.y5a{bottom:578.593600pt;}
.y195{bottom:578.595733pt;}
.y30{bottom:578.598400pt;}
.y106{bottom:578.602667pt;}
.yea{bottom:578.606933pt;}
.y2f{bottom:582.727600pt;}
.y7e{bottom:596.545600pt;}
.y152{bottom:596.579200pt;}
.y2d{bottom:596.584000pt;}
.y174{bottom:596.588800pt;}
.y194{bottom:596.590400pt;}
.y59{bottom:596.598400pt;}
.y105{bottom:596.600533pt;}
.y13b{bottom:596.602667pt;}
.ye9{bottom:596.604800pt;}
.y58{bottom:600.727600pt;}
.y7d{bottom:614.550400pt;}
.y151{bottom:614.584000pt;}
.y2c{bottom:614.588800pt;}
.y193{bottom:614.593067pt;}
.y173{bottom:614.593600pt;}
.y13a{bottom:614.600533pt;}
.ye8{bottom:614.602667pt;}
.y160{bottom:614.606933pt;}
.ycb{bottom:614.609067pt;}
.y7c{bottom:632.555200pt;}
.y150{bottom:632.588800pt;}
.y2b{bottom:632.593600pt;}
.y192{bottom:632.595733pt;}
.y172{bottom:632.598400pt;}
.ye7{bottom:632.600533pt;}
.y15f{bottom:632.604800pt;}
.yca{bottom:632.606933pt;}
.y139{bottom:632.611200pt;}
.y171{bottom:636.727600pt;}
.y7b{bottom:650.560000pt;}
.y28{bottom:650.569600pt;}
.ya4{bottom:650.588800pt;}
.y14f{bottom:650.593600pt;}
.y2a{bottom:650.598400pt;}
.y15e{bottom:650.602667pt;}
.yc9{bottom:650.604800pt;}
.y138{bottom:650.609067pt;}
.y104{bottom:650.611200pt;}
.y29{bottom:654.727600pt;}
.y7a{bottom:668.564800pt;}
.y27{bottom:668.574400pt;}
.y170{bottom:668.584000pt;}
.y14c{bottom:668.588800pt;}
.ya3{bottom:668.593600pt;}
.y14e{bottom:668.598400pt;}
.y5{bottom:668.598533pt;}
.y15d{bottom:668.600533pt;}
.yc8{bottom:668.602667pt;}
.y137{bottom:668.606933pt;}
.y103{bottom:668.609067pt;}
.y14d{bottom:672.727600pt;}
.y6{bottom:673.482400pt;}
.y79{bottom:686.569600pt;}
.y26{bottom:686.579200pt;}
.y16f{bottom:686.588800pt;}
.ya0{bottom:686.593600pt;}
.ya2{bottom:686.598400pt;}
.yc7{bottom:686.600533pt;}
.y136{bottom:686.604800pt;}
.y102{bottom:686.606933pt;}
.ya1{bottom:690.727600pt;}
.y78{bottom:704.574400pt;}
.y25{bottom:704.584000pt;}
.y9d{bottom:704.593600pt;}
.y9f{bottom:704.598400pt;}
.y4{bottom:704.598533pt;}
.ye6{bottom:704.600533pt;}
.y135{bottom:704.602667pt;}
.y101{bottom:704.604800pt;}
.yc6{bottom:704.609067pt;}
.y9e{bottom:708.727600pt;}
.y77{bottom:722.579200pt;}
.y24{bottom:722.588800pt;}
.y9c{bottom:722.598400pt;}
.y134{bottom:722.600533pt;}
.ye5{bottom:722.602667pt;}
.yc5{bottom:722.606933pt;}
.y9b{bottom:726.727600pt;}
.y76{bottom:740.584000pt;}
.y23{bottom:740.593600pt;}
.y133{bottom:740.598400pt;}
.y3{bottom:740.598533pt;}
.ye4{bottom:740.600533pt;}
.yc4{bottom:740.604800pt;}
.y56{bottom:758.588800pt;}
.y9a{bottom:758.593600pt;}
.y22{bottom:758.598400pt;}
.yc3{bottom:758.602667pt;}
.y57{bottom:762.727600pt;}
.y55{bottom:776.593600pt;}
.y99{bottom:776.598400pt;}
.yc2{bottom:776.600533pt;}
.y98{bottom:780.727600pt;}
.y21{bottom:794.598400pt;}
.y2{bottom:794.598533pt;}
.y54{bottom:798.727600pt;}
.y1{bottom:847.033333pt;}
.h16{height:20.382924pt;}
.hf{height:22.757522pt;}
.h6{height:26.541269pt;}
.h1d{height:28.148800pt;}
.hc{height:31.480000pt;}
.h2{height:32.400000pt;}
.h12{height:34.954133pt;}
.h13{height:34.954667pt;}
.h1c{height:34.958933pt;}
.ha{height:34.959467pt;}
.h8{height:34.962133pt;}
.h14{height:34.963733pt;}
.h15{height:34.964267pt;}
.h1b{height:34.968533pt;}
.h18{height:34.973333pt;}
.h19{height:34.973867pt;}
.h11{height:34.978133pt;}
.h17{height:34.987733pt;}
.h9{height:34.992533pt;}
.h10{height:35.712000pt;}
.hb{height:35.920000pt;}
.h20{height:37.152000pt;}
.h21{height:37.776000pt;}
.h1f{height:39.035200pt;}
.he{height:42.110400pt;}
.h1e{height:42.148800pt;}
.h1a{height:42.206400pt;}
.h7{height:42.563200pt;}
.h5{height:45.525333pt;}
.h3{height:47.520000pt;}
.hd{height:47.849600pt;}
.h4{height:75.552000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:68.031467pt;}
.x2{left:71.811067pt;}
.x31{left:77.874800pt;}
.x4e{left:83.204133pt;}
.x13{left:84.631067pt;}
.x1d{left:86.929067pt;}
.x5{left:90.708533pt;}
.x14{left:92.282400pt;}
.x40{left:104.379333pt;}
.xa{left:108.096267pt;}
.x3b{left:114.795467pt;}
.x6{left:116.490267pt;}
.x2e{left:128.198667pt;}
.x41{left:152.533333pt;}
.x4d{left:153.734933pt;}
.x49{left:168.880133pt;}
.x4a{left:176.531333pt;}
.x28{left:184.891067pt;}
.x29{left:192.542267pt;}
.x47{left:194.918267pt;}
.x19{left:198.477067pt;}
.x10{left:199.980000pt;}
.x48{left:202.569600pt;}
.x11{left:203.805600pt;}
.x1a{left:206.128267pt;}
.x44{left:218.440267pt;}
.x45{left:226.091600pt;}
.xb{left:245.070400pt;}
.x2c{left:251.258667pt;}
.x2d{left:258.909867pt;}
.x38{left:263.665867pt;}
.x3a{left:266.964267pt;}
.x1e{left:270.086667pt;}
.x39{left:271.317200pt;}
.x1f{left:277.738000pt;}
.x20{left:281.032133pt;}
.x3c{left:282.707467pt;}
.x21{left:283.982400pt;}
.x7{left:290.202533pt;}
.x9{left:293.448000pt;}
.x26{left:319.117867pt;}
.x27{left:326.769067pt;}
.x3f{left:333.909333pt;}
.x4b{left:335.305467pt;}
.x22{left:341.961467pt;}
.x23{left:349.612800pt;}
.x1b{left:356.958267pt;}
.x1c{left:364.609600pt;}
.xe{left:369.575333pt;}
.xf{left:373.400933pt;}
.x24{left:384.764267pt;}
.x15{left:389.723200pt;}
.x25{left:392.415600pt;}
.x34{left:394.262133pt;}
.x16{left:397.374533pt;}
.x35{left:401.913333pt;}
.x2f{left:430.570933pt;}
.x30{left:438.222133pt;}
.x8{left:451.039733pt;}
.x3{left:454.522267pt;}
.x4{left:459.047200pt;}
.x4c{left:464.398933pt;}
.x36{left:466.174267pt;}
.x17{left:469.480000pt;}
.x37{left:473.825600pt;}
.x18{left:477.131333pt;}
.x33{left:489.512933pt;}
.x46{left:514.172400pt;}
.x2a{left:529.893200pt;}
.xc{left:532.157733pt;}
.x4f{left:534.900000pt;}
.x2b{left:537.544533pt;}
.x42{left:538.883200pt;}
.x43{left:546.534533pt;}
.x32{left:554.898933pt;}
.x3d{left:557.639200pt;}
.x3e{left:560.689333pt;}
.x12{left:563.057333pt;}
.xd{left:570.708667pt;}
}




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