
    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_888e8f57e93f89a81631fce6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.040000;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_1432ee4e3af72a4627107a45.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.012000;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_ac639301d2e2cd9c32eee026.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.135000;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_72b496c57615925550a84459.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_52e5c77c0c085fdd6a0371a6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.734000;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_f899c0c0adcec75c0f32352b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.948000;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_cf93db18ca5059798cc77a62.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_4c41e8f432de6c79da3be7f1.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_77b8026cbb7dd351208cd2d0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.955000;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_85d849f5dd69283f3a17ae56.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m9{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m2{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.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);}
.me{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);}
.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);}
.m6{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.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);}
.m4{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);}
.md{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);}
.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);}
.ma{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.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m5{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;}
.v2{vertical-align:15.141600px;}
.v1{vertical-align:18.752400px;}
.lse{letter-spacing:-4.117200px;}
.ls11{letter-spacing:-1.015200px;}
.ls8{letter-spacing:-0.432000px;}
.ls9{letter-spacing:-0.282000px;}
.ls10{letter-spacing:-0.259200px;}
.lsa{letter-spacing:-0.164406px;}
.ls6{letter-spacing:-0.129600px;}
.ls4{letter-spacing:-0.112800px;}
.ls5{letter-spacing:-0.065762px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.011976px;}
.ls7{letter-spacing:1.185519px;}
.ls2{letter-spacing:1.297200px;}
.lsd{letter-spacing:1.512000px;}
.lsb{letter-spacing:5.184000px;}
.lsc{letter-spacing:5.400000px;}
.lsf{letter-spacing:8.164800px;}
.ls12{letter-spacing:8.553600px;}
.ls3{letter-spacing:31.479796px;}
.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;}
}
.ws16{word-spacing:-16.694400px;}
.ws44{word-spacing:-16.581600px;}
.wsa1{word-spacing:-15.679200px;}
.ws8d{word-spacing:-12.577200px;}
.wsbe{word-spacing:-11.400000px;}
.wse7{word-spacing:-10.800000px;}
.ws2{word-spacing:-9.000000px;}
.ws57{word-spacing:-8.640000px;}
.ws96{word-spacing:-8.380800px;}
.ws58{word-spacing:-8.208000px;}
.ws84{word-spacing:-5.865600px;}
.wsbf{word-spacing:-5.247000px;}
.ws82{word-spacing:-4.004400px;}
.ws83{word-spacing:-3.327600px;}
.ws74{word-spacing:-3.102000px;}
.ws81{word-spacing:-3.045600px;}
.wsc{word-spacing:-2.989200px;}
.ws14{word-spacing:-2.932800px;}
.ws99{word-spacing:-2.876400px;}
.wsab{word-spacing:-2.763600px;}
.ws19{word-spacing:-2.707200px;}
.wsa6{word-spacing:-2.650800px;}
.ws63{word-spacing:-2.594400px;}
.ws6d{word-spacing:-2.538000px;}
.ws4{word-spacing:-2.481600px;}
.ws18{word-spacing:-2.312400px;}
.ws5b{word-spacing:-2.256000px;}
.ws71{word-spacing:-2.199600px;}
.ws80{word-spacing:-2.143200px;}
.wsa8{word-spacing:-1.974000px;}
.ws1f{word-spacing:-1.861200px;}
.ws36{word-spacing:-1.804800px;}
.ws7a{word-spacing:-1.692000px;}
.wse1{word-spacing:-1.665000px;}
.wsb7{word-spacing:-1.598400px;}
.ws2a{word-spacing:-1.579200px;}
.ws33{word-spacing:-1.522800px;}
.wsf6{word-spacing:-1.485000px;}
.ws47{word-spacing:-1.466400px;}
.wsa5{word-spacing:-1.353600px;}
.ws55{word-spacing:-1.339200px;}
.ws5{word-spacing:-1.297200px;}
.wscb{word-spacing:-1.242000px;}
.wsc0{word-spacing:-1.240800px;}
.ws94{word-spacing:-1.071600px;}
.ws9f{word-spacing:-1.036800px;}
.wsac{word-spacing:-0.993600px;}
.wsc9{word-spacing:-0.972000px;}
.ws4d{word-spacing:-0.907200px;}
.ws5e{word-spacing:-0.902400px;}
.ws7b{word-spacing:-0.846000px;}
.wsaf{word-spacing:-0.820800px;}
.wsc7{word-spacing:-0.702000px;}
.ws45{word-spacing:-0.676800px;}
.ws11{word-spacing:-0.620400px;}
.ws49{word-spacing:-0.564000px;}
.ws101{word-spacing:-0.540000px;}
.ws75{word-spacing:-0.507600px;}
.wsf3{word-spacing:-0.495000px;}
.wsc5{word-spacing:-0.486000px;}
.ws42{word-spacing:-0.475200px;}
.ws73{word-spacing:-0.451200px;}
.wsbc{word-spacing:-0.432000px;}
.ws12{word-spacing:-0.394800px;}
.wsf7{word-spacing:-0.360000px;}
.ws98{word-spacing:-0.338400px;}
.ws69{word-spacing:-0.302400px;}
.wsb5{word-spacing:-0.282000px;}
.ws64{word-spacing:-0.225600px;}
.ws88{word-spacing:-0.216000px;}
.wsfa{word-spacing:-0.180000px;}
.ws21{word-spacing:-0.172800px;}
.wse{word-spacing:-0.169200px;}
.ws6a{word-spacing:-0.129600px;}
.ws68{word-spacing:-0.056400px;}
.ws1{word-spacing:-0.043200px;}
.ws0{word-spacing:-0.032881px;}
.ws3{word-spacing:0.000000px;}
.ws43{word-spacing:0.032881px;}
.wsca{word-spacing:0.054000px;}
.ws6f{word-spacing:0.056400px;}
.ws1d{word-spacing:0.112800px;}
.ws6b{word-spacing:0.131525px;}
.ws7c{word-spacing:0.164406px;}
.ws48{word-spacing:0.169200px;}
.ws4f{word-spacing:0.172800px;}
.wsc2{word-spacing:0.216000px;}
.wsdb{word-spacing:0.270000px;}
.ws6e{word-spacing:0.282000px;}
.wsb1{word-spacing:0.345600px;}
.wsdd{word-spacing:0.360000px;}
.ws25{word-spacing:0.388800px;}
.ws6{word-spacing:0.394800px;}
.ws32{word-spacing:0.451200px;}
.ws23{word-spacing:0.475200px;}
.wsba{word-spacing:0.507600px;}
.wsae{word-spacing:0.518400px;}
.ws46{word-spacing:0.564000px;}
.ws2d{word-spacing:0.620400px;}
.ws65{word-spacing:0.676800px;}
.wsed{word-spacing:0.720000px;}
.ws24{word-spacing:0.777600px;}
.ws59{word-spacing:0.789600px;}
.wsf{word-spacing:0.902400px;}
.ws3d{word-spacing:0.958800px;}
.ws62{word-spacing:1.015200px;}
.ws13{word-spacing:1.071600px;}
.ws79{word-spacing:1.184400px;}
.ws92{word-spacing:1.240800px;}
.ws7{word-spacing:1.297200px;}
.ws2c{word-spacing:1.353600px;}
.ws100{word-spacing:1.395000px;}
.ws28{word-spacing:1.410000px;}
.ws29{word-spacing:1.466400px;}
.wsb0{word-spacing:1.468800px;}
.ws22{word-spacing:1.512000px;}
.ws77{word-spacing:1.522800px;}
.wsbb{word-spacing:1.555200px;}
.ws2e{word-spacing:1.579200px;}
.wsa{word-spacing:1.635600px;}
.ws7d{word-spacing:1.641600px;}
.ws70{word-spacing:1.692000px;}
.ws72{word-spacing:1.748400px;}
.wse6{word-spacing:1.800000px;}
.wsd{word-spacing:1.804800px;}
.ws4c{word-spacing:1.814400px;}
.ws41{word-spacing:1.857600px;}
.ws7f{word-spacing:1.861200px;}
.wsde{word-spacing:1.890000px;}
.ws4e{word-spacing:1.900800px;}
.ws5c{word-spacing:1.917600px;}
.ws40{word-spacing:1.944000px;}
.wsb2{word-spacing:1.974000px;}
.ws67{word-spacing:2.030400px;}
.wsa4{word-spacing:2.086800px;}
.ws31{word-spacing:2.143200px;}
.ws9{word-spacing:2.199600px;}
.ws85{word-spacing:2.256000px;}
.wsb6{word-spacing:2.312400px;}
.wsa2{word-spacing:2.368800px;}
.wsd6{word-spacing:2.385000px;}
.wsc3{word-spacing:2.430000px;}
.wsce{word-spacing:2.475000px;}
.ws50{word-spacing:2.505600px;}
.wsf5{word-spacing:2.565000px;}
.ws5a{word-spacing:2.594400px;}
.ws5f{word-spacing:2.650800px;}
.ws61{word-spacing:2.707200px;}
.wscd{word-spacing:2.790000px;}
.ws8f{word-spacing:2.820000px;}
.ws9b{word-spacing:2.876400px;}
.wsfc{word-spacing:2.925000px;}
.ws8e{word-spacing:2.932800px;}
.wse9{word-spacing:2.970000px;}
.ws1b{word-spacing:2.989200px;}
.ws86{word-spacing:3.102000px;}
.ws2f{word-spacing:3.158400px;}
.wsc4{word-spacing:3.240000px;}
.wsa9{word-spacing:3.271200px;}
.wsf2{word-spacing:3.285000px;}
.wsf9{word-spacing:3.375000px;}
.ws5d{word-spacing:3.384000px;}
.ws20{word-spacing:3.412800px;}
.ws1e{word-spacing:3.440400px;}
.ws34{word-spacing:3.496800px;}
.ws54{word-spacing:3.499200px;}
.wsec{word-spacing:3.510000px;}
.ws26{word-spacing:3.542400px;}
.ws9a{word-spacing:3.553200px;}
.wsc8{word-spacing:3.564000px;}
.wse2{word-spacing:3.600000px;}
.ws97{word-spacing:3.609600px;}
.ws4b{word-spacing:3.628800px;}
.ws27{word-spacing:3.666000px;}
.wsa3{word-spacing:3.722400px;}
.wse0{word-spacing:3.735000px;}
.wsa0{word-spacing:3.758400px;}
.wsbd{word-spacing:3.801600px;}
.wsfd{word-spacing:3.825000px;}
.ws8{word-spacing:3.835200px;}
.wsad{word-spacing:3.844800px;}
.wsd2{word-spacing:3.915000px;}
.wscc{word-spacing:3.942000px;}
.wsaa{word-spacing:3.948000px;}
.ws3e{word-spacing:4.004400px;}
.ws3b{word-spacing:4.060800px;}
.wseb{word-spacing:4.095000px;}
.ws91{word-spacing:4.117200px;}
.wsd0{word-spacing:4.230000px;}
.wsb{word-spacing:4.342800px;}
.ws2b{word-spacing:4.455600px;}
.wsc6{word-spacing:4.644000px;}
.ws6c{word-spacing:4.681200px;}
.wsd4{word-spacing:4.725000px;}
.ws1c{word-spacing:4.737600px;}
.ws35{word-spacing:4.906800px;}
.wsda{word-spacing:4.950000px;}
.ws87{word-spacing:5.019600px;}
.ws102{word-spacing:5.076000px;}
.wsf4{word-spacing:5.085000px;}
.wsdc{word-spacing:5.130000px;}
.ws78{word-spacing:5.132400px;}
.ws8a{word-spacing:5.184000px;}
.ws4a{word-spacing:5.188800px;}
.ws104{word-spacing:5.292000px;}
.wsa7{word-spacing:5.301600px;}
.ws8b{word-spacing:5.400000px;}
.wsf8{word-spacing:5.535000px;}
.wse5{word-spacing:5.580000px;}
.ws10{word-spacing:5.583600px;}
.wsd9{word-spacing:5.625000px;}
.ws1a{word-spacing:5.696400px;}
.wsb9{word-spacing:5.752800px;}
.ws90{word-spacing:5.809200px;}
.wsdf{word-spacing:6.030000px;}
.ws15{word-spacing:6.091200px;}
.ws52{word-spacing:6.220800px;}
.wsc1{word-spacing:6.372000px;}
.wsb3{word-spacing:6.429600px;}
.wsff{word-spacing:6.480000px;}
.ws76{word-spacing:6.486000px;}
.ws93{word-spacing:6.598800px;}
.ws89{word-spacing:6.652800px;}
.ws7e{word-spacing:6.711600px;}
.ws95{word-spacing:6.824400px;}
.ws3a{word-spacing:6.937200px;}
.ws30{word-spacing:6.993600px;}
.wsea{word-spacing:7.065000px;}
.wsb4{word-spacing:7.332000px;}
.ws8c{word-spacing:7.387200px;}
.ws39{word-spacing:7.670400px;}
.wsd3{word-spacing:7.740000px;}
.ws60{word-spacing:7.896000px;}
.ws37{word-spacing:7.952400px;}
.ws9c{word-spacing:8.164800px;}
.ws3f{word-spacing:8.178000px;}
.ws56{word-spacing:8.208000px;}
.wsee{word-spacing:8.415000px;}
.ws9d{word-spacing:8.424000px;}
.wsb8{word-spacing:8.553600px;}
.ws3c{word-spacing:8.629200px;}
.ws53{word-spacing:9.115200px;}
.ws17{word-spacing:9.362400px;}
.ws66{word-spacing:9.475200px;}
.ws38{word-spacing:9.531600px;}
.wsfe{word-spacing:9.630000px;}
.ws9e{word-spacing:9.979200px;}
.ws103{word-spacing:10.260000px;}
.wse4{word-spacing:10.980000px;}
.wsfb{word-spacing:11.160000px;}
.wsd1{word-spacing:11.880000px;}
.wsd8{word-spacing:12.465000px;}
.wse3{word-spacing:12.825000px;}
.wsf1{word-spacing:13.005000px;}
.wsef{word-spacing:13.725000px;}
.wse8{word-spacing:14.760000px;}
.wsd7{word-spacing:18.495000px;}
.wscf{word-spacing:20.205000px;}
.wsf0{word-spacing:28.305000px;}
.ws51{word-spacing:31.622400px;}
.wsd5{word-spacing:34.650000px;}
._a{margin-left:-26.113200px;}
._10{margin-left:-19.068840px;}
._e{margin-left:-13.305724px;}
._5{margin-left:-7.383600px;}
._8{margin-left:-6.204000px;}
._6{margin-left:-5.183160px;}
._4{margin-left:-4.117200px;}
._2{margin-left:-2.484000px;}
._3{margin-left:-1.015200px;}
._1{width:1.794000px;}
._9{width:2.935200px;}
._12{width:4.514400px;}
._11{width:6.220800px;}
._c{width:25.284784px;}
._f{width:29.849951px;}
._b{width:31.491551px;}
._13{width:32.497371px;}
._d{width:35.424103px;}
._7{width:54.820163px;}
._0{width:2262.195000px;}
.fc2{color:rgb(0,94,163);}
.fc1{color:rgb(135,20,110);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:26.235000px;}
.fs5{font-size:32.881200px;}
.fs6{font-size:43.200000px;}
.fs0{font-size:45.000000px;}
.fs8{font-size:54.000000px;}
.fs4{font-size:56.400000px;}
.fs7{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs3{font-size:84.000000px;}
.fs2{font-size:138.000000px;}
.y0{bottom:0.000000px;}
.y104{bottom:103.743600px;}
.y64{bottom:103.953600px;}
.y72{bottom:103.960800px;}
.y10f{bottom:103.960950px;}
.yb6{bottom:103.961700px;}
.y101{bottom:103.965300px;}
.y37{bottom:104.169900px;}
.y1f{bottom:104.432100px;}
.ybe{bottom:104.537250px;}
.yd7{bottom:106.299300px;}
.y143{bottom:116.367750px;}
.y10d{bottom:116.550000px;}
.y63{bottom:116.557200px;}
.yb3{bottom:116.560800px;}
.y10e{bottom:116.560950px;}
.y71{bottom:116.565300px;}
.y36{bottom:116.773500px;}
.ybd{bottom:118.782450px;}
.yfc{bottom:123.938100px;}
.yb5{bottom:123.941700px;}
.y95{bottom:123.945300px;}
.y12f{bottom:124.908150px;}
.y10c{bottom:129.153600px;}
.y62{bottom:129.160800px;}
.y35{bottom:129.363450px;}
.y142{bottom:130.621500px;}
.ybc{bottom:133.027650px;}
.yfb{bottom:136.541700px;}
.y70{bottom:136.545300px;}
.y1e{bottom:138.100950px;}
.y12e{bottom:139.161900px;}
.y10b{bottom:141.757200px;}
.y94{bottom:143.929650px;}
.yd6{bottom:144.477450px;}
.y141{bottom:149.127750px;}
.y61{bottom:149.145300px;}
.y34{bottom:149.343450px;}
.y12d{bottom:153.415650px;}
.y10a{bottom:154.360800px;}
.yb2{bottom:156.529650px;}
.y6f{bottom:156.534000px;}
.y1d{bottom:158.085300px;}
.ybb{bottom:161.527650px;}
.y33{bottom:161.947050px;}
.y140{bottom:163.381500px;}
.y93{bottom:163.914000px;}
.yd5{bottom:164.725050px;}
.y12c{bottom:167.669400px;}
.y60{bottom:169.126050px;}
.yfa{bottom:169.129650px;}
.y32{bottom:174.550650px;}
.yba{bottom:175.777650px;}
.y6d{bottom:176.492400px;}
.y6e{bottom:176.514000px;}
.y1c{bottom:178.069800px;}
.y5f{bottom:181.729650px;}
.y13f{bottom:181.887750px;}
.y12b{bottom:181.923150px;}
.y92{bottom:183.898500px;}
.yd4{bottom:184.972650px;}
.y31{bottom:187.154250px;}
.y6c{bottom:189.096000px;}
.yf9{bottom:189.114000px;}
.y13e{bottom:196.141500px;}
.y12a{bottom:196.176900px;}
.y30{bottom:199.757850px;}
.y6b{bottom:201.699600px;}
.y5e{bottom:201.714150px;}
.y91{bottom:203.875650px;}
.ycf{bottom:203.882850px;}
.y109{bottom:205.210650px;}
.y100{bottom:205.217850px;}
.yd3{bottom:205.220250px;}
.yf8{bottom:209.098500px;}
.y13d{bottom:210.395250px;}
.y129{bottom:210.430650px;}
.y6a{bottom:214.303200px;}
.y90{bottom:216.479250px;}
.y2f{bottom:219.738600px;}
.y5d{bottom:221.698500px;}
.y13c{bottom:224.649000px;}
.yb1{bottom:225.460650px;}
.yff{bottom:225.465450px;}
.yd2{bottom:225.467850px;}
.y1b{bottom:225.470100px;}
.y108{bottom:225.470250px;}
.yb0{bottom:225.475050px;}
.y69{bottom:226.906800px;}
.y128{bottom:228.936900px;}
.yf7{bottom:229.076400px;}
.y8f{bottom:229.082850px;}
.y8e{bottom:229.087200px;}
.y2e{bottom:232.342200px;}
.y68{bottom:239.510400px;}
.y5c{bottom:241.682850px;}
.y13b{bottom:243.155250px;}
.y127{bottom:243.190650px;}
.y179{bottom:245.710650px;}
.yfe{bottom:245.713050px;}
.yce{bottom:245.715450px;}
.y1a{bottom:245.717700px;}
.y107{bottom:245.717850px;}
.yaf{bottom:245.722650px;}
.yf6{bottom:249.056400px;}
.y8c{bottom:249.063750px;}
.y8d{bottom:249.067200px;}
.y67{bottom:252.114000px;}
.y13a{bottom:257.409000px;}
.y126{bottom:261.657750px;}
.yf5{bottom:261.660000px;}
.y5b{bottom:261.667350px;}
.y178{bottom:265.960650px;}
.ycd{bottom:265.963050px;}
.y19{bottom:265.965300px;}
.y106{bottom:265.965450px;}
.yae{bottom:265.970250px;}
.y139{bottom:271.662750px;}
.yf4{bottom:274.263600px;}
.y125{bottom:275.911500px;}
.y5a{bottom:281.651700px;}
.y66{bottom:286.210650px;}
.y18{bottom:286.212900px;}
.y105{bottom:286.213050px;}
.ycc{bottom:286.215450px;}
.yad{bottom:286.217850px;}
.y2d{bottom:286.227450px;}
.yf3{bottom:286.868100px;}
.y138{bottom:290.169000px;}
.y124{bottom:294.417750px;}
.y137{bottom:304.422750px;}
.y65{bottom:306.460650px;}
.y8b{bottom:306.463050px;}
.y17{bottom:306.465300px;}
.yac{bottom:306.465450px;}
.y2c{bottom:306.475050px;}
.yf2{bottom:306.848100px;}
.y123{bottom:308.671500px;}
.y136{bottom:318.676500px;}
.yf1{bottom:319.451700px;}
.y122{bottom:322.925250px;}
.ycb{bottom:326.710650px;}
.y16{bottom:326.712900px;}
.yab{bottom:326.713050px;}
.y2b{bottom:326.722650px;}
.y59{bottom:326.729850px;}
.y135{bottom:337.182750px;}
.y121{bottom:341.431500px;}
.y15{bottom:346.960500px;}
.yfd{bottom:346.960650px;}
.y14{bottom:346.965300px;}
.yaa{bottom:346.965450px;}
.y2a{bottom:346.970250px;}
.y58{bottom:346.977450px;}
.y134{bottom:351.436500px;}
.y120{bottom:355.685250px;}
.y111{bottom:359.207100px;}
.y177{bottom:367.210650px;}
.y13{bottom:367.212900px;}
.ya9{bottom:367.213050px;}
.y29{bottom:367.217850px;}
.y57{bottom:367.225050px;}
.yf0{bottom:367.246650px;}
.y11f{bottom:369.939000px;}
.y133{bottom:369.942750px;}
.y110{bottom:373.452300px;}
.y132{bottom:384.196500px;}
.y12{bottom:387.460500px;}
.y176{bottom:387.460650px;}
.y28{bottom:387.465450px;}
.y56{bottom:387.472650px;}
.yef{bottom:387.494250px;}
.y11e{bottom:388.445250px;}
.ydd{bottom:401.710650px;}
.y131{bottom:402.659400px;}
.y11d{bottom:402.699000px;}
.y175{bottom:407.710650px;}
.y27{bottom:407.713050px;}
.y55{bottom:407.720250px;}
.yee{bottom:407.741850px;}
.ydc{bottom:415.960650px;}
.y130{bottom:416.913150px;}
.y11c{bottom:416.952750px;}
.y11{bottom:427.960500px;}
.ya8{bottom:427.960650px;}
.y26{bottom:427.965450px;}
.y54{bottom:427.967850px;}
.yca{bottom:427.970250px;}
.y8a{bottom:427.977450px;}
.yed{bottom:427.989450px;}
.yb4{bottom:448.210650px;}
.y25{bottom:448.213050px;}
.y53{bottom:448.215450px;}
.yc9{bottom:448.217850px;}
.y89{bottom:448.225050px;}
.yec{bottom:448.237050px;}
.ya7{bottom:468.460650px;}
.y52{bottom:468.463050px;}
.yc8{bottom:468.465450px;}
.y24{bottom:468.467850px;}
.y88{bottom:468.472650px;}
.yeb{bottom:468.484650px;}
.y51{bottom:488.710650px;}
.yc7{bottom:488.713050px;}
.y23{bottom:488.715450px;}
.y87{bottom:488.720250px;}
.yea{bottom:488.732250px;}
.y174{bottom:508.962150px;}
.y22{bottom:508.963050px;}
.y10{bottom:508.967700px;}
.y86{bottom:508.967850px;}
.yc6{bottom:508.970250px;}
.y50{bottom:508.975050px;}
.ye9{bottom:508.979850px;}
.y21{bottom:529.210650px;}
.y173{bottom:529.211400px;}
.yf{bottom:529.215300px;}
.y85{bottom:529.215450px;}
.yc5{bottom:529.217850px;}
.y4f{bottom:529.222650px;}
.ye8{bottom:529.227450px;}
.y11b{bottom:549.460650px;}
.ye{bottom:549.462900px;}
.y84{bottom:549.463050px;}
.yc4{bottom:549.465450px;}
.ya6{bottom:549.467850px;}
.y4e{bottom:549.470250px;}
.ye7{bottom:549.475050px;}
.y103{bottom:549.917250px;}
.y102{bottom:564.162450px;}
.y11a{bottom:569.710650px;}
.yc3{bottom:569.713050px;}
.yd{bottom:569.715300px;}
.ya5{bottom:569.715450px;}
.y4d{bottom:569.717850px;}
.ye6{bottom:569.722650px;}
.y77{bottom:584.902650px;}
.yc2{bottom:589.960650px;}
.yc{bottom:589.962900px;}
.ya4{bottom:589.963050px;}
.y4c{bottom:589.965450px;}
.ye5{bottom:589.970250px;}
.y38{bottom:590.222100px;}
.yb7{bottom:591.205350px;}
.y76{bottom:599.147850px;}
.ya3{bottom:610.210650px;}
.y4b{bottom:610.213050px;}
.yc1{bottom:610.215450px;}
.yb{bottom:610.217700px;}
.ye4{bottom:610.217850px;}
.y75{bottom:613.393050px;}
.y15b{bottom:622.401000px;}
.y172{bottom:626.593950px;}
.y74{bottom:627.638250px;}
.y119{bottom:630.460650px;}
.yc0{bottom:630.463050px;}
.ya{bottom:630.465300px;}
.ye3{bottom:630.465450px;}
.ya2{bottom:630.467850px;}
.y4a{bottom:630.470250px;}
.y83{bottom:630.477450px;}
.y159{bottom:636.579150px;}
.y15a{bottom:636.654750px;}
.y171{bottom:640.847700px;}
.y73{bottom:641.883450px;}
.ybf{bottom:650.710650px;}
.y9{bottom:650.712900px;}
.ye2{bottom:650.713050px;}
.ya1{bottom:650.715450px;}
.y49{bottom:650.717850px;}
.y82{bottom:650.725050px;}
.y158{bottom:650.832900px;}
.y170{bottom:655.101450px;}
.y157{bottom:669.339150px;}
.y8{bottom:670.960500px;}
.y118{bottom:670.960650px;}
.ya0{bottom:670.963050px;}
.y7{bottom:670.965300px;}
.y48{bottom:670.965450px;}
.y81{bottom:670.972650px;}
.yb9{bottom:671.114700px;}
.y16f{bottom:673.607700px;}
.y156{bottom:683.592900px;}
.yb8{bottom:685.359900px;}
.y16e{bottom:687.861450px;}
.y9f{bottom:691.210650px;}
.y6{bottom:691.212900px;}
.y47{bottom:691.213050px;}
.y80{bottom:691.220250px;}
.ydb{bottom:695.988300px;}
.y155{bottom:702.099150px;}
.y16d{bottom:702.115200px;}
.yda{bottom:710.233500px;}
.y5{bottom:711.460500px;}
.y9e{bottom:711.460650px;}
.yd1{bottom:711.465450px;}
.y46{bottom:711.467850px;}
.ye1{bottom:711.470250px;}
.y154{bottom:716.352900px;}
.y16c{bottom:716.368950px;}
.yd9{bottom:724.478700px;}
.yd0{bottom:725.710650px;}
.y16b{bottom:730.622700px;}
.y9d{bottom:731.710650px;}
.y45{bottom:731.715450px;}
.ye0{bottom:731.717850px;}
.y153{bottom:734.859150px;}
.yd8{bottom:738.723900px;}
.y16a{bottom:744.876450px;}
.y152{bottom:749.112900px;}
.y9c{bottom:751.960650px;}
.y44{bottom:751.963050px;}
.ydf{bottom:751.965450px;}
.y151{bottom:763.366650px;}
.y169{bottom:763.382700px;}
.y117{bottom:772.210650px;}
.yde{bottom:772.213050px;}
.y43{bottom:772.217850px;}
.y7f{bottom:772.222650px;}
.y9b{bottom:772.229850px;}
.y168{bottom:777.636450px;}
.y150{bottom:781.872900px;}
.y116{bottom:792.460650px;}
.y42{bottom:792.465450px;}
.y7e{bottom:792.470250px;}
.y9a{bottom:792.477450px;}
.y14f{bottom:796.126650px;}
.y167{bottom:796.142700px;}
.y166{bottom:810.396450px;}
.y115{bottom:812.711400px;}
.y41{bottom:812.713050px;}
.y7d{bottom:812.717850px;}
.y99{bottom:812.725050px;}
.y14e{bottom:814.632900px;}
.y165{bottom:824.650200px;}
.y14d{bottom:828.886650px;}
.y4{bottom:832.960500px;}
.y114{bottom:832.960650px;}
.y40{bottom:832.963050px;}
.y7c{bottom:832.965450px;}
.y98{bottom:832.972650px;}
.y14c{bottom:843.140400px;}
.y164{bottom:843.156450px;}
.y3f{bottom:853.213050px;}
.y97{bottom:853.220250px;}
.y163{bottom:857.410200px;}
.y14b{bottom:861.646650px;}
.y3e{bottom:873.465450px;}
.y7b{bottom:873.467850px;}
.y14a{bottom:875.900400px;}
.y162{bottom:875.916450px;}
.y3{bottom:893.710500px;}
.y3d{bottom:893.713050px;}
.y7a{bottom:893.715450px;}
.y113{bottom:893.720250px;}
.y149{bottom:894.406650px;}
.y161{bottom:894.418350px;}
.y148{bottom:908.660400px;}
.y160{bottom:912.898500px;}
.y3c{bottom:913.960650px;}
.y79{bottom:913.963050px;}
.y112{bottom:913.967850px;}
.y15f{bottom:927.152250px;}
.y147{bottom:927.166650px;}
.y78{bottom:934.210650px;}
.y3b{bottom:934.215450px;}
.y146{bottom:941.420400px;}
.y15e{bottom:945.658500px;}
.y96{bottom:954.460650px;}
.y3a{bottom:954.463050px;}
.y15d{bottom:959.912250px;}
.y145{bottom:959.922000px;}
.y15c{bottom:974.166000px;}
.y144{bottom:974.175750px;}
.y2{bottom:974.710500px;}
.y39{bottom:974.710650px;}
.y1{bottom:1037.951850px;}
.y20{bottom:1037.952000px;}
.he{height:31.276800px;}
.hd{height:34.844400px;}
.hc{height:34.845000px;}
.h10{height:34.858800px;}
.h8{height:34.862400px;}
.h11{height:34.888200px;}
.ha{height:34.902600px;}
.h9{height:35.415000px;}
.h2{height:36.315000px;}
.hb{height:38.923200px;}
.h14{height:40.545000px;}
.hf{height:40.608000px;}
.h15{height:40.701600px;}
.h16{height:40.718400px;}
.h17{height:42.498000px;}
.h12{height:44.859000px;}
.h6{height:47.883600px;}
.h13{height:48.654000px;}
.h3{height:54.060000px;}
.h7{height:61.068000px;}
.h5{height:75.684000px;}
.h4{height:117.162000px;}
.h1{height:1105.500000px;}
.h0{height:1105.512000px;}
.w1{width:744.000000px;}
.w0{width:744.094500px;}
.x0{left:0.000000px;}
.x1{left:72.283500px;}
.x10{left:83.713950px;}
.x27{left:85.041000px;}
.x5{left:89.293050px;}
.x7{left:93.543300px;}
.x2{left:99.662550px;}
.x29{left:103.563300px;}
.x2b{left:117.516300px;}
.x6{left:120.297600px;}
.x2a{left:123.307050px;}
.x1c{left:149.474400px;}
.x2d{left:210.113850px;}
.xc{left:214.804500px;}
.xd{left:270.203400px;}
.x1e{left:272.415300px;}
.x26{left:273.676950px;}
.x15{left:274.834200px;}
.x25{left:350.489250px;}
.x1f{left:351.959400px;}
.x1d{left:380.480250px;}
.xe{left:385.303950px;}
.x28{left:393.318000px;}
.x3{left:410.451150px;}
.xf{left:425.196900px;}
.xa{left:430.266750px;}
.x23{left:432.177150px;}
.x1a{left:449.688150px;}
.x4{left:451.885800px;}
.x12{left:473.037000px;}
.x20{left:476.979000px;}
.x1b{left:489.735750px;}
.x2c{left:517.047000px;}
.x16{left:526.739250px;}
.x8{left:534.642450px;}
.x18{left:556.143300px;}
.x17{left:573.875550px;}
.x13{left:582.376350px;}
.x19{left:595.653750px;}
.x9{left:599.178600px;}
.x14{left:622.640700px;}
.xb{left:631.880550px;}
.x11{left:634.049100px;}
.x21{left:638.813700px;}
.x22{left:653.274900px;}
.x24{left:671.811000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.459200pt;}
.v1{vertical-align:16.668800pt;}
.lse{letter-spacing:-3.659733pt;}
.ls11{letter-spacing:-0.902400pt;}
.ls8{letter-spacing:-0.384000pt;}
.ls9{letter-spacing:-0.250667pt;}
.ls10{letter-spacing:-0.230400pt;}
.lsa{letter-spacing:-0.146139pt;}
.ls6{letter-spacing:-0.115200pt;}
.ls4{letter-spacing:-0.100267pt;}
.ls5{letter-spacing:-0.058455pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.010645pt;}
.ls7{letter-spacing:1.053795pt;}
.ls2{letter-spacing:1.153067pt;}
.lsd{letter-spacing:1.344000pt;}
.lsb{letter-spacing:4.608000pt;}
.lsc{letter-spacing:4.800000pt;}
.lsf{letter-spacing:7.257600pt;}
.ls12{letter-spacing:7.603200pt;}
.ls3{letter-spacing:27.982041pt;}
.ws16{word-spacing:-14.839467pt;}
.ws44{word-spacing:-14.739200pt;}
.wsa1{word-spacing:-13.937067pt;}
.ws8d{word-spacing:-11.179733pt;}
.wsbe{word-spacing:-10.133333pt;}
.wse7{word-spacing:-9.600000pt;}
.ws2{word-spacing:-8.000000pt;}
.ws57{word-spacing:-7.680000pt;}
.ws96{word-spacing:-7.449600pt;}
.ws58{word-spacing:-7.296000pt;}
.ws84{word-spacing:-5.213867pt;}
.wsbf{word-spacing:-4.664000pt;}
.ws82{word-spacing:-3.559467pt;}
.ws83{word-spacing:-2.957867pt;}
.ws74{word-spacing:-2.757333pt;}
.ws81{word-spacing:-2.707200pt;}
.wsc{word-spacing:-2.657067pt;}
.ws14{word-spacing:-2.606933pt;}
.ws99{word-spacing:-2.556800pt;}
.wsab{word-spacing:-2.456533pt;}
.ws19{word-spacing:-2.406400pt;}
.wsa6{word-spacing:-2.356267pt;}
.ws63{word-spacing:-2.306133pt;}
.ws6d{word-spacing:-2.256000pt;}
.ws4{word-spacing:-2.205867pt;}
.ws18{word-spacing:-2.055467pt;}
.ws5b{word-spacing:-2.005333pt;}
.ws71{word-spacing:-1.955200pt;}
.ws80{word-spacing:-1.905067pt;}
.wsa8{word-spacing:-1.754667pt;}
.ws1f{word-spacing:-1.654400pt;}
.ws36{word-spacing:-1.604267pt;}
.ws7a{word-spacing:-1.504000pt;}
.wse1{word-spacing:-1.480000pt;}
.wsb7{word-spacing:-1.420800pt;}
.ws2a{word-spacing:-1.403733pt;}
.ws33{word-spacing:-1.353600pt;}
.wsf6{word-spacing:-1.320000pt;}
.ws47{word-spacing:-1.303467pt;}
.wsa5{word-spacing:-1.203200pt;}
.ws55{word-spacing:-1.190400pt;}
.ws5{word-spacing:-1.153067pt;}
.wscb{word-spacing:-1.104000pt;}
.wsc0{word-spacing:-1.102933pt;}
.ws94{word-spacing:-0.952533pt;}
.ws9f{word-spacing:-0.921600pt;}
.wsac{word-spacing:-0.883200pt;}
.wsc9{word-spacing:-0.864000pt;}
.ws4d{word-spacing:-0.806400pt;}
.ws5e{word-spacing:-0.802133pt;}
.ws7b{word-spacing:-0.752000pt;}
.wsaf{word-spacing:-0.729600pt;}
.wsc7{word-spacing:-0.624000pt;}
.ws45{word-spacing:-0.601600pt;}
.ws11{word-spacing:-0.551467pt;}
.ws49{word-spacing:-0.501333pt;}
.ws101{word-spacing:-0.480000pt;}
.ws75{word-spacing:-0.451200pt;}
.wsf3{word-spacing:-0.440000pt;}
.wsc5{word-spacing:-0.432000pt;}
.ws42{word-spacing:-0.422400pt;}
.ws73{word-spacing:-0.401067pt;}
.wsbc{word-spacing:-0.384000pt;}
.ws12{word-spacing:-0.350933pt;}
.wsf7{word-spacing:-0.320000pt;}
.ws98{word-spacing:-0.300800pt;}
.ws69{word-spacing:-0.268800pt;}
.wsb5{word-spacing:-0.250667pt;}
.ws64{word-spacing:-0.200533pt;}
.ws88{word-spacing:-0.192000pt;}
.wsfa{word-spacing:-0.160000pt;}
.ws21{word-spacing:-0.153600pt;}
.wse{word-spacing:-0.150400pt;}
.ws6a{word-spacing:-0.115200pt;}
.ws68{word-spacing:-0.050133pt;}
.ws1{word-spacing:-0.038400pt;}
.ws0{word-spacing:-0.029228pt;}
.ws3{word-spacing:0.000000pt;}
.ws43{word-spacing:0.029228pt;}
.wsca{word-spacing:0.048000pt;}
.ws6f{word-spacing:0.050133pt;}
.ws1d{word-spacing:0.100267pt;}
.ws6b{word-spacing:0.116911pt;}
.ws7c{word-spacing:0.146139pt;}
.ws48{word-spacing:0.150400pt;}
.ws4f{word-spacing:0.153600pt;}
.wsc2{word-spacing:0.192000pt;}
.wsdb{word-spacing:0.240000pt;}
.ws6e{word-spacing:0.250667pt;}
.wsb1{word-spacing:0.307200pt;}
.wsdd{word-spacing:0.320000pt;}
.ws25{word-spacing:0.345600pt;}
.ws6{word-spacing:0.350933pt;}
.ws32{word-spacing:0.401067pt;}
.ws23{word-spacing:0.422400pt;}
.wsba{word-spacing:0.451200pt;}
.wsae{word-spacing:0.460800pt;}
.ws46{word-spacing:0.501333pt;}
.ws2d{word-spacing:0.551467pt;}
.ws65{word-spacing:0.601600pt;}
.wsed{word-spacing:0.640000pt;}
.ws24{word-spacing:0.691200pt;}
.ws59{word-spacing:0.701867pt;}
.wsf{word-spacing:0.802133pt;}
.ws3d{word-spacing:0.852267pt;}
.ws62{word-spacing:0.902400pt;}
.ws13{word-spacing:0.952533pt;}
.ws79{word-spacing:1.052800pt;}
.ws92{word-spacing:1.102933pt;}
.ws7{word-spacing:1.153067pt;}
.ws2c{word-spacing:1.203200pt;}
.ws100{word-spacing:1.240000pt;}
.ws28{word-spacing:1.253333pt;}
.ws29{word-spacing:1.303467pt;}
.wsb0{word-spacing:1.305600pt;}
.ws22{word-spacing:1.344000pt;}
.ws77{word-spacing:1.353600pt;}
.wsbb{word-spacing:1.382400pt;}
.ws2e{word-spacing:1.403733pt;}
.wsa{word-spacing:1.453867pt;}
.ws7d{word-spacing:1.459200pt;}
.ws70{word-spacing:1.504000pt;}
.ws72{word-spacing:1.554133pt;}
.wse6{word-spacing:1.600000pt;}
.wsd{word-spacing:1.604267pt;}
.ws4c{word-spacing:1.612800pt;}
.ws41{word-spacing:1.651200pt;}
.ws7f{word-spacing:1.654400pt;}
.wsde{word-spacing:1.680000pt;}
.ws4e{word-spacing:1.689600pt;}
.ws5c{word-spacing:1.704533pt;}
.ws40{word-spacing:1.728000pt;}
.wsb2{word-spacing:1.754667pt;}
.ws67{word-spacing:1.804800pt;}
.wsa4{word-spacing:1.854933pt;}
.ws31{word-spacing:1.905067pt;}
.ws9{word-spacing:1.955200pt;}
.ws85{word-spacing:2.005333pt;}
.wsb6{word-spacing:2.055467pt;}
.wsa2{word-spacing:2.105600pt;}
.wsd6{word-spacing:2.120000pt;}
.wsc3{word-spacing:2.160000pt;}
.wsce{word-spacing:2.200000pt;}
.ws50{word-spacing:2.227200pt;}
.wsf5{word-spacing:2.280000pt;}
.ws5a{word-spacing:2.306133pt;}
.ws5f{word-spacing:2.356267pt;}
.ws61{word-spacing:2.406400pt;}
.wscd{word-spacing:2.480000pt;}
.ws8f{word-spacing:2.506667pt;}
.ws9b{word-spacing:2.556800pt;}
.wsfc{word-spacing:2.600000pt;}
.ws8e{word-spacing:2.606933pt;}
.wse9{word-spacing:2.640000pt;}
.ws1b{word-spacing:2.657067pt;}
.ws86{word-spacing:2.757333pt;}
.ws2f{word-spacing:2.807467pt;}
.wsc4{word-spacing:2.880000pt;}
.wsa9{word-spacing:2.907733pt;}
.wsf2{word-spacing:2.920000pt;}
.wsf9{word-spacing:3.000000pt;}
.ws5d{word-spacing:3.008000pt;}
.ws20{word-spacing:3.033600pt;}
.ws1e{word-spacing:3.058133pt;}
.ws34{word-spacing:3.108267pt;}
.ws54{word-spacing:3.110400pt;}
.wsec{word-spacing:3.120000pt;}
.ws26{word-spacing:3.148800pt;}
.ws9a{word-spacing:3.158400pt;}
.wsc8{word-spacing:3.168000pt;}
.wse2{word-spacing:3.200000pt;}
.ws97{word-spacing:3.208533pt;}
.ws4b{word-spacing:3.225600pt;}
.ws27{word-spacing:3.258667pt;}
.wsa3{word-spacing:3.308800pt;}
.wse0{word-spacing:3.320000pt;}
.wsa0{word-spacing:3.340800pt;}
.wsbd{word-spacing:3.379200pt;}
.wsfd{word-spacing:3.400000pt;}
.ws8{word-spacing:3.409067pt;}
.wsad{word-spacing:3.417600pt;}
.wsd2{word-spacing:3.480000pt;}
.wscc{word-spacing:3.504000pt;}
.wsaa{word-spacing:3.509333pt;}
.ws3e{word-spacing:3.559467pt;}
.ws3b{word-spacing:3.609600pt;}
.wseb{word-spacing:3.640000pt;}
.ws91{word-spacing:3.659733pt;}
.wsd0{word-spacing:3.760000pt;}
.wsb{word-spacing:3.860267pt;}
.ws2b{word-spacing:3.960533pt;}
.wsc6{word-spacing:4.128000pt;}
.ws6c{word-spacing:4.161067pt;}
.wsd4{word-spacing:4.200000pt;}
.ws1c{word-spacing:4.211200pt;}
.ws35{word-spacing:4.361600pt;}
.wsda{word-spacing:4.400000pt;}
.ws87{word-spacing:4.461867pt;}
.ws102{word-spacing:4.512000pt;}
.wsf4{word-spacing:4.520000pt;}
.wsdc{word-spacing:4.560000pt;}
.ws78{word-spacing:4.562133pt;}
.ws8a{word-spacing:4.608000pt;}
.ws4a{word-spacing:4.612267pt;}
.ws104{word-spacing:4.704000pt;}
.wsa7{word-spacing:4.712533pt;}
.ws8b{word-spacing:4.800000pt;}
.wsf8{word-spacing:4.920000pt;}
.wse5{word-spacing:4.960000pt;}
.ws10{word-spacing:4.963200pt;}
.wsd9{word-spacing:5.000000pt;}
.ws1a{word-spacing:5.063467pt;}
.wsb9{word-spacing:5.113600pt;}
.ws90{word-spacing:5.163733pt;}
.wsdf{word-spacing:5.360000pt;}
.ws15{word-spacing:5.414400pt;}
.ws52{word-spacing:5.529600pt;}
.wsc1{word-spacing:5.664000pt;}
.wsb3{word-spacing:5.715200pt;}
.wsff{word-spacing:5.760000pt;}
.ws76{word-spacing:5.765333pt;}
.ws93{word-spacing:5.865600pt;}
.ws89{word-spacing:5.913600pt;}
.ws7e{word-spacing:5.965867pt;}
.ws95{word-spacing:6.066133pt;}
.ws3a{word-spacing:6.166400pt;}
.ws30{word-spacing:6.216533pt;}
.wsea{word-spacing:6.280000pt;}
.wsb4{word-spacing:6.517333pt;}
.ws8c{word-spacing:6.566400pt;}
.ws39{word-spacing:6.818133pt;}
.wsd3{word-spacing:6.880000pt;}
.ws60{word-spacing:7.018667pt;}
.ws37{word-spacing:7.068800pt;}
.ws9c{word-spacing:7.257600pt;}
.ws3f{word-spacing:7.269333pt;}
.ws56{word-spacing:7.296000pt;}
.wsee{word-spacing:7.480000pt;}
.ws9d{word-spacing:7.488000pt;}
.wsb8{word-spacing:7.603200pt;}
.ws3c{word-spacing:7.670400pt;}
.ws53{word-spacing:8.102400pt;}
.ws17{word-spacing:8.322133pt;}
.ws66{word-spacing:8.422400pt;}
.ws38{word-spacing:8.472533pt;}
.wsfe{word-spacing:8.560000pt;}
.ws9e{word-spacing:8.870400pt;}
.ws103{word-spacing:9.120000pt;}
.wse4{word-spacing:9.760000pt;}
.wsfb{word-spacing:9.920000pt;}
.wsd1{word-spacing:10.560000pt;}
.wsd8{word-spacing:11.080000pt;}
.wse3{word-spacing:11.400000pt;}
.wsf1{word-spacing:11.560000pt;}
.wsef{word-spacing:12.200000pt;}
.wse8{word-spacing:13.120000pt;}
.wsd7{word-spacing:16.440000pt;}
.wscf{word-spacing:17.960000pt;}
.wsf0{word-spacing:25.160000pt;}
.ws51{word-spacing:28.108800pt;}
.wsd5{word-spacing:30.800000pt;}
._a{margin-left:-23.211733pt;}
._10{margin-left:-16.950080pt;}
._e{margin-left:-11.827310pt;}
._5{margin-left:-6.563200pt;}
._8{margin-left:-5.514667pt;}
._6{margin-left:-4.607253pt;}
._4{margin-left:-3.659733pt;}
._2{margin-left:-2.208000pt;}
._3{margin-left:-0.902400pt;}
._1{width:1.594667pt;}
._9{width:2.609067pt;}
._12{width:4.012800pt;}
._11{width:5.529600pt;}
._c{width:22.475363pt;}
._f{width:26.533290pt;}
._b{width:27.992490pt;}
._13{width:28.886552pt;}
._d{width:31.488092pt;}
._7{width:48.729034pt;}
._0{width:2010.840000pt;}
.fs9{font-size:23.320000pt;}
.fs5{font-size:29.227733pt;}
.fs6{font-size:38.400000pt;}
.fs0{font-size:40.000000pt;}
.fs8{font-size:48.000000pt;}
.fs4{font-size:50.133333pt;}
.fs7{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs3{font-size:74.666667pt;}
.fs2{font-size:122.666667pt;}
.y0{bottom:0.000000pt;}
.y104{bottom:92.216533pt;}
.y64{bottom:92.403200pt;}
.y72{bottom:92.409600pt;}
.y10f{bottom:92.409733pt;}
.yb6{bottom:92.410400pt;}
.y101{bottom:92.413600pt;}
.y37{bottom:92.595467pt;}
.y1f{bottom:92.828533pt;}
.ybe{bottom:92.922000pt;}
.yd7{bottom:94.488267pt;}
.y143{bottom:103.438000pt;}
.y10d{bottom:103.600000pt;}
.y63{bottom:103.606400pt;}
.yb3{bottom:103.609600pt;}
.y10e{bottom:103.609733pt;}
.y71{bottom:103.613600pt;}
.y36{bottom:103.798667pt;}
.ybd{bottom:105.584400pt;}
.yfc{bottom:110.167200pt;}
.yb5{bottom:110.170400pt;}
.y95{bottom:110.173600pt;}
.y12f{bottom:111.029467pt;}
.y10c{bottom:114.803200pt;}
.y62{bottom:114.809600pt;}
.y35{bottom:114.989733pt;}
.y142{bottom:116.108000pt;}
.ybc{bottom:118.246800pt;}
.yfb{bottom:121.370400pt;}
.y70{bottom:121.373600pt;}
.y1e{bottom:122.756400pt;}
.y12e{bottom:123.699467pt;}
.y10b{bottom:126.006400pt;}
.y94{bottom:127.937467pt;}
.yd6{bottom:128.424400pt;}
.y141{bottom:132.558000pt;}
.y61{bottom:132.573600pt;}
.y34{bottom:132.749733pt;}
.y12d{bottom:136.369467pt;}
.y10a{bottom:137.209600pt;}
.yb2{bottom:139.137467pt;}
.y6f{bottom:139.141333pt;}
.y1d{bottom:140.520267pt;}
.ybb{bottom:143.580133pt;}
.y33{bottom:143.952933pt;}
.y140{bottom:145.228000pt;}
.y93{bottom:145.701333pt;}
.yd5{bottom:146.422267pt;}
.y12c{bottom:149.039467pt;}
.y60{bottom:150.334267pt;}
.yfa{bottom:150.337467pt;}
.y32{bottom:155.156133pt;}
.yba{bottom:156.246800pt;}
.y6d{bottom:156.882133pt;}
.y6e{bottom:156.901333pt;}
.y1c{bottom:158.284267pt;}
.y5f{bottom:161.537467pt;}
.y13f{bottom:161.678000pt;}
.y12b{bottom:161.709467pt;}
.y92{bottom:163.465333pt;}
.yd4{bottom:164.420133pt;}
.y31{bottom:166.359333pt;}
.y6c{bottom:168.085333pt;}
.yf9{bottom:168.101333pt;}
.y13e{bottom:174.348000pt;}
.y12a{bottom:174.379467pt;}
.y30{bottom:177.562533pt;}
.y6b{bottom:179.288533pt;}
.y5e{bottom:179.301467pt;}
.y91{bottom:181.222800pt;}
.ycf{bottom:181.229200pt;}
.y109{bottom:182.409467pt;}
.y100{bottom:182.415867pt;}
.yd3{bottom:182.418000pt;}
.yf8{bottom:185.865333pt;}
.y13d{bottom:187.018000pt;}
.y129{bottom:187.049467pt;}
.y6a{bottom:190.491733pt;}
.y90{bottom:192.426000pt;}
.y2f{bottom:195.323200pt;}
.y5d{bottom:197.065333pt;}
.y13c{bottom:199.688000pt;}
.yb1{bottom:200.409467pt;}
.yff{bottom:200.413733pt;}
.yd2{bottom:200.415867pt;}
.y1b{bottom:200.417867pt;}
.y108{bottom:200.418000pt;}
.yb0{bottom:200.422267pt;}
.y69{bottom:201.694933pt;}
.y128{bottom:203.499467pt;}
.yf7{bottom:203.623467pt;}
.y8f{bottom:203.629200pt;}
.y8e{bottom:203.633067pt;}
.y2e{bottom:206.526400pt;}
.y68{bottom:212.898133pt;}
.y5c{bottom:214.829200pt;}
.y13b{bottom:216.138000pt;}
.y127{bottom:216.169467pt;}
.y179{bottom:218.409467pt;}
.yfe{bottom:218.411600pt;}
.yce{bottom:218.413733pt;}
.y1a{bottom:218.415733pt;}
.y107{bottom:218.415867pt;}
.yaf{bottom:218.420133pt;}
.yf6{bottom:221.383467pt;}
.y8c{bottom:221.390000pt;}
.y8d{bottom:221.393067pt;}
.y67{bottom:224.101333pt;}
.y13a{bottom:228.808000pt;}
.y126{bottom:232.584667pt;}
.yf5{bottom:232.586667pt;}
.y5b{bottom:232.593200pt;}
.y178{bottom:236.409467pt;}
.ycd{bottom:236.411600pt;}
.y19{bottom:236.413600pt;}
.y106{bottom:236.413733pt;}
.yae{bottom:236.418000pt;}
.y139{bottom:241.478000pt;}
.yf4{bottom:243.789867pt;}
.y125{bottom:245.254667pt;}
.y5a{bottom:250.357067pt;}
.y66{bottom:254.409467pt;}
.y18{bottom:254.411467pt;}
.y105{bottom:254.411600pt;}
.ycc{bottom:254.413733pt;}
.yad{bottom:254.415867pt;}
.y2d{bottom:254.424400pt;}
.yf3{bottom:254.993867pt;}
.y138{bottom:257.928000pt;}
.y124{bottom:261.704667pt;}
.y137{bottom:270.598000pt;}
.y65{bottom:272.409467pt;}
.y8b{bottom:272.411600pt;}
.y17{bottom:272.413600pt;}
.yac{bottom:272.413733pt;}
.y2c{bottom:272.422267pt;}
.yf2{bottom:272.753867pt;}
.y123{bottom:274.374667pt;}
.y136{bottom:283.268000pt;}
.yf1{bottom:283.957067pt;}
.y122{bottom:287.044667pt;}
.ycb{bottom:290.409467pt;}
.y16{bottom:290.411467pt;}
.yab{bottom:290.411600pt;}
.y2b{bottom:290.420133pt;}
.y59{bottom:290.426533pt;}
.y135{bottom:299.718000pt;}
.y121{bottom:303.494667pt;}
.y15{bottom:308.409333pt;}
.yfd{bottom:308.409467pt;}
.y14{bottom:308.413600pt;}
.yaa{bottom:308.413733pt;}
.y2a{bottom:308.418000pt;}
.y58{bottom:308.424400pt;}
.y134{bottom:312.388000pt;}
.y120{bottom:316.164667pt;}
.y111{bottom:319.295200pt;}
.y177{bottom:326.409467pt;}
.y13{bottom:326.411467pt;}
.ya9{bottom:326.411600pt;}
.y29{bottom:326.415867pt;}
.y57{bottom:326.422267pt;}
.yf0{bottom:326.441467pt;}
.y11f{bottom:328.834667pt;}
.y133{bottom:328.838000pt;}
.y110{bottom:331.957600pt;}
.y132{bottom:341.508000pt;}
.y12{bottom:344.409333pt;}
.y176{bottom:344.409467pt;}
.y28{bottom:344.413733pt;}
.y56{bottom:344.420133pt;}
.yef{bottom:344.439333pt;}
.y11e{bottom:345.284667pt;}
.ydd{bottom:357.076133pt;}
.y131{bottom:357.919467pt;}
.y11d{bottom:357.954667pt;}
.y175{bottom:362.409467pt;}
.y27{bottom:362.411600pt;}
.y55{bottom:362.418000pt;}
.yee{bottom:362.437200pt;}
.ydc{bottom:369.742800pt;}
.y130{bottom:370.589467pt;}
.y11c{bottom:370.624667pt;}
.y11{bottom:380.409333pt;}
.ya8{bottom:380.409467pt;}
.y26{bottom:380.413733pt;}
.y54{bottom:380.415867pt;}
.yca{bottom:380.418000pt;}
.y8a{bottom:380.424400pt;}
.yed{bottom:380.435067pt;}
.yb4{bottom:398.409467pt;}
.y25{bottom:398.411600pt;}
.y53{bottom:398.413733pt;}
.yc9{bottom:398.415867pt;}
.y89{bottom:398.422267pt;}
.yec{bottom:398.432933pt;}
.ya7{bottom:416.409467pt;}
.y52{bottom:416.411600pt;}
.yc8{bottom:416.413733pt;}
.y24{bottom:416.415867pt;}
.y88{bottom:416.420133pt;}
.yeb{bottom:416.430800pt;}
.y51{bottom:434.409467pt;}
.yc7{bottom:434.411600pt;}
.y23{bottom:434.413733pt;}
.y87{bottom:434.418000pt;}
.yea{bottom:434.428667pt;}
.y174{bottom:452.410800pt;}
.y22{bottom:452.411600pt;}
.y10{bottom:452.415733pt;}
.y86{bottom:452.415867pt;}
.yc6{bottom:452.418000pt;}
.y50{bottom:452.422267pt;}
.ye9{bottom:452.426533pt;}
.y21{bottom:470.409467pt;}
.y173{bottom:470.410133pt;}
.yf{bottom:470.413600pt;}
.y85{bottom:470.413733pt;}
.yc5{bottom:470.415867pt;}
.y4f{bottom:470.420133pt;}
.ye8{bottom:470.424400pt;}
.y11b{bottom:488.409467pt;}
.ye{bottom:488.411467pt;}
.y84{bottom:488.411600pt;}
.yc4{bottom:488.413733pt;}
.ya6{bottom:488.415867pt;}
.y4e{bottom:488.418000pt;}
.ye7{bottom:488.422267pt;}
.y103{bottom:488.815333pt;}
.y102{bottom:501.477733pt;}
.y11a{bottom:506.409467pt;}
.yc3{bottom:506.411600pt;}
.yd{bottom:506.413600pt;}
.ya5{bottom:506.413733pt;}
.y4d{bottom:506.415867pt;}
.ye6{bottom:506.420133pt;}
.y77{bottom:519.913467pt;}
.yc2{bottom:524.409467pt;}
.yc{bottom:524.411467pt;}
.ya4{bottom:524.411600pt;}
.y4c{bottom:524.413733pt;}
.ye5{bottom:524.418000pt;}
.y38{bottom:524.641867pt;}
.yb7{bottom:525.515867pt;}
.y76{bottom:532.575867pt;}
.ya3{bottom:542.409467pt;}
.y4b{bottom:542.411600pt;}
.yc1{bottom:542.413733pt;}
.yb{bottom:542.415733pt;}
.ye4{bottom:542.415867pt;}
.y75{bottom:545.238267pt;}
.y15b{bottom:553.245333pt;}
.y172{bottom:556.972400pt;}
.y74{bottom:557.900667pt;}
.y119{bottom:560.409467pt;}
.yc0{bottom:560.411600pt;}
.ya{bottom:560.413600pt;}
.ye3{bottom:560.413733pt;}
.ya2{bottom:560.415867pt;}
.y4a{bottom:560.418000pt;}
.y83{bottom:560.424400pt;}
.y159{bottom:565.848133pt;}
.y15a{bottom:565.915333pt;}
.y171{bottom:569.642400pt;}
.y73{bottom:570.563067pt;}
.ybf{bottom:578.409467pt;}
.y9{bottom:578.411467pt;}
.ye2{bottom:578.411600pt;}
.ya1{bottom:578.413733pt;}
.y49{bottom:578.415867pt;}
.y82{bottom:578.422267pt;}
.y158{bottom:578.518133pt;}
.y170{bottom:582.312400pt;}
.y157{bottom:594.968133pt;}
.y8{bottom:596.409333pt;}
.y118{bottom:596.409467pt;}
.ya0{bottom:596.411600pt;}
.y7{bottom:596.413600pt;}
.y48{bottom:596.413733pt;}
.y81{bottom:596.420133pt;}
.yb9{bottom:596.546400pt;}
.y16f{bottom:598.762400pt;}
.y156{bottom:607.638133pt;}
.yb8{bottom:609.208800pt;}
.y16e{bottom:611.432400pt;}
.y9f{bottom:614.409467pt;}
.y6{bottom:614.411467pt;}
.y47{bottom:614.411600pt;}
.y80{bottom:614.418000pt;}
.ydb{bottom:618.656267pt;}
.y155{bottom:624.088133pt;}
.y16d{bottom:624.102400pt;}
.yda{bottom:631.318667pt;}
.y5{bottom:632.409333pt;}
.y9e{bottom:632.409467pt;}
.yd1{bottom:632.413733pt;}
.y46{bottom:632.415867pt;}
.ye1{bottom:632.418000pt;}
.y154{bottom:636.758133pt;}
.y16c{bottom:636.772400pt;}
.yd9{bottom:643.981067pt;}
.yd0{bottom:645.076133pt;}
.y16b{bottom:649.442400pt;}
.y9d{bottom:650.409467pt;}
.y45{bottom:650.413733pt;}
.ye0{bottom:650.415867pt;}
.y153{bottom:653.208133pt;}
.yd8{bottom:656.643467pt;}
.y16a{bottom:662.112400pt;}
.y152{bottom:665.878133pt;}
.y9c{bottom:668.409467pt;}
.y44{bottom:668.411600pt;}
.ydf{bottom:668.413733pt;}
.y151{bottom:678.548133pt;}
.y169{bottom:678.562400pt;}
.y117{bottom:686.409467pt;}
.yde{bottom:686.411600pt;}
.y43{bottom:686.415867pt;}
.y7f{bottom:686.420133pt;}
.y9b{bottom:686.426533pt;}
.y168{bottom:691.232400pt;}
.y150{bottom:694.998133pt;}
.y116{bottom:704.409467pt;}
.y42{bottom:704.413733pt;}
.y7e{bottom:704.418000pt;}
.y9a{bottom:704.424400pt;}
.y14f{bottom:707.668133pt;}
.y167{bottom:707.682400pt;}
.y166{bottom:720.352400pt;}
.y115{bottom:722.410133pt;}
.y41{bottom:722.411600pt;}
.y7d{bottom:722.415867pt;}
.y99{bottom:722.422267pt;}
.y14e{bottom:724.118133pt;}
.y165{bottom:733.022400pt;}
.y14d{bottom:736.788133pt;}
.y4{bottom:740.409333pt;}
.y114{bottom:740.409467pt;}
.y40{bottom:740.411600pt;}
.y7c{bottom:740.413733pt;}
.y98{bottom:740.420133pt;}
.y14c{bottom:749.458133pt;}
.y164{bottom:749.472400pt;}
.y3f{bottom:758.411600pt;}
.y97{bottom:758.418000pt;}
.y163{bottom:762.142400pt;}
.y14b{bottom:765.908133pt;}
.y3e{bottom:776.413733pt;}
.y7b{bottom:776.415867pt;}
.y14a{bottom:778.578133pt;}
.y162{bottom:778.592400pt;}
.y3{bottom:794.409333pt;}
.y3d{bottom:794.411600pt;}
.y7a{bottom:794.413733pt;}
.y113{bottom:794.418000pt;}
.y149{bottom:795.028133pt;}
.y161{bottom:795.038533pt;}
.y148{bottom:807.698133pt;}
.y160{bottom:811.465333pt;}
.y3c{bottom:812.409467pt;}
.y79{bottom:812.411600pt;}
.y112{bottom:812.415867pt;}
.y15f{bottom:824.135333pt;}
.y147{bottom:824.148133pt;}
.y78{bottom:830.409467pt;}
.y3b{bottom:830.413733pt;}
.y146{bottom:836.818133pt;}
.y15e{bottom:840.585333pt;}
.y96{bottom:848.409467pt;}
.y3a{bottom:848.411600pt;}
.y15d{bottom:853.255333pt;}
.y145{bottom:853.264000pt;}
.y15c{bottom:865.925333pt;}
.y144{bottom:865.934000pt;}
.y2{bottom:866.409333pt;}
.y39{bottom:866.409467pt;}
.y1{bottom:922.623867pt;}
.y20{bottom:922.624000pt;}
.he{height:27.801600pt;}
.hd{height:30.972800pt;}
.hc{height:30.973333pt;}
.h10{height:30.985600pt;}
.h8{height:30.988800pt;}
.h11{height:31.011733pt;}
.ha{height:31.024533pt;}
.h9{height:31.480000pt;}
.h2{height:32.280000pt;}
.hb{height:34.598400pt;}
.h14{height:36.040000pt;}
.hf{height:36.096000pt;}
.h15{height:36.179200pt;}
.h16{height:36.194133pt;}
.h17{height:37.776000pt;}
.h12{height:39.874667pt;}
.h6{height:42.563200pt;}
.h13{height:43.248000pt;}
.h3{height:48.053333pt;}
.h7{height:54.282667pt;}
.h5{height:67.274667pt;}
.h4{height:104.144000pt;}
.h1{height:982.666667pt;}
.h0{height:982.677333pt;}
.w1{width:661.333333pt;}
.w0{width:661.417333pt;}
.x0{left:0.000000pt;}
.x1{left:64.252000pt;}
.x10{left:74.412400pt;}
.x27{left:75.592000pt;}
.x5{left:79.371600pt;}
.x7{left:83.149600pt;}
.x2{left:88.588933pt;}
.x29{left:92.056267pt;}
.x2b{left:104.458933pt;}
.x6{left:106.931200pt;}
.x2a{left:109.606267pt;}
.x1c{left:132.866133pt;}
.x2d{left:186.767867pt;}
.xc{left:190.937333pt;}
.xd{left:240.180800pt;}
.x1e{left:242.146933pt;}
.x26{left:243.268400pt;}
.x15{left:244.297067pt;}
.x25{left:311.546000pt;}
.x1f{left:312.852800pt;}
.x1d{left:338.204667pt;}
.xe{left:342.492400pt;}
.x28{left:349.616000pt;}
.x3{left:364.845467pt;}
.xf{left:377.952800pt;}
.xa{left:382.459333pt;}
.x23{left:384.157467pt;}
.x1a{left:399.722800pt;}
.x4{left:401.676267pt;}
.x12{left:420.477333pt;}
.x20{left:423.981333pt;}
.x1b{left:435.320667pt;}
.x2c{left:459.597333pt;}
.x16{left:468.212667pt;}
.x8{left:475.237733pt;}
.x18{left:494.349600pt;}
.x17{left:510.111600pt;}
.x13{left:517.667867pt;}
.x19{left:529.470000pt;}
.x9{left:532.603200pt;}
.x14{left:553.458400pt;}
.xb{left:561.671600pt;}
.x11{left:563.599200pt;}
.x21{left:567.834400pt;}
.x22{left:580.688800pt;}
.x24{left:597.165333pt;}
}




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