
    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_048d64f28b5b0c0087fc61e1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_81c9b2eaef17a2e3a5c693a5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.713000;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_f6c4f5dbc386420da4a20fe9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900000;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_313e9e4d9d96e94cc154b279.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.889648;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_69b3d12ee30d4be6f9b33af3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_36dfb9e058dc14685d92f804.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d35e886fef4121c8a780dcdd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.961000;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_931e04f34e32d60b5cfdc61d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.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:ff9;src:url('chunks/assets/font_06c307e40f2713667a0cbe84.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.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:ffa;src:url('chunks/assets/font_1ff12ac0f305ac89eb533fba.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.664000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_cffd6ddfceecdae7fa5724d3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_b5e627123975c22003c823e3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.961000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_4fad12421c57944bca3ad0bf.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.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:ffe;src:url('chunks/assets/font_445b19c217e6f3c0d3bb7e24.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.725000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_fc3cb727ef40d10b4b294eff.woff2')format("woff");}.fff{font-family:fff;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_95d39049b19ce630f81a39b3.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.799000;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:ff11;src:url('chunks/assets/font_fdaacf1c8b22aca245839173.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.867000;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:ff12;src:url('chunks/assets/font_8476d7d64f0a2bf93afb5393.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.959000;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:ff13;src:url('chunks/assets/font_8476d7d64f0a2bf93afb5393.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.959000;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:ff14;src:url('chunks/assets/font_8476d7d64f0a2bf93afb5393.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.959000;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:ff15;src:url('chunks/assets/font_6250bcc0759b06dff33d703f.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.959000;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:ff16;src:url('chunks/assets/font_e965712f3e8fa9c1d52254e9.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.892000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.250047,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250047,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250047,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.249953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249953,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);}
.v1{vertical-align:-18.858645px;}
.v2{vertical-align:-8.964000px;}
.v4{vertical-align:-6.642000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.147166px;}
.v5{vertical-align:17.843220px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000141px;}
.lsb{letter-spacing:0.000993px;}
.lse{letter-spacing:0.002338px;}
.ls14{letter-spacing:0.004200px;}
.ls5{letter-spacing:0.004328px;}
.ls10{letter-spacing:0.005602px;}
.ls7{letter-spacing:0.006141px;}
.ls1e{letter-spacing:0.840017px;}
.ls17{letter-spacing:2.964877px;}
.ls0{letter-spacing:2.985432px;}
.ls18{letter-spacing:2.987675px;}
.ls16{letter-spacing:2.988780px;}
.ls1{letter-spacing:2.991432px;}
.ls13{letter-spacing:13.560538px;}
.ls12{letter-spacing:13.564200px;}
.ls8{letter-spacing:16.736850px;}
.ls15{letter-spacing:16.740141px;}
.ls1d{letter-spacing:16.742850px;}
.ls11{letter-spacing:17.306338px;}
.lsd{letter-spacing:17.434200px;}
.ls1c{letter-spacing:19.872141px;}
.lsf{letter-spacing:20.852338px;}
.ls19{letter-spacing:20.888338px;}
.ls9{letter-spacing:21.914338px;}
.ls3{letter-spacing:25.760338px;}
.lsa{letter-spacing:26.528338px;}
.lsc{letter-spacing:26.984338px;}
.ls6{letter-spacing:27.378141px;}
.ls1a{letter-spacing:30.818100px;}
.ls1b{letter-spacing:30.818338px;}
.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;}
}
.ws68{word-spacing:-59.775600px;}
.ws88{word-spacing:-16.605662px;}
.ws39{word-spacing:-14.944500px;}
.wsc4{word-spacing:-14.920027px;}
.ws99{word-spacing:-11.955150px;}
.ws14{word-spacing:-11.955000px;}
.ws91{word-spacing:-10.912913px;}
.wsaa{word-spacing:-10.757029px;}
.ws6f{word-spacing:-10.743434px;}
.ws93{word-spacing:-9.920830px;}
.ws92{word-spacing:-8.730331px;}
.wsab{word-spacing:-8.605623px;}
.ws70{word-spacing:-8.594736px;}
.ws54{word-spacing:-1.195512px;}
.ws5b{word-spacing:-1.075961px;}
.ws7e{word-spacing:-0.777083px;}
.wsca{word-spacing:-0.358654px;}
.wsb7{word-spacing:-0.298878px;}
.wsee{word-spacing:-0.191282px;}
.ws69{word-spacing:-0.059776px;}
.ws3{word-spacing:-0.053796px;}
.ws75{word-spacing:-0.047821px;}
.ws6a{word-spacing:-0.041843px;}
.ws73{word-spacing:-0.035866px;}
.ws3f{word-spacing:0.000000px;}
.ws98{word-spacing:0.004589px;}
.wsd4{word-spacing:0.143462px;}
.wsaf{word-spacing:0.239102px;}
.wsec{word-spacing:0.286924px;}
.ws5a{word-spacing:0.298878px;}
.ws4{word-spacing:0.430207px;}
.ws82{word-spacing:0.537980px;}
.wsfb{word-spacing:0.621668px;}
.ws8d{word-spacing:0.669487px;}
.wsd2{word-spacing:1.195515px;}
.wsa4{word-spacing:1.554166px;}
.ws4a{word-spacing:1.912819px;}
.wsce{word-spacing:2.092146px;}
.ws45{word-spacing:2.211697px;}
.wsb5{word-spacing:2.331248px;}
.ws44{word-spacing:2.450800px;}
.ws17{word-spacing:2.510676px;}
.ws7a{word-spacing:2.570351px;}
.ws35{word-spacing:2.570454px;}
.wsd7{word-spacing:2.582312px;}
.ws101{word-spacing:2.677954px;}
.ws7c{word-spacing:2.689902px;}
.wsa8{word-spacing:2.773595px;}
.wscf{word-spacing:2.869229px;}
.ws2e{word-spacing:2.869404px;}
.ws18{word-spacing:2.929002px;}
.wsfa{word-spacing:2.964877px;}
.wsdd{word-spacing:3.012698px;}
.ws9b{word-spacing:3.227882px;}
.wsbe{word-spacing:3.395263px;}
.wsd8{word-spacing:3.777827px;}
.wse1{word-spacing:4.016930px;}
.wse7{word-spacing:4.160392px;}
.ws100{word-spacing:4.208213px;}
.ws89{word-spacing:4.250938px;}
.wse0{word-spacing:4.256033px;}
.ws9c{word-spacing:4.303843px;}
.ws25{word-spacing:4.423572px;}
.wsbd{word-spacing:4.447316px;}
.ws7{word-spacing:4.465014px;}
.ws60{word-spacing:4.483170px;}
.wsf6{word-spacing:4.495136px;}
.ws9{word-spacing:4.518864px;}
.ws8e{word-spacing:4.694938px;}
.wsd5{word-spacing:4.734239px;}
.ws77{word-spacing:4.775612px;}
.ws96{word-spacing:4.779904px;}
.ws34{word-spacing:4.781809px;}
.ws43{word-spacing:4.782060px;}
.ws23{word-spacing:4.782240px;}
.wsde{word-spacing:4.877701px;}
.wse{word-spacing:4.949178px;}
.wsc0{word-spacing:4.961375px;}
.wsa5{word-spacing:5.080926px;}
.wse2{word-spacing:5.116804px;}
.ws62{word-spacing:5.200477px;}
.ws1f{word-spacing:5.200686px;}
.wsf{word-spacing:5.218212px;}
.wsc7{word-spacing:5.320028px;}
.ws59{word-spacing:5.499355px;}
.ws5e{word-spacing:5.559131px;}
.wsff{word-spacing:5.595010px;}
.wse9{word-spacing:5.686423px;}
.wsed{word-spacing:5.690651px;}
.ws2d{word-spacing:5.738688px;}
.ws80{word-spacing:5.798233px;}
.ws32{word-spacing:5.798346px;}
.ws29{word-spacing:5.858364px;}
.ws8b{word-spacing:5.906134px;}
.ws8a{word-spacing:5.917784px;}
.ws36{word-spacing:5.919613px;}
.ws37{word-spacing:5.939064px;}
.wsa0{word-spacing:5.942134px;}
.ws38{word-spacing:5.952431px;}
.ws56{word-spacing:5.977560px;}
.ws2{word-spacing:5.977740px;}
.ws1b{word-spacing:5.977800px;}
.ws5{word-spacing:6.240336px;}
.ws8c{word-spacing:6.336214px;}
.wsfe{word-spacing:6.407960px;}
.wscd{word-spacing:6.575316px;}
.ws1{word-spacing:6.575400px;}
.wsa3{word-spacing:6.635092px;}
.ws95{word-spacing:6.647063px;}
.ws33{word-spacing:6.647171px;}
.ws8f{word-spacing:6.814418px;}
.ws5c{word-spacing:6.933970px;}
.ws78{word-spacing:6.974134px;}
.ws63{word-spacing:6.993745px;}
.wse6{word-spacing:7.029628px;}
.wsb2{word-spacing:7.053521px;}
.ws7b{word-spacing:7.113296px;}
.ws50{word-spacing:7.173072px;}
.ws42{word-spacing:7.220911px;}
.ws2a{word-spacing:7.233018px;}
.wsdb{word-spacing:7.268731px;}
.wsbc{word-spacing:7.316552px;}
.ws83{word-spacing:7.412174px;}
.ws19{word-spacing:7.591806px;}
.wsb3{word-spacing:7.651277px;}
.ws58{word-spacing:7.711052px;}
.ws5f{word-spacing:7.890379px;}
.wsad{word-spacing:7.890399px;}
.wseb{word-spacing:7.938220px;}
.wsc6{word-spacing:7.950155px;}
.ws8{word-spacing:7.961647px;}
.ws57{word-spacing:8.189257px;}
.ws55{word-spacing:8.249033px;}
.ws47{word-spacing:8.428360px;}
.ws66{word-spacing:8.547911px;}
.wsd0{word-spacing:8.655529px;}
.ws7f{word-spacing:8.667462px;}
.ws71{word-spacing:8.703349px;}
.ws52{word-spacing:8.727238px;}
.ws4d{word-spacing:8.846789px;}
.wse3{word-spacing:8.990273px;}
.ws10{word-spacing:9.037405px;}
.wsef{word-spacing:9.229376px;}
.ws81{word-spacing:9.324994px;}
.ws1a{word-spacing:9.325368px;}
.wsb6{word-spacing:9.444545px;}
.wsf2{word-spacing:9.468479px;}
.wsae{word-spacing:9.504320px;}
.ws65{word-spacing:9.564096px;}
.wsc5{word-spacing:9.623872px;}
.wsb{word-spacing:9.682957px;}
.wsac{word-spacing:9.898864px;}
.ws4c{word-spacing:9.922750px;}
.wsba{word-spacing:10.090147px;}
.wsb9{word-spacing:10.137967px;}
.ws0{word-spacing:10.161600px;}
.wsa6{word-spacing:10.281403px;}
.ws2f{word-spacing:10.341594px;}
.ws87{word-spacing:10.353134px;}
.ws4f{word-spacing:10.400954px;}
.ws3e{word-spacing:10.520928px;}
.ws28{word-spacing:10.640484px;}
.wsc9{word-spacing:10.699832px;}
.ws16{word-spacing:10.699903px;}
.wsf3{word-spacing:10.711814px;}
.ws6c{word-spacing:10.819384px;}
.ws67{word-spacing:10.820392px;}
.ws6b{word-spacing:10.826134px;}
.wsd1{word-spacing:10.998738px;}
.wsa7{word-spacing:11.058486px;}
.ws3d{word-spacing:11.058930px;}
.ws5d{word-spacing:11.178037px;}
.wsb0{word-spacing:11.237813px;}
.wsf1{word-spacing:11.285662px;}
.wsb8{word-spacing:11.297588px;}
.ws24{word-spacing:11.536975px;}
.ws84{word-spacing:11.578974px;}
.ws85{word-spacing:11.582134px;}
.ws86{word-spacing:11.596466px;}
.ws12{word-spacing:11.727689px;}
.wse8{word-spacing:11.811688px;}
.ws97{word-spacing:11.955120px;}
.ws26{word-spacing:11.955600px;}
.wsd3{word-spacing:12.050791px;}
.ws2b{word-spacing:12.194592px;}
.ws1d{word-spacing:12.313969px;}
.wsf9{word-spacing:12.337715px;}
.wsc1{word-spacing:12.493100px;}
.wsfc{word-spacing:12.528997px;}
.ws46{word-spacing:12.612652px;}
.ws9a{word-spacing:12.851754px;}
.wscc{word-spacing:12.911530px;}
.wsc{word-spacing:13.126224px;}
.ws30{word-spacing:13.151040px;}
.wsc2{word-spacing:13.808164px;}
.wsb4{word-spacing:14.047266px;}
.ws53{word-spacing:14.226593px;}
.ws1c{word-spacing:14.346899px;}
.wsa{word-spacing:14.417382px;}
.ws51{word-spacing:14.585246px;}
.ws61{word-spacing:14.764573px;}
.ws20{word-spacing:14.884722px;}
.ws4b{word-spacing:14.943900px;}
.wsdc{word-spacing:15.111310px;}
.wsc8{word-spacing:15.183002px;}
.wsbb{word-spacing:15.254771px;}
.ws76{word-spacing:15.398233px;}
.wsb1{word-spacing:15.422105px;}
.ws1e{word-spacing:15.422724px;}
.ws74{word-spacing:15.423904px;}
.ws72{word-spacing:15.446054px;}
.ws49{word-spacing:15.601432px;}
.wsd9{word-spacing:15.685157px;}
.ws7d{word-spacing:15.720983px;}
.ws31{word-spacing:15.721554px;}
.wsa1{word-spacing:15.845548px;}
.wsa2{word-spacing:15.900310px;}
.wsbf{word-spacing:15.960085px;}
.ws3b{word-spacing:16.020504px;}
.wsdf{word-spacing:16.211183px;}
.wsf5{word-spacing:16.402466px;}
.ws4e{word-spacing:16.438290px;}
.ws64{word-spacing:16.617617px;}
.wsd6{word-spacing:16.641569px;}
.wsfd{word-spacing:16.689389px;}
.ws15{word-spacing:16.737840px;}
.ws22{word-spacing:16.737960px;}
.ws6{word-spacing:16.999536px;}
.wsf8{word-spacing:17.215416px;}
.wsf7{word-spacing:17.263237px;}
.ws27{word-spacing:17.275603px;}
.wsda{word-spacing:17.502340px;}
.wsea{word-spacing:17.597981px;}
.ws79{word-spacing:17.872904px;}
.ws3a{word-spacing:17.873622px;}
.wsc3{word-spacing:17.932680px;}
.ws13{word-spacing:17.933400px;}
.ws9f{word-spacing:18.231558px;}
.ws3c{word-spacing:18.411624px;}
.wse5{word-spacing:18.889137px;}
.ws48{word-spacing:19.367294px;}
.ws9e{word-spacing:19.845499px;}
.ws2c{word-spacing:20.802505px;}
.wse4{word-spacing:20.897602px;}
.ws21{word-spacing:20.982078px;}
.ws102{word-spacing:21.375808px;}
.ws9d{word-spacing:21.638767px;}
.wscb{word-spacing:21.698543px;}
.wsf0{word-spacing:21.997476px;}
.wsd{word-spacing:22.540416px;}
.wsf4{word-spacing:22.619144px;}
.ws11{word-spacing:25.068936px;}
.wsa9{word-spacing:50.131342px;}
.ws6e{word-spacing:50.844849px;}
.ws94{word-spacing:51.708581px;}
.ws90{word-spacing:51.708938px;}
.ws41{word-spacing:176.458775px;}
.ws40{word-spacing:180.270078px;}
.ws6d{word-spacing:569.767851px;}
._2{margin-left:-8.637157px;}
._4{margin-left:-5.307852px;}
._0{margin-left:-4.064640px;}
._3{margin-left:-2.796000px;}
._1{margin-left:-1.524240px;}
._18{width:1.549029px;}
._7{width:2.988900px;}
._1e{width:4.196417px;}
._16{width:5.440569px;}
._15{width:13.150556px;}
._20{width:15.634720px;}
._5{width:16.945686px;}
._1f{width:18.075952px;}
._1c{width:19.845499px;}
._10{width:21.734443px;}
._8{width:26.244515px;}
._1d{width:29.887875px;}
._a{width:33.474143px;}
._6{width:34.967830px;}
._9{width:37.203769px;}
._11{width:38.399942px;}
._12{width:41.842920px;}
._1a{width:43.708028px;}
._19{width:49.061939px;}
._14{width:50.573928px;}
._1b{width:54.324202px;}
._13{width:70.529979px;}
._17{width:71.806113px;}
._f{width:166.780286px;}
._e{width:175.983189px;}
._c{width:179.794492px;}
._d{width:196.066079px;}
._b{width:199.877034px;}
.fc1{color:transparent;}
.fc2{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fs1e{font-size:21.497251px;}
.fs1a{font-size:21.808777px;}
.fs19{font-size:28.549152px;}
.fs5{font-size:30.604800px;}
.fsb{font-size:30.638045px;}
.fs6{font-size:30.841097px;}
.fs13{font-size:30.916317px;}
.fs1d{font-size:30.955478px;}
.fsa{font-size:31.334364px;}
.fs18{font-size:31.404067px;}
.fs14{font-size:31.625015px;}
.fs8{font-size:34.815960px;}
.fs10{font-size:35.138841px;}
.fs1b{font-size:35.176680px;}
.fs16{font-size:35.686440px;}
.fs15{font-size:35.865600px;}
.fs9{font-size:38.297556px;}
.fs12{font-size:38.645445px;}
.fs11{font-size:38.652666px;}
.fs1c{font-size:38.694348px;}
.fs17{font-size:39.255084px;}
.fse{font-size:41.842800px;}
.fs4{font-size:47.820000px;}
.fsc{font-size:47.820600px;}
.fs7{font-size:48.000000px;}
.fs3{font-size:53.796000px;}
.fsd{font-size:59.775600px;}
.fs2{font-size:59.778000px;}
.fs1{font-size:65.754000px;}
.fsf{font-size:81.921338px;}
.fs0{font-size:101.616000px;}
.y0{bottom:0.000000px;}
.y49{bottom:1.664543px;}
.y4b{bottom:2.967580px;}
.y65{bottom:3.699196px;}
.y10f{bottom:3.737522px;}
.y9d{bottom:3.752067px;}
.yca{bottom:3.791684px;}
.y57{bottom:3.900000px;}
.y8d{bottom:4.380080px;}
.y48{bottom:11.302386px;}
.y4a{bottom:12.605422px;}
.y56{bottom:15.900000px;}
.y64{bottom:16.150737px;}
.y9c{bottom:16.162221px;}
.y10e{bottom:16.318071px;}
.yc9{bottom:16.554543px;}
.y9e{bottom:24.438097px;}
.y66{bottom:24.479972px;}
.y110{bottom:24.733603px;}
.yd1{bottom:25.092028px;}
.y55{bottom:27.900000px;}
.ycb{bottom:28.351092px;}
.ya3{bottom:33.557444px;}
.y115{bottom:33.661005px;}
.yde{bottom:34.145083px;}
.yf3{bottom:35.080266px;}
.yf7{bottom:38.851034px;}
.ye2{bottom:41.118015px;}
.y3c{bottom:42.698526px;}
.y40{bottom:42.713828px;}
.ycf{bottom:45.723251px;}
.yaa{bottom:46.580732px;}
.y54{bottom:49.242450px;}
.yd2{bottom:49.998189px;}
.y116{bottom:51.515759px;}
.ya4{bottom:51.796283px;}
.ya2{bottom:52.779600px;}
.y9f{bottom:54.836065px;}
.y114{bottom:56.429258px;}
.ya9{bottom:56.544134px;}
.ydf{bottom:56.788129px;}
.y67{bottom:56.878157px;}
.ycc{bottom:57.376311px;}
.y111{bottom:57.467458px;}
.yf8{bottom:58.421081px;}
.ye3{bottom:62.017581px;}
.yf4{bottom:62.724470px;}
.y3b{bottom:62.966555px;}
.y3f{bottom:62.981857px;}
.ya8{bottom:66.507585px;}
.y117{bottom:69.370709px;}
.ya5{bottom:70.035122px;}
.y6a{bottom:70.357253px;}
.yd3{bottom:74.904351px;}
.yf9{bottom:77.991129px;}
.ye0{bottom:79.430977px;}
.ye4{bottom:82.917344px;}
.y3a{bottom:84.374612px;}
.y3e{bottom:84.389915px;}
.ya0{bottom:85.234228px;}
.ycd{bottom:86.401530px;}
.y118{bottom:87.225464px;}
.ya6{bottom:88.273961px;}
.y68{bottom:89.276342px;}
.y112{bottom:90.201313px;}
.yf5{bottom:90.368673px;}
.yfa{bottom:97.561176px;}
.yd4{bottom:99.810512px;}
.ye1{bottom:102.073825px;}
.ye5{bottom:103.817108px;}
.y119{bottom:105.080414px;}
.ya7{bottom:106.512800px;}
.y39{bottom:107.205793px;}
.y3d{bottom:107.221095px;}
.y34{bottom:113.332500px;}
.yce{bottom:115.426749px;}
.ya1{bottom:115.632390px;}
.yfb{bottom:117.131025px;}
.yf6{bottom:118.012678px;}
.y69{bottom:121.674527px;}
.y113{bottom:122.935168px;}
.yd5{bottom:124.716673px;}
.yd0{bottom:130.478546px;}
.y33{bottom:131.265000px;}
.y53{bottom:131.266500px;}
.y91{bottom:134.477556px;}
.y179{bottom:137.991000px;}
.y5a{bottom:141.149705px;}
.yfe{bottom:142.612124px;}
.ybc{bottom:144.678776px;}
.y90{bottom:146.888076px;}
.y32{bottom:149.199000px;}
.y178{bottom:151.440000px;}
.y45{bottom:151.606247px;}
.y47{bottom:152.207649px;}
.y59{bottom:153.601246px;}
.y98{bottom:155.163708px;}
.yfd{bottom:155.192672px;}
.ybb{bottom:157.441634px;}
.y44{bottom:161.244090px;}
.y46{bottom:161.845492px;}
.y5b{bottom:161.930481px;}
.yff{bottom:163.608204px;}
.y92{bottom:164.283006px;}
.y177{bottom:164.890500px;}
.ybd{bottom:165.979119px;}
.yc7{bottom:166.150117px;}
.y52{bottom:167.131500px;}
.y31{bottom:167.586000px;}
.yef{bottom:170.347239px;}
.y38{bottom:174.498097px;}
.yda{bottom:176.121999px;}
.y176{bottom:178.339500px;}
.y10a{bottom:181.746180px;}
.y93{bottom:182.521845px;}
.y97{bottom:183.504820px;}
.y5c{bottom:183.529335px;}
.y51{bottom:185.064000px;}
.y30{bottom:185.518500px;}
.y99{bottom:185.561871px;}
.yc1{bottom:186.610343px;}
.y109{bottom:188.891443px;}
.y175{bottom:191.788500px;}
.y100{bottom:194.296193px;}
.y103{bottom:195.303859px;}
.y108{bottom:196.036706px;}
.y10b{bottom:196.342059px;}
.y60{bottom:197.290440px;}
.y37{bottom:197.528209px;}
.ydb{bottom:198.492440px;}
.ybe{bottom:199.187334px;}
.yf0{bottom:200.748864px;}
.y94{bottom:200.760684px;}
.y50{bottom:202.996500px;}
.y107{bottom:203.181969px;}
.y2f{bottom:203.451000px;}
.y5d{bottom:205.127996px;}
.y174{bottom:205.239000px;}
.y106{bottom:210.327233px;}
.yc8{bottom:215.877188px;}
.y9a{bottom:215.959839px;}
.y105{bottom:217.472496px;}
.y173{bottom:218.688000px;}
.y95{bottom:218.999523px;}
.y36{bottom:219.762596px;}
.ydc{bottom:220.862882px;}
.y8b{bottom:220.929000px;}
.y2e{bottom:221.383500px;}
.y104{bottom:224.617759px;}
.y101{bottom:224.984183px;}
.y63{bottom:225.215741px;}
.y4f{bottom:225.922500px;}
.y5e{bottom:226.726851px;}
.y10c{bottom:229.075914px;}
.yf1{bottom:231.150291px;}
.y172{bottom:232.138500px;}
.ybf{bottom:232.395549px;}
.y62{bottom:235.189063px;}
.yc6{bottom:237.139863px;}
.y96{bottom:237.238362px;}
.y125{bottom:238.791000px;}
.y8a{bottom:238.861500px;}
.yb9{bottom:238.863000px;}
.y2d{bottom:239.316000px;}
.ydd{bottom:243.233323px;}
.yc5{bottom:244.344063px;}
.y61{bottom:245.162385px;}
.y171{bottom:245.587500px;}
.y9b{bottom:246.358001px;}
.y5f{bottom:248.325705px;}
.yc4{bottom:251.548759px;}
.y4e{bottom:254.349000px;}
.y102{bottom:255.672172px;}
.y124{bottom:256.723500px;}
.y89{bottom:256.795500px;}
.y2c{bottom:257.248500px;}
.yc3{bottom:258.752959px;}
.y170{bottom:259.036500px;}
.yf2{bottom:261.551916px;}
.y10d{bottom:261.809769px;}
.y137{bottom:264.355500px;}
.yc0{bottom:265.603764px;}
.yb8{bottom:265.701000px;}
.yc2{bottom:271.365638px;}
.y4d{bottom:272.281500px;}
.y16f{bottom:272.487000px;}
.y123{bottom:274.656000px;}
.yee{bottom:274.728000px;}
.y88{bottom:274.957500px;}
.y2b{bottom:275.182500px;}
.yb7{bottom:283.633500px;}
.y16e{bottom:285.936000px;}
.y122{bottom:292.588500px;}
.yed{bottom:292.612500px;}
.y87{bottom:292.890000px;}
.y2a{bottom:293.115000px;}
.y136{bottom:296.418000px;}
.y16d{bottom:299.385000px;}
.yb6{bottom:301.566000px;}
.y121{bottom:310.522500px;}
.yec{bottom:310.545000px;}
.y86{bottom:310.822500px;}
.y29{bottom:311.047500px;}
.y16c{bottom:312.835500px;}
.y135{bottom:314.350500px;}
.yb5{bottom:319.500000px;}
.y4c{bottom:320.725500px;}
.y16b{bottom:326.284500px;}
.y120{bottom:328.455000px;}
.yeb{bottom:328.477500px;}
.y85{bottom:328.755000px;}
.y28{bottom:328.980000px;}
.y134{bottom:332.283000px;}
.yb4{bottom:337.432500px;}
.y16a{bottom:339.735000px;}
.y11f{bottom:346.387500px;}
.yea{bottom:346.410000px;}
.y84{bottom:346.687500px;}
.y27{bottom:346.912500px;}
.y43{bottom:347.625000px;}
.y133{bottom:350.215500px;}
.y169{bottom:353.184000px;}
.yb3{bottom:355.365000px;}
.y11e{bottom:364.320000px;}
.y83{bottom:364.621500px;}
.y26{bottom:364.846500px;}
.y168{bottom:366.633000px;}
.y132{bottom:368.148000px;}
.ye9{bottom:369.001500px;}
.yb2{bottom:373.297500px;}
.y167{bottom:380.083500px;}
.y11d{bottom:382.182000px;}
.y82{bottom:382.554000px;}
.y25{bottom:382.779000px;}
.y131{bottom:386.082000px;}
.yb1{bottom:391.230000px;}
.y166{bottom:393.532500px;}
.y81{bottom:400.486500px;}
.y24{bottom:400.711500px;}
.y130{bottom:404.014500px;}
.y165{bottom:406.981500px;}
.yb0{bottom:409.162500px;}
.ye8{bottom:417.198000px;}
.y80{bottom:418.419000px;}
.y23{bottom:418.644000px;}
.y164{bottom:420.432000px;}
.yaf{bottom:427.096500px;}
.y11c{bottom:430.137000px;}
.ye7{bottom:430.648500px;}
.y163{bottom:433.881000px;}
.y22{bottom:436.576500px;}
.y7f{bottom:436.581000px;}
.y11b{bottom:443.587500px;}
.ye6{bottom:444.097500px;}
.yae{bottom:445.029000px;}
.y162{bottom:447.331500px;}
.y12f{bottom:453.598500px;}
.y21{bottom:454.509000px;}
.y7e{bottom:454.513500px;}
.y11a{bottom:457.036500px;}
.y161{bottom:460.780500px;}
.y12e{bottom:467.049000px;}
.yd9{bottom:470.997000px;}
.y20{bottom:472.443000px;}
.y7d{bottom:472.447500px;}
.y160{bottom:474.229500px;}
.y12d{bottom:480.498000px;}
.yfc{bottom:483.936000px;}
.y15f{bottom:487.680000px;}
.y1f{bottom:490.375500px;}
.y7c{bottom:490.380000px;}
.y12c{bottom:493.947000px;}
.y15e{bottom:501.129000px;}
.y12b{bottom:507.397500px;}
.y1e{bottom:508.308000px;}
.y7b{bottom:508.312500px;}
.y15d{bottom:514.578000px;}
.yad{bottom:517.495500px;}
.y1d{bottom:526.240500px;}
.y7a{bottom:526.245000px;}
.y15c{bottom:528.028500px;}
.yac{bottom:530.944500px;}
.y15b{bottom:541.477500px;}
.y79{bottom:544.177500px;}
.yab{bottom:544.395000px;}
.y1c{bottom:544.627500px;}
.y15a{bottom:554.928000px;}
.y78{bottom:562.111500px;}
.y1b{bottom:562.560000px;}
.y159{bottom:568.377000px;}
.y8f{bottom:571.293000px;}
.y77{bottom:580.044000px;}
.y1a{bottom:580.492500px;}
.y158{bottom:581.826000px;}
.y157{bottom:595.276500px;}
.y76{bottom:597.976500px;}
.y19{bottom:598.426500px;}
.y156{bottom:608.725500px;}
.y75{bottom:615.909000px;}
.y18{bottom:616.359000px;}
.y155{bottom:622.174500px;}
.y74{bottom:633.841500px;}
.y17{bottom:634.291500px;}
.y154{bottom:635.625000px;}
.y153{bottom:649.074000px;}
.y73{bottom:651.774000px;}
.y16{bottom:652.224000px;}
.y152{bottom:662.524500px;}
.y42{bottom:665.485500px;}
.y72{bottom:669.708000px;}
.y151{bottom:675.973500px;}
.y15{bottom:677.590500px;}
.y41{bottom:678.934500px;}
.y71{bottom:687.640500px;}
.y150{bottom:689.422500px;}
.y14f{bottom:702.873000px;}
.y70{bottom:705.573000px;}
.y35{bottom:705.834000px;}
.y14{bottom:713.626500px;}
.y14e{bottom:716.322000px;}
.y6f{bottom:723.505500px;}
.y13{bottom:728.569500px;}
.y14d{bottom:729.771000px;}
.y6e{bottom:741.438000px;}
.y14c{bottom:743.221500px;}
.y12{bottom:743.968500px;}
.y14b{bottom:756.670500px;}
.y11{bottom:758.911500px;}
.y6d{bottom:759.370500px;}
.y14a{bottom:770.119500px;}
.y10{bottom:773.856000px;}
.yd8{bottom:776.368500px;}
.y149{bottom:783.570000px;}
.yf{bottom:788.800500px;}
.yd7{bottom:789.817500px;}
.y12a{bottom:795.133500px;}
.y148{bottom:797.019000px;}
.yd6{bottom:803.268000px;}
.ye{bottom:803.743500px;}
.y6c{bottom:808.300500px;}
.y129{bottom:808.582500px;}
.y147{bottom:810.469500px;}
.yd{bottom:818.688000px;}
.y6b{bottom:821.749500px;}
.y128{bottom:822.031500px;}
.y146{bottom:823.918500px;}
.yba{bottom:830.167500px;}
.yc{bottom:833.632500px;}
.y127{bottom:835.482000px;}
.y145{bottom:837.367500px;}
.yb{bottom:848.575500px;}
.y58{bottom:848.649000px;}
.y126{bottom:848.931000px;}
.y144{bottom:859.560000px;}
.ya{bottom:863.520000px;}
.y8e{bottom:871.989000px;}
.y9{bottom:878.464500px;}
.y143{bottom:887.580000px;}
.y8{bottom:893.407500px;}
.y8c{bottom:898.888500px;}
.y142{bottom:905.512500px;}
.y7{bottom:908.352000px;}
.y6{bottom:923.296500px;}
.y141{bottom:923.445000px;}
.y5{bottom:938.239500px;}
.y140{bottom:941.377500px;}
.y13f{bottom:959.310000px;}
.y13e{bottom:977.244000px;}
.y4{bottom:992.610000px;}
.y13d{bottom:995.176500px;}
.y3{bottom:1011.325500px;}
.y13c{bottom:1013.109000px;}
.y13b{bottom:1031.041500px;}
.y13a{bottom:1053.682500px;}
.y2{bottom:1058.398500px;}
.y139{bottom:1081.701000px;}
.y1{bottom:1088.286000px;}
.y138{bottom:1099.635000px;}
.h24{height:15.929463px;}
.h20{height:16.160303px;}
.h7{height:20.682150px;}
.ha{height:21.414082px;}
.h10{height:23.218764px;}
.h1a{height:23.434136px;}
.he{height:25.798626px;}
.h17{height:26.037881px;}
.h22{height:26.065920px;}
.h1d{height:26.443652px;}
.hf{height:28.378489px;}
.h19{height:28.636275px;}
.h18{height:28.641626px;}
.h23{height:28.672512px;}
.h1e{height:29.088017px;}
.h27{height:32.661470px;}
.h8{height:32.900160px;}
.h11{height:32.900573px;}
.h25{height:33.134573px;}
.h26{height:33.140573px;}
.hc{height:34.968750px;}
.h1b{height:35.865450px;}
.h5{height:37.334424px;}
.h4{height:37.603404px;}
.h1f{height:38.998142px;}
.hb{height:40.380000px;}
.h12{height:41.125613px;}
.h3{height:41.127264px;}
.h13{height:44.831700px;}
.h2{height:45.238752px;}
.h15{height:59.028095px;}
.h1{height:69.911808px;}
.h14{height:213.298202px;}
.h6{height:244.957953px;}
.h16{height:253.734000px;}
.hd{height:263.537475px;}
.h21{height:269.199315px;}
.h1c{height:282.022005px;}
.h9{height:296.942671px;}
.h0{height:1188.000000px;}
.w1{width:301.265979px;}
.w7{width:376.194555px;}
.w8{width:376.195050px;}
.w2{width:376.199860px;}
.w5{width:376.202859px;}
.w4{width:376.205790px;}
.w6{width:376.209450px;}
.w3{width:780.456000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1d{left:7.615991px;}
.x26{left:10.037863px;}
.x1c{left:11.967986px;}
.x1b{left:15.425404px;}
.x25{left:18.179553px;}
.x2c{left:20.767526px;}
.x1a{left:22.678730px;}
.x22{left:25.917207px;}
.x18{left:27.925301px;}
.x20{left:31.159023px;}
.x2d{left:35.810351px;}
.x1e{left:53.162333px;}
.x36{left:54.230715px;}
.x10{left:61.188879px;}
.xf{left:62.484205px;}
.x11{left:64.450325px;}
.x2b{left:65.734918px;}
.x21{left:70.055957px;}
.x9{left:71.742959px;}
.x6{left:73.446000px;}
.xa{left:75.239558px;}
.x17{left:85.756350px;}
.x5{left:88.390500px;}
.x2e{left:99.376823px;}
.x1{left:109.813500px;}
.x37{left:124.217651px;}
.x2f{left:145.471808px;}
.x19{left:162.293147px;}
.x4{left:163.903500px;}
.x35{left:165.861000px;}
.xb{left:168.507686px;}
.x29{left:200.965623px;}
.x7{left:203.428500px;}
.x33{left:206.064409px;}
.x27{left:209.107557px;}
.x24{left:211.617084px;}
.x31{left:214.069076px;}
.x32{left:217.042946px;}
.x28{left:219.354493px;}
.x30{left:222.420694px;}
.x23{left:224.596554px;}
.x34{left:232.085771px;}
.x2a{left:250.780927px;}
.xe{left:254.284989px;}
.xd{left:258.533350px;}
.x13{left:262.504141px;}
.x38{left:263.641888px;}
.x12{left:268.680071px;}
.x2{left:313.495500px;}
.x3{left:354.231000px;}
.xc{left:467.967000px;}
.x3b{left:473.944500px;}
.x16{left:482.910000px;}
.x1f{left:493.791000px;}
.x3c{left:495.355500px;}
.x8{left:505.624500px;}
.x15{left:514.743000px;}
.x3e{left:522.589500px;}
.x14{left:536.673000px;}
.x39{left:591.090000px;}
.x3f{left:610.410000px;}
.x3a{left:614.418000px;}
.x40{left:723.775500px;}
.x41{left:743.077500px;}
.x3d{left:791.646000px;}
@media print{
.v1{vertical-align:-16.763240pt;}
.v2{vertical-align:-7.968000pt;}
.v4{vertical-align:-5.904000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.908592pt;}
.v5{vertical-align:15.860640pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000125pt;}
.lsb{letter-spacing:0.000882pt;}
.lse{letter-spacing:0.002079pt;}
.ls14{letter-spacing:0.003733pt;}
.ls5{letter-spacing:0.003847pt;}
.ls10{letter-spacing:0.004980pt;}
.ls7{letter-spacing:0.005459pt;}
.ls1e{letter-spacing:0.746682pt;}
.ls17{letter-spacing:2.635446pt;}
.ls0{letter-spacing:2.653717pt;}
.ls18{letter-spacing:2.655711pt;}
.ls16{letter-spacing:2.656693pt;}
.ls1{letter-spacing:2.659051pt;}
.ls13{letter-spacing:12.053812pt;}
.ls12{letter-spacing:12.057067pt;}
.ls8{letter-spacing:14.877200pt;}
.ls15{letter-spacing:14.880125pt;}
.ls1d{letter-spacing:14.882533pt;}
.ls11{letter-spacing:15.383412pt;}
.lsd{letter-spacing:15.497067pt;}
.ls1c{letter-spacing:17.664125pt;}
.lsf{letter-spacing:18.535412pt;}
.ls19{letter-spacing:18.567412pt;}
.ls9{letter-spacing:19.479412pt;}
.ls3{letter-spacing:22.898079pt;}
.lsa{letter-spacing:23.580745pt;}
.lsc{letter-spacing:23.986079pt;}
.ls6{letter-spacing:24.336125pt;}
.ls1a{letter-spacing:27.393867pt;}
.ls1b{letter-spacing:27.394079pt;}
.ws68{word-spacing:-53.133867pt;}
.ws88{word-spacing:-14.760588pt;}
.ws39{word-spacing:-13.284000pt;}
.wsc4{word-spacing:-13.262246pt;}
.ws99{word-spacing:-10.626800pt;}
.ws14{word-spacing:-10.626667pt;}
.ws91{word-spacing:-9.700367pt;}
.wsaa{word-spacing:-9.561803pt;}
.ws6f{word-spacing:-9.549719pt;}
.ws93{word-spacing:-8.818516pt;}
.ws92{word-spacing:-7.760294pt;}
.wsab{word-spacing:-7.649443pt;}
.ws70{word-spacing:-7.639765pt;}
.ws54{word-spacing:-1.062677pt;}
.ws5b{word-spacing:-0.956410pt;}
.ws7e{word-spacing:-0.690740pt;}
.wsca{word-spacing:-0.318803pt;}
.wsb7{word-spacing:-0.265669pt;}
.wsee{word-spacing:-0.170029pt;}
.ws69{word-spacing:-0.053134pt;}
.ws3{word-spacing:-0.047819pt;}
.ws75{word-spacing:-0.042507pt;}
.ws6a{word-spacing:-0.037194pt;}
.ws73{word-spacing:-0.031881pt;}
.ws3f{word-spacing:0.000000pt;}
.ws98{word-spacing:0.004079pt;}
.wsd4{word-spacing:0.127522pt;}
.wsaf{word-spacing:0.212535pt;}
.wsec{word-spacing:0.255043pt;}
.ws5a{word-spacing:0.265669pt;}
.ws4{word-spacing:0.382406pt;}
.ws82{word-spacing:0.478205pt;}
.wsfb{word-spacing:0.552594pt;}
.ws8d{word-spacing:0.595099pt;}
.wsd2{word-spacing:1.062680pt;}
.wsa4{word-spacing:1.381481pt;}
.ws4a{word-spacing:1.700284pt;}
.wsce{word-spacing:1.859685pt;}
.ws45{word-spacing:1.965953pt;}
.wsb5{word-spacing:2.072221pt;}
.ws44{word-spacing:2.178489pt;}
.ws17{word-spacing:2.231712pt;}
.ws7a{word-spacing:2.284756pt;}
.ws35{word-spacing:2.284848pt;}
.wsd7{word-spacing:2.295389pt;}
.ws101{word-spacing:2.380403pt;}
.ws7c{word-spacing:2.391024pt;}
.wsa8{word-spacing:2.465418pt;}
.wscf{word-spacing:2.550426pt;}
.ws2e{word-spacing:2.550581pt;}
.ws18{word-spacing:2.603558pt;}
.wsfa{word-spacing:2.635446pt;}
.wsdd{word-spacing:2.677954pt;}
.ws9b{word-spacing:2.869229pt;}
.wsbe{word-spacing:3.018011pt;}
.wsd8{word-spacing:3.358069pt;}
.wse1{word-spacing:3.570605pt;}
.wse7{word-spacing:3.698126pt;}
.ws100{word-spacing:3.740634pt;}
.ws89{word-spacing:3.778612pt;}
.wse0{word-spacing:3.783141pt;}
.ws9c{word-spacing:3.825638pt;}
.ws25{word-spacing:3.932064pt;}
.wsbd{word-spacing:3.953170pt;}
.ws7{word-spacing:3.968902pt;}
.ws60{word-spacing:3.985040pt;}
.wsf6{word-spacing:3.995677pt;}
.ws9{word-spacing:4.016768pt;}
.ws8e{word-spacing:4.173279pt;}
.wsd5{word-spacing:4.208213pt;}
.ws77{word-spacing:4.244989pt;}
.ws96{word-spacing:4.248803pt;}
.ws34{word-spacing:4.250497pt;}
.ws43{word-spacing:4.250720pt;}
.ws23{word-spacing:4.250880pt;}
.wsde{word-spacing:4.335734pt;}
.wse{word-spacing:4.399270pt;}
.wsc0{word-spacing:4.410111pt;}
.wsa5{word-spacing:4.516379pt;}
.wse2{word-spacing:4.548270pt;}
.ws62{word-spacing:4.622646pt;}
.ws1f{word-spacing:4.622832pt;}
.wsf{word-spacing:4.638411pt;}
.wsc7{word-spacing:4.728914pt;}
.ws59{word-spacing:4.888316pt;}
.ws5e{word-spacing:4.941450pt;}
.wsff{word-spacing:4.973342pt;}
.wse9{word-spacing:5.054598pt;}
.wsed{word-spacing:5.058357pt;}
.ws2d{word-spacing:5.101056pt;}
.ws80{word-spacing:5.153985pt;}
.ws32{word-spacing:5.154086pt;}
.ws29{word-spacing:5.207434pt;}
.ws8b{word-spacing:5.249897pt;}
.ws8a{word-spacing:5.260253pt;}
.ws36{word-spacing:5.261878pt;}
.ws37{word-spacing:5.279168pt;}
.wsa0{word-spacing:5.281897pt;}
.ws38{word-spacing:5.291050pt;}
.ws56{word-spacing:5.313387pt;}
.ws2{word-spacing:5.313547pt;}
.ws1b{word-spacing:5.313600pt;}
.ws5{word-spacing:5.546965pt;}
.ws8c{word-spacing:5.632190pt;}
.wsfe{word-spacing:5.695965pt;}
.wscd{word-spacing:5.844725pt;}
.ws1{word-spacing:5.844800pt;}
.wsa3{word-spacing:5.897859pt;}
.ws95{word-spacing:5.908501pt;}
.ws33{word-spacing:5.908597pt;}
.ws8f{word-spacing:6.057261pt;}
.ws5c{word-spacing:6.163529pt;}
.ws78{word-spacing:6.199230pt;}
.ws63{word-spacing:6.216662pt;}
.wse6{word-spacing:6.248558pt;}
.wsb2{word-spacing:6.269796pt;}
.ws7b{word-spacing:6.322930pt;}
.ws50{word-spacing:6.376064pt;}
.ws42{word-spacing:6.418587pt;}
.ws2a{word-spacing:6.429350pt;}
.wsdb{word-spacing:6.461094pt;}
.wsbc{word-spacing:6.503602pt;}
.ws83{word-spacing:6.588599pt;}
.ws19{word-spacing:6.748272pt;}
.wsb3{word-spacing:6.801135pt;}
.ws58{word-spacing:6.854269pt;}
.ws5f{word-spacing:7.013670pt;}
.wsad{word-spacing:7.013688pt;}
.wseb{word-spacing:7.056195pt;}
.wsc6{word-spacing:7.066804pt;}
.ws8{word-spacing:7.077019pt;}
.ws57{word-spacing:7.279340pt;}
.ws55{word-spacing:7.332474pt;}
.ws47{word-spacing:7.491875pt;}
.ws66{word-spacing:7.598143pt;}
.wsd0{word-spacing:7.693803pt;}
.ws7f{word-spacing:7.704411pt;}
.ws71{word-spacing:7.736310pt;}
.ws52{word-spacing:7.757545pt;}
.ws4d{word-spacing:7.863812pt;}
.wse3{word-spacing:7.991354pt;}
.ws10{word-spacing:8.033249pt;}
.wsef{word-spacing:8.203890pt;}
.ws81{word-spacing:8.288883pt;}
.ws1a{word-spacing:8.289216pt;}
.wsb6{word-spacing:8.395151pt;}
.wsf2{word-spacing:8.416426pt;}
.wsae{word-spacing:8.448285pt;}
.ws65{word-spacing:8.501419pt;}
.wsc5{word-spacing:8.554553pt;}
.wsb{word-spacing:8.607073pt;}
.wsac{word-spacing:8.798990pt;}
.ws4c{word-spacing:8.820222pt;}
.wsba{word-spacing:8.969019pt;}
.wsb9{word-spacing:9.011526pt;}
.ws0{word-spacing:9.032533pt;}
.wsa6{word-spacing:9.139025pt;}
.ws2f{word-spacing:9.192528pt;}
.ws87{word-spacing:9.202786pt;}
.ws4f{word-spacing:9.245293pt;}
.ws3e{word-spacing:9.351936pt;}
.ws28{word-spacing:9.458208pt;}
.wsc9{word-spacing:9.510962pt;}
.ws16{word-spacing:9.511025pt;}
.wsf3{word-spacing:9.521613pt;}
.ws6c{word-spacing:9.617230pt;}
.ws67{word-spacing:9.618126pt;}
.ws6b{word-spacing:9.623230pt;}
.wsd1{word-spacing:9.776656pt;}
.wsa7{word-spacing:9.829765pt;}
.ws3d{word-spacing:9.830160pt;}
.ws5d{word-spacing:9.936033pt;}
.wsb0{word-spacing:9.989167pt;}
.wsf1{word-spacing:10.031699pt;}
.wsb8{word-spacing:10.042301pt;}
.ws24{word-spacing:10.255089pt;}
.ws84{word-spacing:10.292421pt;}
.ws85{word-spacing:10.295230pt;}
.ws86{word-spacing:10.307970pt;}
.ws12{word-spacing:10.424613pt;}
.wse8{word-spacing:10.499278pt;}
.ws97{word-spacing:10.626773pt;}
.ws26{word-spacing:10.627200pt;}
.wsd3{word-spacing:10.711814pt;}
.ws2b{word-spacing:10.839638pt;}
.ws1d{word-spacing:10.945750pt;}
.wsf9{word-spacing:10.966858pt;}
.wsc1{word-spacing:11.104978pt;}
.wsfc{word-spacing:11.136886pt;}
.ws46{word-spacing:11.211246pt;}
.ws9a{word-spacing:11.423781pt;}
.wscc{word-spacing:11.476915pt;}
.wsc{word-spacing:11.667755pt;}
.ws30{word-spacing:11.689814pt;}
.wsc2{word-spacing:12.273923pt;}
.wsb4{word-spacing:12.486459pt;}
.ws53{word-spacing:12.645860pt;}
.ws1c{word-spacing:12.752799pt;}
.wsa{word-spacing:12.815450pt;}
.ws51{word-spacing:12.964663pt;}
.ws61{word-spacing:13.124065pt;}
.ws20{word-spacing:13.230864pt;}
.ws4b{word-spacing:13.283467pt;}
.wsdc{word-spacing:13.432275pt;}
.wsc8{word-spacing:13.496002pt;}
.wsbb{word-spacing:13.559797pt;}
.ws76{word-spacing:13.687318pt;}
.wsb1{word-spacing:13.708538pt;}
.ws1e{word-spacing:13.709088pt;}
.ws74{word-spacing:13.710137pt;}
.ws72{word-spacing:13.729826pt;}
.ws49{word-spacing:13.867939pt;}
.wsd9{word-spacing:13.942362pt;}
.ws7d{word-spacing:13.974207pt;}
.ws31{word-spacing:13.974715pt;}
.wsa1{word-spacing:14.084931pt;}
.wsa2{word-spacing:14.133609pt;}
.wsbf{word-spacing:14.186742pt;}
.ws3b{word-spacing:14.240448pt;}
.wsdf{word-spacing:14.409941pt;}
.wsf5{word-spacing:14.579970pt;}
.ws4e{word-spacing:14.611813pt;}
.ws64{word-spacing:14.771215pt;}
.wsd6{word-spacing:14.792506pt;}
.wsfd{word-spacing:14.835013pt;}
.ws15{word-spacing:14.878080pt;}
.ws22{word-spacing:14.878186pt;}
.ws6{word-spacing:15.110699pt;}
.wsf8{word-spacing:15.302592pt;}
.wsf7{word-spacing:15.345099pt;}
.ws27{word-spacing:15.356091pt;}
.wsda{word-spacing:15.557635pt;}
.wsea{word-spacing:15.642650pt;}
.ws79{word-spacing:15.887026pt;}
.ws3a{word-spacing:15.887664pt;}
.wsc3{word-spacing:15.940160pt;}
.ws13{word-spacing:15.940800pt;}
.ws9f{word-spacing:16.205829pt;}
.ws3c{word-spacing:16.365888pt;}
.wse5{word-spacing:16.790344pt;}
.ws48{word-spacing:17.215373pt;}
.ws9e{word-spacing:17.640444pt;}
.ws2c{word-spacing:18.491115pt;}
.wse4{word-spacing:18.575646pt;}
.ws21{word-spacing:18.650736pt;}
.ws102{word-spacing:19.000718pt;}
.ws9d{word-spacing:19.234460pt;}
.wscb{word-spacing:19.287594pt;}
.wsf0{word-spacing:19.553312pt;}
.wsd{word-spacing:20.035926pt;}
.wsf4{word-spacing:20.105906pt;}
.ws11{word-spacing:22.283499pt;}
.wsa9{word-spacing:44.561193pt;}
.ws6e{word-spacing:45.195421pt;}
.ws94{word-spacing:45.963183pt;}
.ws90{word-spacing:45.963500pt;}
.ws41{word-spacing:156.852244pt;}
.ws40{word-spacing:160.240069pt;}
.ws6d{word-spacing:506.460312pt;}
._2{margin-left:-7.677473pt;}
._4{margin-left:-4.718091pt;}
._0{margin-left:-3.613013pt;}
._3{margin-left:-2.485333pt;}
._1{margin-left:-1.354880pt;}
._18{width:1.376915pt;}
._7{width:2.656800pt;}
._1e{width:3.730148pt;}
._16{width:4.836061pt;}
._15{width:11.689383pt;}
._20{width:13.897529pt;}
._5{width:15.062832pt;}
._1f{width:16.067513pt;}
._1c{width:17.640444pt;}
._10{width:19.319505pt;}
._8{width:23.328457pt;}
._1d{width:26.567000pt;}
._a{width:29.754794pt;}
._6{width:31.082516pt;}
._9{width:33.070017pt;}
._11{width:34.133282pt;}
._12{width:37.193707pt;}
._1a{width:38.851581pt;}
._19{width:43.610613pt;}
._14{width:44.954603pt;}
._1b{width:48.288179pt;}
._13{width:62.693314pt;}
._17{width:63.827656pt;}
._f{width:148.249143pt;}
._e{width:156.429501pt;}
._c{width:159.817326pt;}
._d{width:174.280959pt;}
._b{width:177.668474pt;}
.fs1e{font-size:19.108667pt;}
.fs1a{font-size:19.385579pt;}
.fs19{font-size:25.377024pt;}
.fs5{font-size:27.204267pt;}
.fsb{font-size:27.233818pt;}
.fs6{font-size:27.414309pt;}
.fs13{font-size:27.481171pt;}
.fs1d{font-size:27.515981pt;}
.fsa{font-size:27.852768pt;}
.fs18{font-size:27.914726pt;}
.fs14{font-size:28.111125pt;}
.fs8{font-size:30.947520pt;}
.fs10{font-size:31.234525pt;}
.fs1b{font-size:31.268160pt;}
.fs16{font-size:31.721280pt;}
.fs15{font-size:31.880533pt;}
.fs9{font-size:34.042272pt;}
.fs12{font-size:34.351507pt;}
.fs11{font-size:34.357926pt;}
.fs1c{font-size:34.394976pt;}
.fs17{font-size:34.893408pt;}
.fse{font-size:37.193600pt;}
.fs4{font-size:42.506667pt;}
.fsc{font-size:42.507200pt;}
.fs7{font-size:42.666667pt;}
.fs3{font-size:47.818667pt;}
.fsd{font-size:53.133867pt;}
.fs2{font-size:53.136000pt;}
.fs1{font-size:58.448000pt;}
.fsf{font-size:72.818967pt;}
.fs0{font-size:90.325333pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:1.479594pt;}
.y4b{bottom:2.637848pt;}
.y65{bottom:3.288174pt;}
.y10f{bottom:3.322242pt;}
.y9d{bottom:3.335171pt;}
.yca{bottom:3.370386pt;}
.y57{bottom:3.466667pt;}
.y8d{bottom:3.893405pt;}
.y48{bottom:10.046565pt;}
.y4a{bottom:11.204820pt;}
.y56{bottom:14.133333pt;}
.y64{bottom:14.356211pt;}
.y9c{bottom:14.366419pt;}
.y10e{bottom:14.504952pt;}
.yc9{bottom:14.715149pt;}
.y9e{bottom:21.722753pt;}
.y66{bottom:21.759975pt;}
.y110{bottom:21.985425pt;}
.yd1{bottom:22.304025pt;}
.y55{bottom:24.800000pt;}
.ycb{bottom:25.200971pt;}
.ya3{bottom:29.828839pt;}
.y115{bottom:29.920893pt;}
.yde{bottom:30.351185pt;}
.yf3{bottom:31.182459pt;}
.yf7{bottom:34.534253pt;}
.ye2{bottom:36.549347pt;}
.y3c{bottom:37.954245pt;}
.y40{bottom:37.967847pt;}
.ycf{bottom:40.642890pt;}
.yaa{bottom:41.405095pt;}
.y54{bottom:43.771067pt;}
.yd2{bottom:44.442835pt;}
.y116{bottom:45.791786pt;}
.ya4{bottom:46.041140pt;}
.ya2{bottom:46.915200pt;}
.y9f{bottom:48.743169pt;}
.y114{bottom:50.159340pt;}
.ya9{bottom:50.261452pt;}
.ydf{bottom:50.478337pt;}
.y67{bottom:50.558362pt;}
.ycc{bottom:51.001166pt;}
.y111{bottom:51.082185pt;}
.yf8{bottom:51.929850pt;}
.ye3{bottom:55.126738pt;}
.yf4{bottom:55.755084pt;}
.y3b{bottom:55.970271pt;}
.y3f{bottom:55.983873pt;}
.ya8{bottom:59.117853pt;}
.y117{bottom:61.662853pt;}
.ya5{bottom:62.253442pt;}
.y6a{bottom:62.539780pt;}
.yd3{bottom:66.581645pt;}
.yf9{bottom:69.325448pt;}
.ye0{bottom:70.605313pt;}
.ye4{bottom:73.704306pt;}
.y3a{bottom:74.999655pt;}
.y3e{bottom:75.013257pt;}
.ya0{bottom:75.763758pt;}
.ycd{bottom:76.801360pt;}
.y118{bottom:77.533746pt;}
.ya6{bottom:78.465743pt;}
.y68{bottom:79.356748pt;}
.y112{bottom:80.178945pt;}
.yf5{bottom:80.327709pt;}
.yfa{bottom:86.721045pt;}
.yd4{bottom:88.720455pt;}
.ye1{bottom:90.732289pt;}
.ye5{bottom:92.281874pt;}
.y119{bottom:93.404812pt;}
.ya7{bottom:94.678045pt;}
.y39{bottom:95.294038pt;}
.y3d{bottom:95.307640pt;}
.y34{bottom:100.740000pt;}
.yce{bottom:102.601555pt;}
.ya1{bottom:102.784347pt;}
.yfb{bottom:104.116466pt;}
.yf6{bottom:104.900158pt;}
.y69{bottom:108.155135pt;}
.y113{bottom:109.275705pt;}
.yd5{bottom:110.859265pt;}
.yd0{bottom:115.980930pt;}
.y33{bottom:116.680000pt;}
.y53{bottom:116.681333pt;}
.y91{bottom:119.535605pt;}
.y179{bottom:122.658667pt;}
.y5a{bottom:125.466404pt;}
.yfe{bottom:126.766332pt;}
.ybc{bottom:128.603356pt;}
.y90{bottom:130.567179pt;}
.y32{bottom:132.621333pt;}
.y178{bottom:134.613333pt;}
.y45{bottom:134.761109pt;}
.y47{bottom:135.295688pt;}
.y59{bottom:136.534441pt;}
.y98{bottom:137.923296pt;}
.yfd{bottom:137.949042pt;}
.ybb{bottom:139.948119pt;}
.y44{bottom:143.328080pt;}
.y46{bottom:143.862659pt;}
.y5b{bottom:143.938205pt;}
.yff{bottom:145.429515pt;}
.y92{bottom:146.029339pt;}
.y177{bottom:146.569333pt;}
.ybd{bottom:147.536995pt;}
.yc7{bottom:147.688993pt;}
.y52{bottom:148.561333pt;}
.y31{bottom:148.965333pt;}
.yef{bottom:151.419768pt;}
.y38{bottom:155.109420pt;}
.yda{bottom:156.552888pt;}
.y176{bottom:158.524000pt;}
.y10a{bottom:161.552160pt;}
.y93{bottom:162.241640pt;}
.y97{bottom:163.115396pt;}
.y5c{bottom:163.137187pt;}
.y51{bottom:164.501333pt;}
.y30{bottom:164.905333pt;}
.y99{bottom:164.943885pt;}
.yc1{bottom:165.875860pt;}
.y109{bottom:167.903505pt;}
.y175{bottom:170.478667pt;}
.y100{bottom:172.707728pt;}
.y103{bottom:173.603430pt;}
.y108{bottom:174.254850pt;}
.y10b{bottom:174.526275pt;}
.y60{bottom:175.369280pt;}
.y37{bottom:175.580630pt;}
.ydb{bottom:176.437725pt;}
.ybe{bottom:177.055408pt;}
.yf0{bottom:178.443435pt;}
.y94{bottom:178.453941pt;}
.y50{bottom:180.441333pt;}
.y107{bottom:180.606195pt;}
.y2f{bottom:180.845333pt;}
.y5d{bottom:182.335997pt;}
.y174{bottom:182.434667pt;}
.y106{bottom:186.957540pt;}
.yc8{bottom:191.890834pt;}
.y9a{bottom:191.964301pt;}
.y105{bottom:193.308885pt;}
.y173{bottom:194.389333pt;}
.y95{bottom:194.666243pt;}
.y36{bottom:195.344530pt;}
.ydc{bottom:196.322561pt;}
.y8b{bottom:196.381333pt;}
.y2e{bottom:196.785333pt;}
.y104{bottom:199.660230pt;}
.y101{bottom:199.985940pt;}
.y63{bottom:200.191770pt;}
.y4f{bottom:200.820000pt;}
.y5e{bottom:201.534978pt;}
.y10c{bottom:203.623035pt;}
.yf1{bottom:205.466925pt;}
.y172{bottom:206.345333pt;}
.ybf{bottom:206.573822pt;}
.y62{bottom:209.056945pt;}
.yc6{bottom:210.790990pt;}
.y96{bottom:210.878544pt;}
.y125{bottom:212.258667pt;}
.y8a{bottom:212.321333pt;}
.yb9{bottom:212.322667pt;}
.y2d{bottom:212.725333pt;}
.ydd{bottom:216.207398pt;}
.yc5{bottom:217.194723pt;}
.y61{bottom:217.922120pt;}
.y171{bottom:218.300000pt;}
.y9b{bottom:218.984890pt;}
.y5f{bottom:220.733960pt;}
.yc4{bottom:223.598897pt;}
.y4e{bottom:226.088000pt;}
.y102{bottom:227.264152pt;}
.y124{bottom:228.198667pt;}
.y89{bottom:228.262667pt;}
.y2c{bottom:228.665333pt;}
.yc3{bottom:230.002630pt;}
.y170{bottom:230.254667pt;}
.yf2{bottom:232.490592pt;}
.y10d{bottom:232.719795pt;}
.y137{bottom:234.982667pt;}
.yc0{bottom:236.092235pt;}
.yb8{bottom:236.178667pt;}
.yc2{bottom:241.213900pt;}
.y4d{bottom:242.028000pt;}
.y16f{bottom:242.210667pt;}
.y123{bottom:244.138667pt;}
.yee{bottom:244.202667pt;}
.y88{bottom:244.406667pt;}
.y2b{bottom:244.606667pt;}
.yb7{bottom:252.118667pt;}
.y16e{bottom:254.165333pt;}
.y122{bottom:260.078667pt;}
.yed{bottom:260.100000pt;}
.y87{bottom:260.346667pt;}
.y2a{bottom:260.546667pt;}
.y136{bottom:263.482667pt;}
.y16d{bottom:266.120000pt;}
.yb6{bottom:268.058667pt;}
.y121{bottom:276.020000pt;}
.yec{bottom:276.040000pt;}
.y86{bottom:276.286667pt;}
.y29{bottom:276.486667pt;}
.y16c{bottom:278.076000pt;}
.y135{bottom:279.422667pt;}
.yb5{bottom:284.000000pt;}
.y4c{bottom:285.089333pt;}
.y16b{bottom:290.030667pt;}
.y120{bottom:291.960000pt;}
.yeb{bottom:291.980000pt;}
.y85{bottom:292.226667pt;}
.y28{bottom:292.426667pt;}
.y134{bottom:295.362667pt;}
.yb4{bottom:299.940000pt;}
.y16a{bottom:301.986667pt;}
.y11f{bottom:307.900000pt;}
.yea{bottom:307.920000pt;}
.y84{bottom:308.166667pt;}
.y27{bottom:308.366667pt;}
.y43{bottom:309.000000pt;}
.y133{bottom:311.302667pt;}
.y169{bottom:313.941333pt;}
.yb3{bottom:315.880000pt;}
.y11e{bottom:323.840000pt;}
.y83{bottom:324.108000pt;}
.y26{bottom:324.308000pt;}
.y168{bottom:325.896000pt;}
.y132{bottom:327.242667pt;}
.ye9{bottom:328.001333pt;}
.yb2{bottom:331.820000pt;}
.y167{bottom:337.852000pt;}
.y11d{bottom:339.717333pt;}
.y82{bottom:340.048000pt;}
.y25{bottom:340.248000pt;}
.y131{bottom:343.184000pt;}
.yb1{bottom:347.760000pt;}
.y166{bottom:349.806667pt;}
.y81{bottom:355.988000pt;}
.y24{bottom:356.188000pt;}
.y130{bottom:359.124000pt;}
.y165{bottom:361.761333pt;}
.yb0{bottom:363.700000pt;}
.ye8{bottom:370.842667pt;}
.y80{bottom:371.928000pt;}
.y23{bottom:372.128000pt;}
.y164{bottom:373.717333pt;}
.yaf{bottom:379.641333pt;}
.y11c{bottom:382.344000pt;}
.ye7{bottom:382.798667pt;}
.y163{bottom:385.672000pt;}
.y22{bottom:388.068000pt;}
.y7f{bottom:388.072000pt;}
.y11b{bottom:394.300000pt;}
.ye6{bottom:394.753333pt;}
.yae{bottom:395.581333pt;}
.y162{bottom:397.628000pt;}
.y12f{bottom:403.198667pt;}
.y21{bottom:404.008000pt;}
.y7e{bottom:404.012000pt;}
.y11a{bottom:406.254667pt;}
.y161{bottom:409.582667pt;}
.y12e{bottom:415.154667pt;}
.yd9{bottom:418.664000pt;}
.y20{bottom:419.949333pt;}
.y7d{bottom:419.953333pt;}
.y160{bottom:421.537333pt;}
.y12d{bottom:427.109333pt;}
.yfc{bottom:430.165333pt;}
.y15f{bottom:433.493333pt;}
.y1f{bottom:435.889333pt;}
.y7c{bottom:435.893333pt;}
.y12c{bottom:439.064000pt;}
.y15e{bottom:445.448000pt;}
.y12b{bottom:451.020000pt;}
.y1e{bottom:451.829333pt;}
.y7b{bottom:451.833333pt;}
.y15d{bottom:457.402667pt;}
.yad{bottom:459.996000pt;}
.y1d{bottom:467.769333pt;}
.y7a{bottom:467.773333pt;}
.y15c{bottom:469.358667pt;}
.yac{bottom:471.950667pt;}
.y15b{bottom:481.313333pt;}
.y79{bottom:483.713333pt;}
.yab{bottom:483.906667pt;}
.y1c{bottom:484.113333pt;}
.y15a{bottom:493.269333pt;}
.y78{bottom:499.654667pt;}
.y1b{bottom:500.053333pt;}
.y159{bottom:505.224000pt;}
.y8f{bottom:507.816000pt;}
.y77{bottom:515.594667pt;}
.y1a{bottom:515.993333pt;}
.y158{bottom:517.178667pt;}
.y157{bottom:529.134667pt;}
.y76{bottom:531.534667pt;}
.y19{bottom:531.934667pt;}
.y156{bottom:541.089333pt;}
.y75{bottom:547.474667pt;}
.y18{bottom:547.874667pt;}
.y155{bottom:553.044000pt;}
.y74{bottom:563.414667pt;}
.y17{bottom:563.814667pt;}
.y154{bottom:565.000000pt;}
.y153{bottom:576.954667pt;}
.y73{bottom:579.354667pt;}
.y16{bottom:579.754667pt;}
.y152{bottom:588.910667pt;}
.y42{bottom:591.542667pt;}
.y72{bottom:595.296000pt;}
.y151{bottom:600.865333pt;}
.y15{bottom:602.302667pt;}
.y41{bottom:603.497333pt;}
.y71{bottom:611.236000pt;}
.y150{bottom:612.820000pt;}
.y14f{bottom:624.776000pt;}
.y70{bottom:627.176000pt;}
.y35{bottom:627.408000pt;}
.y14{bottom:634.334667pt;}
.y14e{bottom:636.730667pt;}
.y6f{bottom:643.116000pt;}
.y13{bottom:647.617333pt;}
.y14d{bottom:648.685333pt;}
.y6e{bottom:659.056000pt;}
.y14c{bottom:660.641333pt;}
.y12{bottom:661.305333pt;}
.y14b{bottom:672.596000pt;}
.y11{bottom:674.588000pt;}
.y6d{bottom:674.996000pt;}
.y14a{bottom:684.550667pt;}
.y10{bottom:687.872000pt;}
.yd8{bottom:690.105333pt;}
.y149{bottom:696.506667pt;}
.yf{bottom:701.156000pt;}
.yd7{bottom:702.060000pt;}
.y12a{bottom:706.785333pt;}
.y148{bottom:708.461333pt;}
.yd6{bottom:714.016000pt;}
.ye{bottom:714.438667pt;}
.y6c{bottom:718.489333pt;}
.y129{bottom:718.740000pt;}
.y147{bottom:720.417333pt;}
.yd{bottom:727.722667pt;}
.y6b{bottom:730.444000pt;}
.y128{bottom:730.694667pt;}
.y146{bottom:732.372000pt;}
.yba{bottom:737.926667pt;}
.yc{bottom:741.006667pt;}
.y127{bottom:742.650667pt;}
.y145{bottom:744.326667pt;}
.yb{bottom:754.289333pt;}
.y58{bottom:754.354667pt;}
.y126{bottom:754.605333pt;}
.y144{bottom:764.053333pt;}
.ya{bottom:767.573333pt;}
.y8e{bottom:775.101333pt;}
.y9{bottom:780.857333pt;}
.y143{bottom:788.960000pt;}
.y8{bottom:794.140000pt;}
.y8c{bottom:799.012000pt;}
.y142{bottom:804.900000pt;}
.y7{bottom:807.424000pt;}
.y6{bottom:820.708000pt;}
.y141{bottom:820.840000pt;}
.y5{bottom:833.990667pt;}
.y140{bottom:836.780000pt;}
.y13f{bottom:852.720000pt;}
.y13e{bottom:868.661333pt;}
.y4{bottom:882.320000pt;}
.y13d{bottom:884.601333pt;}
.y3{bottom:898.956000pt;}
.y13c{bottom:900.541333pt;}
.y13b{bottom:916.481333pt;}
.y13a{bottom:936.606667pt;}
.y2{bottom:940.798667pt;}
.y139{bottom:961.512000pt;}
.y1{bottom:967.365333pt;}
.y138{bottom:977.453333pt;}
.h24{height:14.159523pt;}
.h20{height:14.364714pt;}
.h7{height:18.384133pt;}
.ha{height:19.034740pt;}
.h10{height:20.638901pt;}
.h1a{height:20.830343pt;}
.he{height:22.932112pt;}
.h17{height:23.144783pt;}
.h22{height:23.169707pt;}
.h1d{height:23.505468pt;}
.hf{height:25.225324pt;}
.h19{height:25.454466pt;}
.h18{height:25.459223pt;}
.h23{height:25.486677pt;}
.h1e{height:25.856015pt;}
.h27{height:29.032418pt;}
.h8{height:29.244587pt;}
.h11{height:29.244954pt;}
.h25{height:29.452954pt;}
.h26{height:29.458287pt;}
.hc{height:31.083333pt;}
.h1b{height:31.880400pt;}
.h5{height:33.186155pt;}
.h4{height:33.425248pt;}
.h1f{height:34.665015pt;}
.hb{height:35.893333pt;}
.h12{height:36.556100pt;}
.h3{height:36.557568pt;}
.h13{height:39.850400pt;}
.h2{height:40.212224pt;}
.h15{height:52.469418pt;}
.h1{height:62.143829pt;}
.h14{height:189.598401pt;}
.h6{height:217.740403pt;}
.h16{height:225.541333pt;}
.hd{height:234.255533pt;}
.h21{height:239.288280pt;}
.h1c{height:250.686227pt;}
.h9{height:263.949041pt;}
.h0{height:1056.000000pt;}
.w1{width:267.791982pt;}
.w7{width:334.395160pt;}
.w8{width:334.395600pt;}
.w2{width:334.399875pt;}
.w5{width:334.402542pt;}
.w4{width:334.405147pt;}
.w6{width:334.408400pt;}
.w3{width:693.738667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:6.769770pt;}
.x26{left:8.922545pt;}
.x1c{left:10.638210pt;}
.x1b{left:13.711471pt;}
.x25{left:16.159603pt;}
.x2c{left:18.460023pt;}
.x1a{left:20.158871pt;}
.x22{left:23.037517pt;}
.x18{left:24.822490pt;}
.x20{left:27.696909pt;}
.x2d{left:31.831423pt;}
.x1e{left:47.255408pt;}
.x36{left:48.205080pt;}
.x10{left:54.390115pt;}
.xf{left:55.541516pt;}
.x11{left:57.289178pt;}
.x2b{left:58.431038pt;}
.x21{left:62.271962pt;}
.x9{left:63.771519pt;}
.x6{left:65.285333pt;}
.xa{left:66.879607pt;}
.x17{left:76.227867pt;}
.x5{left:78.569333pt;}
.x2e{left:88.334953pt;}
.x1{left:97.612000pt;}
.x37{left:110.415690pt;}
.x2f{left:129.308273pt;}
.x19{left:144.260575pt;}
.x4{left:145.692000pt;}
.x35{left:147.432000pt;}
.xb{left:149.784609pt;}
.x29{left:178.636109pt;}
.x7{left:180.825333pt;}
.x33{left:183.168363pt;}
.x27{left:185.873384pt;}
.x24{left:188.104074pt;}
.x31{left:190.283623pt;}
.x32{left:192.927063pt;}
.x28{left:194.981772pt;}
.x30{left:197.707283pt;}
.x23{left:199.641381pt;}
.x34{left:206.298463pt;}
.x2a{left:222.916379pt;}
.xe{left:226.031101pt;}
.xd{left:229.807422pt;}
.x13{left:233.337014pt;}
.x38{left:234.348345pt;}
.x12{left:238.826729pt;}
.x2{left:278.662667pt;}
.x3{left:314.872000pt;}
.xc{left:415.970667pt;}
.x3b{left:421.284000pt;}
.x16{left:429.253333pt;}
.x1f{left:438.925333pt;}
.x3c{left:440.316000pt;}
.x8{left:449.444000pt;}
.x15{left:457.549333pt;}
.x3e{left:464.524000pt;}
.x14{left:477.042667pt;}
.x39{left:525.413333pt;}
.x3f{left:542.586667pt;}
.x3a{left:546.149333pt;}
.x40{left:643.356000pt;}
.x41{left:660.513333pt;}
.x3d{left:703.685333pt;}
}




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