
    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_c23d178edf8aeb59a167325d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.964000;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_cf7a4246f1e115f5b7f367aa.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.782000;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_82c1a9c4d88956e0b462ac0d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.969000;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_658245934847414652af3d8e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.990000;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_a67adbc9abaa24c758346e3c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.967000;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_2f284379f7c66b4d2651c5ca.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.010000;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_b760a12a29dca2d69c7030f6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.010000;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);}
.v2{vertical-align:-11.988000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.976000px;}
.lsa{letter-spacing:-0.840000px;}
.lsd{letter-spacing:-0.360000px;}
.ls2b{letter-spacing:-0.255000px;}
.lsb{letter-spacing:-0.252000px;}
.ls22{letter-spacing:-0.240000px;}
.lsc{letter-spacing:-0.209880px;}
.ls9{letter-spacing:0.000000px;}
.lse{letter-spacing:0.209880px;}
.ls1e{letter-spacing:0.240000px;}
.ls27{letter-spacing:0.255000px;}
.ls8{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.419232px;}
.ls5{letter-spacing:0.419688px;}
.ls7{letter-spacing:0.420000px;}
.ls1f{letter-spacing:0.480000px;}
.ls1a{letter-spacing:0.510000px;}
.ls6{letter-spacing:0.672000px;}
.ls2{letter-spacing:0.720000px;}
.ls2a{letter-spacing:0.764400px;}
.ls14{letter-spacing:0.765000px;}
.ls1{letter-spacing:0.840000px;}
.ls24{letter-spacing:0.918000px;}
.ls26{letter-spacing:0.969000px;}
.ls1d{letter-spacing:1.020000px;}
.ls18{letter-spacing:1.080000px;}
.ls0{letter-spacing:1.140000px;}
.ls13{letter-spacing:1.260000px;}
.ls29{letter-spacing:3.370200px;}
.ls17{letter-spacing:3.496800px;}
.ls15{letter-spacing:3.497400px;}
.ls16{letter-spacing:3.497760px;}
.ls25{letter-spacing:3.525000px;}
.ls21{letter-spacing:4.159800px;}
.ls10{letter-spacing:4.319400px;}
.ls11{letter-spacing:4.320000px;}
.ls12{letter-spacing:4.334400px;}
.ls20{letter-spacing:4.942800px;}
.ls28{letter-spacing:6.314400px;}
.ls23{letter-spacing:12.121800px;}
.ls4{letter-spacing:55.366200px;}
.ls1b{letter-spacing:1528.138200px;}
.ls19{letter-spacing:1528.378200px;}
.ls1c{letter-spacing:1528.954200px;}
.lsf{letter-spacing:1531.162200px;}
.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;}
}
.wsb7{word-spacing:-20.160000px;}
.ws1f{word-spacing:-19.908000px;}
.wsf4{word-spacing:-14.484000px;}
.wseb{word-spacing:-14.433000px;}
.ws5c{word-spacing:-14.280000px;}
.wsf3{word-spacing:-13.770000px;}
.wsf2{word-spacing:-13.515000px;}
.wsf7{word-spacing:-13.260000px;}
.ws1d{word-spacing:-12.633600px;}
.wse1{word-spacing:-12.576000px;}
.wsd7{word-spacing:-12.336000px;}
.wsc7{word-spacing:-12.096000px;}
.ws41{word-spacing:-11.856000px;}
.ws42{word-spacing:-11.796960px;}
.ws1e{word-spacing:-11.550000px;}
.ws1{word-spacing:-11.328000px;}
.ws1c{word-spacing:-8.299200px;}
.wsf9{word-spacing:-4.488000px;}
.wsba{word-spacing:-3.600000px;}
.wsbf{word-spacing:-2.805000px;}
.wse8{word-spacing:-2.754000px;}
.wsc8{word-spacing:-2.703000px;}
.ws49{word-spacing:-2.652000px;}
.ws88{word-spacing:-2.550000px;}
.ws9e{word-spacing:-2.499000px;}
.ws39{word-spacing:-2.448000px;}
.ws55{word-spacing:-2.397000px;}
.wsc1{word-spacing:-2.346000px;}
.ws83{word-spacing:-2.295000px;}
.ws9c{word-spacing:-2.193000px;}
.ws2d{word-spacing:-2.142000px;}
.ws3d{word-spacing:-2.091000px;}
.wsc0{word-spacing:-2.040000px;}
.ws34{word-spacing:-1.989000px;}
.wsa0{word-spacing:-1.938000px;}
.wsbc{word-spacing:-1.887000px;}
.ws5f{word-spacing:-1.836000px;}
.ws91{word-spacing:-1.785000px;}
.ws7a{word-spacing:-1.734000px;}
.ws28{word-spacing:-1.683000px;}
.ws5{word-spacing:-1.638000px;}
.ws59{word-spacing:-1.632000px;}
.ws38{word-spacing:-1.581000px;}
.wsdf{word-spacing:-1.530000px;}
.ws76{word-spacing:-1.479000px;}
.ws43{word-spacing:-1.428000px;}
.wse9{word-spacing:-1.377000px;}
.ws50{word-spacing:-1.326000px;}
.ws4f{word-spacing:-1.275000px;}
.ws89{word-spacing:-1.224000px;}
.ws5a{word-spacing:-1.173000px;}
.wsc5{word-spacing:-1.122000px;}
.ws87{word-spacing:-1.071000px;}
.wsc3{word-spacing:-1.020000px;}
.wsb6{word-spacing:-0.969000px;}
.wsb5{word-spacing:-0.918000px;}
.ws9f{word-spacing:-0.867000px;}
.ws10{word-spacing:-0.840000px;}
.ws2b{word-spacing:-0.816000px;}
.ws2e{word-spacing:-0.765000px;}
.wsca{word-spacing:-0.714000px;}
.ws4a{word-spacing:-0.663000px;}
.ws7f{word-spacing:-0.612000px;}
.ws26{word-spacing:-0.561000px;}
.ws16{word-spacing:-0.546000px;}
.ws4e{word-spacing:-0.510000px;}
.ws13{word-spacing:-0.462000px;}
.ws3c{word-spacing:-0.459000px;}
.ws22{word-spacing:-0.420000px;}
.ws8f{word-spacing:-0.408000px;}
.wsa9{word-spacing:-0.306000px;}
.wsc{word-spacing:-0.294000px;}
.ws52{word-spacing:-0.255000px;}
.ws14{word-spacing:-0.252000px;}
.ws1b{word-spacing:-0.209880px;}
.ws48{word-spacing:-0.204000px;}
.ws29{word-spacing:-0.153000px;}
.ws3f{word-spacing:-0.102000px;}
.ws56{word-spacing:-0.051000px;}
.ws0{word-spacing:-0.048000px;}
.ws2{word-spacing:0.000000px;}
.ws30{word-spacing:0.051000px;}
.ws69{word-spacing:0.102000px;}
.ws27{word-spacing:0.153000px;}
.wsf{word-spacing:0.168000px;}
.ws97{word-spacing:0.204000px;}
.ws1a{word-spacing:0.209880px;}
.wsd3{word-spacing:0.255000px;}
.ws63{word-spacing:0.306000px;}
.ws3{word-spacing:0.336000px;}
.wse0{word-spacing:0.357000px;}
.wsda{word-spacing:0.408000px;}
.ws6a{word-spacing:0.459000px;}
.ws8e{word-spacing:0.504000px;}
.wsbe{word-spacing:0.510000px;}
.ws5d{word-spacing:0.561000px;}
.ws75{word-spacing:0.612000px;}
.ws6f{word-spacing:0.648000px;}
.ws33{word-spacing:0.663000px;}
.ws99{word-spacing:0.714000px;}
.ws46{word-spacing:0.765000px;}
.wsab{word-spacing:0.816000px;}
.ws31{word-spacing:0.867000px;}
.ws4c{word-spacing:0.918000px;}
.ws82{word-spacing:0.969000px;}
.ws98{word-spacing:1.020000px;}
.wsb3{word-spacing:1.071000px;}
.ws80{word-spacing:1.122000px;}
.ws44{word-spacing:1.173000px;}
.ws67{word-spacing:1.224000px;}
.ws4d{word-spacing:1.275000px;}
.ws12{word-spacing:1.302000px;}
.ws90{word-spacing:1.326000px;}
.ws3e{word-spacing:1.377000px;}
.ws7d{word-spacing:1.428000px;}
.wsd5{word-spacing:1.479000px;}
.wse{word-spacing:1.512000px;}
.ws68{word-spacing:1.530000px;}
.ws96{word-spacing:1.581000px;}
.ws4b{word-spacing:1.632000px;}
.ws74{word-spacing:1.683000px;}
.wse4{word-spacing:1.785000px;}
.wsd9{word-spacing:1.836000px;}
.wsa1{word-spacing:1.887000px;}
.ws2c{word-spacing:1.938000px;}
.wsd1{word-spacing:1.989000px;}
.wsd{word-spacing:2.016000px;}
.ws8c{word-spacing:2.040000px;}
.ws8d{word-spacing:2.091000px;}
.ws92{word-spacing:2.142000px;}
.ws7{word-spacing:2.184000px;}
.ws51{word-spacing:2.193000px;}
.ws66{word-spacing:2.244000px;}
.ws8b{word-spacing:2.295000px;}
.ws65{word-spacing:2.346000px;}
.ws9{word-spacing:2.352000px;}
.ws6e{word-spacing:2.397000px;}
.wsb9{word-spacing:2.448000px;}
.wsb{word-spacing:2.478000px;}
.ws79{word-spacing:2.499000px;}
.wsd0{word-spacing:2.550000px;}
.ws77{word-spacing:2.601000px;}
.ws62{word-spacing:2.652000px;}
.ws32{word-spacing:2.703000px;}
.wsaf{word-spacing:2.754000px;}
.ws9d{word-spacing:2.805000px;}
.ws58{word-spacing:2.856000px;}
.ws2a{word-spacing:2.907000px;}
.wsd8{word-spacing:2.958000px;}
.wsd4{word-spacing:3.009000px;}
.ws8a{word-spacing:3.060000px;}
.wsa{word-spacing:3.066000px;}
.ws7c{word-spacing:3.111000px;}
.ws11{word-spacing:3.150000px;}
.ws57{word-spacing:3.162000px;}
.wse2{word-spacing:3.213000px;}
.ws17{word-spacing:3.234000px;}
.ws7e{word-spacing:3.264000px;}
.ws9a{word-spacing:3.315000px;}
.wsb8{word-spacing:3.366000px;}
.wsdd{word-spacing:3.417000px;}
.ws86{word-spacing:3.468000px;}
.wsaa{word-spacing:3.519000px;}
.ws21{word-spacing:3.570000px;}
.wsac{word-spacing:3.621000px;}
.ws85{word-spacing:3.672000px;}
.ws53{word-spacing:3.723000px;}
.ws23{word-spacing:3.774000px;}
.ws6{word-spacing:3.780000px;}
.ws4{word-spacing:3.822000px;}
.ws25{word-spacing:3.876000px;}
.ws5b{word-spacing:3.927000px;}
.ws7b{word-spacing:4.029000px;}
.ws15{word-spacing:4.074000px;}
.ws6c{word-spacing:4.080000px;}
.wsb0{word-spacing:4.131000px;}
.wsb4{word-spacing:4.182000px;}
.wsa5{word-spacing:4.233000px;}
.wsa8{word-spacing:4.284000px;}
.ws71{word-spacing:4.335000px;}
.ws84{word-spacing:4.386000px;}
.wsb2{word-spacing:4.437000px;}
.wse6{word-spacing:4.488000px;}
.ws6b{word-spacing:4.539000px;}
.ws6d{word-spacing:4.590000px;}
.wsc6{word-spacing:4.641000px;}
.wsd6{word-spacing:4.794000px;}
.wsae{word-spacing:4.845000px;}
.ws8{word-spacing:4.872000px;}
.ws5e{word-spacing:4.998000px;}
.ws60{word-spacing:5.049000px;}
.ws93{word-spacing:5.100000px;}
.ws9b{word-spacing:5.184000px;}
.ws73{word-spacing:5.202000px;}
.wscb{word-spacing:5.253000px;}
.ws20{word-spacing:5.292000px;}
.wsa4{word-spacing:5.304000px;}
.wscc{word-spacing:5.406000px;}
.ws19{word-spacing:5.418000px;}
.ws54{word-spacing:5.457000px;}
.ws3a{word-spacing:5.508000px;}
.wsf5{word-spacing:5.559000px;}
.wsc9{word-spacing:5.661000px;}
.wscd{word-spacing:5.763000px;}
.ws37{word-spacing:5.865000px;}
.ws36{word-spacing:5.967000px;}
.ws40{word-spacing:6.018000px;}
.wsc4{word-spacing:6.069000px;}
.ws61{word-spacing:6.120000px;}
.ws72{word-spacing:6.171000px;}
.wse5{word-spacing:6.222000px;}
.wsa7{word-spacing:6.324000px;}
.ws78{word-spacing:6.426000px;}
.ws95{word-spacing:6.477000px;}
.ws24{word-spacing:6.528000px;}
.wsad{word-spacing:6.579000px;}
.ws18{word-spacing:6.720000px;}
.ws94{word-spacing:6.732000px;}
.wsa3{word-spacing:6.834000px;}
.wsef{word-spacing:6.885000px;}
.ws64{word-spacing:6.936000px;}
.wsbd{word-spacing:7.038000px;}
.wsed{word-spacing:7.191000px;}
.ws70{word-spacing:7.293000px;}
.ws81{word-spacing:7.395000px;}
.ws35{word-spacing:7.497000px;}
.ws45{word-spacing:7.548000px;}
.ws47{word-spacing:7.599000px;}
.wsd2{word-spacing:7.650000px;}
.wsa6{word-spacing:7.752000px;}
.wsbb{word-spacing:7.854000px;}
.ws3b{word-spacing:7.956000px;}
.ws2f{word-spacing:8.058000px;}
.wsce{word-spacing:8.160000px;}
.wse7{word-spacing:8.262000px;}
.wsb1{word-spacing:8.517000px;}
.wsa2{word-spacing:8.568000px;}
.wsdc{word-spacing:8.925000px;}
.wsdb{word-spacing:8.976000px;}
.wsf1{word-spacing:9.129000px;}
.wsec{word-spacing:9.843000px;}
.wsfa{word-spacing:10.506000px;}
.wsf0{word-spacing:11.373000px;}
.wsee{word-spacing:12.087000px;}
.wsfb{word-spacing:13.209000px;}
.wsfc{word-spacing:14.943000px;}
.wsf8{word-spacing:24.633000px;}
.wsf6{word-spacing:1486.234200px;}
.wsc2{word-spacing:1493.626200px;}
.wse3{word-spacing:1497.178200px;}
.wsea{word-spacing:1498.714200px;}
.wsde{word-spacing:1499.578200px;}
.wscf{word-spacing:1500.202200px;}
._9{margin-left:-2381.103000px;}
._10{margin-left:-12.923400px;}
._a{margin-left:-5.857200px;}
._4{margin-left:-4.249200px;}
._3{margin-left:-2.640000px;}
._0{margin-left:-1.449600px;}
._2{width:1.176000px;}
._8{width:3.138240px;}
._7{width:4.320960px;}
._e{width:6.213600px;}
._d{width:7.272000px;}
._c{width:9.868200px;}
._b{width:12.373200px;}
._f{width:24.751200px;}
._6{width:43.335528px;}
._5{width:47.302260px;}
._1{width:174.429000px;}
.fc1{color:rgb(87,87,86);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:20.988000px;}
.fs8{font-size:33.600000px;}
.fs7{font-size:36.000000px;}
.fs5{font-size:41.976000px;}
.fs1{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs9{font-size:51.000000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.fs2{font-size:114.000000px;}
.y0{bottom:0.000000px;}
.y123{bottom:77.491800px;}
.y103{bottom:86.064300px;}
.y19a{bottom:87.252450px;}
.y28{bottom:88.036500px;}
.y1a8{bottom:89.236650px;}
.y77{bottom:91.764150px;}
.y167{bottom:92.220150px;}
.yd1{bottom:93.689550px;}
.ya8{bottom:93.979950px;}
.y50{bottom:95.848800px;}
.y122{bottom:96.991800px;}
.ye8{bottom:98.491800px;}
.y1ce{bottom:99.401250px;}
.y1c1{bottom:101.161050px;}
.y27{bottom:103.036650px;}
.y102{bottom:105.564300px;}
.y188{bottom:106.440600px;}
.y147{bottom:106.612200px;}
.y199{bottom:106.752450px;}
.y1a7{bottom:108.736650px;}
.y76{bottom:111.264150px;}
.y166{bottom:111.720150px;}
.yd0{bottom:113.189550px;}
.ya7{bottom:113.479950px;}
.y8d{bottom:114.732000px;}
.y4f{bottom:115.348800px;}
.y121{bottom:116.491800px;}
.ye7{bottom:117.991800px;}
.y1cd{bottom:118.901250px;}
.y1c0{bottom:120.661050px;}
.y101{bottom:125.064300px;}
.y187{bottom:125.940600px;}
.y146{bottom:126.112200px;}
.y1a6{bottom:128.236650px;}
.y75{bottom:130.764150px;}
.y165{bottom:131.220150px;}
.ycf{bottom:132.689550px;}
.ya6{bottom:132.979950px;}
.y8c{bottom:134.232000px;}
.y4e{bottom:134.848800px;}
.y120{bottom:135.991800px;}
.ye6{bottom:137.491800px;}
.y1bf{bottom:140.161050px;}
.y100{bottom:144.564300px;}
.y186{bottom:145.440600px;}
.y145{bottom:145.612200px;}
.y198{bottom:147.512250px;}
.y74{bottom:150.264150px;}
.y164{bottom:150.720150px;}
.yce{bottom:152.189550px;}
.ya5{bottom:152.479950px;}
.y8b{bottom:153.732000px;}
.y156{bottom:154.239750px;}
.y4d{bottom:154.348800px;}
.y11f{bottom:155.491800px;}
.ye5{bottom:156.991800px;}
.y26{bottom:157.395300px;}
.y1cc{bottom:159.661050px;}
.y185{bottom:164.940600px;}
.y144{bottom:165.112200px;}
.y197{bottom:167.012250px;}
.y1a5{bottom:168.996600px;}
.y73{bottom:169.764150px;}
.y163{bottom:170.220150px;}
.ycd{bottom:171.689550px;}
.ya4{bottom:171.979950px;}
.y25{bottom:172.395300px;}
.y8a{bottom:173.232000px;}
.y4c{bottom:173.848800px;}
.y11e{bottom:174.991800px;}
.ye4{bottom:176.491800px;}
.y1cb{bottom:179.161050px;}
.y1be{bottom:180.921000px;}
.y143{bottom:184.612200px;}
.yff{bottom:185.324100px;}
.y196{bottom:186.512250px;}
.y24{bottom:187.395300px;}
.y1a4{bottom:188.496600px;}
.y162{bottom:189.720150px;}
.ycc{bottom:191.189550px;}
.ya3{bottom:191.479950px;}
.y89{bottom:192.732000px;}
.y4b{bottom:193.348800px;}
.y11d{bottom:194.491800px;}
.y155{bottom:194.999700px;}
.ye3{bottom:195.991800px;}
.y1ca{bottom:198.661050px;}
.y1bd{bottom:200.421000px;}
.y23{bottom:202.395300px;}
.y142{bottom:204.112200px;}
.yfe{bottom:204.824100px;}
.y184{bottom:205.700550px;}
.y195{bottom:206.012250px;}
.y72{bottom:206.272200px;}
.y1a3{bottom:207.996600px;}
.ycb{bottom:210.689550px;}
.ya2{bottom:210.979950px;}
.y88{bottom:212.232000px;}
.y4a{bottom:212.848800px;}
.y11c{bottom:213.991800px;}
.y154{bottom:214.499700px;}
.ye2{bottom:215.491800px;}
.y22{bottom:217.395300px;}
.y1d6{bottom:219.921000px;}
.yfd{bottom:224.324100px;}
.y194{bottom:225.512250px;}
.yca{bottom:230.189550px;}
.y161{bottom:230.479950px;}
.y49{bottom:232.348800px;}
.y21{bottom:232.395300px;}
.y11b{bottom:233.491800px;}
.y153{bottom:233.999700px;}
.ye1{bottom:234.991800px;}
.y1c9{bottom:239.421000px;}
.y1bc{bottom:241.180800px;}
.yfc{bottom:243.824100px;}
.y1a2{bottom:244.504350px;}
.y141{bottom:244.872000px;}
.y193{bottom:245.012250px;}
.y183{bottom:246.460350px;}
.y20{bottom:247.395300px;}
.y71{bottom:248.532000px;}
.yc9{bottom:249.689550px;}
.y160{bottom:249.979950px;}
.ya1{bottom:251.739900px;}
.y48{bottom:251.848800px;}
.y87{bottom:252.991800px;}
.y152{bottom:253.499700px;}
.ye0{bottom:254.491800px;}
.y1c8{bottom:258.921000px;}
.y1f{bottom:262.395300px;}
.yfb{bottom:263.324100px;}
.y140{bottom:264.372000px;}
.y192{bottom:264.512250px;}
.y182{bottom:265.960350px;}
.y70{bottom:268.032000px;}
.y15f{bottom:269.479950px;}
.ya0{bottom:271.239900px;}
.y86{bottom:272.491800px;}
.y151{bottom:272.999700px;}
.ydf{bottom:273.991800px;}
.y11a{bottom:274.251600px;}
.y1e{bottom:277.395300px;}
.y1d5{bottom:280.180800px;}
.y1bb{bottom:281.940600px;}
.yfa{bottom:282.824100px;}
.y13f{bottom:283.872000px;}
.y191{bottom:284.012250px;}
.y181{bottom:285.460350px;}
.yc8{bottom:286.197300px;}
.y6f{bottom:287.532000px;}
.y15e{bottom:288.979950px;}
.y9f{bottom:290.739900px;}
.y85{bottom:291.991800px;}
.y150{bottom:292.499700px;}
.y47{bottom:292.608600px;}
.yde{bottom:293.491800px;}
.y119{bottom:293.751600px;}
.y1d{bottom:296.647200px;}
.y1c7{bottom:299.680800px;}
.y1ba{bottom:301.440600px;}
.yf9{bottom:302.324100px;}
.y13e{bottom:303.372000px;}
.y180{bottom:304.960350px;}
.y6e{bottom:307.032000px;}
.yc7{bottom:307.197300px;}
.y15d{bottom:308.479950px;}
.y9e{bottom:310.239900px;}
.y84{bottom:311.491800px;}
.y46{bottom:312.108600px;}
.y1a1{bottom:312.224100px;}
.y118{bottom:313.251600px;}
.y1c6{bottom:319.180800px;}
.y190{bottom:320.520150px;}
.y1b9{bottom:320.940600px;}
.yf8{bottom:321.824100px;}
.y13d{bottom:322.872000px;}
.y6d{bottom:326.532000px;}
.y15c{bottom:327.979950px;}
.y9d{bottom:329.739900px;}
.y83{bottom:330.991800px;}
.y45{bottom:331.608600px;}
.y117{bottom:332.751600px;}
.y14f{bottom:333.259500px;}
.ydd{bottom:334.251600px;}
.y1b8{bottom:340.440600px;}
.yf7{bottom:341.324100px;}
.y17f{bottom:345.720150px;}
.y6c{bottom:346.032000px;}
.y18d{bottom:347.479950px;}
.y1a0{bottom:348.732000px;}
.y9c{bottom:349.239900px;}
.yc6{bottom:349.457250px;}
.y44{bottom:351.108600px;}
.y116{bottom:352.251600px;}
.y14e{bottom:352.759500px;}
.y1c{bottom:353.566950px;}
.ydc{bottom:353.751600px;}
.y1c5{bottom:359.940600px;}
.yf6{bottom:360.824100px;}
.y13c{bottom:363.631800px;}
.y17e{bottom:365.220150px;}
.y82{bottom:367.499700px;}
.y9b{bottom:368.739900px;}
.yc5{bottom:368.957250px;}
.y43{bottom:370.608600px;}
.y115{bottom:371.751600px;}
.y14d{bottom:372.259500px;}
.ydb{bottom:373.251600px;}
.y1b{bottom:377.070900px;}
.y1c4{bottom:379.440600px;}
.yf5{bottom:380.324100px;}
.y1b7{bottom:381.200400px;}
.y6b{bottom:382.539900px;}
.y13b{bottom:383.131800px;}
.y17d{bottom:384.720150px;}
.y9a{bottom:388.239900px;}
.yc4{bottom:388.457250px;}
.y81{bottom:388.499700px;}
.y42{bottom:390.108600px;}
.y19f{bottom:390.991800px;}
.y114{bottom:391.251600px;}
.y14c{bottom:391.759500px;}
.y1a{bottom:392.070900px;}
.yda{bottom:392.751600px;}
.y1d4{bottom:398.940600px;}
.yf4{bottom:399.824100px;}
.y1b6{bottom:400.700400px;}
.y13a{bottom:402.631800px;}
.y17c{bottom:404.220150px;}
.y19{bottom:407.070900px;}
.y15b{bottom:407.739900px;}
.yc3{bottom:407.957250px;}
.y41{bottom:409.608600px;}
.y19e{bottom:410.491800px;}
.y14b{bottom:411.259500px;}
.yd9{bottom:412.251600px;}
.yf3{bottom:419.324100px;}
.y1b5{bottom:420.200400px;}
.y18{bottom:422.070900px;}
.y139{bottom:422.131800px;}
.y15a{bottom:427.239900px;}
.yc2{bottom:427.457250px;}
.y99{bottom:428.999700px;}
.y40{bottom:429.108600px;}
.y80{bottom:430.759500px;}
.yd8{bottom:431.751600px;}
.y113{bottom:432.011550px;}
.y17{bottom:437.070900px;}
.yf2{bottom:438.824100px;}
.y1d3{bottom:439.700400px;}
.y17b{bottom:444.979950px;}
.y159{bottom:446.739900px;}
.yc1{bottom:446.957250px;}
.y19d{bottom:446.999700px;}
.y98{bottom:448.499700px;}
.y6a{bottom:450.259500px;}
.yd7{bottom:451.251600px;}
.y112{bottom:451.511550px;}
.y16{bottom:452.070900px;}
.yf1{bottom:458.324100px;}
.y1d2{bottom:459.200400px;}
.y1b4{bottom:460.960350px;}
.y138{bottom:462.891750px;}
.y17a{bottom:464.479950px;}
.y158{bottom:466.239900px;}
.y15{bottom:467.070900px;}
.y97{bottom:467.999700px;}
.y69{bottom:469.759500px;}
.y3f{bottom:469.868550px;}
.yd6{bottom:470.751600px;}
.y111{bottom:471.011550px;}
.y1d1{bottom:478.700400px;}
.y1b3{bottom:480.460350px;}
.y14{bottom:482.070900px;}
.y137{bottom:482.391750px;}
.y179{bottom:483.979950px;}
.y96{bottom:487.499700px;}
.yc0{bottom:487.717050px;}
.y68{bottom:489.259500px;}
.y3e{bottom:489.368550px;}
.yd5{bottom:490.251600px;}
.y110{bottom:490.511550px;}
.yf0{bottom:494.832000px;}
.y13{bottom:497.070900px;}
.y136{bottom:501.891750px;}
.y178{bottom:503.479950px;}
.y157{bottom:506.999700px;}
.ybf{bottom:507.217050px;}
.y67{bottom:508.759500px;}
.y3d{bottom:508.868550px;}
.yd4{bottom:509.751600px;}
.y10f{bottom:510.011550px;}
.y12{bottom:512.070900px;}
.y1d0{bottom:519.460350px;}
.y1b2{bottom:521.220150px;}
.y177{bottom:522.979950px;}
.y18c{bottom:526.499700px;}
.ybe{bottom:526.717050px;}
.y11{bottom:527.070900px;}
.y66{bottom:528.259500px;}
.y3c{bottom:528.368550px;}
.yd3{bottom:529.251600px;}
.y10e{bottom:529.511550px;}
.y14a{bottom:530.019450px;}
.yef{bottom:537.091800px;}
.y1b1{bottom:540.720150px;}
.y10{bottom:542.070900px;}
.y135{bottom:542.651550px;}
.y18b{bottom:545.999700px;}
.ybd{bottom:546.217050px;}
.y65{bottom:547.759500px;}
.y3b{bottom:547.868550px;}
.y10d{bottom:549.011550px;}
.y149{bottom:549.519450px;}
.yee{bottom:556.591800px;}
.yf{bottom:557.070900px;}
.y1b0{bottom:560.220150px;}
.y134{bottom:562.151550px;}
.y176{bottom:563.739900px;}
.y18f{bottom:565.499700px;}
.ybc{bottom:565.717050px;}
.yd2{bottom:565.759500px;}
.y7f{bottom:567.259500px;}
.y10c{bottom:568.511550px;}
.y148{bottom:569.019450px;}
.ye{bottom:572.070900px;}
.yed{bottom:576.091800px;}
.y1c3{bottom:581.479950px;}
.y133{bottom:581.651550px;}
.y18e{bottom:584.999700px;}
.ybb{bottom:585.217050px;}
.y7e{bottom:586.759500px;}
.y10b{bottom:588.011550px;}
.y64{bottom:588.519450px;}
.y3a{bottom:588.628350px;}
.yd{bottom:591.322800px;}
.yec{bottom:595.591800px;}
.y1af{bottom:600.979950px;}
.y175{bottom:604.499700px;}
.yba{bottom:604.717050px;}
.y95{bottom:606.259500px;}
.y10a{bottom:607.511550px;}
.y63{bottom:608.019450px;}
.y39{bottom:608.128350px;}
.yeb{bottom:615.091800px;}
.y1ae{bottom:620.479950px;}
.y132{bottom:622.411350px;}
.y174{bottom:623.999700px;}
.yb9{bottom:624.217050px;}
.y94{bottom:625.759500px;}
.y109{bottom:627.011550px;}
.y62{bottom:627.519450px;}
.y38{bottom:627.628350px;}
.y1ad{bottom:639.979950px;}
.y131{bottom:641.911350px;}
.y173{bottom:643.499700px;}
.yb8{bottom:643.717050px;}
.y93{bottom:645.259500px;}
.y61{bottom:647.019450px;}
.y37{bottom:647.128350px;}
.yc{bottom:648.242550px;}
.yea{bottom:651.599700px;}
.y1c2{bottom:661.239750px;}
.y130{bottom:661.411350px;}
.y172{bottom:662.999700px;}
.yb7{bottom:663.217050px;}
.y108{bottom:663.519450px;}
.y92{bottom:664.759500px;}
.y60{bottom:666.519450px;}
.y36{bottom:666.628350px;}
.ye9{bottom:676.799700px;}
.y1ac{bottom:680.739750px;}
.y171{bottom:682.499700px;}
.yb6{bottom:682.717050px;}
.y91{bottom:684.259500px;}
.y107{bottom:684.519450px;}
.y5f{bottom:686.019450px;}
.y35{bottom:686.128350px;}
.y1ab{bottom:700.239750px;}
.y170{bottom:701.999700px;}
.y12f{bottom:702.171150px;}
.yb5{bottom:702.217050px;}
.y90{bottom:703.759500px;}
.y5e{bottom:705.519450px;}
.y34{bottom:705.628350px;}
.yb{bottom:712.362150px;}
.y1aa{bottom:719.739750px;}
.y16f{bottom:721.499700px;}
.y12e{bottom:721.671150px;}
.yb4{bottom:721.717050px;}
.y8f{bottom:723.259500px;}
.y5d{bottom:725.019450px;}
.y33{bottom:725.128350px;}
.y106{bottom:726.779250px;}
.ya{bottom:737.562150px;}
.y16e{bottom:740.999700px;}
.y12d{bottom:741.171150px;}
.yb3{bottom:741.217050px;}
.y8e{bottom:742.759500px;}
.y5c{bottom:744.519450px;}
.y32{bottom:744.628350px;}
.y105{bottom:746.279250px;}
.y16d{bottom:760.499700px;}
.y12c{bottom:760.671150px;}
.y19c{bottom:762.259500px;}
.y9{bottom:762.762150px;}
.y5b{bottom:764.019450px;}
.y31{bottom:764.128350px;}
.y104{bottom:765.779250px;}
.y1a9{bottom:779.999700px;}
.y19b{bottom:781.759500px;}
.yb2{bottom:781.976850px;}
.y5a{bottom:783.519450px;}
.y30{bottom:783.628350px;}
.y7d{bottom:785.279250px;}
.y16c{bottom:801.259500px;}
.y12b{bottom:801.431100px;}
.yb1{bottom:801.476850px;}
.y59{bottom:803.019450px;}
.y2f{bottom:803.128350px;}
.y7c{bottom:804.779250px;}
.y16b{bottom:820.759500px;}
.y12a{bottom:820.931100px;}
.yb0{bottom:820.976850px;}
.y58{bottom:822.519450px;}
.y7b{bottom:824.279250px;}
.y8{bottom:830.481900px;}
.y2e{bottom:839.636250px;}
.y16a{bottom:840.259500px;}
.y129{bottom:840.431100px;}
.yaf{bottom:840.476850px;}
.y57{bottom:842.019450px;}
.y7a{bottom:843.779250px;}
.y169{bottom:859.759500px;}
.y128{bottom:859.931100px;}
.yae{bottom:859.976850px;}
.y56{bottom:861.519450px;}
.y79{bottom:863.279250px;}
.y7{bottom:864.681900px;}
.y127{bottom:879.431100px;}
.yad{bottom:879.476850px;}
.y18a{bottom:881.019450px;}
.y78{bottom:882.779250px;}
.y6{bottom:898.881900px;}
.y126{bottom:898.931100px;}
.yac{bottom:898.976850px;}
.y168{bottom:900.519450px;}
.y55{bottom:902.279250px;}
.yab{bottom:918.476850px;}
.y189{bottom:920.019450px;}
.y54{bottom:921.779250px;}
.y2d{bottom:928.615650px;}
.y5{bottom:933.081900px;}
.y125{bottom:935.439000px;}
.y1cf{bottom:939.519450px;}
.y53{bottom:941.279250px;}
.y2c{bottom:952.119750px;}
.yaa{bottom:954.984750px;}
.y52{bottom:960.779250px;}
.y2b{bottom:967.119750px;}
.y4{bottom:967.281900px;}
.y124{bottom:973.446750px;}
.ya9{bottom:975.984750px;}
.y51{bottom:980.279250px;}
.y2a{bottom:982.119750px;}
.y3{bottom:1026.213300px;}
.y2{bottom:1048.343100px;}
.y29{bottom:1062.680250px;}
.y1{bottom:1062.743100px;}
.h8{height:16.286688px;}
.h4{height:32.592000px;}
.h3{height:37.104000px;}
.h2{height:37.248000px;}
.ha{height:39.576000px;}
.h9{height:42.864000px;}
.hb{height:55.872000px;}
.h7{height:56.549376px;}
.h6{height:65.184000px;}
.h5{height:88.464000px;}
.h1{height:1126.500000px;}
.h0{height:1126.771500px;}
.w0{width:786.613500px;}
.w1{width:786.750000px;}
.x0{left:0.000000px;}
.x10{left:85.039350px;}
.x3{left:106.299150px;}
.x4{left:116.019750px;}
.x12{left:127.559100px;}
.x5{left:134.131350px;}
.xb{left:151.908450px;}
.x9{left:160.592100px;}
.xa{left:162.597450px;}
.x7{left:163.827900px;}
.x6{left:178.192050px;}
.xe{left:182.834700px;}
.x8{left:229.234800px;}
.xc{left:242.504100px;}
.x1{left:362.315700px;}
.xf{left:371.621550px;}
.xd{left:374.003250px;}
.x2{left:654.415650px;}
.x14{left:690.234900px;}
.x13{left:692.682750px;}
.x11{left:694.770900px;}
@media print{
.v2{vertical-align:-10.656000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.312000pt;}
.lsa{letter-spacing:-0.746667pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls2b{letter-spacing:-0.226667pt;}
.lsb{letter-spacing:-0.224000pt;}
.ls22{letter-spacing:-0.213333pt;}
.lsc{letter-spacing:-0.186560pt;}
.ls9{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.186560pt;}
.ls1e{letter-spacing:0.213333pt;}
.ls27{letter-spacing:0.226667pt;}
.ls8{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.372651pt;}
.ls5{letter-spacing:0.373056pt;}
.ls7{letter-spacing:0.373333pt;}
.ls1f{letter-spacing:0.426667pt;}
.ls1a{letter-spacing:0.453333pt;}
.ls6{letter-spacing:0.597333pt;}
.ls2{letter-spacing:0.640000pt;}
.ls2a{letter-spacing:0.679467pt;}
.ls14{letter-spacing:0.680000pt;}
.ls1{letter-spacing:0.746667pt;}
.ls24{letter-spacing:0.816000pt;}
.ls26{letter-spacing:0.861333pt;}
.ls1d{letter-spacing:0.906667pt;}
.ls18{letter-spacing:0.960000pt;}
.ls0{letter-spacing:1.013333pt;}
.ls13{letter-spacing:1.120000pt;}
.ls29{letter-spacing:2.995733pt;}
.ls17{letter-spacing:3.108267pt;}
.ls15{letter-spacing:3.108800pt;}
.ls16{letter-spacing:3.109120pt;}
.ls25{letter-spacing:3.133333pt;}
.ls21{letter-spacing:3.697600pt;}
.ls10{letter-spacing:3.839467pt;}
.ls11{letter-spacing:3.840000pt;}
.ls12{letter-spacing:3.852800pt;}
.ls20{letter-spacing:4.393600pt;}
.ls28{letter-spacing:5.612800pt;}
.ls23{letter-spacing:10.774933pt;}
.ls4{letter-spacing:49.214400pt;}
.ls1b{letter-spacing:1358.345067pt;}
.ls19{letter-spacing:1358.558400pt;}
.ls1c{letter-spacing:1359.070400pt;}
.lsf{letter-spacing:1361.033067pt;}
.wsb7{word-spacing:-17.920000pt;}
.ws1f{word-spacing:-17.696000pt;}
.wsf4{word-spacing:-12.874667pt;}
.wseb{word-spacing:-12.829333pt;}
.ws5c{word-spacing:-12.693333pt;}
.wsf3{word-spacing:-12.240000pt;}
.wsf2{word-spacing:-12.013333pt;}
.wsf7{word-spacing:-11.786667pt;}
.ws1d{word-spacing:-11.229867pt;}
.wse1{word-spacing:-11.178667pt;}
.wsd7{word-spacing:-10.965333pt;}
.wsc7{word-spacing:-10.752000pt;}
.ws41{word-spacing:-10.538667pt;}
.ws42{word-spacing:-10.486187pt;}
.ws1e{word-spacing:-10.266667pt;}
.ws1{word-spacing:-10.069333pt;}
.ws1c{word-spacing:-7.377067pt;}
.wsf9{word-spacing:-3.989333pt;}
.wsba{word-spacing:-3.200000pt;}
.wsbf{word-spacing:-2.493333pt;}
.wse8{word-spacing:-2.448000pt;}
.wsc8{word-spacing:-2.402667pt;}
.ws49{word-spacing:-2.357333pt;}
.ws88{word-spacing:-2.266667pt;}
.ws9e{word-spacing:-2.221333pt;}
.ws39{word-spacing:-2.176000pt;}
.ws55{word-spacing:-2.130667pt;}
.wsc1{word-spacing:-2.085333pt;}
.ws83{word-spacing:-2.040000pt;}
.ws9c{word-spacing:-1.949333pt;}
.ws2d{word-spacing:-1.904000pt;}
.ws3d{word-spacing:-1.858667pt;}
.wsc0{word-spacing:-1.813333pt;}
.ws34{word-spacing:-1.768000pt;}
.wsa0{word-spacing:-1.722667pt;}
.wsbc{word-spacing:-1.677333pt;}
.ws5f{word-spacing:-1.632000pt;}
.ws91{word-spacing:-1.586667pt;}
.ws7a{word-spacing:-1.541333pt;}
.ws28{word-spacing:-1.496000pt;}
.ws5{word-spacing:-1.456000pt;}
.ws59{word-spacing:-1.450667pt;}
.ws38{word-spacing:-1.405333pt;}
.wsdf{word-spacing:-1.360000pt;}
.ws76{word-spacing:-1.314667pt;}
.ws43{word-spacing:-1.269333pt;}
.wse9{word-spacing:-1.224000pt;}
.ws50{word-spacing:-1.178667pt;}
.ws4f{word-spacing:-1.133333pt;}
.ws89{word-spacing:-1.088000pt;}
.ws5a{word-spacing:-1.042667pt;}
.wsc5{word-spacing:-0.997333pt;}
.ws87{word-spacing:-0.952000pt;}
.wsc3{word-spacing:-0.906667pt;}
.wsb6{word-spacing:-0.861333pt;}
.wsb5{word-spacing:-0.816000pt;}
.ws9f{word-spacing:-0.770667pt;}
.ws10{word-spacing:-0.746667pt;}
.ws2b{word-spacing:-0.725333pt;}
.ws2e{word-spacing:-0.680000pt;}
.wsca{word-spacing:-0.634667pt;}
.ws4a{word-spacing:-0.589333pt;}
.ws7f{word-spacing:-0.544000pt;}
.ws26{word-spacing:-0.498667pt;}
.ws16{word-spacing:-0.485333pt;}
.ws4e{word-spacing:-0.453333pt;}
.ws13{word-spacing:-0.410667pt;}
.ws3c{word-spacing:-0.408000pt;}
.ws22{word-spacing:-0.373333pt;}
.ws8f{word-spacing:-0.362667pt;}
.wsa9{word-spacing:-0.272000pt;}
.wsc{word-spacing:-0.261333pt;}
.ws52{word-spacing:-0.226667pt;}
.ws14{word-spacing:-0.224000pt;}
.ws1b{word-spacing:-0.186560pt;}
.ws48{word-spacing:-0.181333pt;}
.ws29{word-spacing:-0.136000pt;}
.ws3f{word-spacing:-0.090667pt;}
.ws56{word-spacing:-0.045333pt;}
.ws0{word-spacing:-0.042667pt;}
.ws2{word-spacing:0.000000pt;}
.ws30{word-spacing:0.045333pt;}
.ws69{word-spacing:0.090667pt;}
.ws27{word-spacing:0.136000pt;}
.wsf{word-spacing:0.149333pt;}
.ws97{word-spacing:0.181333pt;}
.ws1a{word-spacing:0.186560pt;}
.wsd3{word-spacing:0.226667pt;}
.ws63{word-spacing:0.272000pt;}
.ws3{word-spacing:0.298667pt;}
.wse0{word-spacing:0.317333pt;}
.wsda{word-spacing:0.362667pt;}
.ws6a{word-spacing:0.408000pt;}
.ws8e{word-spacing:0.448000pt;}
.wsbe{word-spacing:0.453333pt;}
.ws5d{word-spacing:0.498667pt;}
.ws75{word-spacing:0.544000pt;}
.ws6f{word-spacing:0.576000pt;}
.ws33{word-spacing:0.589333pt;}
.ws99{word-spacing:0.634667pt;}
.ws46{word-spacing:0.680000pt;}
.wsab{word-spacing:0.725333pt;}
.ws31{word-spacing:0.770667pt;}
.ws4c{word-spacing:0.816000pt;}
.ws82{word-spacing:0.861333pt;}
.ws98{word-spacing:0.906667pt;}
.wsb3{word-spacing:0.952000pt;}
.ws80{word-spacing:0.997333pt;}
.ws44{word-spacing:1.042667pt;}
.ws67{word-spacing:1.088000pt;}
.ws4d{word-spacing:1.133333pt;}
.ws12{word-spacing:1.157333pt;}
.ws90{word-spacing:1.178667pt;}
.ws3e{word-spacing:1.224000pt;}
.ws7d{word-spacing:1.269333pt;}
.wsd5{word-spacing:1.314667pt;}
.wse{word-spacing:1.344000pt;}
.ws68{word-spacing:1.360000pt;}
.ws96{word-spacing:1.405333pt;}
.ws4b{word-spacing:1.450667pt;}
.ws74{word-spacing:1.496000pt;}
.wse4{word-spacing:1.586667pt;}
.wsd9{word-spacing:1.632000pt;}
.wsa1{word-spacing:1.677333pt;}
.ws2c{word-spacing:1.722667pt;}
.wsd1{word-spacing:1.768000pt;}
.wsd{word-spacing:1.792000pt;}
.ws8c{word-spacing:1.813333pt;}
.ws8d{word-spacing:1.858667pt;}
.ws92{word-spacing:1.904000pt;}
.ws7{word-spacing:1.941333pt;}
.ws51{word-spacing:1.949333pt;}
.ws66{word-spacing:1.994667pt;}
.ws8b{word-spacing:2.040000pt;}
.ws65{word-spacing:2.085333pt;}
.ws9{word-spacing:2.090667pt;}
.ws6e{word-spacing:2.130667pt;}
.wsb9{word-spacing:2.176000pt;}
.wsb{word-spacing:2.202667pt;}
.ws79{word-spacing:2.221333pt;}
.wsd0{word-spacing:2.266667pt;}
.ws77{word-spacing:2.312000pt;}
.ws62{word-spacing:2.357333pt;}
.ws32{word-spacing:2.402667pt;}
.wsaf{word-spacing:2.448000pt;}
.ws9d{word-spacing:2.493333pt;}
.ws58{word-spacing:2.538667pt;}
.ws2a{word-spacing:2.584000pt;}
.wsd8{word-spacing:2.629333pt;}
.wsd4{word-spacing:2.674667pt;}
.ws8a{word-spacing:2.720000pt;}
.wsa{word-spacing:2.725333pt;}
.ws7c{word-spacing:2.765333pt;}
.ws11{word-spacing:2.800000pt;}
.ws57{word-spacing:2.810667pt;}
.wse2{word-spacing:2.856000pt;}
.ws17{word-spacing:2.874667pt;}
.ws7e{word-spacing:2.901333pt;}
.ws9a{word-spacing:2.946667pt;}
.wsb8{word-spacing:2.992000pt;}
.wsdd{word-spacing:3.037333pt;}
.ws86{word-spacing:3.082667pt;}
.wsaa{word-spacing:3.128000pt;}
.ws21{word-spacing:3.173333pt;}
.wsac{word-spacing:3.218667pt;}
.ws85{word-spacing:3.264000pt;}
.ws53{word-spacing:3.309333pt;}
.ws23{word-spacing:3.354667pt;}
.ws6{word-spacing:3.360000pt;}
.ws4{word-spacing:3.397333pt;}
.ws25{word-spacing:3.445333pt;}
.ws5b{word-spacing:3.490667pt;}
.ws7b{word-spacing:3.581333pt;}
.ws15{word-spacing:3.621333pt;}
.ws6c{word-spacing:3.626667pt;}
.wsb0{word-spacing:3.672000pt;}
.wsb4{word-spacing:3.717333pt;}
.wsa5{word-spacing:3.762667pt;}
.wsa8{word-spacing:3.808000pt;}
.ws71{word-spacing:3.853333pt;}
.ws84{word-spacing:3.898667pt;}
.wsb2{word-spacing:3.944000pt;}
.wse6{word-spacing:3.989333pt;}
.ws6b{word-spacing:4.034667pt;}
.ws6d{word-spacing:4.080000pt;}
.wsc6{word-spacing:4.125333pt;}
.wsd6{word-spacing:4.261333pt;}
.wsae{word-spacing:4.306667pt;}
.ws8{word-spacing:4.330667pt;}
.ws5e{word-spacing:4.442667pt;}
.ws60{word-spacing:4.488000pt;}
.ws93{word-spacing:4.533333pt;}
.ws9b{word-spacing:4.608000pt;}
.ws73{word-spacing:4.624000pt;}
.wscb{word-spacing:4.669333pt;}
.ws20{word-spacing:4.704000pt;}
.wsa4{word-spacing:4.714667pt;}
.wscc{word-spacing:4.805333pt;}
.ws19{word-spacing:4.816000pt;}
.ws54{word-spacing:4.850667pt;}
.ws3a{word-spacing:4.896000pt;}
.wsf5{word-spacing:4.941333pt;}
.wsc9{word-spacing:5.032000pt;}
.wscd{word-spacing:5.122667pt;}
.ws37{word-spacing:5.213333pt;}
.ws36{word-spacing:5.304000pt;}
.ws40{word-spacing:5.349333pt;}
.wsc4{word-spacing:5.394667pt;}
.ws61{word-spacing:5.440000pt;}
.ws72{word-spacing:5.485333pt;}
.wse5{word-spacing:5.530667pt;}
.wsa7{word-spacing:5.621333pt;}
.ws78{word-spacing:5.712000pt;}
.ws95{word-spacing:5.757333pt;}
.ws24{word-spacing:5.802667pt;}
.wsad{word-spacing:5.848000pt;}
.ws18{word-spacing:5.973333pt;}
.ws94{word-spacing:5.984000pt;}
.wsa3{word-spacing:6.074667pt;}
.wsef{word-spacing:6.120000pt;}
.ws64{word-spacing:6.165333pt;}
.wsbd{word-spacing:6.256000pt;}
.wsed{word-spacing:6.392000pt;}
.ws70{word-spacing:6.482667pt;}
.ws81{word-spacing:6.573333pt;}
.ws35{word-spacing:6.664000pt;}
.ws45{word-spacing:6.709333pt;}
.ws47{word-spacing:6.754667pt;}
.wsd2{word-spacing:6.800000pt;}
.wsa6{word-spacing:6.890667pt;}
.wsbb{word-spacing:6.981333pt;}
.ws3b{word-spacing:7.072000pt;}
.ws2f{word-spacing:7.162667pt;}
.wsce{word-spacing:7.253333pt;}
.wse7{word-spacing:7.344000pt;}
.wsb1{word-spacing:7.570667pt;}
.wsa2{word-spacing:7.616000pt;}
.wsdc{word-spacing:7.933333pt;}
.wsdb{word-spacing:7.978667pt;}
.wsf1{word-spacing:8.114667pt;}
.wsec{word-spacing:8.749333pt;}
.wsfa{word-spacing:9.338667pt;}
.wsf0{word-spacing:10.109333pt;}
.wsee{word-spacing:10.744000pt;}
.wsfb{word-spacing:11.741333pt;}
.wsfc{word-spacing:13.282667pt;}
.wsf8{word-spacing:21.896000pt;}
.wsf6{word-spacing:1321.097067pt;}
.wsc2{word-spacing:1327.667733pt;}
.wse3{word-spacing:1330.825067pt;}
.wsea{word-spacing:1332.190400pt;}
.wsde{word-spacing:1332.958400pt;}
.wscf{word-spacing:1333.513067pt;}
._9{margin-left:-2116.536000pt;}
._10{margin-left:-11.487467pt;}
._a{margin-left:-5.206400pt;}
._4{margin-left:-3.777067pt;}
._3{margin-left:-2.346667pt;}
._0{margin-left:-1.288533pt;}
._2{width:1.045333pt;}
._8{width:2.789547pt;}
._7{width:3.840853pt;}
._e{width:5.523200pt;}
._d{width:6.464000pt;}
._c{width:8.771733pt;}
._b{width:10.998400pt;}
._f{width:22.001067pt;}
._6{width:38.520469pt;}
._5{width:42.046453pt;}
._1{width:155.048000pt;}
.fs6{font-size:18.656000pt;}
.fs8{font-size:29.866667pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:37.312000pt;}
.fs1{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs9{font-size:45.333333pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.fs2{font-size:101.333333pt;}
.y0{bottom:0.000000pt;}
.y123{bottom:68.881600pt;}
.y103{bottom:76.501600pt;}
.y19a{bottom:77.557733pt;}
.y28{bottom:78.254667pt;}
.y1a8{bottom:79.321467pt;}
.y77{bottom:81.568133pt;}
.y167{bottom:81.973467pt;}
.yd1{bottom:83.279600pt;}
.ya8{bottom:83.537733pt;}
.y50{bottom:85.198933pt;}
.y122{bottom:86.214933pt;}
.ye8{bottom:87.548267pt;}
.y1ce{bottom:88.356667pt;}
.y1c1{bottom:89.920933pt;}
.y27{bottom:91.588133pt;}
.y102{bottom:93.834933pt;}
.y188{bottom:94.613867pt;}
.y147{bottom:94.766400pt;}
.y199{bottom:94.891067pt;}
.y1a7{bottom:96.654800pt;}
.y76{bottom:98.901467pt;}
.y166{bottom:99.306800pt;}
.yd0{bottom:100.612933pt;}
.ya7{bottom:100.871067pt;}
.y8d{bottom:101.984000pt;}
.y4f{bottom:102.532267pt;}
.y121{bottom:103.548267pt;}
.ye7{bottom:104.881600pt;}
.y1cd{bottom:105.690000pt;}
.y1c0{bottom:107.254267pt;}
.y101{bottom:111.168267pt;}
.y187{bottom:111.947200pt;}
.y146{bottom:112.099733pt;}
.y1a6{bottom:113.988133pt;}
.y75{bottom:116.234800pt;}
.y165{bottom:116.640133pt;}
.ycf{bottom:117.946267pt;}
.ya6{bottom:118.204400pt;}
.y8c{bottom:119.317333pt;}
.y4e{bottom:119.865600pt;}
.y120{bottom:120.881600pt;}
.ye6{bottom:122.214933pt;}
.y1bf{bottom:124.587600pt;}
.y100{bottom:128.501600pt;}
.y186{bottom:129.280533pt;}
.y145{bottom:129.433067pt;}
.y198{bottom:131.122000pt;}
.y74{bottom:133.568133pt;}
.y164{bottom:133.973467pt;}
.yce{bottom:135.279600pt;}
.ya5{bottom:135.537733pt;}
.y8b{bottom:136.650667pt;}
.y156{bottom:137.102000pt;}
.y4d{bottom:137.198933pt;}
.y11f{bottom:138.214933pt;}
.ye5{bottom:139.548267pt;}
.y26{bottom:139.906933pt;}
.y1cc{bottom:141.920933pt;}
.y185{bottom:146.613867pt;}
.y144{bottom:146.766400pt;}
.y197{bottom:148.455333pt;}
.y1a5{bottom:150.219200pt;}
.y73{bottom:150.901467pt;}
.y163{bottom:151.306800pt;}
.ycd{bottom:152.612933pt;}
.ya4{bottom:152.871067pt;}
.y25{bottom:153.240267pt;}
.y8a{bottom:153.984000pt;}
.y4c{bottom:154.532267pt;}
.y11e{bottom:155.548267pt;}
.ye4{bottom:156.881600pt;}
.y1cb{bottom:159.254267pt;}
.y1be{bottom:160.818667pt;}
.y143{bottom:164.099733pt;}
.yff{bottom:164.732533pt;}
.y196{bottom:165.788667pt;}
.y24{bottom:166.573600pt;}
.y1a4{bottom:167.552533pt;}
.y162{bottom:168.640133pt;}
.ycc{bottom:169.946267pt;}
.ya3{bottom:170.204400pt;}
.y89{bottom:171.317333pt;}
.y4b{bottom:171.865600pt;}
.y11d{bottom:172.881600pt;}
.y155{bottom:173.333067pt;}
.ye3{bottom:174.214933pt;}
.y1ca{bottom:176.587600pt;}
.y1bd{bottom:178.152000pt;}
.y23{bottom:179.906933pt;}
.y142{bottom:181.433067pt;}
.yfe{bottom:182.065867pt;}
.y184{bottom:182.844933pt;}
.y195{bottom:183.122000pt;}
.y72{bottom:183.353067pt;}
.y1a3{bottom:184.885867pt;}
.ycb{bottom:187.279600pt;}
.ya2{bottom:187.537733pt;}
.y88{bottom:188.650667pt;}
.y4a{bottom:189.198933pt;}
.y11c{bottom:190.214933pt;}
.y154{bottom:190.666400pt;}
.ye2{bottom:191.548267pt;}
.y22{bottom:193.240267pt;}
.y1d6{bottom:195.485333pt;}
.yfd{bottom:199.399200pt;}
.y194{bottom:200.455333pt;}
.yca{bottom:204.612933pt;}
.y161{bottom:204.871067pt;}
.y49{bottom:206.532267pt;}
.y21{bottom:206.573600pt;}
.y11b{bottom:207.548267pt;}
.y153{bottom:207.999733pt;}
.ye1{bottom:208.881600pt;}
.y1c9{bottom:212.818667pt;}
.y1bc{bottom:214.382933pt;}
.yfc{bottom:216.732533pt;}
.y1a2{bottom:217.337200pt;}
.y141{bottom:217.664000pt;}
.y193{bottom:217.788667pt;}
.y183{bottom:219.075867pt;}
.y20{bottom:219.906933pt;}
.y71{bottom:220.917333pt;}
.yc9{bottom:221.946267pt;}
.y160{bottom:222.204400pt;}
.ya1{bottom:223.768800pt;}
.y48{bottom:223.865600pt;}
.y87{bottom:224.881600pt;}
.y152{bottom:225.333067pt;}
.ye0{bottom:226.214933pt;}
.y1c8{bottom:230.152000pt;}
.y1f{bottom:233.240267pt;}
.yfb{bottom:234.065867pt;}
.y140{bottom:234.997333pt;}
.y192{bottom:235.122000pt;}
.y182{bottom:236.409200pt;}
.y70{bottom:238.250667pt;}
.y15f{bottom:239.537733pt;}
.ya0{bottom:241.102133pt;}
.y86{bottom:242.214933pt;}
.y151{bottom:242.666400pt;}
.ydf{bottom:243.548267pt;}
.y11a{bottom:243.779200pt;}
.y1e{bottom:246.573600pt;}
.y1d5{bottom:249.049600pt;}
.y1bb{bottom:250.613867pt;}
.yfa{bottom:251.399200pt;}
.y13f{bottom:252.330667pt;}
.y191{bottom:252.455333pt;}
.y181{bottom:253.742533pt;}
.yc8{bottom:254.397600pt;}
.y6f{bottom:255.584000pt;}
.y15e{bottom:256.871067pt;}
.y9f{bottom:258.435467pt;}
.y85{bottom:259.548267pt;}
.y150{bottom:259.999733pt;}
.y47{bottom:260.096533pt;}
.yde{bottom:260.881600pt;}
.y119{bottom:261.112533pt;}
.y1d{bottom:263.686400pt;}
.y1c7{bottom:266.382933pt;}
.y1ba{bottom:267.947200pt;}
.yf9{bottom:268.732533pt;}
.y13e{bottom:269.664000pt;}
.y180{bottom:271.075867pt;}
.y6e{bottom:272.917333pt;}
.yc7{bottom:273.064267pt;}
.y15d{bottom:274.204400pt;}
.y9e{bottom:275.768800pt;}
.y84{bottom:276.881600pt;}
.y46{bottom:277.429867pt;}
.y1a1{bottom:277.532533pt;}
.y118{bottom:278.445867pt;}
.y1c6{bottom:283.716267pt;}
.y190{bottom:284.906800pt;}
.y1b9{bottom:285.280533pt;}
.yf8{bottom:286.065867pt;}
.y13d{bottom:286.997333pt;}
.y6d{bottom:290.250667pt;}
.y15c{bottom:291.537733pt;}
.y9d{bottom:293.102133pt;}
.y83{bottom:294.214933pt;}
.y45{bottom:294.763200pt;}
.y117{bottom:295.779200pt;}
.y14f{bottom:296.230667pt;}
.ydd{bottom:297.112533pt;}
.y1b8{bottom:302.613867pt;}
.yf7{bottom:303.399200pt;}
.y17f{bottom:307.306800pt;}
.y6c{bottom:307.584000pt;}
.y18d{bottom:308.871067pt;}
.y1a0{bottom:309.984000pt;}
.y9c{bottom:310.435467pt;}
.yc6{bottom:310.628667pt;}
.y44{bottom:312.096533pt;}
.y116{bottom:313.112533pt;}
.y14e{bottom:313.564000pt;}
.y1c{bottom:314.281733pt;}
.ydc{bottom:314.445867pt;}
.y1c5{bottom:319.947200pt;}
.yf6{bottom:320.732533pt;}
.y13c{bottom:323.228267pt;}
.y17e{bottom:324.640133pt;}
.y82{bottom:326.666400pt;}
.y9b{bottom:327.768800pt;}
.yc5{bottom:327.962000pt;}
.y43{bottom:329.429867pt;}
.y115{bottom:330.445867pt;}
.y14d{bottom:330.897333pt;}
.ydb{bottom:331.779200pt;}
.y1b{bottom:335.174133pt;}
.y1c4{bottom:337.280533pt;}
.yf5{bottom:338.065867pt;}
.y1b7{bottom:338.844800pt;}
.y6b{bottom:340.035467pt;}
.y13b{bottom:340.561600pt;}
.y17d{bottom:341.973467pt;}
.y9a{bottom:345.102133pt;}
.yc4{bottom:345.295333pt;}
.y81{bottom:345.333067pt;}
.y42{bottom:346.763200pt;}
.y19f{bottom:347.548267pt;}
.y114{bottom:347.779200pt;}
.y14c{bottom:348.230667pt;}
.y1a{bottom:348.507467pt;}
.yda{bottom:349.112533pt;}
.y1d4{bottom:354.613867pt;}
.yf4{bottom:355.399200pt;}
.y1b6{bottom:356.178133pt;}
.y13a{bottom:357.894933pt;}
.y17c{bottom:359.306800pt;}
.y19{bottom:361.840800pt;}
.y15b{bottom:362.435467pt;}
.yc3{bottom:362.628667pt;}
.y41{bottom:364.096533pt;}
.y19e{bottom:364.881600pt;}
.y14b{bottom:365.564000pt;}
.yd9{bottom:366.445867pt;}
.yf3{bottom:372.732533pt;}
.y1b5{bottom:373.511467pt;}
.y18{bottom:375.174133pt;}
.y139{bottom:375.228267pt;}
.y15a{bottom:379.768800pt;}
.yc2{bottom:379.962000pt;}
.y99{bottom:381.333067pt;}
.y40{bottom:381.429867pt;}
.y80{bottom:382.897333pt;}
.yd8{bottom:383.779200pt;}
.y113{bottom:384.010267pt;}
.y17{bottom:388.507467pt;}
.yf2{bottom:390.065867pt;}
.y1d3{bottom:390.844800pt;}
.y17b{bottom:395.537733pt;}
.y159{bottom:397.102133pt;}
.yc1{bottom:397.295333pt;}
.y19d{bottom:397.333067pt;}
.y98{bottom:398.666400pt;}
.y6a{bottom:400.230667pt;}
.yd7{bottom:401.112533pt;}
.y112{bottom:401.343600pt;}
.y16{bottom:401.840800pt;}
.yf1{bottom:407.399200pt;}
.y1d2{bottom:408.178133pt;}
.y1b4{bottom:409.742533pt;}
.y138{bottom:411.459333pt;}
.y17a{bottom:412.871067pt;}
.y158{bottom:414.435467pt;}
.y15{bottom:415.174133pt;}
.y97{bottom:415.999733pt;}
.y69{bottom:417.564000pt;}
.y3f{bottom:417.660933pt;}
.yd6{bottom:418.445867pt;}
.y111{bottom:418.676933pt;}
.y1d1{bottom:425.511467pt;}
.y1b3{bottom:427.075867pt;}
.y14{bottom:428.507467pt;}
.y137{bottom:428.792667pt;}
.y179{bottom:430.204400pt;}
.y96{bottom:433.333067pt;}
.yc0{bottom:433.526267pt;}
.y68{bottom:434.897333pt;}
.y3e{bottom:434.994267pt;}
.yd5{bottom:435.779200pt;}
.y110{bottom:436.010267pt;}
.yf0{bottom:439.850667pt;}
.y13{bottom:441.840800pt;}
.y136{bottom:446.126000pt;}
.y178{bottom:447.537733pt;}
.y157{bottom:450.666400pt;}
.ybf{bottom:450.859600pt;}
.y67{bottom:452.230667pt;}
.y3d{bottom:452.327600pt;}
.yd4{bottom:453.112533pt;}
.y10f{bottom:453.343600pt;}
.y12{bottom:455.174133pt;}
.y1d0{bottom:461.742533pt;}
.y1b2{bottom:463.306800pt;}
.y177{bottom:464.871067pt;}
.y18c{bottom:467.999733pt;}
.ybe{bottom:468.192933pt;}
.y11{bottom:468.507467pt;}
.y66{bottom:469.564000pt;}
.y3c{bottom:469.660933pt;}
.yd3{bottom:470.445867pt;}
.y10e{bottom:470.676933pt;}
.y14a{bottom:471.128400pt;}
.yef{bottom:477.414933pt;}
.y1b1{bottom:480.640133pt;}
.y10{bottom:481.840800pt;}
.y135{bottom:482.356933pt;}
.y18b{bottom:485.333067pt;}
.ybd{bottom:485.526267pt;}
.y65{bottom:486.897333pt;}
.y3b{bottom:486.994267pt;}
.y10d{bottom:488.010267pt;}
.y149{bottom:488.461733pt;}
.yee{bottom:494.748267pt;}
.yf{bottom:495.174133pt;}
.y1b0{bottom:497.973467pt;}
.y134{bottom:499.690267pt;}
.y176{bottom:501.102133pt;}
.y18f{bottom:502.666400pt;}
.ybc{bottom:502.859600pt;}
.yd2{bottom:502.897333pt;}
.y7f{bottom:504.230667pt;}
.y10c{bottom:505.343600pt;}
.y148{bottom:505.795067pt;}
.ye{bottom:508.507467pt;}
.yed{bottom:512.081600pt;}
.y1c3{bottom:516.871067pt;}
.y133{bottom:517.023600pt;}
.y18e{bottom:519.999733pt;}
.ybb{bottom:520.192933pt;}
.y7e{bottom:521.564000pt;}
.y10b{bottom:522.676933pt;}
.y64{bottom:523.128400pt;}
.y3a{bottom:523.225200pt;}
.yd{bottom:525.620267pt;}
.yec{bottom:529.414933pt;}
.y1af{bottom:534.204400pt;}
.y175{bottom:537.333067pt;}
.yba{bottom:537.526267pt;}
.y95{bottom:538.897333pt;}
.y10a{bottom:540.010267pt;}
.y63{bottom:540.461733pt;}
.y39{bottom:540.558533pt;}
.yeb{bottom:546.748267pt;}
.y1ae{bottom:551.537733pt;}
.y132{bottom:553.254533pt;}
.y174{bottom:554.666400pt;}
.yb9{bottom:554.859600pt;}
.y94{bottom:556.230667pt;}
.y109{bottom:557.343600pt;}
.y62{bottom:557.795067pt;}
.y38{bottom:557.891867pt;}
.y1ad{bottom:568.871067pt;}
.y131{bottom:570.587867pt;}
.y173{bottom:571.999733pt;}
.yb8{bottom:572.192933pt;}
.y93{bottom:573.564000pt;}
.y61{bottom:575.128400pt;}
.y37{bottom:575.225200pt;}
.yc{bottom:576.215600pt;}
.yea{bottom:579.199733pt;}
.y1c2{bottom:587.768667pt;}
.y130{bottom:587.921200pt;}
.y172{bottom:589.333067pt;}
.yb7{bottom:589.526267pt;}
.y108{bottom:589.795067pt;}
.y92{bottom:590.897333pt;}
.y60{bottom:592.461733pt;}
.y36{bottom:592.558533pt;}
.ye9{bottom:601.599733pt;}
.y1ac{bottom:605.102000pt;}
.y171{bottom:606.666400pt;}
.yb6{bottom:606.859600pt;}
.y91{bottom:608.230667pt;}
.y107{bottom:608.461733pt;}
.y5f{bottom:609.795067pt;}
.y35{bottom:609.891867pt;}
.y1ab{bottom:622.435333pt;}
.y170{bottom:623.999733pt;}
.y12f{bottom:624.152133pt;}
.yb5{bottom:624.192933pt;}
.y90{bottom:625.564000pt;}
.y5e{bottom:627.128400pt;}
.y34{bottom:627.225200pt;}
.yb{bottom:633.210800pt;}
.y1aa{bottom:639.768667pt;}
.y16f{bottom:641.333067pt;}
.y12e{bottom:641.485467pt;}
.yb4{bottom:641.526267pt;}
.y8f{bottom:642.897333pt;}
.y5d{bottom:644.461733pt;}
.y33{bottom:644.558533pt;}
.y106{bottom:646.026000pt;}
.ya{bottom:655.610800pt;}
.y16e{bottom:658.666400pt;}
.y12d{bottom:658.818800pt;}
.yb3{bottom:658.859600pt;}
.y8e{bottom:660.230667pt;}
.y5c{bottom:661.795067pt;}
.y32{bottom:661.891867pt;}
.y105{bottom:663.359333pt;}
.y16d{bottom:675.999733pt;}
.y12c{bottom:676.152133pt;}
.y19c{bottom:677.564000pt;}
.y9{bottom:678.010800pt;}
.y5b{bottom:679.128400pt;}
.y31{bottom:679.225200pt;}
.y104{bottom:680.692667pt;}
.y1a9{bottom:693.333067pt;}
.y19b{bottom:694.897333pt;}
.yb2{bottom:695.090533pt;}
.y5a{bottom:696.461733pt;}
.y30{bottom:696.558533pt;}
.y7d{bottom:698.026000pt;}
.y16c{bottom:712.230667pt;}
.y12b{bottom:712.383200pt;}
.yb1{bottom:712.423867pt;}
.y59{bottom:713.795067pt;}
.y2f{bottom:713.891867pt;}
.y7c{bottom:715.359333pt;}
.y16b{bottom:729.564000pt;}
.y12a{bottom:729.716533pt;}
.yb0{bottom:729.757200pt;}
.y58{bottom:731.128400pt;}
.y7b{bottom:732.692667pt;}
.y8{bottom:738.206133pt;}
.y2e{bottom:746.343333pt;}
.y16a{bottom:746.897333pt;}
.y129{bottom:747.049867pt;}
.yaf{bottom:747.090533pt;}
.y57{bottom:748.461733pt;}
.y7a{bottom:750.026000pt;}
.y169{bottom:764.230667pt;}
.y128{bottom:764.383200pt;}
.yae{bottom:764.423867pt;}
.y56{bottom:765.795067pt;}
.y79{bottom:767.359333pt;}
.y7{bottom:768.606133pt;}
.y127{bottom:781.716533pt;}
.yad{bottom:781.757200pt;}
.y18a{bottom:783.128400pt;}
.y78{bottom:784.692667pt;}
.y6{bottom:799.006133pt;}
.y126{bottom:799.049867pt;}
.yac{bottom:799.090533pt;}
.y168{bottom:800.461733pt;}
.y55{bottom:802.026000pt;}
.yab{bottom:816.423867pt;}
.y189{bottom:817.795067pt;}
.y54{bottom:819.359333pt;}
.y2d{bottom:825.436133pt;}
.y5{bottom:829.406133pt;}
.y125{bottom:831.501333pt;}
.y1cf{bottom:835.128400pt;}
.y53{bottom:836.692667pt;}
.y2c{bottom:846.328667pt;}
.yaa{bottom:848.875333pt;}
.y52{bottom:854.026000pt;}
.y2b{bottom:859.662000pt;}
.y4{bottom:859.806133pt;}
.y124{bottom:865.286000pt;}
.ya9{bottom:867.542000pt;}
.y51{bottom:871.359333pt;}
.y2a{bottom:872.995333pt;}
.y3{bottom:912.189600pt;}
.y2{bottom:931.860533pt;}
.y29{bottom:944.604667pt;}
.y1{bottom:944.660533pt;}
.h8{height:14.477056pt;}
.h4{height:28.970667pt;}
.h3{height:32.981333pt;}
.h2{height:33.109333pt;}
.ha{height:35.178667pt;}
.h9{height:38.101333pt;}
.hb{height:49.664000pt;}
.h7{height:50.266112pt;}
.h6{height:57.941333pt;}
.h5{height:78.634667pt;}
.h1{height:1001.333333pt;}
.h0{height:1001.574667pt;}
.w0{width:699.212000pt;}
.w1{width:699.333333pt;}
.x0{left:0.000000pt;}
.x10{left:75.590533pt;}
.x3{left:94.488133pt;}
.x4{left:103.128667pt;}
.x12{left:113.385867pt;}
.x5{left:119.227867pt;}
.xb{left:135.029733pt;}
.x9{left:142.748533pt;}
.xa{left:144.531067pt;}
.x7{left:145.624800pt;}
.x6{left:158.392933pt;}
.xe{left:162.519733pt;}
.x8{left:203.764267pt;}
.xc{left:215.559200pt;}
.x1{left:322.058400pt;}
.xf{left:330.330267pt;}
.xd{left:332.447333pt;}
.x2{left:581.702800pt;}
.x14{left:613.542133pt;}
.x13{left:615.718000pt;}
.x11{left:617.574133pt;}
}




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