
    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_48cb033cb98e3608d36edeca.woff')format("woff");}.ff1{font-family:ff1;line-height:1.197000;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_a9d867e44a09c049bc16ec3a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_ee639f07c8df45755d951311.woff')format("woff");}.ff3{font-family:ff3;line-height:1.213000;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_33b9097a44ff9d8764c3e1cb.woff')format("woff");}.ff4{font-family:ff4;line-height:1.222000;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_562fc620828851659ab7abfe.woff')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_07498346ab20aa8de7b5c7ef.woff')format("woff");}.ff6{font-family:ff6;line-height:1.239000;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_ee6719e6c5f3c7d04e871590.woff')format("woff");}.ff7{font-family:ff7;line-height:1.256000;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_48cb033cb98e3608d36edeca.woff')format("woff");}.ff8{font-family:ff8;line-height:1.197000;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_ee6719e6c5f3c7d04e871590.woff')format("woff");}.ff9{font-family:ff9;line-height:1.256000;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_48cb033cb98e3608d36edeca.woff')format("woff");}.ffa{font-family:ffa;line-height:1.197000;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_ee6719e6c5f3c7d04e871590.woff')format("woff");}.ffb{font-family:ffb;line-height:1.256000;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_b57d3202a2fb7481a117cd8b.woff')format("woff");}.ffc{font-family:ffc;line-height:1.230000;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_301346a5786f708599093faa.woff')format("woff");}.ffd{font-family:ffd;line-height:0.727000;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_a3accf778dc2beed6af3569c.woff')format("woff");}.ffe{font-family:ffe;line-height:0.705000;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_0891b7486ea10c02f80362ff.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_6aaf561d08297cde1b97a4fa.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_2a338ef70bde806a7039350f.woff')format("woff");}.ff11{font-family:ff11;line-height:0.727000;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_1a57f00dac3af4b28bc80f2d.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_b5927fa06f7aef2176fc6a55.woff')format("woff");}.ff13{font-family:ff13;line-height:0.705000;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_2c0b6df8936868fa37ea3872.woff')format("woff");}.ff14{font-family:ff14;line-height:0.680176;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_8a6dd7c1b81e311493d3edc6.woff')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_eb4dac7e52ee89ce40f3a0c8.woff')format("woff");}.ff16{font-family:ff16;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v6{vertical-align:-19.200073px;}
.v2{vertical-align:-14.250000px;}
.v4{vertical-align:-9.491455px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:9.491455px;}
.v3{vertical-align:19.199890px;}
.v1{vertical-align:22.799927px;}
.lse{letter-spacing:-12.000000px;}
.lsf{letter-spacing:-3.552000px;}
.ls1{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.000005px;}
.ls12{letter-spacing:0.000018px;}
.ls2{letter-spacing:0.000073px;}
.lsc{letter-spacing:0.000623px;}
.lsd{letter-spacing:0.007221px;}
.ls7{letter-spacing:0.288000px;}
.ls5{letter-spacing:9.483429px;}
.ls4{letter-spacing:12.603741px;}
.ls9{letter-spacing:12.609692px;}
.ls6{letter-spacing:15.729999px;}
.ls8{letter-spacing:15.759746px;}
.ls11{letter-spacing:30.703807px;}
.ls0{letter-spacing:53.015390px;}
.ls10{letter-spacing:53.015944px;}
.ls3{letter-spacing:146.117990px;}
.lsa{letter-spacing:330.283822px;}
.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;}
}
.ws79{word-spacing:-15.786786px;}
.ws16{word-spacing:-14.250000px;}
.wscc{word-spacing:-13.332000px;}
.ws7f{word-spacing:-12.288000px;}
.ws4{word-spacing:-12.000000px;}
.ws1{word-spacing:-11.799000px;}
.ws3{word-spacing:-11.514000px;}
.wscb{word-spacing:-11.340000px;}
.ws6d{word-spacing:-9.975000px;}
.ws2{word-spacing:-9.408000px;}
.wsbf{word-spacing:-9.216000px;}
.wsdd{word-spacing:-8.448000px;}
.ws73{word-spacing:-8.400000px;}
.wsfa{word-spacing:-8.259300px;}
.ws0{word-spacing:-7.660800px;}
.wsc6{word-spacing:-4.674000px;}
.wsed{word-spacing:-4.368000px;}
.wsb9{word-spacing:-2.964000px;}
.wsc7{word-spacing:-2.850000px;}
.ws47{word-spacing:-2.793000px;}
.ws66{word-spacing:-2.679000px;}
.wsdf{word-spacing:-2.640000px;}
.ws4a{word-spacing:-2.622000px;}
.ws4d{word-spacing:-2.565000px;}
.ws56{word-spacing:-2.451000px;}
.wse9{word-spacing:-2.448000px;}
.ws8f{word-spacing:-2.394000px;}
.wsa6{word-spacing:-2.337000px;}
.ws67{word-spacing:-2.223000px;}
.ws10{word-spacing:-2.109000px;}
.ws14{word-spacing:-2.052000px;}
.wse4{word-spacing:-2.016000px;}
.ws9d{word-spacing:-1.938000px;}
.ws21{word-spacing:-1.824000px;}
.wsee{word-spacing:-1.776000px;}
.ws4c{word-spacing:-1.767000px;}
.wsf0{word-spacing:-1.632000px;}
.ws55{word-spacing:-1.596000px;}
.wsd2{word-spacing:-1.584000px;}
.ws4b{word-spacing:-1.539000px;}
.ws88{word-spacing:-1.536000px;}
.ws96{word-spacing:-1.482000px;}
.wsdc{word-spacing:-1.440000px;}
.wsab{word-spacing:-1.425000px;}
.ws95{word-spacing:-1.368000px;}
.ws33{word-spacing:-1.254000px;}
.ws65{word-spacing:-1.197000px;}
.ws75{word-spacing:-1.140000px;}
.wsa5{word-spacing:-1.104000px;}
.ws43{word-spacing:-1.083000px;}
.ws74{word-spacing:-1.026000px;}
.ws29{word-spacing:-0.969000px;}
.ws9f{word-spacing:-0.912000px;}
.ws76{word-spacing:-0.864000px;}
.ws39{word-spacing:-0.855000px;}
.ws45{word-spacing:-0.798000px;}
.wsf8{word-spacing:-0.768000px;}
.ws97{word-spacing:-0.741000px;}
.ws87{word-spacing:-0.672000px;}
.wse6{word-spacing:-0.576000px;}
.ws94{word-spacing:-0.570000px;}
.wsb4{word-spacing:-0.513000px;}
.ws22{word-spacing:-0.456000px;}
.ws68{word-spacing:-0.399000px;}
.wsec{word-spacing:-0.384000px;}
.ws60{word-spacing:-0.342000px;}
.wsaf{word-spacing:-0.336000px;}
.wsf9{word-spacing:-0.240000px;}
.wsd{word-spacing:-0.228000px;}
.wsc8{word-spacing:-0.192000px;}
.ws58{word-spacing:-0.171000px;}
.wsac{word-spacing:-0.114000px;}
.wseb{word-spacing:-0.096000px;}
.ws77{word-spacing:-0.053798px;}
.wsae{word-spacing:-0.048000px;}
.ws7b{word-spacing:-0.041843px;}
.ws5{word-spacing:0.000000px;}
.ws9b{word-spacing:0.057000px;}
.wsd7{word-spacing:0.144000px;}
.wsb3{word-spacing:0.171000px;}
.wse8{word-spacing:0.192000px;}
.ws1b{word-spacing:0.228000px;}
.wsf6{word-spacing:0.288000px;}
.wsdb{word-spacing:0.336000px;}
.wsa2{word-spacing:0.342000px;}
.wsd1{word-spacing:0.384000px;}
.wsf{word-spacing:0.399000px;}
.wsd5{word-spacing:0.432000px;}
.wsbc{word-spacing:0.513000px;}
.wsf2{word-spacing:0.528000px;}
.wsc5{word-spacing:0.570000px;}
.ws99{word-spacing:0.627000px;}
.ws5f{word-spacing:0.684000px;}
.ws5d{word-spacing:0.741000px;}
.ws2f{word-spacing:0.798000px;}
.ws4e{word-spacing:0.855000px;}
.ws6a{word-spacing:0.912000px;}
.ws50{word-spacing:0.969000px;}
.ws5e{word-spacing:1.140000px;}
.ws1d{word-spacing:1.197000px;}
.wsd6{word-spacing:1.200000px;}
.wsf3{word-spacing:1.248000px;}
.ws25{word-spacing:1.254000px;}
.wsca{word-spacing:1.296000px;}
.ws5a{word-spacing:1.311000px;}
.wsf7{word-spacing:1.392000px;}
.wsa3{word-spacing:1.425000px;}
.ws49{word-spacing:1.482000px;}
.ws38{word-spacing:1.539000px;}
.ws32{word-spacing:1.596000px;}
.wscd{word-spacing:1.632000px;}
.wsc0{word-spacing:1.653000px;}
.ws20{word-spacing:1.710000px;}
.ws8d{word-spacing:1.767000px;}
.wsda{word-spacing:1.776000px;}
.ws1a{word-spacing:1.824000px;}
.ws53{word-spacing:1.881000px;}
.ws84{word-spacing:1.938000px;}
.ws2d{word-spacing:2.052000px;}
.ws46{word-spacing:2.109000px;}
.ws1c{word-spacing:2.223000px;}
.ws40{word-spacing:2.280000px;}
.ws8a{word-spacing:2.337000px;}
.wsde{word-spacing:2.352000px;}
.ws42{word-spacing:2.394000px;}
.wse5{word-spacing:2.448000px;}
.ws11{word-spacing:2.451000px;}
.ws9{word-spacing:2.508000px;}
.ws48{word-spacing:2.565000px;}
.ws2e{word-spacing:2.622000px;}
.ws3b{word-spacing:2.679000px;}
.wsef{word-spacing:2.688000px;}
.wsc4{word-spacing:2.736000px;}
.wsaa{word-spacing:2.793000px;}
.ws17{word-spacing:2.832000px;}
.wsc1{word-spacing:2.850000px;}
.ws3c{word-spacing:2.907000px;}
.wsb8{word-spacing:2.964000px;}
.ws2a{word-spacing:3.021000px;}
.wsf5{word-spacing:3.024000px;}
.ws3a{word-spacing:3.135000px;}
.wsd0{word-spacing:3.168000px;}
.ws51{word-spacing:3.192000px;}
.wsb1{word-spacing:3.249000px;}
.wsa4{word-spacing:3.306000px;}
.ws83{word-spacing:3.363000px;}
.wsb5{word-spacing:3.420000px;}
.wsb2{word-spacing:3.477000px;}
.wsb0{word-spacing:3.534000px;}
.ws8{word-spacing:3.591000px;}
.wsd3{word-spacing:3.648000px;}
.ws5c{word-spacing:3.705000px;}
.wsa0{word-spacing:3.762000px;}
.ws24{word-spacing:3.819000px;}
.ws69{word-spacing:3.876000px;}
.ws8b{word-spacing:3.933000px;}
.wsb6{word-spacing:3.990000px;}
.ws2b{word-spacing:4.047000px;}
.wsd9{word-spacing:4.080000px;}
.ws64{word-spacing:4.104000px;}
.ws9e{word-spacing:4.161000px;}
.ws62{word-spacing:4.218000px;}
.ws15{word-spacing:4.275000px;}
.ws52{word-spacing:4.332000px;}
.ws1f{word-spacing:4.389000px;}
.ws1e{word-spacing:4.446000px;}
.wsb{word-spacing:4.560000px;}
.wsc3{word-spacing:4.674000px;}
.wse3{word-spacing:4.704000px;}
.ws91{word-spacing:4.731000px;}
.ws4f{word-spacing:4.788000px;}
.ws57{word-spacing:4.845000px;}
.ws26{word-spacing:4.959000px;}
.wsce{word-spacing:4.992000px;}
.ws3f{word-spacing:5.016000px;}
.wsea{word-spacing:5.040000px;}
.wsa1{word-spacing:5.073000px;}
.wse{word-spacing:5.130000px;}
.ws13{word-spacing:5.187000px;}
.ws8e{word-spacing:5.244000px;}
.ws23{word-spacing:5.301000px;}
.ws36{word-spacing:5.358000px;}
.wsd8{word-spacing:5.376000px;}
.ws2c{word-spacing:5.472000px;}
.ws63{word-spacing:5.529000px;}
.wsa7{word-spacing:5.643000px;}
.wsc{word-spacing:5.700000px;}
.ws7{word-spacing:5.757000px;}
.ws82{word-spacing:5.814000px;}
.ws44{word-spacing:5.928000px;}
.wsd4{word-spacing:5.952000px;}
.ws30{word-spacing:5.985000px;}
.wsf1{word-spacing:6.048000px;}
.wscf{word-spacing:6.144000px;}
.ws3e{word-spacing:6.213000px;}
.ws54{word-spacing:6.327000px;}
.ws12{word-spacing:6.384000px;}
.wsa8{word-spacing:6.498000px;}
.ws3d{word-spacing:6.612000px;}
.ws85{word-spacing:6.669000px;}
.ws59{word-spacing:6.726000px;}
.ws61{word-spacing:6.783000px;}
.ws6c{word-spacing:6.840000px;}
.wsa{word-spacing:7.011000px;}
.wsf4{word-spacing:7.056000px;}
.ws31{word-spacing:7.182000px;}
.ws41{word-spacing:7.239000px;}
.ws9c{word-spacing:7.296000px;}
.ws80{word-spacing:7.353000px;}
.ws6b{word-spacing:7.410000px;}
.ws37{word-spacing:7.467000px;}
.ws28{word-spacing:7.524000px;}
.ws8c{word-spacing:7.581000px;}
.wsc9{word-spacing:7.584000px;}
.wse7{word-spacing:7.632000px;}
.wsc2{word-spacing:7.752000px;}
.ws81{word-spacing:7.809000px;}
.ws89{word-spacing:7.866000px;}
.wsa9{word-spacing:7.980000px;}
.wsbb{word-spacing:8.037000px;}
.wsbe{word-spacing:8.151000px;}
.wsba{word-spacing:8.265000px;}
.ws90{word-spacing:8.322000px;}
.ws34{word-spacing:8.379000px;}
.ws5b{word-spacing:8.550000px;}
.ws27{word-spacing:8.835000px;}
.ws6{word-spacing:8.949000px;}
.ws19{word-spacing:9.120000px;}
.ws9a{word-spacing:9.348000px;}
.wse0{word-spacing:9.408000px;}
.wsad{word-spacing:10.203000px;}
.wsb7{word-spacing:11.058000px;}
.wse2{word-spacing:12.000000px;}
.ws35{word-spacing:12.426000px;}
.wsbd{word-spacing:13.566000px;}
.ws93{word-spacing:15.555100px;}
.ws7a{word-spacing:15.579954px;}
.ws92{word-spacing:15.758639px;}
.ws78{word-spacing:18.717057px;}
.wse1{word-spacing:18.720000px;}
.ws18{word-spacing:19.668000px;}
.ws6e{word-spacing:44.123412px;}
.ws71{word-spacing:134.117990px;}
.ws7e{word-spacing:141.112845px;}
.ws7d{word-spacing:157.528845px;}
.ws72{word-spacing:454.033279px;}
.ws86{word-spacing:501.429000px;}
.ws6f{word-spacing:502.033279px;}
.ws70{word-spacing:564.049279px;}
.ws7c{word-spacing:680.020174px;}
.ws98{word-spacing:707.768990px;}
._36{margin-left:-66.351607px;}
._23{margin-left:-15.067068px;}
._34{margin-left:-12.059977px;}
._35{margin-left:-11.006476px;}
._f{margin-left:-7.601400px;}
._b{margin-left:-6.037200px;}
._a{margin-left:-4.862100px;}
._3{margin-left:-3.841800px;}
._0{margin-left:-1.872000px;}
._1{width:1.146600px;}
._9{width:2.233503px;}
._5{width:3.300300px;}
._4{width:5.175600px;}
._8{width:6.406800px;}
._7{width:8.088300px;}
._d{width:9.344699px;}
._c{width:10.362600px;}
._2d{width:11.571000px;}
._6{width:16.641612px;}
._2{width:17.780988px;}
._e{width:19.668000px;}
._33{width:34.884000px;}
._22{width:36.366000px;}
._10{width:41.838000px;}
._26{width:54.124161px;}
._37{width:56.256000px;}
._2b{width:70.205012px;}
._29{width:71.296095px;}
._12{width:76.757990px;}
._1a{width:79.441279px;}
._13{width:104.630479px;}
._2f{width:115.195822px;}
._20{width:122.117990px;}
._30{width:137.355060px;}
._14{width:146.117990px;}
._28{width:153.832845px;}
._31{width:169.419060px;}
._25{width:172.169303px;}
._32{width:177.407323px;}
._21{width:184.753279px;}
._27{width:187.896047px;}
._24{width:203.592047px;}
._2a{width:207.436161px;}
._2e{width:212.043060px;}
._2c{width:239.500161px;}
._1b{width:254.019079px;}
._1f{width:269.281279px;}
._17{width:274.081279px;}
._15{width:281.942479px;}
._16{width:296.833279px;}
._1e{width:309.987079px;}
._18{width:342.049279px;}
._1c{width:359.473279px;}
._1d{width:395.235079px;}
._19{width:501.843079px;}
._11{width:524.753179px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:33.600000px;}
.fs3{font-size:39.900000px;}
.fsa{font-size:41.842800px;}
.fs0{font-size:48.000000px;}
.fs9{font-size:53.798400px;}
.fsb{font-size:56.787000px;}
.fs2{font-size:57.000000px;}
.fs6{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs1{font-size:78.000000px;}
.fs4{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.ya2{bottom:2.672241px;}
.y8b{bottom:3.848099px;}
.y27{bottom:33.647400px;}
.y55{bottom:36.141749px;}
.y57{bottom:76.535402px;}
.y128{bottom:77.604898px;}
.y3{bottom:78.661348px;}
.y9f{bottom:80.787449px;}
.yc0{bottom:87.425102px;}
.yae{bottom:90.410402px;}
.y54{bottom:90.425102px;}
.y127{bottom:91.479898px;}
.y9e{bottom:94.662449px;}
.yeb{bottom:97.175102px;}
.ybf{bottom:101.300102px;}
.y126{bottom:105.354904px;}
.y53{bottom:108.425102px;}
.yea{bottom:111.050102px;}
.y9d{bottom:111.486603px;}
.ybe{bottom:115.175102px;}
.y125{bottom:119.229904px;}
.ye9{bottom:124.925102px;}
.y52{bottom:126.425102px;}
.y9c{bottom:128.310905px;}
.ybd{bottom:129.050102px;}
.y124{bottom:133.104904px;}
.y9a{bottom:134.209350px;}
.ye8{bottom:138.800102px;}
.y26{bottom:138.894596px;}
.ybc{bottom:142.925102px;}
.y51{bottom:144.425102px;}
.y9b{bottom:145.135197px;}
.y123{bottom:146.979904px;}
.y99{bottom:148.084350px;}
.ye7{bottom:152.675102px;}
.y25{bottom:156.144596px;}
.y122{bottom:160.854904px;}
.y98{bottom:161.959350px;}
.y50{bottom:162.425102px;}
.ye6{bottom:166.550102px;}
.y121{bottom:174.729904px;}
.ybb{bottom:174.800102px;}
.y97{bottom:178.783653px;}
.y4f{bottom:180.425102px;}
.y120{bottom:188.604904px;}
.yba{bottom:188.675102px;}
.y24{bottom:191.394596px;}
.ye5{bottom:194.300102px;}
.y96{bottom:195.607796px;}
.y4e{bottom:198.425102px;}
.y11f{bottom:202.479904px;}
.yb9{bottom:202.550102px;}
.yb2{bottom:204.575844px;}
.ye4{bottom:208.175102px;}
.y23{bottom:208.644608px;}
.y95{bottom:209.482796px;}
.y93{bottom:215.381400px;}
.y11e{bottom:216.354904px;}
.y4d{bottom:216.425102px;}
.yb1{bottom:218.450844px;}
.ye3{bottom:222.050102px;}
.y22{bottom:225.894608px;}
.y94{bottom:226.307098px;}
.y92{bottom:229.256400px;}
.y11d{bottom:230.229904px;}
.y4c{bottom:234.425102px;}
.ye2{bottom:235.925102px;}
.y91{bottom:243.131400px;}
.y21{bottom:243.144608px;}
.y11c{bottom:244.104904px;}
.ye1{bottom:249.800102px;}
.y4b{bottom:252.425102px;}
.y11b{bottom:257.979904px;}
.y20{bottom:260.394608px;}
.y90{bottom:260.699707px;}
.ye0{bottom:263.675102px;}
.y4a{bottom:270.425102px;}
.y11a{bottom:271.854904px;}
.y58{bottom:273.934959px;}
.ydf{bottom:277.550102px;}
.y8f{bottom:277.707596px;}
.y119{bottom:285.729904px;}
.y1f{bottom:286.148552px;}
.y49{bottom:288.425102px;}
.yde{bottom:291.425102px;}
.y8e{bottom:294.531899px;}
.y118{bottom:299.604904px;}
.ydd{bottom:305.300102px;}
.y48{bottom:306.425102px;}
.y8d{bottom:308.406898px;}
.y117{bottom:313.479904px;}
.ydc{bottom:319.175102px;}
.y1e{bottom:321.397202px;}
.y47{bottom:324.425102px;}
.y116{bottom:327.354904px;}
.ydb{bottom:333.050102px;}
.y1d{bottom:338.647202px;}
.y115{bottom:341.229904px;}
.y46{bottom:342.425102px;}
.yda{bottom:346.925102px;}
.y114{bottom:355.104904px;}
.y1c{bottom:355.897202px;}
.y45{bottom:360.425102px;}
.yd9{bottom:360.800102px;}
.y113{bottom:368.979904px;}
.y1b{bottom:373.147202px;}
.yd8{bottom:374.675102px;}
.y44{bottom:378.425102px;}
.yaf{bottom:381.769958px;}
.y112{bottom:382.854904px;}
.yd7{bottom:388.550079px;}
.y1a{bottom:390.397202px;}
.y43{bottom:396.425079px;}
.y89{bottom:396.635100px;}
.y8a{bottom:396.636017px;}
.y111{bottom:396.729904px;}
.yb0{bottom:398.854935px;}
.y8c{bottom:399.792618px;}
.yd6{bottom:402.425079px;}
.y19{bottom:407.647202px;}
.y110{bottom:410.604904px;}
.y42{bottom:414.425079px;}
.yd5{bottom:416.300079px;}
.yb4{bottom:419.569931px;}
.y10f{bottom:424.479904px;}
.y18{bottom:424.897202px;}
.yd4{bottom:430.175079px;}
.y41{bottom:432.425079px;}
.y10e{bottom:438.354904px;}
.y17{bottom:442.147202px;}
.y84{bottom:443.748734px;}
.yd3{bottom:444.050079px;}
.y82{bottom:449.647339px;}
.y40{bottom:450.425079px;}
.ya1{bottom:451.324493px;}
.ya0{bottom:451.325272px;}
.y10d{bottom:452.229904px;}
.ya3{bottom:453.170105px;}
.yd2{bottom:457.925079px;}
.y16{bottom:459.397202px;}
.y83{bottom:460.573059px;}
.y81{bottom:463.522339px;}
.y10c{bottom:466.104904px;}
.y3f{bottom:468.425079px;}
.yd1{bottom:471.800079px;}
.y15{bottom:476.647202px;}
.y80{bottom:477.397339px;}
.y10b{bottom:479.979904px;}
.y7f{bottom:480.346481px;}
.yd0{bottom:485.675079px;}
.y3e{bottom:486.425079px;}
.y10a{bottom:493.854904px;}
.y14{bottom:493.897202px;}
.y7e{bottom:494.221481px;}
.ycf{bottom:499.550079px;}
.y3d{bottom:504.425079px;}
.y109{bottom:507.729904px;}
.y7d{bottom:511.045807px;}
.y13{bottom:511.147202px;}
.y78{bottom:511.917023px;}
.yce{bottom:513.425079px;}
.y108{bottom:521.604904px;}
.y3c{bottom:522.425079px;}
.y77{bottom:525.792023px;}
.ycd{bottom:527.300079px;}
.y7c{bottom:527.870087px;}
.y12{bottom:528.397202px;}
.y107{bottom:535.479904px;}
.y76{bottom:539.667023px;}
.y3b{bottom:540.425079px;}
.y7b{bottom:544.694229px;}
.y11{bottom:545.647202px;}
.y106{bottom:549.354904px;}
.y75{bottom:553.542023px;}
.y3a{bottom:558.425079px;}
.y7a{bottom:561.518555px;}
.y10{bottom:562.897202px;}
.y105{bottom:563.229904px;}
.yb8{bottom:563.630081px;}
.yb6{bottom:566.150116px;}
.y74{bottom:567.417023px;}
.y39{bottom:576.425079px;}
.y104{bottom:577.104904px;}
.yb7{bottom:577.505081px;}
.y79{bottom:578.342697px;}
.yb5{bottom:580.025116px;}
.yf{bottom:580.147202px;}
.y73{bottom:581.292023px;}
.y103{bottom:590.979904px;}
.y38{bottom:594.425079px;}
.y72{bottom:595.167023px;}
.ye{bottom:597.397202px;}
.y102{bottom:604.854904px;}
.y71{bottom:611.991302px;}
.y37{bottom:612.425079px;}
.yd{bottom:614.647202px;}
.y101{bottom:618.729904px;}
.y70{bottom:625.866302px;}
.ycc{bottom:626.677963px;}
.y36{bottom:630.425079px;}
.yc{bottom:631.897202px;}
.y100{bottom:632.604904px;}
.ycb{bottom:640.552963px;}
.y6f{bottom:642.690445px;}
.yff{bottom:646.479904px;}
.y35{bottom:648.425079px;}
.yb{bottom:649.147202px;}
.yca{bottom:654.427963px;}
.y6e{bottom:656.565445px;}
.yfe{bottom:660.354904px;}
.y134{bottom:661.292084px;}
.y34{bottom:666.425079px;}
.yc9{bottom:668.302963px;}
.y6c{bottom:673.389771px;}
.yfd{bottom:674.229904px;}
.y133{bottom:679.967102px;}
.yc8{bottom:682.177963px;}
.y6d{bottom:684.315445px;}
.y33{bottom:684.425079px;}
.y6b{bottom:687.264771px;}
.yfc{bottom:688.104904px;}
.y2{bottom:689.598312px;}
.y69{bottom:690.214050px;}
.yc7{bottom:696.052963px;}
.y132{bottom:696.542084px;}
.y6a{bottom:701.139771px;}
.yfb{bottom:701.979904px;}
.y32{bottom:702.425079px;}
.y1{bottom:703.473312px;}
.y68{bottom:704.089050px;}
.yc6{bottom:709.927963px;}
.y131{bottom:710.417084px;}
.yfa{bottom:715.854904px;}
.y67{bottom:717.964050px;}
.y31{bottom:720.425079px;}
.yc5{bottom:723.802963px;}
.y130{bottom:729.092102px;}
.yf9{bottom:729.729904px;}
.y66{bottom:731.839050px;}
.y30{bottom:738.425079px;}
.y8{bottom:742.237198px;}
.yf8{bottom:743.604904px;}
.y12f{bottom:745.667084px;}
.y65{bottom:748.663193px;}
.yab{bottom:751.612518px;}
.yc4{bottom:755.676590px;}
.y2f{bottom:756.425079px;}
.yf7{bottom:757.479904px;}
.y7{bottom:759.487198px;}
.y12e{bottom:759.542084px;}
.y64{bottom:762.538193px;}
.yaa{bottom:765.487518px;}
.yc3{bottom:769.551636px;}
.yf6{bottom:771.354858px;}
.y2e{bottom:774.425079px;}
.y63{bottom:776.413239px;}
.y12d{bottom:778.217102px;}
.ya9{bottom:782.311798px;}
.yf5{bottom:785.229858px;}
.y62{bottom:790.288239px;}
.y2d{bottom:792.425079px;}
.yf4{bottom:799.104858px;}
.ya8{bottom:799.135986px;}
.y6{bottom:801.186035px;}
.yc2{bottom:801.425079px;}
.y12c{bottom:802.174072px;}
.y61{bottom:804.163239px;}
.y2c{bottom:810.425079px;}
.yf3{bottom:812.979858px;}
.ya7{bottom:813.010986px;}
.y12b{bottom:816.049072px;}
.y60{bottom:820.987518px;}
.y5{bottom:823.686035px;}
.yf2{bottom:826.854858px;}
.y2b{bottom:828.425079px;}
.ya6{bottom:829.835266px;}
.yc1{bottom:835.925079px;}
.y5f{bottom:837.811798px;}
.yf1{bottom:840.729858px;}
.ya5{bottom:843.710266px;}
.y4{bottom:846.186035px;}
.y2a{bottom:846.425079px;}
.y12a{bottom:848.675079px;}
.yad{bottom:853.925079px;}
.yf0{bottom:854.604858px;}
.y5e{bottom:854.635986px;}
.y5c{bottom:860.534546px;}
.y29{bottom:864.425079px;}
.y129{bottom:865.925079px;}
.yac{bottom:867.800079px;}
.yef{bottom:868.479858px;}
.y5d{bottom:871.460266px;}
.y5b{bottom:874.409546px;}
.y87{bottom:881.675079px;}
.yee{bottom:882.354858px;}
.y56{bottom:882.425079px;}
.y5a{bottom:888.284546px;}
.ya4{bottom:891.977875px;}
.y86{bottom:895.550079px;}
.yed{bottom:896.229858px;}
.y28{bottom:900.425079px;}
.y59{bottom:905.852875px;}
.yb3{bottom:905.944611px;}
.y85{bottom:909.425079px;}
.yec{bottom:910.104858px;}
.y88{bottom:914.690277px;}
.ya{bottom:925.313965px;}
.y9{bottom:939.188965px;}
.h18{height:12.315000px;}
.h14{height:14.938499px;}
.h1c{height:23.346094px;}
.h3{height:33.351562px;}
.h7{height:39.604980px;}
.ha{height:42.117188px;}
.h12{height:42.545984px;}
.h17{height:42.546078px;}
.h16{height:42.546080px;}
.h13{height:42.546167px;}
.h15{height:42.590250px;}
.h2{height:45.456000px;}
.he{height:46.224000px;}
.h1a{height:47.472000px;}
.h8{height:50.014160px;}
.hf{height:50.027344px;}
.h11{height:50.524054px;}
.h19{height:50.524100px;}
.h6{height:54.891000px;}
.h9{height:56.373000px;}
.h10{height:57.780000px;}
.hd{height:58.800000px;}
.h5{height:61.223627px;}
.h1b{height:61.582727px;}
.hc{height:65.274000px;}
.hb{height:72.000000px;}
.h4{height:75.114000px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w3{width:145.768500px;}
.w2{width:248.941498px;}
.w0{width:659.055000px;}
.w1{width:659.250000px;}
.x0{left:0.000000px;}
.x1{left:70.583702px;}
.x13{left:83.745300px;}
.x4{left:87.059097px;}
.x14{left:91.417350px;}
.x5{left:94.862549px;}
.xc{left:151.859402px;}
.x9{left:194.426994px;}
.xe{left:246.013504px;}
.x6{left:248.740196px;}
.xb{left:263.154442px;}
.x7{left:286.591049px;}
.x10{left:342.514961px;}
.xf{left:391.782578px;}
.x11{left:433.114792px;}
.xa{left:443.367737px;}
.x3{left:457.623322px;}
.x8{left:498.284866px;}
.xd{left:499.855362px;}
.x12{left:519.681747px;}
.x2{left:527.540680px;}
@media print{
.v6{vertical-align:-17.066732pt;}
.v2{vertical-align:-12.666667pt;}
.v4{vertical-align:-8.436849pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:8.436849pt;}
.v3{vertical-align:17.066569pt;}
.v1{vertical-align:20.266602pt;}
.lse{letter-spacing:-10.666667pt;}
.lsf{letter-spacing:-3.157333pt;}
.ls1{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.000004pt;}
.ls12{letter-spacing:0.000016pt;}
.ls2{letter-spacing:0.000065pt;}
.lsc{letter-spacing:0.000553pt;}
.lsd{letter-spacing:0.006419pt;}
.ls7{letter-spacing:0.256000pt;}
.ls5{letter-spacing:8.429715pt;}
.ls4{letter-spacing:11.203325pt;}
.ls9{letter-spacing:11.208615pt;}
.ls6{letter-spacing:13.982221pt;}
.ls8{letter-spacing:14.008663pt;}
.ls11{letter-spacing:27.292273pt;}
.ls0{letter-spacing:47.124791pt;}
.ls10{letter-spacing:47.125283pt;}
.ls3{letter-spacing:129.882658pt;}
.lsa{letter-spacing:293.585620pt;}
.ws79{word-spacing:-14.032699pt;}
.ws16{word-spacing:-12.666667pt;}
.wscc{word-spacing:-11.850667pt;}
.ws7f{word-spacing:-10.922667pt;}
.ws4{word-spacing:-10.666667pt;}
.ws1{word-spacing:-10.488000pt;}
.ws3{word-spacing:-10.234667pt;}
.wscb{word-spacing:-10.080000pt;}
.ws6d{word-spacing:-8.866667pt;}
.ws2{word-spacing:-8.362667pt;}
.wsbf{word-spacing:-8.192000pt;}
.wsdd{word-spacing:-7.509333pt;}
.ws73{word-spacing:-7.466667pt;}
.wsfa{word-spacing:-7.341600pt;}
.ws0{word-spacing:-6.809600pt;}
.wsc6{word-spacing:-4.154667pt;}
.wsed{word-spacing:-3.882667pt;}
.wsb9{word-spacing:-2.634667pt;}
.wsc7{word-spacing:-2.533333pt;}
.ws47{word-spacing:-2.482667pt;}
.ws66{word-spacing:-2.381333pt;}
.wsdf{word-spacing:-2.346667pt;}
.ws4a{word-spacing:-2.330667pt;}
.ws4d{word-spacing:-2.280000pt;}
.ws56{word-spacing:-2.178667pt;}
.wse9{word-spacing:-2.176000pt;}
.ws8f{word-spacing:-2.128000pt;}
.wsa6{word-spacing:-2.077333pt;}
.ws67{word-spacing:-1.976000pt;}
.ws10{word-spacing:-1.874667pt;}
.ws14{word-spacing:-1.824000pt;}
.wse4{word-spacing:-1.792000pt;}
.ws9d{word-spacing:-1.722667pt;}
.ws21{word-spacing:-1.621333pt;}
.wsee{word-spacing:-1.578667pt;}
.ws4c{word-spacing:-1.570667pt;}
.wsf0{word-spacing:-1.450667pt;}
.ws55{word-spacing:-1.418667pt;}
.wsd2{word-spacing:-1.408000pt;}
.ws4b{word-spacing:-1.368000pt;}
.ws88{word-spacing:-1.365333pt;}
.ws96{word-spacing:-1.317333pt;}
.wsdc{word-spacing:-1.280000pt;}
.wsab{word-spacing:-1.266667pt;}
.ws95{word-spacing:-1.216000pt;}
.ws33{word-spacing:-1.114667pt;}
.ws65{word-spacing:-1.064000pt;}
.ws75{word-spacing:-1.013333pt;}
.wsa5{word-spacing:-0.981333pt;}
.ws43{word-spacing:-0.962667pt;}
.ws74{word-spacing:-0.912000pt;}
.ws29{word-spacing:-0.861333pt;}
.ws9f{word-spacing:-0.810667pt;}
.ws76{word-spacing:-0.768000pt;}
.ws39{word-spacing:-0.760000pt;}
.ws45{word-spacing:-0.709333pt;}
.wsf8{word-spacing:-0.682667pt;}
.ws97{word-spacing:-0.658667pt;}
.ws87{word-spacing:-0.597333pt;}
.wse6{word-spacing:-0.512000pt;}
.ws94{word-spacing:-0.506667pt;}
.wsb4{word-spacing:-0.456000pt;}
.ws22{word-spacing:-0.405333pt;}
.ws68{word-spacing:-0.354667pt;}
.wsec{word-spacing:-0.341333pt;}
.ws60{word-spacing:-0.304000pt;}
.wsaf{word-spacing:-0.298667pt;}
.wsf9{word-spacing:-0.213333pt;}
.wsd{word-spacing:-0.202667pt;}
.wsc8{word-spacing:-0.170667pt;}
.ws58{word-spacing:-0.152000pt;}
.wsac{word-spacing:-0.101333pt;}
.wseb{word-spacing:-0.085333pt;}
.ws77{word-spacing:-0.047821pt;}
.wsae{word-spacing:-0.042667pt;}
.ws7b{word-spacing:-0.037194pt;}
.ws5{word-spacing:0.000000pt;}
.ws9b{word-spacing:0.050667pt;}
.wsd7{word-spacing:0.128000pt;}
.wsb3{word-spacing:0.152000pt;}
.wse8{word-spacing:0.170667pt;}
.ws1b{word-spacing:0.202667pt;}
.wsf6{word-spacing:0.256000pt;}
.wsdb{word-spacing:0.298667pt;}
.wsa2{word-spacing:0.304000pt;}
.wsd1{word-spacing:0.341333pt;}
.wsf{word-spacing:0.354667pt;}
.wsd5{word-spacing:0.384000pt;}
.wsbc{word-spacing:0.456000pt;}
.wsf2{word-spacing:0.469333pt;}
.wsc5{word-spacing:0.506667pt;}
.ws99{word-spacing:0.557333pt;}
.ws5f{word-spacing:0.608000pt;}
.ws5d{word-spacing:0.658667pt;}
.ws2f{word-spacing:0.709333pt;}
.ws4e{word-spacing:0.760000pt;}
.ws6a{word-spacing:0.810667pt;}
.ws50{word-spacing:0.861333pt;}
.ws5e{word-spacing:1.013333pt;}
.ws1d{word-spacing:1.064000pt;}
.wsd6{word-spacing:1.066667pt;}
.wsf3{word-spacing:1.109333pt;}
.ws25{word-spacing:1.114667pt;}
.wsca{word-spacing:1.152000pt;}
.ws5a{word-spacing:1.165333pt;}
.wsf7{word-spacing:1.237333pt;}
.wsa3{word-spacing:1.266667pt;}
.ws49{word-spacing:1.317333pt;}
.ws38{word-spacing:1.368000pt;}
.ws32{word-spacing:1.418667pt;}
.wscd{word-spacing:1.450667pt;}
.wsc0{word-spacing:1.469333pt;}
.ws20{word-spacing:1.520000pt;}
.ws8d{word-spacing:1.570667pt;}
.wsda{word-spacing:1.578667pt;}
.ws1a{word-spacing:1.621333pt;}
.ws53{word-spacing:1.672000pt;}
.ws84{word-spacing:1.722667pt;}
.ws2d{word-spacing:1.824000pt;}
.ws46{word-spacing:1.874667pt;}
.ws1c{word-spacing:1.976000pt;}
.ws40{word-spacing:2.026667pt;}
.ws8a{word-spacing:2.077333pt;}
.wsde{word-spacing:2.090667pt;}
.ws42{word-spacing:2.128000pt;}
.wse5{word-spacing:2.176000pt;}
.ws11{word-spacing:2.178667pt;}
.ws9{word-spacing:2.229333pt;}
.ws48{word-spacing:2.280000pt;}
.ws2e{word-spacing:2.330667pt;}
.ws3b{word-spacing:2.381333pt;}
.wsef{word-spacing:2.389333pt;}
.wsc4{word-spacing:2.432000pt;}
.wsaa{word-spacing:2.482667pt;}
.ws17{word-spacing:2.517333pt;}
.wsc1{word-spacing:2.533333pt;}
.ws3c{word-spacing:2.584000pt;}
.wsb8{word-spacing:2.634667pt;}
.ws2a{word-spacing:2.685333pt;}
.wsf5{word-spacing:2.688000pt;}
.ws3a{word-spacing:2.786667pt;}
.wsd0{word-spacing:2.816000pt;}
.ws51{word-spacing:2.837333pt;}
.wsb1{word-spacing:2.888000pt;}
.wsa4{word-spacing:2.938667pt;}
.ws83{word-spacing:2.989333pt;}
.wsb5{word-spacing:3.040000pt;}
.wsb2{word-spacing:3.090667pt;}
.wsb0{word-spacing:3.141333pt;}
.ws8{word-spacing:3.192000pt;}
.wsd3{word-spacing:3.242667pt;}
.ws5c{word-spacing:3.293333pt;}
.wsa0{word-spacing:3.344000pt;}
.ws24{word-spacing:3.394667pt;}
.ws69{word-spacing:3.445333pt;}
.ws8b{word-spacing:3.496000pt;}
.wsb6{word-spacing:3.546667pt;}
.ws2b{word-spacing:3.597333pt;}
.wsd9{word-spacing:3.626667pt;}
.ws64{word-spacing:3.648000pt;}
.ws9e{word-spacing:3.698667pt;}
.ws62{word-spacing:3.749333pt;}
.ws15{word-spacing:3.800000pt;}
.ws52{word-spacing:3.850667pt;}
.ws1f{word-spacing:3.901333pt;}
.ws1e{word-spacing:3.952000pt;}
.wsb{word-spacing:4.053333pt;}
.wsc3{word-spacing:4.154667pt;}
.wse3{word-spacing:4.181333pt;}
.ws91{word-spacing:4.205333pt;}
.ws4f{word-spacing:4.256000pt;}
.ws57{word-spacing:4.306667pt;}
.ws26{word-spacing:4.408000pt;}
.wsce{word-spacing:4.437333pt;}
.ws3f{word-spacing:4.458667pt;}
.wsea{word-spacing:4.480000pt;}
.wsa1{word-spacing:4.509333pt;}
.wse{word-spacing:4.560000pt;}
.ws13{word-spacing:4.610667pt;}
.ws8e{word-spacing:4.661333pt;}
.ws23{word-spacing:4.712000pt;}
.ws36{word-spacing:4.762667pt;}
.wsd8{word-spacing:4.778667pt;}
.ws2c{word-spacing:4.864000pt;}
.ws63{word-spacing:4.914667pt;}
.wsa7{word-spacing:5.016000pt;}
.wsc{word-spacing:5.066667pt;}
.ws7{word-spacing:5.117333pt;}
.ws82{word-spacing:5.168000pt;}
.ws44{word-spacing:5.269333pt;}
.wsd4{word-spacing:5.290667pt;}
.ws30{word-spacing:5.320000pt;}
.wsf1{word-spacing:5.376000pt;}
.wscf{word-spacing:5.461333pt;}
.ws3e{word-spacing:5.522667pt;}
.ws54{word-spacing:5.624000pt;}
.ws12{word-spacing:5.674667pt;}
.wsa8{word-spacing:5.776000pt;}
.ws3d{word-spacing:5.877333pt;}
.ws85{word-spacing:5.928000pt;}
.ws59{word-spacing:5.978667pt;}
.ws61{word-spacing:6.029333pt;}
.ws6c{word-spacing:6.080000pt;}
.wsa{word-spacing:6.232000pt;}
.wsf4{word-spacing:6.272000pt;}
.ws31{word-spacing:6.384000pt;}
.ws41{word-spacing:6.434667pt;}
.ws9c{word-spacing:6.485333pt;}
.ws80{word-spacing:6.536000pt;}
.ws6b{word-spacing:6.586667pt;}
.ws37{word-spacing:6.637333pt;}
.ws28{word-spacing:6.688000pt;}
.ws8c{word-spacing:6.738667pt;}
.wsc9{word-spacing:6.741333pt;}
.wse7{word-spacing:6.784000pt;}
.wsc2{word-spacing:6.890667pt;}
.ws81{word-spacing:6.941333pt;}
.ws89{word-spacing:6.992000pt;}
.wsa9{word-spacing:7.093333pt;}
.wsbb{word-spacing:7.144000pt;}
.wsbe{word-spacing:7.245333pt;}
.wsba{word-spacing:7.346667pt;}
.ws90{word-spacing:7.397333pt;}
.ws34{word-spacing:7.448000pt;}
.ws5b{word-spacing:7.600000pt;}
.ws27{word-spacing:7.853333pt;}
.ws6{word-spacing:7.954667pt;}
.ws19{word-spacing:8.106667pt;}
.ws9a{word-spacing:8.309333pt;}
.wse0{word-spacing:8.362667pt;}
.wsad{word-spacing:9.069333pt;}
.wsb7{word-spacing:9.829333pt;}
.wse2{word-spacing:10.666667pt;}
.ws35{word-spacing:11.045333pt;}
.wsbd{word-spacing:12.058667pt;}
.ws93{word-spacing:13.826756pt;}
.ws7a{word-spacing:13.848848pt;}
.ws92{word-spacing:14.007679pt;}
.ws78{word-spacing:16.637384pt;}
.wse1{word-spacing:16.640000pt;}
.ws18{word-spacing:17.482667pt;}
.ws6e{word-spacing:39.220811pt;}
.ws71{word-spacing:119.215991pt;}
.ws7e{word-spacing:125.433640pt;}
.ws7d{word-spacing:140.025640pt;}
.ws72{word-spacing:403.585137pt;}
.ws86{word-spacing:445.714667pt;}
.ws6f{word-spacing:446.251803pt;}
.ws70{word-spacing:501.377137pt;}
.ws7c{word-spacing:604.462377pt;}
.ws98{word-spacing:629.127991pt;}
._36{margin-left:-58.979206pt;}
._23{margin-left:-13.392949pt;}
._34{margin-left:-10.719980pt;}
._35{margin-left:-9.783534pt;}
._f{margin-left:-6.756800pt;}
._b{margin-left:-5.366400pt;}
._a{margin-left:-4.321867pt;}
._3{margin-left:-3.414933pt;}
._0{margin-left:-1.664000pt;}
._1{width:1.019200pt;}
._9{width:1.985336pt;}
._5{width:2.933600pt;}
._4{width:4.600533pt;}
._8{width:5.694933pt;}
._7{width:7.189600pt;}
._d{width:8.306399pt;}
._c{width:9.211200pt;}
._2d{width:10.285333pt;}
._6{width:14.792544pt;}
._2{width:15.805323pt;}
._e{width:17.482667pt;}
._33{width:31.008000pt;}
._22{width:32.325333pt;}
._10{width:37.189333pt;}
._26{width:48.110365pt;}
._37{width:50.005333pt;}
._2b{width:62.404455pt;}
._29{width:63.374307pt;}
._12{width:68.229324pt;}
._1a{width:70.614470pt;}
._13{width:93.004870pt;}
._2f{width:102.396286pt;}
._20{width:108.549324pt;}
._30{width:122.093387pt;}
._14{width:129.882658pt;}
._28{width:136.740307pt;}
._31{width:150.594720pt;}
._25{width:153.039380pt;}
._32{width:157.695398pt;}
._21{width:164.225137pt;}
._27{width:167.018708pt;}
._24{width:180.970708pt;}
._2a{width:184.387698pt;}
._2e{width:188.482720pt;}
._2c{width:212.889032pt;}
._1b{width:225.794737pt;}
._1f{width:239.361137pt;}
._17{width:243.627803pt;}
._15{width:250.615537pt;}
._16{width:263.851803pt;}
._1e{width:275.544070pt;}
._18{width:304.043803pt;}
._1c{width:319.531803pt;}
._1d{width:351.320070pt;}
._19{width:446.082737pt;}
._11{width:466.447270pt;}
.fs8{font-size:29.866667pt;}
.fs3{font-size:35.466667pt;}
.fsa{font-size:37.193600pt;}
.fs0{font-size:42.666667pt;}
.fs9{font-size:47.820800pt;}
.fsb{font-size:50.477333pt;}
.fs2{font-size:50.666667pt;}
.fs6{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs1{font-size:69.333333pt;}
.fs4{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.ya2{bottom:2.375326pt;}
.y8b{bottom:3.420532pt;}
.y27{bottom:29.908800pt;}
.y55{bottom:32.125999pt;}
.y57{bottom:68.031469pt;}
.y128{bottom:68.982132pt;}
.y3{bottom:69.921199pt;}
.y9f{bottom:71.811066pt;}
.yc0{bottom:77.711202pt;}
.yae{bottom:80.364802pt;}
.y54{bottom:80.377869pt;}
.y127{bottom:81.315465pt;}
.y9e{bottom:84.144399pt;}
.yeb{bottom:86.377869pt;}
.ybf{bottom:90.044535pt;}
.y126{bottom:93.648804pt;}
.y53{bottom:96.377869pt;}
.yea{bottom:98.711202pt;}
.y9d{bottom:99.099202pt;}
.ybe{bottom:102.377869pt;}
.y125{bottom:105.982137pt;}
.ye9{bottom:111.044535pt;}
.y52{bottom:112.377869pt;}
.y9c{bottom:114.054138pt;}
.ybd{bottom:114.711202pt;}
.y124{bottom:118.315470pt;}
.y9a{bottom:119.297200pt;}
.ye8{bottom:123.377869pt;}
.y26{bottom:123.461863pt;}
.ybc{bottom:127.044535pt;}
.y51{bottom:128.377869pt;}
.y9b{bottom:129.009064pt;}
.y123{bottom:130.648804pt;}
.y99{bottom:131.630533pt;}
.ye7{bottom:135.711202pt;}
.y25{bottom:138.795197pt;}
.y122{bottom:142.982137pt;}
.y98{bottom:143.963867pt;}
.y50{bottom:144.377869pt;}
.ye6{bottom:148.044535pt;}
.y121{bottom:155.315470pt;}
.ybb{bottom:155.377869pt;}
.y97{bottom:158.918803pt;}
.y4f{bottom:160.377869pt;}
.y120{bottom:167.648804pt;}
.yba{bottom:167.711202pt;}
.y24{bottom:170.128530pt;}
.ye5{bottom:172.711202pt;}
.y96{bottom:173.873596pt;}
.y4e{bottom:176.377869pt;}
.y11f{bottom:179.982137pt;}
.yb9{bottom:180.044535pt;}
.yb2{bottom:181.845194pt;}
.ye4{bottom:185.044535pt;}
.y23{bottom:185.461873pt;}
.y95{bottom:186.206930pt;}
.y93{bottom:191.450133pt;}
.y11e{bottom:192.315470pt;}
.y4d{bottom:192.377869pt;}
.yb1{bottom:194.178528pt;}
.ye3{bottom:197.377869pt;}
.y22{bottom:200.795207pt;}
.y94{bottom:201.161865pt;}
.y92{bottom:203.783467pt;}
.y11d{bottom:204.648804pt;}
.y4c{bottom:208.377869pt;}
.ye2{bottom:209.711202pt;}
.y91{bottom:216.116800pt;}
.y21{bottom:216.128540pt;}
.y11c{bottom:216.982137pt;}
.ye1{bottom:222.044535pt;}
.y4b{bottom:224.377869pt;}
.y11b{bottom:229.315470pt;}
.y20{bottom:231.461873pt;}
.y90{bottom:231.733073pt;}
.ye0{bottom:234.377869pt;}
.y4a{bottom:240.377869pt;}
.y11a{bottom:241.648804pt;}
.y58{bottom:243.497742pt;}
.ydf{bottom:246.711202pt;}
.y8f{bottom:246.851196pt;}
.y119{bottom:253.982137pt;}
.y1f{bottom:254.354268pt;}
.y49{bottom:256.377869pt;}
.yde{bottom:259.044535pt;}
.y8e{bottom:261.806132pt;}
.y118{bottom:266.315470pt;}
.ydd{bottom:271.377869pt;}
.y48{bottom:272.377869pt;}
.y8d{bottom:274.139465pt;}
.y117{bottom:278.648804pt;}
.ydc{bottom:283.711202pt;}
.y1e{bottom:285.686401pt;}
.y47{bottom:288.377869pt;}
.y116{bottom:290.982137pt;}
.ydb{bottom:296.044535pt;}
.y1d{bottom:301.019735pt;}
.y115{bottom:303.315470pt;}
.y46{bottom:304.377869pt;}
.yda{bottom:308.377869pt;}
.y114{bottom:315.648804pt;}
.y1c{bottom:316.353068pt;}
.y45{bottom:320.377869pt;}
.yd9{bottom:320.711202pt;}
.y113{bottom:327.982137pt;}
.y1b{bottom:331.686401pt;}
.yd8{bottom:333.044535pt;}
.y44{bottom:336.377869pt;}
.yaf{bottom:339.351074pt;}
.y112{bottom:340.315470pt;}
.yd7{bottom:345.377848pt;}
.y1a{bottom:347.019735pt;}
.y43{bottom:352.377848pt;}
.y89{bottom:352.564533pt;}
.y8a{bottom:352.565348pt;}
.y111{bottom:352.648804pt;}
.yb0{bottom:354.537720pt;}
.y8c{bottom:355.371216pt;}
.yd6{bottom:357.711182pt;}
.y19{bottom:362.353068pt;}
.y110{bottom:364.982137pt;}
.y42{bottom:368.377848pt;}
.yd5{bottom:370.044515pt;}
.yb4{bottom:372.951050pt;}
.y10f{bottom:377.315470pt;}
.y18{bottom:377.686401pt;}
.yd4{bottom:382.377848pt;}
.y41{bottom:384.377848pt;}
.y10e{bottom:389.648804pt;}
.y17{bottom:393.019735pt;}
.y84{bottom:394.443319pt;}
.yd3{bottom:394.711182pt;}
.y82{bottom:399.686523pt;}
.y40{bottom:400.377848pt;}
.ya1{bottom:401.177327pt;}
.ya0{bottom:401.178019pt;}
.y10d{bottom:401.982137pt;}
.ya3{bottom:402.817871pt;}
.yd2{bottom:407.044515pt;}
.y16{bottom:408.353068pt;}
.y83{bottom:409.398275pt;}
.y81{bottom:412.019857pt;}
.y10c{bottom:414.315470pt;}
.y3f{bottom:416.377848pt;}
.yd1{bottom:419.377848pt;}
.y15{bottom:423.686401pt;}
.y80{bottom:424.353190pt;}
.y10b{bottom:426.648804pt;}
.y7f{bottom:426.974650pt;}
.yd0{bottom:431.711182pt;}
.y3e{bottom:432.377848pt;}
.y10a{bottom:438.982137pt;}
.y14{bottom:439.019735pt;}
.y7e{bottom:439.307983pt;}
.ycf{bottom:444.044515pt;}
.y3d{bottom:448.377848pt;}
.y109{bottom:451.315470pt;}
.y7d{bottom:454.262939pt;}
.y13{bottom:454.353068pt;}
.y78{bottom:455.037354pt;}
.yce{bottom:456.377848pt;}
.y108{bottom:463.648804pt;}
.y3c{bottom:464.377848pt;}
.y77{bottom:467.370687pt;}
.ycd{bottom:468.711182pt;}
.y7c{bottom:469.217855pt;}
.y12{bottom:469.686401pt;}
.y107{bottom:475.982137pt;}
.y76{bottom:479.704020pt;}
.y3b{bottom:480.377848pt;}
.y7b{bottom:484.172648pt;}
.y11{bottom:485.019735pt;}
.y106{bottom:488.315470pt;}
.y75{bottom:492.037354pt;}
.y3a{bottom:496.377848pt;}
.y7a{bottom:499.127604pt;}
.y10{bottom:500.353068pt;}
.y105{bottom:500.648804pt;}
.yb8{bottom:501.004517pt;}
.yb6{bottom:503.244548pt;}
.y74{bottom:504.370687pt;}
.y39{bottom:512.377848pt;}
.y104{bottom:512.982137pt;}
.yb7{bottom:513.337850pt;}
.y79{bottom:514.082397pt;}
.yb5{bottom:515.577881pt;}
.yf{bottom:515.686401pt;}
.y73{bottom:516.704020pt;}
.y103{bottom:525.315470pt;}
.y38{bottom:528.377848pt;}
.y72{bottom:529.037354pt;}
.ye{bottom:531.019735pt;}
.y102{bottom:537.648804pt;}
.y71{bottom:543.992269pt;}
.y37{bottom:544.377848pt;}
.yd{bottom:546.353068pt;}
.y101{bottom:549.982137pt;}
.y70{bottom:556.325602pt;}
.ycc{bottom:557.047078pt;}
.y36{bottom:560.377848pt;}
.yc{bottom:561.686401pt;}
.y100{bottom:562.315470pt;}
.ycb{bottom:569.380412pt;}
.y6f{bottom:571.280396pt;}
.yff{bottom:574.648804pt;}
.y35{bottom:576.377848pt;}
.yb{bottom:577.019735pt;}
.yca{bottom:581.713745pt;}
.y6e{bottom:583.613729pt;}
.yfe{bottom:586.982137pt;}
.y134{bottom:587.815186pt;}
.y34{bottom:592.377848pt;}
.yc9{bottom:594.047078pt;}
.y6c{bottom:598.568685pt;}
.yfd{bottom:599.315470pt;}
.y133{bottom:604.415202pt;}
.yc8{bottom:606.380412pt;}
.y6d{bottom:608.280396pt;}
.y33{bottom:608.377848pt;}
.y6b{bottom:610.902018pt;}
.yfc{bottom:611.648804pt;}
.y2{bottom:612.976278pt;}
.y69{bottom:613.523600pt;}
.yc7{bottom:618.713745pt;}
.y132{bottom:619.148519pt;}
.y6a{bottom:623.235352pt;}
.yfb{bottom:623.982137pt;}
.y32{bottom:624.377848pt;}
.y1{bottom:625.309611pt;}
.y68{bottom:625.856933pt;}
.yc6{bottom:631.047078pt;}
.y131{bottom:631.481852pt;}
.yfa{bottom:636.315470pt;}
.y67{bottom:638.190267pt;}
.y31{bottom:640.377848pt;}
.yc5{bottom:643.380412pt;}
.y130{bottom:648.081868pt;}
.yf9{bottom:648.648804pt;}
.y66{bottom:650.523600pt;}
.y30{bottom:656.377848pt;}
.y8{bottom:659.766398pt;}
.yf8{bottom:660.982137pt;}
.y12f{bottom:662.815186pt;}
.y65{bottom:665.478394pt;}
.yab{bottom:668.100016pt;}
.yc4{bottom:671.712524pt;}
.y2f{bottom:672.377848pt;}
.yf7{bottom:673.315470pt;}
.y7{bottom:675.099731pt;}
.y12e{bottom:675.148519pt;}
.y64{bottom:677.811727pt;}
.yaa{bottom:680.433350pt;}
.yc3{bottom:684.045898pt;}
.yf6{bottom:685.648763pt;}
.y2e{bottom:688.377848pt;}
.y63{bottom:690.145101pt;}
.y12d{bottom:691.748535pt;}
.ya9{bottom:695.388265pt;}
.yf5{bottom:697.982096pt;}
.y62{bottom:702.478434pt;}
.y2d{bottom:704.377848pt;}
.yf4{bottom:710.315430pt;}
.ya8{bottom:710.343099pt;}
.y6{bottom:712.165365pt;}
.yc2{bottom:712.377848pt;}
.y12c{bottom:713.043620pt;}
.y61{bottom:714.811768pt;}
.y2c{bottom:720.377848pt;}
.yf3{bottom:722.648763pt;}
.ya7{bottom:722.676432pt;}
.y12b{bottom:725.376953pt;}
.y60{bottom:729.766683pt;}
.y5{bottom:732.165365pt;}
.yf2{bottom:734.982096pt;}
.y2b{bottom:736.377848pt;}
.ya6{bottom:737.631348pt;}
.yc1{bottom:743.044515pt;}
.y5f{bottom:744.721598pt;}
.yf1{bottom:747.315430pt;}
.ya5{bottom:749.964681pt;}
.y4{bottom:752.165365pt;}
.y2a{bottom:752.377848pt;}
.y12a{bottom:754.377848pt;}
.yad{bottom:759.044515pt;}
.yf0{bottom:759.648763pt;}
.y5e{bottom:759.676432pt;}
.y5c{bottom:764.919596pt;}
.y29{bottom:768.377848pt;}
.y129{bottom:769.711182pt;}
.yac{bottom:771.377848pt;}
.yef{bottom:771.982096pt;}
.y5d{bottom:774.631348pt;}
.y5b{bottom:777.252930pt;}
.y87{bottom:783.711182pt;}
.yee{bottom:784.315430pt;}
.y56{bottom:784.377848pt;}
.y5a{bottom:789.586263pt;}
.ya4{bottom:792.869222pt;}
.y86{bottom:796.044515pt;}
.yed{bottom:796.648763pt;}
.y28{bottom:800.377848pt;}
.y59{bottom:805.202555pt;}
.yb3{bottom:805.284098pt;}
.y85{bottom:808.377848pt;}
.yec{bottom:808.982096pt;}
.y88{bottom:813.058024pt;}
.ya{bottom:822.501302pt;}
.y9{bottom:834.834635pt;}
.h18{height:10.946667pt;}
.h14{height:13.278666pt;}
.h1c{height:20.752083pt;}
.h3{height:29.645833pt;}
.h7{height:35.204427pt;}
.ha{height:37.437500pt;}
.h12{height:37.818652pt;}
.h17{height:37.818736pt;}
.h16{height:37.818737pt;}
.h13{height:37.818815pt;}
.h15{height:37.858000pt;}
.h2{height:40.405333pt;}
.he{height:41.088000pt;}
.h1a{height:42.197333pt;}
.h8{height:44.457031pt;}
.hf{height:44.468750pt;}
.h11{height:44.910270pt;}
.h19{height:44.910311pt;}
.h6{height:48.792000pt;}
.h9{height:50.109333pt;}
.h10{height:51.360000pt;}
.hd{height:52.266667pt;}
.h5{height:54.421002pt;}
.h1b{height:54.740202pt;}
.hc{height:58.021333pt;}
.hb{height:64.000000pt;}
.h4{height:66.768000pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w3{width:129.572000pt;}
.w2{width:221.281331pt;}
.w0{width:585.826667pt;}
.w1{width:586.000000pt;}
.x0{left:0.000000pt;}
.x1{left:62.741069pt;}
.x13{left:74.440267pt;}
.x4{left:77.385864pt;}
.x14{left:81.259867pt;}
.x5{left:84.322266pt;}
.xc{left:134.986135pt;}
.x9{left:172.823995pt;}
.xe{left:218.678670pt;}
.x6{left:221.102397pt;}
.xb{left:233.915059pt;}
.x7{left:254.747599pt;}
.x10{left:304.457743pt;}
.xf{left:348.251180pt;}
.x11{left:384.990926pt;}
.xa{left:394.104655pt;}
.x3{left:406.776286pt;}
.x8{left:442.919881pt;}
.xd{left:444.315877pt;}
.x12{left:461.939331pt;}
.x2{left:468.925049pt;}
}




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