
    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_cc9c7ed41f444ad94e4f487b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_152ea87e0abd033dba518536.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.949000;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_06c2f60ab37db78322716a55.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.026000;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_0b63afc968a111b02d133217.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.032000;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_267297fa3962e8988c7caeb0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.575000;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;}
.m2{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);}
.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);}
.v2{vertical-align:-21.978000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.050000px;}
.v3{vertical-align:34.485000px;}
.ls29{letter-spacing:-2.679000px;}
.ls2c{letter-spacing:-1.539000px;}
.ls22{letter-spacing:-1.425000px;}
.ls20{letter-spacing:-1.368000px;}
.ls21{letter-spacing:-1.311000px;}
.ls28{letter-spacing:-1.254000px;}
.ls25{letter-spacing:-1.197000px;}
.ls26{letter-spacing:-1.140000px;}
.ls23{letter-spacing:-1.083000px;}
.ls15{letter-spacing:-0.969000px;}
.ls27{letter-spacing:-0.855000px;}
.ls1f{letter-spacing:-0.741000px;}
.ls1c{letter-spacing:-0.684000px;}
.ls1e{letter-spacing:-0.627000px;}
.lse{letter-spacing:-0.577170px;}
.ls18{letter-spacing:-0.570000px;}
.lsc{letter-spacing:-0.538692px;}
.ls17{letter-spacing:-0.513000px;}
.ls2a{letter-spacing:-0.456000px;}
.ls2d{letter-spacing:-0.399000px;}
.ls11{letter-spacing:-0.396000px;}
.ls14{letter-spacing:-0.342000px;}
.lsa{letter-spacing:-0.285000px;}
.ls2f{letter-spacing:-0.264000px;}
.lsf{letter-spacing:-0.255000px;}
.ls9{letter-spacing:-0.228000px;}
.lsd{letter-spacing:-0.204000px;}
.ls8{letter-spacing:-0.198000px;}
.ls1a{letter-spacing:-0.171000px;}
.ls10{letter-spacing:-0.115434px;}
.ls2e{letter-spacing:-0.114000px;}
.ls0{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.171000px;}
.ls30{letter-spacing:0.228000px;}
.lsb{letter-spacing:0.285000px;}
.ls2b{letter-spacing:0.342000px;}
.ls12{letter-spacing:0.357000px;}
.ls16{letter-spacing:0.399000px;}
.ls3{letter-spacing:0.510000px;}
.ls2{letter-spacing:0.570000px;}
.ls1b{letter-spacing:0.741000px;}
.ls24{letter-spacing:0.798000px;}
.ls6{letter-spacing:1.080000px;}
.ls19{letter-spacing:1.197000px;}
.ls1{letter-spacing:1.500000px;}
.ls7{letter-spacing:1.653000px;}
.ls31{letter-spacing:2.109000px;}
.ls5{letter-spacing:2.280000px;}
.ls4{letter-spacing:3.750000px;}
.ls1d{letter-spacing:141.247800px;}
.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;}
}
.ws1{word-spacing:-17.025000px;}
.ws72{word-spacing:-12.540000px;}
.ws2{word-spacing:-12.483000px;}
.ws5{word-spacing:-12.342000px;}
.ws82{word-spacing:-12.144000px;}
.ws3{word-spacing:-11.514000px;}
.wse2{word-spacing:-11.418000px;}
.ws4{word-spacing:-11.400000px;}
.wse4{word-spacing:-11.286000px;}
.ws58{word-spacing:-11.115000px;}
.wse3{word-spacing:-11.058000px;}
.ws92{word-spacing:-11.001000px;}
.wse5{word-spacing:-10.944000px;}
.ws9e{word-spacing:-10.830000px;}
.wse1{word-spacing:-10.716000px;}
.ws1e{word-spacing:-10.602000px;}
.ws3f{word-spacing:-10.545000px;}
.ws9f{word-spacing:-10.488000px;}
.wsa9{word-spacing:-10.431000px;}
.wsb6{word-spacing:-10.203000px;}
.ws74{word-spacing:-10.200000px;}
.wsb7{word-spacing:-10.089000px;}
.ws83{word-spacing:-10.047000px;}
.ws5a{word-spacing:-9.486000px;}
.ws73{word-spacing:-9.435000px;}
.ws6{word-spacing:-7.310820px;}
.ws59{word-spacing:-6.772128px;}
.ws71{word-spacing:-6.733650px;}
.wsb4{word-spacing:-3.819000px;}
.wsb3{word-spacing:-3.705000px;}
.wsdc{word-spacing:-2.622000px;}
.ws7e{word-spacing:-2.574000px;}
.wsd9{word-spacing:-2.508000px;}
.wsdd{word-spacing:-2.451000px;}
.wse0{word-spacing:-2.394000px;}
.ws7c{word-spacing:-2.376000px;}
.wsda{word-spacing:-2.337000px;}
.wsd4{word-spacing:-2.310000px;}
.wsdb{word-spacing:-2.280000px;}
.wse8{word-spacing:-2.244000px;}
.wsed{word-spacing:-2.223000px;}
.ws45{word-spacing:-2.178000px;}
.wsdf{word-spacing:-2.166000px;}
.ws96{word-spacing:-2.112000px;}
.wsec{word-spacing:-2.109000px;}
.wse6{word-spacing:-2.046000px;}
.ws63{word-spacing:-1.980000px;}
.wsf{word-spacing:-1.938000px;}
.ws78{word-spacing:-1.914000px;}
.ws65{word-spacing:-1.782000px;}
.wsea{word-spacing:-1.710000px;}
.ws6e{word-spacing:-1.683000px;}
.ws42{word-spacing:-1.650000px;}
.ws5f{word-spacing:-1.584000px;}
.ws14{word-spacing:-1.518000px;}
.ws60{word-spacing:-1.386000px;}
.ws1a{word-spacing:-1.320000px;}
.ws9{word-spacing:-1.311000px;}
.ws94{word-spacing:-1.254000px;}
.ws3b{word-spacing:-1.188000px;}
.ws24{word-spacing:-1.122000px;}
.ws7f{word-spacing:-1.056000px;}
.wsde{word-spacing:-1.026000px;}
.ws55{word-spacing:-1.020000px;}
.ws35{word-spacing:-0.990000px;}
.ws8d{word-spacing:-0.924000px;}
.ws11{word-spacing:-0.858000px;}
.ws31{word-spacing:-0.726000px;}
.ws1c{word-spacing:-0.714000px;}
.ws3e{word-spacing:-0.660000px;}
.ws3c{word-spacing:-0.594000px;}
.wse9{word-spacing:-0.570000px;}
.ws9c{word-spacing:-0.510000px;}
.ws8a{word-spacing:-0.462000px;}
.ws36{word-spacing:-0.264000px;}
.ws70{word-spacing:-0.255000px;}
.ws3d{word-spacing:-0.198000px;}
.ws8b{word-spacing:-0.132000px;}
.wsd7{word-spacing:-0.066000px;}
.ws0{word-spacing:0.000000px;}
.ws52{word-spacing:0.066000px;}
.wsf1{word-spacing:0.114000px;}
.ws8f{word-spacing:0.115434px;}
.wsf6{word-spacing:0.171000px;}
.ws44{word-spacing:0.198000px;}
.ws33{word-spacing:0.264000px;}
.ws12{word-spacing:0.330000px;}
.ws48{word-spacing:0.396000px;}
.wsf3{word-spacing:0.399000px;}
.ws85{word-spacing:0.462000px;}
.wsb5{word-spacing:0.513000px;}
.ws4c{word-spacing:0.528000px;}
.ws22{word-spacing:0.594000px;}
.ws7a{word-spacing:0.660000px;}
.ws81{word-spacing:0.663000px;}
.ws17{word-spacing:0.726000px;}
.wsa{word-spacing:0.741000px;}
.ws4e{word-spacing:0.792000px;}
.wse{word-spacing:0.798000px;}
.ws23{word-spacing:0.858000px;}
.ws6f{word-spacing:0.867000px;}
.wsf2{word-spacing:0.969000px;}
.ws10{word-spacing:0.990000px;}
.wsf4{word-spacing:1.026000px;}
.ws97{word-spacing:1.056000px;}
.wsb{word-spacing:1.083000px;}
.ws47{word-spacing:1.122000px;}
.ws32{word-spacing:1.188000px;}
.wsd5{word-spacing:1.254000px;}
.ws5d{word-spacing:1.320000px;}
.ws6d{word-spacing:1.326000px;}
.ws7{word-spacing:1.368000px;}
.wsd6{word-spacing:1.386000px;}
.ws46{word-spacing:1.452000px;}
.ws90{word-spacing:1.479000px;}
.wse7{word-spacing:1.518000px;}
.ws8c{word-spacing:1.584000px;}
.ws21{word-spacing:1.650000px;}
.ws30{word-spacing:1.716000px;}
.ws91{word-spacing:1.785000px;}
.ws56{word-spacing:1.836000px;}
.ws53{word-spacing:1.848000px;}
.ws39{word-spacing:1.914000px;}
.ws93{word-spacing:1.980000px;}
.ws5b{word-spacing:2.046000px;}
.ws18{word-spacing:2.112000px;}
.ws25{word-spacing:2.178000px;}
.ws9d{word-spacing:2.193000px;}
.ws99{word-spacing:2.244000px;}
.ws4b{word-spacing:2.310000px;}
.wseb{word-spacing:2.337000px;}
.ws84{word-spacing:2.376000px;}
.ws26{word-spacing:2.442000px;}
.ws4d{word-spacing:2.508000px;}
.wsee{word-spacing:2.622000px;}
.ws1b{word-spacing:2.706000px;}
.ws80{word-spacing:2.772000px;}
.ws95{word-spacing:2.904000px;}
.ws49{word-spacing:2.970000px;}
.wsef{word-spacing:3.021000px;}
.ws43{word-spacing:3.036000px;}
.wsf0{word-spacing:3.078000px;}
.ws7b{word-spacing:3.102000px;}
.ws88{word-spacing:3.168000px;}
.ws6c{word-spacing:3.264000px;}
.ws77{word-spacing:3.300000px;}
.ws1d{word-spacing:3.417000px;}
.ws51{word-spacing:3.432000px;}
.ws8e{word-spacing:3.498000px;}
.ws9b{word-spacing:3.564000px;}
.ws67{word-spacing:3.621000px;}
.ws3a{word-spacing:3.696000px;}
.ws16{word-spacing:3.828000px;}
.ws6a{word-spacing:3.978000px;}
.ws79{word-spacing:4.026000px;}
.ws57{word-spacing:4.131000px;}
.ws40{word-spacing:4.158000px;}
.wsf5{word-spacing:4.218000px;}
.ws20{word-spacing:4.224000px;}
.ws37{word-spacing:4.290000px;}
.ws66{word-spacing:4.386000px;}
.ws5c{word-spacing:4.422000px;}
.ws8{word-spacing:4.503000px;}
.ws34{word-spacing:4.554000px;}
.wsc{word-spacing:4.617000px;}
.ws54{word-spacing:4.620000px;}
.wsd8{word-spacing:4.686000px;}
.ws15{word-spacing:4.818000px;}
.ws68{word-spacing:4.845000px;}
.ws50{word-spacing:4.884000px;}
.ws13{word-spacing:5.016000px;}
.ws2f{word-spacing:5.148000px;}
.ws41{word-spacing:5.280000px;}
.wsd{word-spacing:5.358000px;}
.ws4a{word-spacing:5.676000px;}
.ws38{word-spacing:5.742000px;}
.ws62{word-spacing:5.808000px;}
.ws2b{word-spacing:5.874000px;}
.ws27{word-spacing:6.006000px;}
.ws7d{word-spacing:6.072000px;}
.ws2e{word-spacing:6.138000px;}
.ws19{word-spacing:6.204000px;}
.ws29{word-spacing:6.270000px;}
.ws28{word-spacing:6.336000px;}
.ws87{word-spacing:6.534000px;}
.ws86{word-spacing:6.600000px;}
.ws64{word-spacing:6.666000px;}
.ws61{word-spacing:6.732000px;}
.ws2c{word-spacing:6.864000px;}
.ws4f{word-spacing:7.260000px;}
.ws1f{word-spacing:7.326000px;}
.ws76{word-spacing:7.392000px;}
.ws75{word-spacing:7.524000px;}
.ws9a{word-spacing:8.184000px;}
.ws5e{word-spacing:8.580000px;}
.ws2a{word-spacing:9.042000px;}
.ws69{word-spacing:9.078000px;}
.ws2d{word-spacing:9.504000px;}
.ws6b{word-spacing:9.894000px;}
.ws98{word-spacing:11.352000px;}
.ws89{word-spacing:17.226000px;}
.wsa3{word-spacing:48.768000px;}
.wsb2{word-spacing:51.218400px;}
.wsa4{word-spacing:60.457800px;}
.wsb0{word-spacing:62.505600px;}
.wsa7{word-spacing:65.302200px;}
.wsa8{word-spacing:70.888200px;}
.wsd3{word-spacing:77.922000px;}
.wsae{word-spacing:79.435800px;}
.wsb1{word-spacing:83.106000px;}
.wsab{word-spacing:83.256600px;}
.wsad{word-spacing:94.335000px;}
.wsa2{word-spacing:95.719800px;}
.wsaf{word-spacing:98.667000px;}
.wsa6{word-spacing:102.201000px;}
.wsa1{word-spacing:105.222000px;}
.wsce{word-spacing:109.442400px;}
.wsaa{word-spacing:113.772000px;}
.wsbc{word-spacing:115.028400px;}
.wsca{word-spacing:123.748800px;}
.wsbb{word-spacing:124.605000px;}
.wscb{word-spacing:125.003400px;}
.wsc5{word-spacing:127.511400px;}
.wsbf{word-spacing:128.538000px;}
.wsc1{word-spacing:128.937000px;}
.wsc2{word-spacing:129.393000px;}
.wsd2{word-spacing:130.533000px;}
.wsd0{word-spacing:132.699000px;}
.wsc9{word-spacing:133.894800px;}
.wscc{word-spacing:134.238000px;}
.wsba{word-spacing:134.637600px;}
.wsbd{word-spacing:135.605400px;}
.wsc8{word-spacing:137.714400px;}
.wsac{word-spacing:202.863000px;}
.wsc0{word-spacing:243.048000px;}
.wsb9{word-spacing:260.604000px;}
.wscf{word-spacing:262.428000px;}
.wsbe{word-spacing:263.340000px;}
.wsd1{word-spacing:266.874000px;}
.wscd{word-spacing:274.284000px;}
.wsa0{word-spacing:281.637000px;}
.wsc7{word-spacing:282.435000px;}
.wsc4{word-spacing:285.684000px;}
.wsb8{word-spacing:286.824000px;}
.wsa5{word-spacing:313.272000px;}
.wsc3{word-spacing:1147.358700px;}
.wsc6{word-spacing:1237.242000px;}
._6{margin-left:-2127.891000px;}
._a{margin-left:-2125.131000px;}
._15{margin-left:-11.495700px;}
._16{margin-left:-9.444300px;}
._9{margin-left:-8.013000px;}
._b{margin-left:-6.804600px;}
._8{margin-left:-5.005200px;}
._3{margin-left:-3.984300px;}
._1{margin-left:-2.475000px;}
._0{margin-left:-1.425000px;}
._2{width:1.620000px;}
._7{width:3.265200px;}
._c{width:4.554600px;}
._1e{width:10.824300px;}
._1b{width:30.294000px;}
._13{width:31.812000px;}
._11{width:33.967200px;}
._18{width:35.046000px;}
._12{width:37.158000px;}
._14{width:39.336000px;}
._17{width:40.392000px;}
._1a{width:41.712000px;}
._19{width:43.044000px;}
._e{width:46.971000px;}
._10{width:48.246000px;}
._f{width:51.306000px;}
._5{width:53.244000px;}
._d{width:55.641000px;}
._48{width:56.778600px;}
._4{width:59.211000px;}
._1c{width:67.800300px;}
._2c{width:69.529200px;}
._3f{width:72.833100px;}
._31{width:77.787600px;}
._3c{width:78.799800px;}
._1f{width:82.047600px;}
._25{width:83.359200px;}
._34{width:85.311000px;}
._43{width:86.680200px;}
._28{width:88.722600px;}
._45{width:93.317400px;}
._46{width:95.710800px;}
._24{width:96.882600px;}
._2a{width:98.154000px;}
._27{width:99.931200px;}
._2b{width:104.595000px;}
._22{width:107.543400px;}
._1d{width:108.642000px;}
._32{width:110.101200px;}
._2f{width:112.420200px;}
._3d{width:115.111200px;}
._2e{width:118.377600px;}
._26{width:122.046600px;}
._35{width:124.180200px;}
._3a{width:126.124800px;}
._37{width:128.067000px;}
._4e{width:130.076400px;}
._21{width:131.909400px;}
._41{width:134.282400px;}
._39{width:136.447200px;}
._29{width:137.460600px;}
._20{width:138.549000px;}
._40{width:143.107800px;}
._2d{width:144.477000px;}
._36{width:148.638600px;}
._38{width:150.148800px;}
._47{width:152.995800px;}
._42{width:157.864800px;}
._33{width:160.885800px;}
._23{width:167.440800px;}
._3b{width:173.024400px;}
._3e{width:179.070000px;}
._30{width:182.909400px;}
._61{width:186.534600px;}
._60{width:206.781300px;}
._4d{width:260.034000px;}
._51{width:265.791000px;}
._59{width:272.037000px;}
._53{width:273.315000px;}
._57{width:276.963000px;}
._5d{width:282.606000px;}
._4f{width:286.511700px;}
._5f{width:293.493000px;}
._5b{width:303.183000px;}
._4c{width:309.078000px;}
._4b{width:326.086200px;}
._44{width:375.594600px;}
._63{width:413.515200px;}
._58{width:433.329000px;}
._56{width:488.457000px;}
._50{width:492.057000px;}
._5a{width:579.594300px;}
._4a{width:646.602300px;}
._55{width:725.229300px;}
._52{width:761.862000px;}
._5e{width:795.486300px;}
._62{width:842.709600px;}
._54{width:894.696000px;}
._5c{width:1084.425000px;}
._49{width:1175.055000px;}
._64{width:1460.283000px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:36.000000px;}
.fs9{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fsa{font-size:51.000000px;}
.fs6{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs8{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:75.000000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y46{bottom:1.800000px;}
.y45{bottom:12.600000px;}
.y44{bottom:23.400000px;}
.y43{bottom:30.119559px;}
.y42{bottom:75.672450px;}
.yde{bottom:75.673200px;}
.y147{bottom:75.673800px;}
.yf8{bottom:75.674700px;}
.yb9{bottom:75.675450px;}
.ydd{bottom:90.297450px;}
.y95{bottom:90.297600px;}
.yf7{bottom:90.298950px;}
.y41{bottom:90.299100px;}
.yb8{bottom:90.299700px;}
.y70{bottom:95.050800px;}
.y161{bottom:95.174550px;}
.y4{bottom:97.125005px;}
.y12e{bottom:102.116850px;}
.y119{bottom:102.117000px;}
.y118{bottom:104.922600px;}
.y94{bottom:104.922750px;}
.y40{bottom:104.923350px;}
.yf6{bottom:104.923950px;}
.yb7{bottom:104.925600px;}
.y146{bottom:107.997750px;}
.y12d{bottom:108.107250px;}
.y11a{bottom:108.116850px;}
.y6f{bottom:114.553800px;}
.y160{bottom:114.668550px;}
.y3f{bottom:119.547600px;}
.y93{bottom:119.547750px;}
.yb6{bottom:119.549850px;}
.y145{bottom:129.659250px;}
.y6e{bottom:134.056800px;}
.y15f{bottom:134.162550px;}
.ydc{bottom:134.167800px;}
.y92{bottom:134.173650px;}
.yb5{bottom:134.174100px;}
.y20{bottom:139.264499px;}
.y91{bottom:148.797900px;}
.yb4{bottom:148.805250px;}
.y144{bottom:151.320600px;}
.y6d{bottom:153.559800px;}
.y15e{bottom:153.656550px;}
.y117{bottom:153.658800px;}
.yf5{bottom:153.667800px;}
.ydb{bottom:153.670800px;}
.y90{bottom:163.423050px;}
.yb3{bottom:163.429500px;}
.y143{bottom:172.981950px;}
.y6c{bottom:173.062800px;}
.y15d{bottom:173.150550px;}
.y3e{bottom:173.152650px;}
.y116{bottom:173.161800px;}
.yf4{bottom:173.170800px;}
.yda{bottom:173.173800px;}
.yb2{bottom:178.053750px;}
.y6b{bottom:192.565800px;}
.y3d{bottom:192.655650px;}
.y115{bottom:192.664800px;}
.yd9{bottom:192.670800px;}
.yf3{bottom:192.673800px;}
.yb1{bottom:192.678000px;}
.y142{bottom:194.643450px;}
.y17{bottom:196.933500px;}
.yb0{bottom:207.302250px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.y6a{bottom:212.068800px;}
.yf2{bottom:212.149800px;}
.y3c{bottom:212.158650px;}
.y114{bottom:212.167800px;}
.yd8{bottom:212.173800px;}
.y15c{bottom:215.145300px;}
.y141{bottom:216.304800px;}
.yaf{bottom:221.926500px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.y11b{bottom:229.726350px;}
.y69{bottom:231.571800px;}
.y15b{bottom:231.646800px;}
.yf1{bottom:231.652800px;}
.y3b{bottom:231.661650px;}
.y8f{bottom:231.661800px;}
.yd7{bottom:231.670800px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.yae{bottom:236.550750px;}
.y140{bottom:237.966300px;}
.y15a{bottom:248.148300px;}
.y68{bottom:251.074800px;}
.yf0{bottom:251.155800px;}
.y113{bottom:251.161800px;}
.y3a{bottom:251.164650px;}
.y8e{bottom:251.164800px;}
.yd6{bottom:251.173800px;}
.yad{bottom:251.175000px;}
.y13f{bottom:259.627650px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y159{bottom:264.649800px;}
.yac{bottom:265.799250px;}
.y67{bottom:270.577800px;}
.yef{bottom:270.658800px;}
.y112{bottom:270.664800px;}
.y39{bottom:270.667650px;}
.y8d{bottom:270.667800px;}
.yd5{bottom:270.670800px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y158{bottom:281.151300px;}
.y13e{bottom:281.289000px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y66{bottom:290.080800px;}
.yee{bottom:290.161800px;}
.y111{bottom:290.167800px;}
.y38{bottom:290.170650px;}
.y8c{bottom:290.170800px;}
.yd4{bottom:290.173800px;}
.y157{bottom:297.652800px;}
.y13d{bottom:302.950500px;}
.y65{bottom:309.583800px;}
.y37{bottom:309.655650px;}
.yed{bottom:309.664800px;}
.yd3{bottom:309.667800px;}
.y110{bottom:309.670800px;}
.y8b{bottom:309.673800px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y156{bottom:314.154300px;}
.y11c{bottom:316.950600px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.y13c{bottom:324.611850px;}
.y64{bottom:329.086800px;}
.yab{bottom:329.127300px;}
.y8a{bottom:329.128800px;}
.y36{bottom:329.158650px;}
.yec{bottom:329.167800px;}
.yd2{bottom:329.170800px;}
.y10f{bottom:329.173800px;}
.y155{bottom:330.655800px;}
.y13b{bottom:346.273200px;}
.y154{bottom:347.157300px;}
.ye{bottom:348.133500px;}
.y63{bottom:348.589800px;}
.yaa{bottom:348.630300px;}
.y89{bottom:348.631800px;}
.y35{bottom:348.661650px;}
.yeb{bottom:348.670800px;}
.yd1{bottom:348.673800px;}
.y153{bottom:363.658800px;}
.y11d{bottom:364.930350px;}
.y13a{bottom:367.934700px;}
.y62{bottom:368.092800px;}
.ya9{bottom:368.133300px;}
.y88{bottom:368.134800px;}
.y10e{bottom:368.143800px;}
.y34{bottom:368.164650px;}
.yd0{bottom:368.173800px;}
.y152{bottom:380.160300px;}
.yd{bottom:386.785499px;}
.y61{bottom:387.595800px;}
.ya8{bottom:387.636300px;}
.y87{bottom:387.637800px;}
.y10d{bottom:387.646800px;}
.yea{bottom:387.655800px;}
.y33{bottom:387.667650px;}
.ycf{bottom:387.673800px;}
.y139{bottom:389.596050px;}
.y151{bottom:396.661800px;}
.y60{bottom:407.098800px;}
.ya7{bottom:407.139300px;}
.y86{bottom:407.140800px;}
.y10c{bottom:407.149800px;}
.ye9{bottom:407.158800px;}
.yce{bottom:407.173800px;}
.yc{bottom:408.044999px;}
.y138{bottom:411.257550px;}
.y150{bottom:413.163300px;}
.y11e{bottom:422.186850px;}
.y5f{bottom:426.601800px;}
.y85{bottom:426.643800px;}
.y10b{bottom:426.652800px;}
.ye8{bottom:426.661800px;}
.ycd{bottom:426.667800px;}
.y32{bottom:426.673650px;}
.y14f{bottom:429.664800px;}
.y137{bottom:432.918900px;}
.y11f{bottom:433.529850px;}
.y5e{bottom:446.104800px;}
.ya6{bottom:446.145300px;}
.y84{bottom:446.146800px;}
.y10a{bottom:446.155800px;}
.ye7{bottom:446.164800px;}
.y14e{bottom:446.166300px;}
.ycc{bottom:446.170800px;}
.y136{bottom:454.580400px;}
.y14d{bottom:462.667800px;}
.y5d{bottom:465.607800px;}
.y83{bottom:465.649800px;}
.y109{bottom:465.658800px;}
.ye6{bottom:465.667800px;}
.ycb{bottom:465.673800px;}
.y135{bottom:476.241750px;}
.y14c{bottom:479.169300px;}
.y5c{bottom:485.110800px;}
.y82{bottom:485.152800px;}
.y108{bottom:485.161800px;}
.ye5{bottom:485.170800px;}
.yca{bottom:485.173800px;}
.y31{bottom:485.239800px;}
.y120{bottom:494.177850px;}
.y14b{bottom:495.670800px;}
.y134{bottom:497.903250px;}
.yb{bottom:502.864502px;}
.y5b{bottom:504.613800px;}
.ya5{bottom:504.637800px;}
.y81{bottom:504.655800px;}
.y107{bottom:504.664800px;}
.yc9{bottom:504.673800px;}
.y30{bottom:504.733800px;}
.y14a{bottom:512.172300px;}
.y121{bottom:515.168100px;}
.y133{bottom:519.564600px;}
.ya{bottom:520.864502px;}
.y5a{bottom:524.116800px;}
.ya4{bottom:524.140800px;}
.y80{bottom:524.158800px;}
.y106{bottom:524.167800px;}
.yc8{bottom:524.170800px;}
.y2f{bottom:524.227800px;}
.y149{bottom:528.673800px;}
.y9{bottom:538.864499px;}
.y132{bottom:541.220700px;}
.y59{bottom:543.619800px;}
.ya3{bottom:543.643800px;}
.y7f{bottom:543.661800px;}
.y105{bottom:543.670800px;}
.yc7{bottom:543.673800px;}
.y2e{bottom:543.721800px;}
.y8{bottom:556.864499px;}
.y131{bottom:562.880700px;}
.y58{bottom:563.122800px;}
.y104{bottom:563.139300px;}
.ya2{bottom:563.146800px;}
.y7e{bottom:563.164800px;}
.yc6{bottom:563.173800px;}
.y2d{bottom:563.215800px;}
.y124{bottom:578.585250px;}
.y130{bottom:580.137450px;}
.y123{bottom:582.205800px;}
.y57{bottom:582.625800px;}
.y103{bottom:582.642300px;}
.ya1{bottom:582.649800px;}
.yc5{bottom:582.655800px;}
.y7d{bottom:582.667800px;}
.y122{bottom:582.670350px;}
.y2c{bottom:582.709800px;}
.y56{bottom:602.128800px;}
.y102{bottom:602.145300px;}
.ya0{bottom:602.152800px;}
.yc4{bottom:602.158800px;}
.y7c{bottom:602.170800px;}
.y12f{bottom:602.173800px;}
.y2b{bottom:602.203800px;}
.y55{bottom:621.631800px;}
.y101{bottom:621.648300px;}
.y9f{bottom:621.655800px;}
.yc3{bottom:621.661800px;}
.y7b{bottom:621.667800px;}
.ye4{bottom:621.673800px;}
.y2a{bottom:621.697800px;}
.y148{bottom:626.173800px;}
.y54{bottom:641.134800px;}
.y100{bottom:641.151300px;}
.y9e{bottom:641.158800px;}
.yc2{bottom:641.164800px;}
.y7a{bottom:641.170800px;}
.ye3{bottom:641.173800px;}
.y29{bottom:641.191800px;}
.y7{bottom:645.510000px;}
.y53{bottom:660.637800px;}
.yff{bottom:660.654300px;}
.y9d{bottom:660.661800px;}
.yc1{bottom:660.667800px;}
.y79{bottom:660.673800px;}
.y28{bottom:660.685800px;}
.y6{bottom:666.771000px;}
.y126{bottom:669.913500px;}
.y127{bottom:671.609250px;}
.y52{bottom:680.140800px;}
.yfe{bottom:680.157300px;}
.y78{bottom:680.158800px;}
.y9c{bottom:680.164800px;}
.yc0{bottom:680.170800px;}
.ye2{bottom:680.173800px;}
.y27{bottom:680.179800px;}
.y125{bottom:688.267500px;}
.y51{bottom:699.643800px;}
.yfd{bottom:699.660300px;}
.y77{bottom:699.661800px;}
.y9b{bottom:699.667800px;}
.ye1{bottom:699.670800px;}
.y26{bottom:699.673800px;}
.y50{bottom:719.146800px;}
.yfc{bottom:719.163300px;}
.y76{bottom:719.164800px;}
.y9a{bottom:719.170800px;}
.ye0{bottom:719.173800px;}
.y5{bottom:726.298500px;}
.y4f{bottom:738.649800px;}
.y99{bottom:738.664800px;}
.yfb{bottom:738.666300px;}
.y75{bottom:738.667800px;}
.y25{bottom:738.673800px;}
.y129{bottom:750.312000px;}
.y128{bottom:752.150250px;}
.y3{bottom:752.599495px;}
.y4e{bottom:758.152800px;}
.y98{bottom:758.167800px;}
.yfa{bottom:758.169300px;}
.y74{bottom:758.170800px;}
.ybf{bottom:758.173800px;}
.y4d{bottom:777.655800px;}
.ybe{bottom:777.661800px;}
.y73{bottom:777.664800px;}
.y97{bottom:777.670800px;}
.y24{bottom:777.673800px;}
.y12a{bottom:791.893500px;}
.y4c{bottom:797.158800px;}
.ybd{bottom:797.164800px;}
.y72{bottom:797.167800px;}
.y96{bottom:797.170800px;}
.ydf{bottom:797.173800px;}
.yf9{bottom:797.175300px;}
.y4b{bottom:816.661800px;}
.ybc{bottom:816.667800px;}
.y71{bottom:816.670800px;}
.y23{bottom:816.679800px;}
.y166{bottom:816.704250px;}
.y4a{bottom:836.164800px;}
.ybb{bottom:836.170800px;}
.y22{bottom:836.173800px;}
.y165{bottom:836.198250px;}
.y12b{bottom:844.262250px;}
.y49{bottom:855.667800px;}
.yba{bottom:855.673800px;}
.y164{bottom:855.692250px;}
.y12c{bottom:872.591250px;}
.y48{bottom:875.170800px;}
.y163{bottom:875.186250px;}
.y2{bottom:879.369000px;}
.y21{bottom:894.673800px;}
.y162{bottom:894.680250px;}
.y47{bottom:948.189000px;}
.y1{bottom:966.726000px;}
.h7{height:32.130000px;}
.h13{height:33.660195px;}
.h14{height:38.412000px;}
.h12{height:38.658000px;}
.hb{height:43.206000px;}
.h21{height:43.227000px;}
.h1f{height:43.398000px;}
.he{height:43.548000px;}
.hf{height:45.738000px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h10{height:50.028000px;}
.h1b{height:50.424000px;}
.h1c{height:51.144324px;}
.h1a{height:51.156324px;}
.h17{height:51.168324px;}
.h15{height:51.180324px;}
.h19{height:51.192324px;}
.h16{height:51.204324px;}
.h11{height:51.216324px;}
.h1d{height:51.240324px;}
.h1e{height:51.282324px;}
.h18{height:51.324324px;}
.ha{height:51.975000px;}
.h2{height:55.080000px;}
.hc{height:56.850000px;}
.hd{height:74.844000px;}
.h5{height:78.030000px;}
.h20{height:78.075000px;}
.h4{height:119.055004px;}
.h8{height:1020.472500px;}
.h9{height:1020.750000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w5{width:274.639500px;}
.w2{width:637.794021px;}
.w3{width:722.835000px;}
.w4{width:723.000000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:85.039350px;}
.xc{left:94.700700px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x1d{left:112.299150px;}
.xd{left:116.737200px;}
.x5{left:127.559100px;}
.xe{left:133.993950px;}
.x7{left:137.320500px;}
.xf{left:151.243950px;}
.x10{left:172.946700px;}
.x11{left:194.560050px;}
.x4{left:203.484001px;}
.x12{left:216.221550px;}
.x6{left:224.097748px;}
.x13{left:237.882900px;}
.x14{left:255.139650px;}
.x15{left:276.794400px;}
.x16{left:298.455750px;}
.x17{left:315.712500px;}
.x18{left:337.367100px;}
.x19{left:359.028600px;}
.x1a{left:380.689950px;}
.x1b{left:400.564950px;}
.x1c{left:420.058950px;}
.x8{left:426.358950px;}
.x3{left:454.959000px;}
.x1e{left:463.518900px;}
.x1f{left:517.768650px;}
.x20{left:544.344900px;}
.x21{left:601.515900px;}
.xb{left:621.992100px;}
.xa{left:623.074950px;}
@media print{
.v2{vertical-align:-19.536000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.600000pt;}
.v3{vertical-align:30.653333pt;}
.ls29{letter-spacing:-2.381333pt;}
.ls2c{letter-spacing:-1.368000pt;}
.ls22{letter-spacing:-1.266667pt;}
.ls20{letter-spacing:-1.216000pt;}
.ls21{letter-spacing:-1.165333pt;}
.ls28{letter-spacing:-1.114667pt;}
.ls25{letter-spacing:-1.064000pt;}
.ls26{letter-spacing:-1.013333pt;}
.ls23{letter-spacing:-0.962667pt;}
.ls15{letter-spacing:-0.861333pt;}
.ls27{letter-spacing:-0.760000pt;}
.ls1f{letter-spacing:-0.658667pt;}
.ls1c{letter-spacing:-0.608000pt;}
.ls1e{letter-spacing:-0.557333pt;}
.lse{letter-spacing:-0.513040pt;}
.ls18{letter-spacing:-0.506667pt;}
.lsc{letter-spacing:-0.478837pt;}
.ls17{letter-spacing:-0.456000pt;}
.ls2a{letter-spacing:-0.405333pt;}
.ls2d{letter-spacing:-0.354667pt;}
.ls11{letter-spacing:-0.352000pt;}
.ls14{letter-spacing:-0.304000pt;}
.lsa{letter-spacing:-0.253333pt;}
.ls2f{letter-spacing:-0.234667pt;}
.lsf{letter-spacing:-0.226667pt;}
.ls9{letter-spacing:-0.202667pt;}
.lsd{letter-spacing:-0.181333pt;}
.ls8{letter-spacing:-0.176000pt;}
.ls1a{letter-spacing:-0.152000pt;}
.ls10{letter-spacing:-0.102608pt;}
.ls2e{letter-spacing:-0.101333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.152000pt;}
.ls30{letter-spacing:0.202667pt;}
.lsb{letter-spacing:0.253333pt;}
.ls2b{letter-spacing:0.304000pt;}
.ls12{letter-spacing:0.317333pt;}
.ls16{letter-spacing:0.354667pt;}
.ls3{letter-spacing:0.453333pt;}
.ls2{letter-spacing:0.506667pt;}
.ls1b{letter-spacing:0.658667pt;}
.ls24{letter-spacing:0.709333pt;}
.ls6{letter-spacing:0.960000pt;}
.ls19{letter-spacing:1.064000pt;}
.ls1{letter-spacing:1.333333pt;}
.ls7{letter-spacing:1.469333pt;}
.ls31{letter-spacing:1.874667pt;}
.ls5{letter-spacing:2.026667pt;}
.ls4{letter-spacing:3.333333pt;}
.ls1d{letter-spacing:125.553600pt;}
.ws1{word-spacing:-15.133333pt;}
.ws72{word-spacing:-11.146667pt;}
.ws2{word-spacing:-11.096000pt;}
.ws5{word-spacing:-10.970667pt;}
.ws82{word-spacing:-10.794667pt;}
.ws3{word-spacing:-10.234667pt;}
.wse2{word-spacing:-10.149333pt;}
.ws4{word-spacing:-10.133333pt;}
.wse4{word-spacing:-10.032000pt;}
.ws58{word-spacing:-9.880000pt;}
.wse3{word-spacing:-9.829333pt;}
.ws92{word-spacing:-9.778667pt;}
.wse5{word-spacing:-9.728000pt;}
.ws9e{word-spacing:-9.626667pt;}
.wse1{word-spacing:-9.525333pt;}
.ws1e{word-spacing:-9.424000pt;}
.ws3f{word-spacing:-9.373333pt;}
.ws9f{word-spacing:-9.322667pt;}
.wsa9{word-spacing:-9.272000pt;}
.wsb6{word-spacing:-9.069333pt;}
.ws74{word-spacing:-9.066667pt;}
.wsb7{word-spacing:-8.968000pt;}
.ws83{word-spacing:-8.930667pt;}
.ws5a{word-spacing:-8.432000pt;}
.ws73{word-spacing:-8.386667pt;}
.ws6{word-spacing:-6.498507pt;}
.ws59{word-spacing:-6.019669pt;}
.ws71{word-spacing:-5.985467pt;}
.wsb4{word-spacing:-3.394667pt;}
.wsb3{word-spacing:-3.293333pt;}
.wsdc{word-spacing:-2.330667pt;}
.ws7e{word-spacing:-2.288000pt;}
.wsd9{word-spacing:-2.229333pt;}
.wsdd{word-spacing:-2.178667pt;}
.wse0{word-spacing:-2.128000pt;}
.ws7c{word-spacing:-2.112000pt;}
.wsda{word-spacing:-2.077333pt;}
.wsd4{word-spacing:-2.053333pt;}
.wsdb{word-spacing:-2.026667pt;}
.wse8{word-spacing:-1.994667pt;}
.wsed{word-spacing:-1.976000pt;}
.ws45{word-spacing:-1.936000pt;}
.wsdf{word-spacing:-1.925333pt;}
.ws96{word-spacing:-1.877333pt;}
.wsec{word-spacing:-1.874667pt;}
.wse6{word-spacing:-1.818667pt;}
.ws63{word-spacing:-1.760000pt;}
.wsf{word-spacing:-1.722667pt;}
.ws78{word-spacing:-1.701333pt;}
.ws65{word-spacing:-1.584000pt;}
.wsea{word-spacing:-1.520000pt;}
.ws6e{word-spacing:-1.496000pt;}
.ws42{word-spacing:-1.466667pt;}
.ws5f{word-spacing:-1.408000pt;}
.ws14{word-spacing:-1.349333pt;}
.ws60{word-spacing:-1.232000pt;}
.ws1a{word-spacing:-1.173333pt;}
.ws9{word-spacing:-1.165333pt;}
.ws94{word-spacing:-1.114667pt;}
.ws3b{word-spacing:-1.056000pt;}
.ws24{word-spacing:-0.997333pt;}
.ws7f{word-spacing:-0.938667pt;}
.wsde{word-spacing:-0.912000pt;}
.ws55{word-spacing:-0.906667pt;}
.ws35{word-spacing:-0.880000pt;}
.ws8d{word-spacing:-0.821333pt;}
.ws11{word-spacing:-0.762667pt;}
.ws31{word-spacing:-0.645333pt;}
.ws1c{word-spacing:-0.634667pt;}
.ws3e{word-spacing:-0.586667pt;}
.ws3c{word-spacing:-0.528000pt;}
.wse9{word-spacing:-0.506667pt;}
.ws9c{word-spacing:-0.453333pt;}
.ws8a{word-spacing:-0.410667pt;}
.ws36{word-spacing:-0.234667pt;}
.ws70{word-spacing:-0.226667pt;}
.ws3d{word-spacing:-0.176000pt;}
.ws8b{word-spacing:-0.117333pt;}
.wsd7{word-spacing:-0.058667pt;}
.ws0{word-spacing:0.000000pt;}
.ws52{word-spacing:0.058667pt;}
.wsf1{word-spacing:0.101333pt;}
.ws8f{word-spacing:0.102608pt;}
.wsf6{word-spacing:0.152000pt;}
.ws44{word-spacing:0.176000pt;}
.ws33{word-spacing:0.234667pt;}
.ws12{word-spacing:0.293333pt;}
.ws48{word-spacing:0.352000pt;}
.wsf3{word-spacing:0.354667pt;}
.ws85{word-spacing:0.410667pt;}
.wsb5{word-spacing:0.456000pt;}
.ws4c{word-spacing:0.469333pt;}
.ws22{word-spacing:0.528000pt;}
.ws7a{word-spacing:0.586667pt;}
.ws81{word-spacing:0.589333pt;}
.ws17{word-spacing:0.645333pt;}
.wsa{word-spacing:0.658667pt;}
.ws4e{word-spacing:0.704000pt;}
.wse{word-spacing:0.709333pt;}
.ws23{word-spacing:0.762667pt;}
.ws6f{word-spacing:0.770667pt;}
.wsf2{word-spacing:0.861333pt;}
.ws10{word-spacing:0.880000pt;}
.wsf4{word-spacing:0.912000pt;}
.ws97{word-spacing:0.938667pt;}
.wsb{word-spacing:0.962667pt;}
.ws47{word-spacing:0.997333pt;}
.ws32{word-spacing:1.056000pt;}
.wsd5{word-spacing:1.114667pt;}
.ws5d{word-spacing:1.173333pt;}
.ws6d{word-spacing:1.178667pt;}
.ws7{word-spacing:1.216000pt;}
.wsd6{word-spacing:1.232000pt;}
.ws46{word-spacing:1.290667pt;}
.ws90{word-spacing:1.314667pt;}
.wse7{word-spacing:1.349333pt;}
.ws8c{word-spacing:1.408000pt;}
.ws21{word-spacing:1.466667pt;}
.ws30{word-spacing:1.525333pt;}
.ws91{word-spacing:1.586667pt;}
.ws56{word-spacing:1.632000pt;}
.ws53{word-spacing:1.642667pt;}
.ws39{word-spacing:1.701333pt;}
.ws93{word-spacing:1.760000pt;}
.ws5b{word-spacing:1.818667pt;}
.ws18{word-spacing:1.877333pt;}
.ws25{word-spacing:1.936000pt;}
.ws9d{word-spacing:1.949333pt;}
.ws99{word-spacing:1.994667pt;}
.ws4b{word-spacing:2.053333pt;}
.wseb{word-spacing:2.077333pt;}
.ws84{word-spacing:2.112000pt;}
.ws26{word-spacing:2.170667pt;}
.ws4d{word-spacing:2.229333pt;}
.wsee{word-spacing:2.330667pt;}
.ws1b{word-spacing:2.405333pt;}
.ws80{word-spacing:2.464000pt;}
.ws95{word-spacing:2.581333pt;}
.ws49{word-spacing:2.640000pt;}
.wsef{word-spacing:2.685333pt;}
.ws43{word-spacing:2.698667pt;}
.wsf0{word-spacing:2.736000pt;}
.ws7b{word-spacing:2.757333pt;}
.ws88{word-spacing:2.816000pt;}
.ws6c{word-spacing:2.901333pt;}
.ws77{word-spacing:2.933333pt;}
.ws1d{word-spacing:3.037333pt;}
.ws51{word-spacing:3.050667pt;}
.ws8e{word-spacing:3.109333pt;}
.ws9b{word-spacing:3.168000pt;}
.ws67{word-spacing:3.218667pt;}
.ws3a{word-spacing:3.285333pt;}
.ws16{word-spacing:3.402667pt;}
.ws6a{word-spacing:3.536000pt;}
.ws79{word-spacing:3.578667pt;}
.ws57{word-spacing:3.672000pt;}
.ws40{word-spacing:3.696000pt;}
.wsf5{word-spacing:3.749333pt;}
.ws20{word-spacing:3.754667pt;}
.ws37{word-spacing:3.813333pt;}
.ws66{word-spacing:3.898667pt;}
.ws5c{word-spacing:3.930667pt;}
.ws8{word-spacing:4.002667pt;}
.ws34{word-spacing:4.048000pt;}
.wsc{word-spacing:4.104000pt;}
.ws54{word-spacing:4.106667pt;}
.wsd8{word-spacing:4.165333pt;}
.ws15{word-spacing:4.282667pt;}
.ws68{word-spacing:4.306667pt;}
.ws50{word-spacing:4.341333pt;}
.ws13{word-spacing:4.458667pt;}
.ws2f{word-spacing:4.576000pt;}
.ws41{word-spacing:4.693333pt;}
.wsd{word-spacing:4.762667pt;}
.ws4a{word-spacing:5.045333pt;}
.ws38{word-spacing:5.104000pt;}
.ws62{word-spacing:5.162667pt;}
.ws2b{word-spacing:5.221333pt;}
.ws27{word-spacing:5.338667pt;}
.ws7d{word-spacing:5.397333pt;}
.ws2e{word-spacing:5.456000pt;}
.ws19{word-spacing:5.514667pt;}
.ws29{word-spacing:5.573333pt;}
.ws28{word-spacing:5.632000pt;}
.ws87{word-spacing:5.808000pt;}
.ws86{word-spacing:5.866667pt;}
.ws64{word-spacing:5.925333pt;}
.ws61{word-spacing:5.984000pt;}
.ws2c{word-spacing:6.101333pt;}
.ws4f{word-spacing:6.453333pt;}
.ws1f{word-spacing:6.512000pt;}
.ws76{word-spacing:6.570667pt;}
.ws75{word-spacing:6.688000pt;}
.ws9a{word-spacing:7.274667pt;}
.ws5e{word-spacing:7.626667pt;}
.ws2a{word-spacing:8.037333pt;}
.ws69{word-spacing:8.069333pt;}
.ws2d{word-spacing:8.448000pt;}
.ws6b{word-spacing:8.794667pt;}
.ws98{word-spacing:10.090667pt;}
.ws89{word-spacing:15.312000pt;}
.wsa3{word-spacing:43.349333pt;}
.wsb2{word-spacing:45.527467pt;}
.wsa4{word-spacing:53.740267pt;}
.wsb0{word-spacing:55.560533pt;}
.wsa7{word-spacing:58.046400pt;}
.wsa8{word-spacing:63.011733pt;}
.wsd3{word-spacing:69.264000pt;}
.wsae{word-spacing:70.609600pt;}
.wsb1{word-spacing:73.872000pt;}
.wsab{word-spacing:74.005867pt;}
.wsad{word-spacing:83.853333pt;}
.wsa2{word-spacing:85.084267pt;}
.wsaf{word-spacing:87.704000pt;}
.wsa6{word-spacing:90.845333pt;}
.wsa1{word-spacing:93.530667pt;}
.wsce{word-spacing:97.282133pt;}
.wsaa{word-spacing:101.130667pt;}
.wsbc{word-spacing:102.247467pt;}
.wsca{word-spacing:109.998933pt;}
.wsbb{word-spacing:110.760000pt;}
.wscb{word-spacing:111.114133pt;}
.wsc5{word-spacing:113.343467pt;}
.wsbf{word-spacing:114.256000pt;}
.wsc1{word-spacing:114.610667pt;}
.wsc2{word-spacing:115.016000pt;}
.wsd2{word-spacing:116.029333pt;}
.wsd0{word-spacing:117.954667pt;}
.wsc9{word-spacing:119.017600pt;}
.wscc{word-spacing:119.322667pt;}
.wsba{word-spacing:119.677867pt;}
.wsbd{word-spacing:120.538133pt;}
.wsc8{word-spacing:122.412800pt;}
.wsac{word-spacing:180.322667pt;}
.wsc0{word-spacing:216.042667pt;}
.wsb9{word-spacing:231.648000pt;}
.wscf{word-spacing:233.269333pt;}
.wsbe{word-spacing:234.080000pt;}
.wsd1{word-spacing:237.221333pt;}
.wscd{word-spacing:243.808000pt;}
.wsa0{word-spacing:250.344000pt;}
.wsc7{word-spacing:251.053333pt;}
.wsc4{word-spacing:253.941333pt;}
.wsb8{word-spacing:254.954667pt;}
.wsa5{word-spacing:278.464000pt;}
.wsc3{word-spacing:1019.874400pt;}
.wsc6{word-spacing:1099.770667pt;}
._6{margin-left:-1891.458667pt;}
._a{margin-left:-1889.005333pt;}
._15{margin-left:-10.218400pt;}
._16{margin-left:-8.394933pt;}
._9{margin-left:-7.122667pt;}
._b{margin-left:-6.048533pt;}
._8{margin-left:-4.449067pt;}
._3{margin-left:-3.541600pt;}
._1{margin-left:-2.200000pt;}
._0{margin-left:-1.266667pt;}
._2{width:1.440000pt;}
._7{width:2.902400pt;}
._c{width:4.048533pt;}
._1e{width:9.621600pt;}
._1b{width:26.928000pt;}
._13{width:28.277333pt;}
._11{width:30.193067pt;}
._18{width:31.152000pt;}
._12{width:33.029333pt;}
._14{width:34.965333pt;}
._17{width:35.904000pt;}
._1a{width:37.077333pt;}
._19{width:38.261333pt;}
._e{width:41.752000pt;}
._10{width:42.885333pt;}
._f{width:45.605333pt;}
._5{width:47.328000pt;}
._d{width:49.458667pt;}
._48{width:50.469867pt;}
._4{width:52.632000pt;}
._1c{width:60.266933pt;}
._2c{width:61.803733pt;}
._3f{width:64.740533pt;}
._31{width:69.144533pt;}
._3c{width:70.044267pt;}
._1f{width:72.931200pt;}
._25{width:74.097067pt;}
._34{width:75.832000pt;}
._43{width:77.049067pt;}
._28{width:78.864533pt;}
._45{width:82.948800pt;}
._46{width:85.076267pt;}
._24{width:86.117867pt;}
._2a{width:87.248000pt;}
._27{width:88.827733pt;}
._2b{width:92.973333pt;}
._22{width:95.594133pt;}
._1d{width:96.570667pt;}
._32{width:97.867733pt;}
._2f{width:99.929067pt;}
._3d{width:102.321067pt;}
._2e{width:105.224533pt;}
._26{width:108.485867pt;}
._35{width:110.382400pt;}
._3a{width:112.110933pt;}
._37{width:113.837333pt;}
._4e{width:115.623467pt;}
._21{width:117.252800pt;}
._41{width:119.362133pt;}
._39{width:121.286400pt;}
._29{width:122.187200pt;}
._20{width:123.154667pt;}
._40{width:127.206933pt;}
._2d{width:128.424000pt;}
._36{width:132.123200pt;}
._38{width:133.465600pt;}
._47{width:135.996267pt;}
._42{width:140.324267pt;}
._33{width:143.009600pt;}
._23{width:148.836267pt;}
._3b{width:153.799467pt;}
._3e{width:159.173333pt;}
._30{width:162.586133pt;}
._61{width:165.808533pt;}
._60{width:183.805600pt;}
._4d{width:231.141333pt;}
._51{width:236.258667pt;}
._59{width:241.810667pt;}
._53{width:242.946667pt;}
._57{width:246.189333pt;}
._5d{width:251.205333pt;}
._4f{width:254.677067pt;}
._5f{width:260.882667pt;}
._5b{width:269.496000pt;}
._4c{width:274.736000pt;}
._4b{width:289.854400pt;}
._44{width:333.861867pt;}
._63{width:367.569067pt;}
._58{width:385.181333pt;}
._56{width:434.184000pt;}
._50{width:437.384000pt;}
._5a{width:515.194933pt;}
._4a{width:574.757600pt;}
._55{width:644.648267pt;}
._52{width:677.210667pt;}
._5e{width:707.098933pt;}
._62{width:749.075200pt;}
._54{width:795.285333pt;}
._5c{width:963.933333pt;}
._49{width:1044.493333pt;}
._64{width:1298.029333pt;}
.fsb{font-size:32.000000pt;}
.fs9{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fsa{font-size:45.333333pt;}
.fs6{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs8{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:66.666667pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y46{bottom:1.600000pt;}
.y45{bottom:11.200000pt;}
.y44{bottom:20.800000pt;}
.y43{bottom:26.772941pt;}
.y42{bottom:67.264400pt;}
.yde{bottom:67.265067pt;}
.y147{bottom:67.265600pt;}
.yf8{bottom:67.266400pt;}
.yb9{bottom:67.267067pt;}
.ydd{bottom:80.264400pt;}
.y95{bottom:80.264533pt;}
.yf7{bottom:80.265733pt;}
.y41{bottom:80.265867pt;}
.yb8{bottom:80.266400pt;}
.y70{bottom:84.489600pt;}
.y161{bottom:84.599600pt;}
.y4{bottom:86.333337pt;}
.y12e{bottom:90.770533pt;}
.y119{bottom:90.770667pt;}
.y118{bottom:93.264533pt;}
.y94{bottom:93.264667pt;}
.y40{bottom:93.265200pt;}
.yf6{bottom:93.265733pt;}
.yb7{bottom:93.267200pt;}
.y146{bottom:95.998000pt;}
.y12d{bottom:96.095333pt;}
.y11a{bottom:96.103867pt;}
.y6f{bottom:101.825600pt;}
.y160{bottom:101.927600pt;}
.y3f{bottom:106.264533pt;}
.y93{bottom:106.264667pt;}
.yb6{bottom:106.266533pt;}
.y145{bottom:115.252667pt;}
.y6e{bottom:119.161600pt;}
.y15f{bottom:119.255600pt;}
.ydc{bottom:119.260267pt;}
.y92{bottom:119.265467pt;}
.yb5{bottom:119.265867pt;}
.y20{bottom:123.790666pt;}
.y91{bottom:132.264800pt;}
.yb4{bottom:132.271333pt;}
.y144{bottom:134.507200pt;}
.y6d{bottom:136.497600pt;}
.y15e{bottom:136.583600pt;}
.y117{bottom:136.585600pt;}
.yf5{bottom:136.593600pt;}
.ydb{bottom:136.596267pt;}
.y90{bottom:145.264933pt;}
.yb3{bottom:145.270667pt;}
.y143{bottom:153.761733pt;}
.y6c{bottom:153.833600pt;}
.y15d{bottom:153.911600pt;}
.y3e{bottom:153.913467pt;}
.y116{bottom:153.921600pt;}
.yf4{bottom:153.929600pt;}
.yda{bottom:153.932267pt;}
.yb2{bottom:158.270000pt;}
.y6b{bottom:171.169600pt;}
.y3d{bottom:171.249467pt;}
.y115{bottom:171.257600pt;}
.yd9{bottom:171.262933pt;}
.yf3{bottom:171.265600pt;}
.yb1{bottom:171.269333pt;}
.y142{bottom:173.016400pt;}
.y17{bottom:175.052000pt;}
.yb0{bottom:184.268667pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.y6a{bottom:188.505600pt;}
.yf2{bottom:188.577600pt;}
.y3c{bottom:188.585467pt;}
.y114{bottom:188.593600pt;}
.yd8{bottom:188.598933pt;}
.y15c{bottom:191.240267pt;}
.y141{bottom:192.270933pt;}
.yaf{bottom:197.268000pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.y11b{bottom:204.201200pt;}
.y69{bottom:205.841600pt;}
.y15b{bottom:205.908267pt;}
.yf1{bottom:205.913600pt;}
.y3b{bottom:205.921467pt;}
.y8f{bottom:205.921600pt;}
.yd7{bottom:205.929600pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.yae{bottom:210.267333pt;}
.y140{bottom:211.525600pt;}
.y15a{bottom:220.576267pt;}
.y68{bottom:223.177600pt;}
.yf0{bottom:223.249600pt;}
.y113{bottom:223.254933pt;}
.y3a{bottom:223.257467pt;}
.y8e{bottom:223.257600pt;}
.yd6{bottom:223.265600pt;}
.yad{bottom:223.266667pt;}
.y13f{bottom:230.780133pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y159{bottom:235.244267pt;}
.yac{bottom:236.266000pt;}
.y67{bottom:240.513600pt;}
.yef{bottom:240.585600pt;}
.y112{bottom:240.590933pt;}
.y39{bottom:240.593467pt;}
.y8d{bottom:240.593600pt;}
.yd5{bottom:240.596267pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y158{bottom:249.912267pt;}
.y13e{bottom:250.034667pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y66{bottom:257.849600pt;}
.yee{bottom:257.921600pt;}
.y111{bottom:257.926933pt;}
.y38{bottom:257.929467pt;}
.y8c{bottom:257.929600pt;}
.yd4{bottom:257.932267pt;}
.y157{bottom:264.580267pt;}
.y13d{bottom:269.289333pt;}
.y65{bottom:275.185600pt;}
.y37{bottom:275.249467pt;}
.yed{bottom:275.257600pt;}
.yd3{bottom:275.260267pt;}
.y110{bottom:275.262933pt;}
.y8b{bottom:275.265600pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y156{bottom:279.248267pt;}
.y11c{bottom:281.733867pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.y13c{bottom:288.543867pt;}
.y64{bottom:292.521600pt;}
.yab{bottom:292.557600pt;}
.y8a{bottom:292.558933pt;}
.y36{bottom:292.585467pt;}
.yec{bottom:292.593600pt;}
.yd2{bottom:292.596267pt;}
.y10f{bottom:292.598933pt;}
.y155{bottom:293.916267pt;}
.y13b{bottom:307.798400pt;}
.y154{bottom:308.584267pt;}
.ye{bottom:309.452000pt;}
.y63{bottom:309.857600pt;}
.yaa{bottom:309.893600pt;}
.y89{bottom:309.894933pt;}
.y35{bottom:309.921467pt;}
.yeb{bottom:309.929600pt;}
.yd1{bottom:309.932267pt;}
.y153{bottom:323.252267pt;}
.y11d{bottom:324.382533pt;}
.y13a{bottom:327.053067pt;}
.y62{bottom:327.193600pt;}
.ya9{bottom:327.229600pt;}
.y88{bottom:327.230933pt;}
.y10e{bottom:327.238933pt;}
.y34{bottom:327.257467pt;}
.yd0{bottom:327.265600pt;}
.y152{bottom:337.920267pt;}
.yd{bottom:343.809333pt;}
.y61{bottom:344.529600pt;}
.ya8{bottom:344.565600pt;}
.y87{bottom:344.566933pt;}
.y10d{bottom:344.574933pt;}
.yea{bottom:344.582933pt;}
.y33{bottom:344.593467pt;}
.ycf{bottom:344.598933pt;}
.y139{bottom:346.307600pt;}
.y151{bottom:352.588267pt;}
.y60{bottom:361.865600pt;}
.ya7{bottom:361.901600pt;}
.y86{bottom:361.902933pt;}
.y10c{bottom:361.910933pt;}
.ye9{bottom:361.918933pt;}
.yce{bottom:361.932267pt;}
.yc{bottom:362.706666pt;}
.y138{bottom:365.562267pt;}
.y150{bottom:367.256267pt;}
.y11e{bottom:375.277200pt;}
.y5f{bottom:379.201600pt;}
.y85{bottom:379.238933pt;}
.y10b{bottom:379.246933pt;}
.ye8{bottom:379.254933pt;}
.ycd{bottom:379.260267pt;}
.y32{bottom:379.265467pt;}
.y14f{bottom:381.924267pt;}
.y137{bottom:384.816800pt;}
.y11f{bottom:385.359867pt;}
.y5e{bottom:396.537600pt;}
.ya6{bottom:396.573600pt;}
.y84{bottom:396.574933pt;}
.y10a{bottom:396.582933pt;}
.ye7{bottom:396.590933pt;}
.y14e{bottom:396.592267pt;}
.ycc{bottom:396.596267pt;}
.y136{bottom:404.071467pt;}
.y14d{bottom:411.260267pt;}
.y5d{bottom:413.873600pt;}
.y83{bottom:413.910933pt;}
.y109{bottom:413.918933pt;}
.ye6{bottom:413.926933pt;}
.ycb{bottom:413.932267pt;}
.y135{bottom:423.326000pt;}
.y14c{bottom:425.928267pt;}
.y5c{bottom:431.209600pt;}
.y82{bottom:431.246933pt;}
.y108{bottom:431.254933pt;}
.ye5{bottom:431.262933pt;}
.yca{bottom:431.265600pt;}
.y31{bottom:431.324267pt;}
.y120{bottom:439.269200pt;}
.y14b{bottom:440.596267pt;}
.y134{bottom:442.580667pt;}
.yb{bottom:446.990669pt;}
.y5b{bottom:448.545600pt;}
.ya5{bottom:448.566933pt;}
.y81{bottom:448.582933pt;}
.y107{bottom:448.590933pt;}
.yc9{bottom:448.598933pt;}
.y30{bottom:448.652267pt;}
.y14a{bottom:455.264267pt;}
.y121{bottom:457.927200pt;}
.y133{bottom:461.835200pt;}
.ya{bottom:462.990669pt;}
.y5a{bottom:465.881600pt;}
.ya4{bottom:465.902933pt;}
.y80{bottom:465.918933pt;}
.y106{bottom:465.926933pt;}
.yc8{bottom:465.929600pt;}
.y2f{bottom:465.980267pt;}
.y149{bottom:469.932267pt;}
.y9{bottom:478.990666pt;}
.y132{bottom:481.085067pt;}
.y59{bottom:483.217600pt;}
.ya3{bottom:483.238933pt;}
.y7f{bottom:483.254933pt;}
.y105{bottom:483.262933pt;}
.yc7{bottom:483.265600pt;}
.y2e{bottom:483.308267pt;}
.y8{bottom:494.990666pt;}
.y131{bottom:500.338400pt;}
.y58{bottom:500.553600pt;}
.y104{bottom:500.568267pt;}
.ya2{bottom:500.574933pt;}
.y7e{bottom:500.590933pt;}
.yc6{bottom:500.598933pt;}
.y2d{bottom:500.636267pt;}
.y124{bottom:514.298000pt;}
.y130{bottom:515.677733pt;}
.y123{bottom:517.516267pt;}
.y57{bottom:517.889600pt;}
.y103{bottom:517.904267pt;}
.ya1{bottom:517.910933pt;}
.yc5{bottom:517.916267pt;}
.y7d{bottom:517.926933pt;}
.y122{bottom:517.929200pt;}
.y2c{bottom:517.964267pt;}
.y56{bottom:535.225600pt;}
.y102{bottom:535.240267pt;}
.ya0{bottom:535.246933pt;}
.yc4{bottom:535.252267pt;}
.y7c{bottom:535.262933pt;}
.y12f{bottom:535.265600pt;}
.y2b{bottom:535.292267pt;}
.y55{bottom:552.561600pt;}
.y101{bottom:552.576267pt;}
.y9f{bottom:552.582933pt;}
.yc3{bottom:552.588267pt;}
.y7b{bottom:552.593600pt;}
.ye4{bottom:552.598933pt;}
.y2a{bottom:552.620267pt;}
.y148{bottom:556.598933pt;}
.y54{bottom:569.897600pt;}
.y100{bottom:569.912267pt;}
.y9e{bottom:569.918933pt;}
.yc2{bottom:569.924267pt;}
.y7a{bottom:569.929600pt;}
.ye3{bottom:569.932267pt;}
.y29{bottom:569.948267pt;}
.y7{bottom:573.786667pt;}
.y53{bottom:587.233600pt;}
.yff{bottom:587.248267pt;}
.y9d{bottom:587.254933pt;}
.yc1{bottom:587.260267pt;}
.y79{bottom:587.265600pt;}
.y28{bottom:587.276267pt;}
.y6{bottom:592.685334pt;}
.y126{bottom:595.478667pt;}
.y127{bottom:596.986000pt;}
.y52{bottom:604.569600pt;}
.yfe{bottom:604.584267pt;}
.y78{bottom:604.585600pt;}
.y9c{bottom:604.590933pt;}
.yc0{bottom:604.596267pt;}
.ye2{bottom:604.598933pt;}
.y27{bottom:604.604267pt;}
.y125{bottom:611.793333pt;}
.y51{bottom:621.905600pt;}
.yfd{bottom:621.920267pt;}
.y77{bottom:621.921600pt;}
.y9b{bottom:621.926933pt;}
.ye1{bottom:621.929600pt;}
.y26{bottom:621.932267pt;}
.y50{bottom:639.241600pt;}
.yfc{bottom:639.256267pt;}
.y76{bottom:639.257600pt;}
.y9a{bottom:639.262933pt;}
.ye0{bottom:639.265600pt;}
.y5{bottom:645.598667pt;}
.y4f{bottom:656.577600pt;}
.y99{bottom:656.590933pt;}
.yfb{bottom:656.592267pt;}
.y75{bottom:656.593600pt;}
.y25{bottom:656.598933pt;}
.y129{bottom:666.944000pt;}
.y128{bottom:668.578000pt;}
.y3{bottom:668.977329pt;}
.y4e{bottom:673.913600pt;}
.y98{bottom:673.926933pt;}
.yfa{bottom:673.928267pt;}
.y74{bottom:673.929600pt;}
.ybf{bottom:673.932267pt;}
.y4d{bottom:691.249600pt;}
.ybe{bottom:691.254933pt;}
.y73{bottom:691.257600pt;}
.y97{bottom:691.262933pt;}
.y24{bottom:691.265600pt;}
.y12a{bottom:703.905333pt;}
.y4c{bottom:708.585600pt;}
.ybd{bottom:708.590933pt;}
.y72{bottom:708.593600pt;}
.y96{bottom:708.596267pt;}
.ydf{bottom:708.598933pt;}
.yf9{bottom:708.600267pt;}
.y4b{bottom:725.921600pt;}
.ybc{bottom:725.926933pt;}
.y71{bottom:725.929600pt;}
.y23{bottom:725.937600pt;}
.y166{bottom:725.959333pt;}
.y4a{bottom:743.257600pt;}
.ybb{bottom:743.262933pt;}
.y22{bottom:743.265600pt;}
.y165{bottom:743.287333pt;}
.y12b{bottom:750.455333pt;}
.y49{bottom:760.593600pt;}
.yba{bottom:760.598933pt;}
.y164{bottom:760.615333pt;}
.y12c{bottom:775.636667pt;}
.y48{bottom:777.929600pt;}
.y163{bottom:777.943333pt;}
.y2{bottom:781.661334pt;}
.y21{bottom:795.265600pt;}
.y162{bottom:795.271333pt;}
.y47{bottom:842.834667pt;}
.y1{bottom:859.312000pt;}
.h7{height:28.560000pt;}
.h13{height:29.920173pt;}
.h14{height:34.144000pt;}
.h12{height:34.362667pt;}
.hb{height:38.405333pt;}
.h21{height:38.424000pt;}
.h1f{height:38.576000pt;}
.he{height:38.709333pt;}
.hf{height:40.656000pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h10{height:44.469333pt;}
.h1b{height:44.821333pt;}
.h1c{height:45.461621pt;}
.h1a{height:45.472288pt;}
.h17{height:45.482955pt;}
.h15{height:45.493621pt;}
.h19{height:45.504288pt;}
.h16{height:45.514955pt;}
.h11{height:45.525621pt;}
.h1d{height:45.546955pt;}
.h1e{height:45.584288pt;}
.h18{height:45.621621pt;}
.ha{height:46.200000pt;}
.h2{height:48.960000pt;}
.hc{height:50.533333pt;}
.hd{height:66.528000pt;}
.h5{height:69.360000pt;}
.h20{height:69.400000pt;}
.h4{height:105.826671pt;}
.h8{height:907.086667pt;}
.h9{height:907.333333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w5{width:244.124000pt;}
.w2{width:566.928019pt;}
.w3{width:642.520000pt;}
.w4{width:642.666667pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:75.590533pt;}
.xc{left:84.178400pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x1d{left:99.821467pt;}
.xd{left:103.766400pt;}
.x5{left:113.385867pt;}
.xe{left:119.105733pt;}
.x7{left:122.062667pt;}
.xf{left:134.439067pt;}
.x10{left:153.730400pt;}
.x11{left:172.942267pt;}
.x4{left:180.874667pt;}
.x12{left:192.196933pt;}
.x6{left:199.197998pt;}
.x13{left:211.451467pt;}
.x14{left:226.790800pt;}
.x15{left:246.039467pt;}
.x16{left:265.294000pt;}
.x17{left:280.633333pt;}
.x18{left:299.881867pt;}
.x19{left:319.136533pt;}
.x1a{left:338.391067pt;}
.x1b{left:356.057733pt;}
.x1c{left:373.385733pt;}
.x8{left:378.985733pt;}
.x3{left:404.408000pt;}
.x1e{left:412.016800pt;}
.x1f{left:460.238800pt;}
.x20{left:483.862133pt;}
.x21{left:534.680800pt;}
.xb{left:552.881867pt;}
.xa{left:553.844400pt;}
}




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