
    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_ef79cf5b0ca5e8a76a14cbe0.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_8cf19b855bbf8f5bf8fbd9d7.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_19348ef7808e1f649fe6c787.woff')format("woff");}.ff3{font-family:ff3;line-height:0.922852;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_1c09cfae8b3d347dc8e49401.woff')format("woff");}.ff4{font-family:ff4;line-height:0.902344;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_f202a605312377c0c1a1f02e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.851000;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_3da3a27b41b3367bba9925e9.woff')format("woff");}.ff6{font-family:ff6;line-height:1.045000;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_838bf2cf2b26664aabb18f7c.woff')format("woff");}.ff7{font-family:ff7;line-height:0.922852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a2f814f3afb8a0b7829f0b57.woff')format("woff");}.ff8{font-family:ff8;line-height:0.902344;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6cc167655d48fb79e0ae67f2.woff')format("woff");}.ff9{font-family:ff9;line-height:0.947266;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ad2f9517066923f974f08b5d.woff')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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);}
.v0{vertical-align:0.000000px;}
.ls2b{letter-spacing:-1.368000px;}
.ls34{letter-spacing:-1.296000px;}
.lse{letter-spacing:-1.224000px;}
.ls32{letter-spacing:-1.152000px;}
.ls2e{letter-spacing:-1.080000px;}
.ls10{letter-spacing:-1.008000px;}
.ls1b{letter-spacing:-0.936000px;}
.ls21{letter-spacing:-0.864000px;}
.ls11{letter-spacing:-0.792000px;}
.lsd{letter-spacing:-0.720000px;}
.ls1a{letter-spacing:-0.648000px;}
.ls33{letter-spacing:-0.600000px;}
.lsf{letter-spacing:-0.576000px;}
.ls7{letter-spacing:-0.504000px;}
.ls37{letter-spacing:-0.480000px;}
.ls1c{letter-spacing:-0.432000px;}
.ls8{letter-spacing:-0.360000px;}
.ls2d{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.216000px;}
.ls19{letter-spacing:-0.144000px;}
.ls22{letter-spacing:-0.072000px;}
.ls4{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.072000px;}
.ls13{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.288000px;}
.ls1e{letter-spacing:0.324000px;}
.ls18{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.432000px;}
.ls15{letter-spacing:0.504000px;}
.ls20{letter-spacing:0.576000px;}
.lsc{letter-spacing:0.648000px;}
.ls6{letter-spacing:0.720000px;}
.ls1f{letter-spacing:0.792000px;}
.ls28{letter-spacing:0.864000px;}
.ls27{letter-spacing:0.936000px;}
.ls31{letter-spacing:1.051200px;}
.lsb{letter-spacing:1.080000px;}
.ls30{letter-spacing:1.368000px;}
.ls2c{letter-spacing:2.685600px;}
.ls24{letter-spacing:3.276000px;}
.ls25{letter-spacing:3.830400px;}
.ls17{letter-spacing:3.895200px;}
.ls29{letter-spacing:4.248000px;}
.ls36{letter-spacing:4.260000px;}
.ls5{letter-spacing:4.560000px;}
.ls23{letter-spacing:4.744800px;}
.ls35{letter-spacing:4.752000px;}
.ls2a{letter-spacing:6.775200px;}
.ls12{letter-spacing:6.780000px;}
.ls2f{letter-spacing:7.668000px;}
.ls26{letter-spacing:8.136000px;}
.ls2{letter-spacing:8.460000px;}
.ls1d{letter-spacing:10.656000px;}
.ls1{letter-spacing:10.740000px;}
.ls0{letter-spacing:40.080000px;}
.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;}
}
.ws9a{word-spacing:-63.576000px;}
.wsb2{word-spacing:-25.320000px;}
.ws77{word-spacing:-20.232000px;}
.ws6c{word-spacing:-20.088000px;}
.ws51{word-spacing:-18.288000px;}
.ws9b{word-spacing:-17.784000px;}
.ws44{word-spacing:-17.424000px;}
.ws50{word-spacing:-17.352000px;}
.ws43{word-spacing:-17.280000px;}
.wsbd{word-spacing:-16.860000px;}
.wsa4{word-spacing:-16.704000px;}
.ws80{word-spacing:-16.560000px;}
.wsb8{word-spacing:-11.856000px;}
.ws56{word-spacing:-9.288000px;}
.ws9{word-spacing:-8.460000px;}
.ws57{word-spacing:-7.200000px;}
.ws96{word-spacing:-6.780000px;}
.wsbb{word-spacing:-4.752000px;}
.ws7{word-spacing:-4.560000px;}
.ws5b{word-spacing:-2.160000px;}
.ws4f{word-spacing:-2.088000px;}
.ws25{word-spacing:-2.016000px;}
.wsb9{word-spacing:-1.872000px;}
.ws4d{word-spacing:-1.800000px;}
.ws2c{word-spacing:-1.512000px;}
.ws52{word-spacing:-1.368000px;}
.wsb5{word-spacing:-1.224000px;}
.wsb6{word-spacing:-1.152000px;}
.ws2d{word-spacing:-1.080000px;}
.ws54{word-spacing:-0.792000px;}
.wsf{word-spacing:-0.720000px;}
.ws2b{word-spacing:-0.648000px;}
.ws5e{word-spacing:-0.576000px;}
.ws5d{word-spacing:-0.504000px;}
.ws4e{word-spacing:-0.360000px;}
.ws95{word-spacing:-0.288000px;}
.wsb1{word-spacing:-0.216000px;}
.wsb3{word-spacing:-0.144000px;}
.ws8f{word-spacing:-0.072000px;}
.ws1{word-spacing:0.000000px;}
.ws37{word-spacing:0.072000px;}
.ws4b{word-spacing:0.144000px;}
.ws30{word-spacing:0.216000px;}
.ws61{word-spacing:0.288000px;}
.ws19{word-spacing:0.360000px;}
.ws55{word-spacing:0.432000px;}
.wsbe{word-spacing:0.480000px;}
.ws10{word-spacing:0.504000px;}
.ws84{word-spacing:0.576000px;}
.ws75{word-spacing:0.648000px;}
.ws1f{word-spacing:0.720000px;}
.ws7f{word-spacing:0.792000px;}
.ws66{word-spacing:0.864000px;}
.ws73{word-spacing:0.936000px;}
.ws39{word-spacing:1.008000px;}
.ws21{word-spacing:1.080000px;}
.wsb{word-spacing:1.152000px;}
.ws74{word-spacing:1.224000px;}
.ws69{word-spacing:1.296000px;}
.ws32{word-spacing:1.368000px;}
.ws31{word-spacing:1.440000px;}
.ws3d{word-spacing:1.584000px;}
.ws7b{word-spacing:1.728000px;}
.ws5{word-spacing:1.800000px;}
.ws99{word-spacing:1.872000px;}
.ws1a{word-spacing:1.944000px;}
.ws86{word-spacing:2.016000px;}
.ws46{word-spacing:2.088000px;}
.ws45{word-spacing:2.160000px;}
.ws2f{word-spacing:2.232000px;}
.ws28{word-spacing:2.304000px;}
.ws38{word-spacing:2.376000px;}
.ws6d{word-spacing:2.400000px;}
.ws94{word-spacing:2.448000px;}
.wsa6{word-spacing:2.592000px;}
.wsa{word-spacing:2.664000px;}
.ws48{word-spacing:2.736000px;}
.ws5f{word-spacing:2.880000px;}
.ws3b{word-spacing:2.952000px;}
.wsbc{word-spacing:2.976000px;}
.ws98{word-spacing:3.024000px;}
.ws3e{word-spacing:3.096000px;}
.ws27{word-spacing:3.168000px;}
.wsae{word-spacing:3.240000px;}
.wse{word-spacing:3.312000px;}
.ws8{word-spacing:3.360000px;}
.wsba{word-spacing:3.456000px;}
.wsd{word-spacing:3.528000px;}
.ws72{word-spacing:3.600000px;}
.wsaf{word-spacing:3.672000px;}
.ws2{word-spacing:3.720000px;}
.ws35{word-spacing:3.744000px;}
.ws11{word-spacing:3.888000px;}
.ws40{word-spacing:3.960000px;}
.ws6e{word-spacing:3.990000px;}
.ws7e{word-spacing:4.032000px;}
.ws2a{word-spacing:4.104000px;}
.ws9f{word-spacing:4.176000px;}
.ws3{word-spacing:4.200000px;}
.ws33{word-spacing:4.248000px;}
.ws26{word-spacing:4.320000px;}
.ws41{word-spacing:4.392000px;}
.ws6{word-spacing:4.464000px;}
.ws53{word-spacing:4.536000px;}
.ws83{word-spacing:4.608000px;}
.ws29{word-spacing:4.680000px;}
.ws63{word-spacing:4.752000px;}
.ws3c{word-spacing:4.824000px;}
.ws64{word-spacing:4.896000px;}
.ws15{word-spacing:4.968000px;}
.ws17{word-spacing:5.040000px;}
.ws4c{word-spacing:5.112000px;}
.ws14{word-spacing:5.184000px;}
.wsc{word-spacing:5.256000px;}
.wsb4{word-spacing:5.328000px;}
.ws12{word-spacing:5.400000px;}
.ws4a{word-spacing:5.472000px;}
.ws6b{word-spacing:5.544000px;}
.ws76{word-spacing:5.616000px;}
.ws5a{word-spacing:5.688000px;}
.ws6a{word-spacing:5.760000px;}
.ws62{word-spacing:5.832000px;}
.wsa9{word-spacing:5.904000px;}
.ws60{word-spacing:5.976000px;}
.ws67{word-spacing:6.120000px;}
.wsa1{word-spacing:6.192000px;}
.ws23{word-spacing:6.264000px;}
.ws65{word-spacing:6.336000px;}
.ws34{word-spacing:6.408000px;}
.ws89{word-spacing:6.480000px;}
.wsa2{word-spacing:6.624000px;}
.ws22{word-spacing:6.696000px;}
.ws88{word-spacing:6.768000px;}
.ws1e{word-spacing:6.840000px;}
.wsa7{word-spacing:6.912000px;}
.ws93{word-spacing:6.984000px;}
.ws78{word-spacing:7.056000px;}
.ws9d{word-spacing:7.128000px;}
.ws8c{word-spacing:7.200000px;}
.ws13{word-spacing:7.272000px;}
.ws49{word-spacing:7.344000px;}
.ws68{word-spacing:7.416000px;}
.ws9c{word-spacing:7.488000px;}
.ws8e{word-spacing:7.560000px;}
.ws81{word-spacing:7.704000px;}
.ws87{word-spacing:7.776000px;}
.ws8d{word-spacing:7.848000px;}
.wsa5{word-spacing:7.992000px;}
.ws42{word-spacing:8.064000px;}
.ws1b{word-spacing:8.136000px;}
.ws58{word-spacing:8.208000px;}
.wsb0{word-spacing:8.280000px;}
.wsa0{word-spacing:8.352000px;}
.ws0{word-spacing:8.376000px;}
.ws4{word-spacing:8.400000px;}
.ws20{word-spacing:8.424000px;}
.ws36{word-spacing:8.496000px;}
.ws3a{word-spacing:8.568000px;}
.ws47{word-spacing:8.640000px;}
.ws24{word-spacing:8.712000px;}
.ws18{word-spacing:8.784000px;}
.ws9e{word-spacing:9.000000px;}
.ws1d{word-spacing:9.072000px;}
.ws59{word-spacing:9.144000px;}
.ws85{word-spacing:9.216000px;}
.ws5c{word-spacing:9.288000px;}
.wsaa{word-spacing:9.360000px;}
.ws79{word-spacing:9.504000px;}
.wsb7{word-spacing:9.576000px;}
.wsa3{word-spacing:9.648000px;}
.ws97{word-spacing:9.720000px;}
.wsab{word-spacing:9.792000px;}
.ws82{word-spacing:9.864000px;}
.wsa8{word-spacing:9.936000px;}
.ws3f{word-spacing:10.008000px;}
.ws16{word-spacing:10.080000px;}
.ws1c{word-spacing:10.152000px;}
.ws2e{word-spacing:10.296000px;}
.ws71{word-spacing:55.740000px;}
.ws8b{word-spacing:70.200000px;}
.ws92{word-spacing:77.280000px;}
.ws7d{word-spacing:78.900000px;}
.wsad{word-spacing:190.200000px;}
.ws6f{word-spacing:199.140000px;}
.ws90{word-spacing:199.956000px;}
.ws8a{word-spacing:295.140000px;}
.ws70{word-spacing:313.140000px;}
.ws91{word-spacing:361.140000px;}
.ws7c{word-spacing:403.140000px;}
.wsac{word-spacing:415.986000px;}
.ws7a{word-spacing:451.140000px;}
._d{margin-left:-940.386000px;}
._a{margin-left:-23.340000px;}
._12{margin-left:-19.932000px;}
._13{margin-left:-18.300000px;}
._14{margin-left:-16.104000px;}
._6{margin-left:-14.520000px;}
._3b{margin-left:-12.808800px;}
._7{margin-left:-11.700000px;}
._7f{margin-left:-10.494000px;}
._5{margin-left:-8.118000px;}
._11{margin-left:-7.005600px;}
._2{margin-left:-5.958000px;}
._f{margin-left:-4.208400px;}
._8{margin-left:-2.784000px;}
._3{margin-left:-1.200000px;}
._4{width:1.818000px;}
._9{width:3.027600px;}
._1{width:4.140000px;}
._c{width:5.997600px;}
._10{width:7.059600px;}
._e{width:8.917200px;}
._b{width:10.605600px;}
._65{width:11.743200px;}
._5c{width:26.340000px;}
._41{width:32.178000px;}
._26{width:33.540000px;}
._40{width:40.560000px;}
._42{width:52.980000px;}
._32{width:54.522000px;}
._58{width:56.040000px;}
._62{width:61.320000px;}
._71{width:64.242000px;}
._60{width:68.520000px;}
._27{width:70.902000px;}
._46{width:72.903000px;}
._72{width:75.180000px;}
._4a{width:79.200000px;}
._3f{width:81.840000px;}
._43{width:86.196000px;}
._4d{width:88.500000px;}
._53{width:89.898000px;}
._20{width:91.740000px;}
._63{width:93.426000px;}
._45{width:94.482000px;}
._31{width:96.000000px;}
._2e{width:98.040000px;}
._1f{width:104.760000px;}
._33{width:113.238000px;}
._38{width:116.220000px;}
._34{width:118.746000px;}
._1c{width:125.820000px;}
._3a{width:127.002000px;}
._59{width:131.220000px;}
._1b{width:132.660000px;}
._2f{width:134.160000px;}
._2b{width:136.020000px;}
._61{width:138.840000px;}
._57{width:142.365600px;}
._23{width:144.000000px;}
._5a{width:149.760000px;}
._25{width:152.706000px;}
._24{width:158.622000px;}
._5f{width:163.254000px;}
._44{width:167.640000px;}
._3d{width:170.040000px;}
._2c{width:172.014000px;}
._7a{width:179.400000px;}
._4c{width:184.044000px;}
._6a{width:187.248000px;}
._5d{width:189.702000px;}
._17{width:191.520000px;}
._5e{width:194.862000px;}
._2d{width:197.226000px;}
._0{width:201.564000px;}
._75{width:202.692000px;}
._6b{width:203.991600px;}
._6f{width:206.640000px;}
._18{width:209.280000px;}
._50{width:211.302000px;}
._66{width:213.864000px;}
._5b{width:214.920000px;}
._67{width:227.316000px;}
._1a{width:228.846000px;}
._52{width:230.223000px;}
._4b{width:231.360000px;}
._51{width:233.529000px;}
._47{width:235.068000px;}
._56{width:236.835000px;}
._64{width:238.140000px;}
._37{width:244.080000px;}
._6c{width:271.326000px;}
._54{width:273.429000px;}
._1e{width:276.120000px;}
._68{width:277.191000px;}
._19{width:279.780000px;}
._7b{width:284.460000px;}
._70{width:291.780000px;}
._2a{width:293.940000px;}
._4e{width:295.080000px;}
._4f{width:304.182000px;}
._49{width:307.800000px;}
._7c{width:311.634000px;}
._69{width:315.552000px;}
._35{width:320.940000px;}
._30{width:322.140000px;}
._48{width:326.442000px;}
._6d{width:332.400000px;}
._3c{width:334.782000px;}
._22{width:340.140000px;}
._76{width:342.006000px;}
._73{width:343.365000px;}
._39{width:354.180000px;}
._7d{width:356.940000px;}
._6e{width:358.800000px;}
._21{width:367.902000px;}
._28{width:368.940000px;}
._7e{width:376.200000px;}
._77{width:391.596000px;}
._1d{width:394.704000px;}
._55{width:398.829000px;}
._15{width:400.740000px;}
._78{width:418.530000px;}
._79{width:437.766000px;}
._36{width:458.940000px;}
._74{width:476.463000px;}
._29{width:512.940000px;}
._16{width:615.522000px;}
._3e{width:708.000000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.000000px;}
.fs4{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:55.500000px;}
.y1{bottom:72.000000px;}
.y44{bottom:117.000000px;}
.y6b{bottom:117.078000px;}
.y130{bottom:118.304250px;}
.y21{bottom:118.456650px;}
.y20d{bottom:118.722000px;}
.y117{bottom:118.764300px;}
.y17a{bottom:118.794000px;}
.y1b7{bottom:119.068050px;}
.yf5{bottom:119.262000px;}
.y1dd{bottom:119.484000px;}
.yb2{bottom:119.848200px;}
.y155{bottom:120.264000px;}
.yd0{bottom:120.340200px;}
.y8e{bottom:122.038200px;}
.y19d{bottom:126.914100px;}
.y1dc{bottom:134.328000px;}
.y20c{bottom:137.472000px;}
.y6a{bottom:138.984000px;}
.y43{bottom:139.500000px;}
.y20{bottom:140.362650px;}
.y179{bottom:140.844000px;}
.y12f{bottom:141.110250px;}
.y116{bottom:141.264300px;}
.yf4{bottom:141.312000px;}
.y1b6{bottom:141.568050px;}
.y154{bottom:142.008000px;}
.yb1{bottom:142.492200px;}
.ycf{bottom:142.984200px;}
.y8d{bottom:144.538200px;}
.y19c{bottom:145.664100px;}
.y1db{bottom:149.028000px;}
.y20b{bottom:156.222000px;}
.y69{bottom:160.890000px;}
.y42{bottom:162.000000px;}
.y1f{bottom:162.268650px;}
.y178{bottom:162.894000px;}
.yf3{bottom:163.056000px;}
.y1da{bottom:163.728000px;}
.y153{bottom:163.752000px;}
.y115{bottom:163.764300px;}
.y12e{bottom:163.916250px;}
.y19b{bottom:164.414100px;}
.yb0{bottom:165.136200px;}
.yce{bottom:165.628200px;}
.y8c{bottom:166.894200px;}
.y20a{bottom:175.122000px;}
.y1d9{bottom:178.428000px;}
.y68{bottom:182.796000px;}
.y1b5{bottom:182.818200px;}
.y19a{bottom:183.164100px;}
.y1e{bottom:184.174650px;}
.y41{bottom:184.500000px;}
.yf2{bottom:184.800000px;}
.y177{bottom:184.944000px;}
.y152{bottom:185.496000px;}
.y114{bottom:186.570300px;}
.y12d{bottom:186.722250px;}
.yaf{bottom:187.780200px;}
.ycd{bottom:188.272200px;}
.y8b{bottom:189.250200px;}
.y1d8{bottom:193.128000px;}
.y209{bottom:194.022000px;}
.y1b4{bottom:201.568200px;}
.y199{bottom:201.914100px;}
.y67{bottom:204.702000px;}
.y1d{bottom:206.080650px;}
.yf1{bottom:206.544000px;}
.y176{bottom:206.994000px;}
.y40{bottom:207.000000px;}
.y151{bottom:207.240000px;}
.y1d7{bottom:207.828000px;}
.y113{bottom:209.376300px;}
.y12c{bottom:209.528250px;}
.yae{bottom:210.424200px;}
.ycc{bottom:210.916200px;}
.y8a{bottom:211.606200px;}
.y208{bottom:212.922000px;}
.y1b3{bottom:220.318200px;}
.y1d6{bottom:222.528000px;}
.y66{bottom:226.608000px;}
.y1c{bottom:227.986650px;}
.yf0{bottom:228.288000px;}
.y150{bottom:228.984000px;}
.y175{bottom:229.044000px;}
.y45{bottom:229.500000px;}
.y207{bottom:231.822000px;}
.y112{bottom:232.182300px;}
.y12b{bottom:232.334250px;}
.yad{bottom:233.068200px;}
.ycb{bottom:233.560200px;}
.y89{bottom:233.962200px;}
.y1d5{bottom:237.228000px;}
.y1b2{bottom:239.068200px;}
.y198{bottom:239.395800px;}
.y65{bottom:248.514000px;}
.y1b{bottom:249.892650px;}
.yef{bottom:250.032000px;}
.y206{bottom:250.722000px;}
.y14f{bottom:250.728000px;}
.y174{bottom:251.094000px;}
.y3f{bottom:252.000000px;}
.y111{bottom:254.988300px;}
.y12a{bottom:255.140250px;}
.yca{bottom:256.204200px;}
.y88{bottom:256.318200px;}
.y1b1{bottom:257.818200px;}
.y197{bottom:258.148800px;}
.y1d4{bottom:258.300000px;}
.y205{bottom:269.622000px;}
.y64{bottom:270.420000px;}
.yee{bottom:271.776000px;}
.y1a{bottom:271.798650px;}
.y14e{bottom:272.472000px;}
.y173{bottom:273.144000px;}
.y3e{bottom:274.500000px;}
.y196{bottom:276.901800px;}
.y110{bottom:277.794300px;}
.y129{bottom:277.946250px;}
.yac{bottom:278.368200px;}
.y87{bottom:278.668050px;}
.yc9{bottom:278.848200px;}
.y204{bottom:288.522000px;}
.y63{bottom:292.326000px;}
.yed{bottom:293.520000px;}
.y19{bottom:293.704650px;}
.y14d{bottom:294.216000px;}
.y172{bottom:295.194000px;}
.y1b0{bottom:295.318200px;}
.y3d{bottom:297.000000px;}
.yab{bottom:297.268200px;}
.y10f{bottom:300.600300px;}
.y128{bottom:300.752250px;}
.y86{bottom:301.018050px;}
.yc8{bottom:301.492200px;}
.y1d3{bottom:302.598000px;}
.y195{bottom:304.162050px;}
.y203{bottom:307.422000px;}
.y1af{bottom:314.053200px;}
.y62{bottom:314.232000px;}
.yec{bottom:315.264000px;}
.y18{bottom:315.610650px;}
.y14c{bottom:315.960000px;}
.yaa{bottom:316.168200px;}
.y171{bottom:317.244000px;}
.y3c{bottom:319.500000px;}
.y10e{bottom:323.406300px;}
.y127{bottom:323.558250px;}
.yc7{bottom:324.136200px;}
.y1d2{bottom:324.954000px;}
.y202{bottom:326.322000px;}
.y1ae{bottom:332.806200px;}
.ya9{bottom:335.068200px;}
.y61{bottom:336.138000px;}
.yeb{bottom:337.008000px;}
.y17{bottom:337.516650px;}
.y14b{bottom:337.704000px;}
.y170{bottom:339.294000px;}
.y194{bottom:341.668050px;}
.y3b{bottom:342.000000px;}
.y201{bottom:345.222000px;}
.y85{bottom:345.682200px;}
.y10d{bottom:346.212300px;}
.yc6{bottom:346.780200px;}
.y1d1{bottom:347.310000px;}
.y1ad{bottom:351.559200px;}
.ya8{bottom:353.968200px;}
.y60{bottom:358.044000px;}
.yea{bottom:358.752000px;}
.y16{bottom:359.422650px;}
.y14a{bottom:359.448000px;}
.y16f{bottom:361.488000px;}
.y200{bottom:364.122000px;}
.y3a{bottom:364.500000px;}
.y126{bottom:367.618050px;}
.y84{bottom:368.038200px;}
.y10c{bottom:369.018300px;}
.yc5{bottom:369.424200px;}
.y1d0{bottom:369.666000px;}
.ya7{bottom:372.868200px;}
.y193{bottom:375.300000px;}
.y225{bottom:379.500000px;}
.y5f{bottom:379.950000px;}
.ye9{bottom:380.496000px;}
.y15{bottom:381.328650px;}
.y149{bottom:381.354000px;}
.y16e{bottom:383.682000px;}
.y125{bottom:386.368050px;}
.y39{bottom:387.000000px;}
.y1ac{bottom:389.065200px;}
.y1ff{bottom:389.574000px;}
.y83{bottom:390.394200px;}
.ya6{bottom:391.768200px;}
.y10b{bottom:391.824300px;}
.y1cf{bottom:392.022000px;}
.yc4{bottom:392.068200px;}
.y224{bottom:398.250000px;}
.y5e{bottom:401.856000px;}
.ye8{bottom:402.240000px;}
.y14{bottom:403.234650px;}
.y148{bottom:403.260000px;}
.y124{bottom:405.118050px;}
.y16d{bottom:405.876000px;}
.y1ab{bottom:407.818200px;}
.y38{bottom:409.500000px;}
.ya5{bottom:410.668200px;}
.y82{bottom:412.750200px;}
.y1ce{bottom:414.378000px;}
.y10a{bottom:414.630300px;}
.y223{bottom:417.000000px;}
.y192{bottom:420.300000px;}
.y5d{bottom:423.762000px;}
.y123{bottom:423.868050px;}
.ye7{bottom:423.984000px;}
.y13{bottom:425.140650px;}
.y147{bottom:425.166000px;}
.y16c{bottom:428.070000px;}
.ya4{bottom:429.568200px;}
.y37{bottom:432.000000px;}
.yc3{bottom:433.468050px;}
.y1fe{bottom:434.574000px;}
.y81{bottom:435.106200px;}
.y222{bottom:435.750000px;}
.y1cd{bottom:436.734000px;}
.y109{bottom:437.436300px;}
.y1aa{bottom:441.450000px;}
.y191{bottom:442.350000px;}
.y122{bottom:442.618050px;}
.y5c{bottom:445.668000px;}
.ye6{bottom:445.728000px;}
.y12{bottom:447.046650px;}
.y146{bottom:447.072000px;}
.ya3{bottom:448.472550px;}
.y1fd{bottom:449.718000px;}
.y16b{bottom:450.264000px;}
.yc2{bottom:452.218050px;}
.y36{bottom:454.500000px;}
.y80{bottom:457.462200px;}
.y1cc{bottom:459.090000px;}
.y108{bottom:460.242300px;}
.y121{bottom:461.368050px;}
.y190{bottom:464.400000px;}
.y1fc{bottom:464.862000px;}
.y221{bottom:465.750000px;}
.ya2{bottom:467.368050px;}
.ye5{bottom:467.472000px;}
.y5b{bottom:467.574000px;}
.y11{bottom:468.952650px;}
.y145{bottom:468.978000px;}
.yc1{bottom:470.968050px;}
.y16a{bottom:472.458000px;}
.y35{bottom:477.000000px;}
.y7f{bottom:479.818200px;}
.y1fb{bottom:480.006000px;}
.y120{bottom:480.118050px;}
.y1cb{bottom:481.446000px;}
.y107{bottom:483.048300px;}
.y220{bottom:484.500000px;}
.y18f{bottom:486.450000px;}
.y1a9{bottom:486.522000px;}
.ye4{bottom:489.216000px;}
.y5a{bottom:489.480000px;}
.yc0{bottom:489.718050px;}
.y10{bottom:490.858650px;}
.y144{bottom:490.884000px;}
.y169{bottom:494.652000px;}
.y1fa{bottom:495.150000px;}
.y11f{bottom:498.868050px;}
.y34{bottom:499.500000px;}
.ya1{bottom:501.150000px;}
.y21f{bottom:503.250000px;}
.y1ca{bottom:503.802000px;}
.y106{bottom:505.854300px;}
.ybf{bottom:508.468050px;}
.y18e{bottom:508.500000px;}
.y1a8{bottom:509.166000px;}
.y1f9{bottom:510.294000px;}
.ye3{bottom:510.960000px;}
.y59{bottom:511.386000px;}
.yf{bottom:512.764650px;}
.y143{bottom:512.790000px;}
.y168{bottom:516.846000px;}
.ya0{bottom:520.800000px;}
.y33{bottom:522.000000px;}
.y7e{bottom:524.518200px;}
.y1f8{bottom:525.438000px;}
.y1c9{bottom:526.158000px;}
.ybe{bottom:527.218050px;}
.y105{bottom:528.660300px;}
.y18d{bottom:530.550000px;}
.y1a7{bottom:531.810000px;}
.ye2{bottom:532.704000px;}
.y58{bottom:533.292000px;}
.ye{bottom:534.670650px;}
.y142{bottom:534.696000px;}
.y11e{bottom:536.368050px;}
.y167{bottom:539.040000px;}
.y1f7{bottom:540.582000px;}
.y7d{bottom:543.118200px;}
.y32{bottom:544.500000px;}
.ybd{bottom:545.968050px;}
.y1c8{bottom:548.514000px;}
.y104{bottom:551.459100px;}
.y21e{bottom:552.000000px;}
.y18c{bottom:552.600000px;}
.ye1{bottom:554.448000px;}
.y1a6{bottom:554.454000px;}
.y11d{bottom:555.103050px;}
.y57{bottom:555.198000px;}
.y1f6{bottom:555.726000px;}
.yd{bottom:556.576650px;}
.y141{bottom:556.602000px;}
.y166{bottom:561.234000px;}
.y7c{bottom:561.718200px;}
.ybc{bottom:564.718050px;}
.y9f{bottom:566.130000px;}
.y31{bottom:567.000000px;}
.y103{bottom:570.509100px;}
.y1c7{bottom:570.870000px;}
.y11c{bottom:573.856050px;}
.y18b{bottom:574.650000px;}
.ye0{bottom:576.354000px;}
.y1a5{bottom:577.098000px;}
.y56{bottom:577.104000px;}
.yc{bottom:578.482650px;}
.y140{bottom:578.508000px;}
.y7b{bottom:580.318200px;}
.y165{bottom:583.428000px;}
.ybb{bottom:583.465200px;}
.y1f5{bottom:586.014000px;}
.y9e{bottom:588.630000px;}
.y30{bottom:589.500000px;}
.y102{bottom:589.559100px;}
.y11b{bottom:592.609050px;}
.y1c6{bottom:593.226000px;}
.y21d{bottom:593.250000px;}
.y18a{bottom:596.700000px;}
.ydf{bottom:598.260000px;}
.y55{bottom:599.010000px;}
.y1a4{bottom:599.742000px;}
.yb{bottom:600.382650px;}
.y13f{bottom:600.414000px;}
.y1f4{bottom:601.158000px;}
.yba{bottom:602.218200px;}
.y164{bottom:605.622000px;}
.y101{bottom:608.609100px;}
.y9d{bottom:611.130000px;}
.y2f{bottom:612.000000px;}
.y1c5{bottom:615.582000px;}
.y1f3{bottom:616.302000px;}
.y7a{bottom:617.518200px;}
.y189{bottom:618.750000px;}
.yde{bottom:620.166000px;}
.y54{bottom:620.916000px;}
.y13e{bottom:622.320000px;}
.y1a3{bottom:622.386000px;}
.y100{bottom:627.659100px;}
.y163{bottom:627.816000px;}
.y11a{bottom:630.115050px;}
.y21c{bottom:630.750000px;}
.y1f2{bottom:631.446000px;}
.y9c{bottom:633.630000px;}
.y2e{bottom:634.500000px;}
.yb9{bottom:635.850000px;}
.y79{bottom:636.118200px;}
.y1c4{bottom:637.938000px;}
.y188{bottom:640.800000px;}
.ydd{bottom:642.072000px;}
.y53{bottom:642.822000px;}
.ya{bottom:644.182650px;}
.y13d{bottom:644.226000px;}
.y1a2{bottom:645.030000px;}
.y1f1{bottom:646.590000px;}
.y119{bottom:648.868050px;}
.y21b{bottom:649.500000px;}
.y162{bottom:650.010000px;}
.y78{bottom:654.718200px;}
.yff{bottom:655.214100px;}
.yb8{bottom:655.350000px;}
.y9b{bottom:656.130000px;}
.y2d{bottom:657.000000px;}
.y1c3{bottom:660.294000px;}
.y1f0{bottom:661.734000px;}
.y9{bottom:662.332650px;}
.y187{bottom:662.850000px;}
.ydc{bottom:663.978000px;}
.y52{bottom:664.728000px;}
.y13c{bottom:666.132000px;}
.y1a1{bottom:667.674000px;}
.y21a{bottom:668.250000px;}
.y161{bottom:672.204000px;}
.y77{bottom:673.318200px;}
.y1ef{bottom:676.878000px;}
.y9a{bottom:678.630000px;}
.y2c{bottom:679.500000px;}
.y118{bottom:682.500000px;}
.y1c2{bottom:682.704000px;}
.yfe{bottom:682.759050px;}
.y186{bottom:684.900000px;}
.ydb{bottom:685.884000px;}
.y51{bottom:686.634000px;}
.y219{bottom:687.000000px;}
.y13b{bottom:688.038000px;}
.y1a0{bottom:690.318000px;}
.y76{bottom:691.918200px;}
.y1ee{bottom:692.022000px;}
.y160{bottom:694.398000px;}
.yb7{bottom:700.410000px;}
.y99{bottom:701.130000px;}
.y2b{bottom:702.000000px;}
.y8{bottom:703.868550px;}
.y1c1{bottom:705.060000px;}
.y218{bottom:705.750000px;}
.y185{bottom:706.950000px;}
.y1ed{bottom:707.166000px;}
.yda{bottom:707.790000px;}
.y50{bottom:708.540000px;}
.y13a{bottom:709.944000px;}
.y75{bottom:710.518200px;}
.y19f{bottom:712.962000px;}
.y15f{bottom:716.592000px;}
.y1ec{bottom:722.310000px;}
.yb6{bottom:723.054000px;}
.y98{bottom:723.630000px;}
.y2a{bottom:724.500000px;}
.y7{bottom:725.768550px;}
.y1c0{bottom:727.254000px;}
.y184{bottom:729.000000px;}
.y74{bottom:729.118200px;}
.yd9{bottom:729.696000px;}
.y4f{bottom:730.446000px;}
.y139{bottom:731.850000px;}
.y19e{bottom:735.606000px;}
.y1eb{bottom:737.454000px;}
.y15e{bottom:738.786000px;}
.yfd{bottom:739.915800px;}
.y217{bottom:743.250000px;}
.yb5{bottom:745.698000px;}
.y97{bottom:746.130000px;}
.y29{bottom:747.000000px;}
.y73{bottom:747.718200px;}
.y1bf{bottom:749.448000px;}
.y183{bottom:751.050000px;}
.yd8{bottom:751.602000px;}
.y4e{bottom:752.352000px;}
.y1ea{bottom:752.598000px;}
.y138{bottom:753.750000px;}
.yfc{bottom:758.968050px;}
.y15d{bottom:760.980000px;}
.y216{bottom:762.000000px;}
.y72{bottom:766.321800px;}
.y1e9{bottom:767.742000px;}
.yb4{bottom:768.342000px;}
.y96{bottom:768.630000px;}
.y28{bottom:769.500000px;}
.y6{bottom:771.054300px;}
.y1be{bottom:771.642000px;}
.y182{bottom:773.100000px;}
.yd7{bottom:773.508000px;}
.y4d{bottom:774.258000px;}
.y137{bottom:775.500000px;}
.y215{bottom:780.750000px;}
.y1e8{bottom:782.886000px;}
.y15c{bottom:783.174000px;}
.y71{bottom:784.918050px;}
.yb3{bottom:790.986000px;}
.y95{bottom:791.130000px;}
.y27{bottom:792.000000px;}
.yfb{bottom:792.900000px;}
.y5{bottom:792.954300px;}
.y1bd{bottom:793.836000px;}
.y181{bottom:795.150000px;}
.yd6{bottom:795.414000px;}
.y4c{bottom:796.164000px;}
.y1e7{bottom:798.030000px;}
.y214{bottom:799.500000px;}
.y15b{bottom:805.368000px;}
.yfa{bottom:812.700000px;}
.y1e6{bottom:813.174000px;}
.y94{bottom:813.630000px;}
.y26{bottom:814.500000px;}
.y1bc{bottom:816.030000px;}
.y180{bottom:817.200000px;}
.yd5{bottom:817.320000px;}
.y4b{bottom:818.070000px;}
.y213{bottom:818.250000px;}
.y70{bottom:818.400000px;}
.y136{bottom:819.030000px;}
.y1e5{bottom:828.330000px;}
.y93{bottom:836.274000px;}
.y25{bottom:837.000000px;}
.y6f{bottom:837.750000px;}
.y1bb{bottom:838.224000px;}
.y15a{bottom:838.524000px;}
.yd4{bottom:839.226000px;}
.y17f{bottom:839.250000px;}
.y4a{bottom:839.976000px;}
.y135{bottom:840.774000px;}
.y1e4{bottom:843.474000px;}
.y212{bottom:855.750000px;}
.yf9{bottom:858.282000px;}
.y1e3{bottom:858.618000px;}
.y92{bottom:858.918000px;}
.y4{bottom:859.500000px;}
.y1ba{bottom:860.418000px;}
.y159{bottom:860.718000px;}
.yd3{bottom:861.132000px;}
.y17e{bottom:861.300000px;}
.y49{bottom:861.882000px;}
.y134{bottom:862.518000px;}
.y1e2{bottom:873.762000px;}
.y211{bottom:874.500000px;}
.yf8{bottom:881.088000px;}
.y91{bottom:881.562000px;}
.y24{bottom:882.000000px;}
.y6e{bottom:882.438000px;}
.y1b9{bottom:882.612000px;}
.y158{bottom:882.912000px;}
.yd2{bottom:883.038000px;}
.y17d{bottom:883.350000px;}
.y48{bottom:883.788000px;}
.y133{bottom:884.262000px;}
.y1e1{bottom:888.906000px;}
.y3{bottom:889.500000px;}
.y210{bottom:893.250000px;}
.yf7{bottom:903.894000px;}
.y1e0{bottom:904.062000px;}
.y90{bottom:904.206000px;}
.y23{bottom:904.500000px;}
.y6d{bottom:904.794000px;}
.y1b8{bottom:904.806000px;}
.yd1{bottom:904.944000px;}
.y157{bottom:905.106000px;}
.y17c{bottom:905.400000px;}
.y47{bottom:905.694000px;}
.y132{bottom:906.006000px;}
.y20f{bottom:912.000000px;}
.y1df{bottom:919.206000px;}
.yf6{bottom:926.700000px;}
.y8f{bottom:926.850000px;}
.y22{bottom:927.000000px;}
.y6c{bottom:927.150000px;}
.y156{bottom:927.300000px;}
.y17b{bottom:927.450000px;}
.y46{bottom:927.600000px;}
.y131{bottom:927.750000px;}
.y20e{bottom:930.750000px;}
.y1de{bottom:934.350000px;}
.hc{height:33.117188px;}
.ha{height:39.888000px;}
.h9{height:40.551270px;}
.hb{height:40.757812px;}
.h5{height:41.396484px;}
.h4{height:47.988281px;}
.h6{height:49.675781px;}
.h8{height:49.860000px;}
.h3{height:50.580000px;}
.h1{height:50.947266px;}
.h7{height:61.136719px;}
.h2{height:82.792969px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x1{left:67.500000px;}
.x3{left:82.381950px;}
.x6{left:112.495950px;}
.x5{left:127.381950px;}
.x2{left:135.000000px;}
.xf{left:142.267950px;}
.x8{left:180.394200px;}
.x10{left:185.741400px;}
.x11{left:195.092250px;}
.xd{left:225.883650px;}
.xc{left:232.538400px;}
.x7{left:235.356450px;}
.xa{left:241.101150px;}
.xe{left:243.495150px;}
.xb{left:246.346650px;}
.x9{left:291.346650px;}
.x4{left:635.390550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2b{letter-spacing:-1.216000pt;}
.ls34{letter-spacing:-1.152000pt;}
.lse{letter-spacing:-1.088000pt;}
.ls32{letter-spacing:-1.024000pt;}
.ls2e{letter-spacing:-0.960000pt;}
.ls10{letter-spacing:-0.896000pt;}
.ls1b{letter-spacing:-0.832000pt;}
.ls21{letter-spacing:-0.768000pt;}
.ls11{letter-spacing:-0.704000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls1a{letter-spacing:-0.576000pt;}
.ls33{letter-spacing:-0.533333pt;}
.lsf{letter-spacing:-0.512000pt;}
.ls7{letter-spacing:-0.448000pt;}
.ls37{letter-spacing:-0.426667pt;}
.ls1c{letter-spacing:-0.384000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls2d{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls19{letter-spacing:-0.128000pt;}
.ls22{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.064000pt;}
.ls13{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.256000pt;}
.ls1e{letter-spacing:0.288000pt;}
.ls18{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.384000pt;}
.ls15{letter-spacing:0.448000pt;}
.ls20{letter-spacing:0.512000pt;}
.lsc{letter-spacing:0.576000pt;}
.ls6{letter-spacing:0.640000pt;}
.ls1f{letter-spacing:0.704000pt;}
.ls28{letter-spacing:0.768000pt;}
.ls27{letter-spacing:0.832000pt;}
.ls31{letter-spacing:0.934400pt;}
.lsb{letter-spacing:0.960000pt;}
.ls30{letter-spacing:1.216000pt;}
.ls2c{letter-spacing:2.387200pt;}
.ls24{letter-spacing:2.912000pt;}
.ls25{letter-spacing:3.404800pt;}
.ls17{letter-spacing:3.462400pt;}
.ls29{letter-spacing:3.776000pt;}
.ls36{letter-spacing:3.786667pt;}
.ls5{letter-spacing:4.053333pt;}
.ls23{letter-spacing:4.217600pt;}
.ls35{letter-spacing:4.224000pt;}
.ls2a{letter-spacing:6.022400pt;}
.ls12{letter-spacing:6.026667pt;}
.ls2f{letter-spacing:6.816000pt;}
.ls26{letter-spacing:7.232000pt;}
.ls2{letter-spacing:7.520000pt;}
.ls1d{letter-spacing:9.472000pt;}
.ls1{letter-spacing:9.546667pt;}
.ls0{letter-spacing:35.626667pt;}
.ws9a{word-spacing:-56.512000pt;}
.wsb2{word-spacing:-22.506667pt;}
.ws77{word-spacing:-17.984000pt;}
.ws6c{word-spacing:-17.856000pt;}
.ws51{word-spacing:-16.256000pt;}
.ws9b{word-spacing:-15.808000pt;}
.ws44{word-spacing:-15.488000pt;}
.ws50{word-spacing:-15.424000pt;}
.ws43{word-spacing:-15.360000pt;}
.wsbd{word-spacing:-14.986667pt;}
.wsa4{word-spacing:-14.848000pt;}
.ws80{word-spacing:-14.720000pt;}
.wsb8{word-spacing:-10.538667pt;}
.ws56{word-spacing:-8.256000pt;}
.ws9{word-spacing:-7.520000pt;}
.ws57{word-spacing:-6.400000pt;}
.ws96{word-spacing:-6.026667pt;}
.wsbb{word-spacing:-4.224000pt;}
.ws7{word-spacing:-4.053333pt;}
.ws5b{word-spacing:-1.920000pt;}
.ws4f{word-spacing:-1.856000pt;}
.ws25{word-spacing:-1.792000pt;}
.wsb9{word-spacing:-1.664000pt;}
.ws4d{word-spacing:-1.600000pt;}
.ws2c{word-spacing:-1.344000pt;}
.ws52{word-spacing:-1.216000pt;}
.wsb5{word-spacing:-1.088000pt;}
.wsb6{word-spacing:-1.024000pt;}
.ws2d{word-spacing:-0.960000pt;}
.ws54{word-spacing:-0.704000pt;}
.wsf{word-spacing:-0.640000pt;}
.ws2b{word-spacing:-0.576000pt;}
.ws5e{word-spacing:-0.512000pt;}
.ws5d{word-spacing:-0.448000pt;}
.ws4e{word-spacing:-0.320000pt;}
.ws95{word-spacing:-0.256000pt;}
.wsb1{word-spacing:-0.192000pt;}
.wsb3{word-spacing:-0.128000pt;}
.ws8f{word-spacing:-0.064000pt;}
.ws1{word-spacing:0.000000pt;}
.ws37{word-spacing:0.064000pt;}
.ws4b{word-spacing:0.128000pt;}
.ws30{word-spacing:0.192000pt;}
.ws61{word-spacing:0.256000pt;}
.ws19{word-spacing:0.320000pt;}
.ws55{word-spacing:0.384000pt;}
.wsbe{word-spacing:0.426667pt;}
.ws10{word-spacing:0.448000pt;}
.ws84{word-spacing:0.512000pt;}
.ws75{word-spacing:0.576000pt;}
.ws1f{word-spacing:0.640000pt;}
.ws7f{word-spacing:0.704000pt;}
.ws66{word-spacing:0.768000pt;}
.ws73{word-spacing:0.832000pt;}
.ws39{word-spacing:0.896000pt;}
.ws21{word-spacing:0.960000pt;}
.wsb{word-spacing:1.024000pt;}
.ws74{word-spacing:1.088000pt;}
.ws69{word-spacing:1.152000pt;}
.ws32{word-spacing:1.216000pt;}
.ws31{word-spacing:1.280000pt;}
.ws3d{word-spacing:1.408000pt;}
.ws7b{word-spacing:1.536000pt;}
.ws5{word-spacing:1.600000pt;}
.ws99{word-spacing:1.664000pt;}
.ws1a{word-spacing:1.728000pt;}
.ws86{word-spacing:1.792000pt;}
.ws46{word-spacing:1.856000pt;}
.ws45{word-spacing:1.920000pt;}
.ws2f{word-spacing:1.984000pt;}
.ws28{word-spacing:2.048000pt;}
.ws38{word-spacing:2.112000pt;}
.ws6d{word-spacing:2.133333pt;}
.ws94{word-spacing:2.176000pt;}
.wsa6{word-spacing:2.304000pt;}
.wsa{word-spacing:2.368000pt;}
.ws48{word-spacing:2.432000pt;}
.ws5f{word-spacing:2.560000pt;}
.ws3b{word-spacing:2.624000pt;}
.wsbc{word-spacing:2.645333pt;}
.ws98{word-spacing:2.688000pt;}
.ws3e{word-spacing:2.752000pt;}
.ws27{word-spacing:2.816000pt;}
.wsae{word-spacing:2.880000pt;}
.wse{word-spacing:2.944000pt;}
.ws8{word-spacing:2.986667pt;}
.wsba{word-spacing:3.072000pt;}
.wsd{word-spacing:3.136000pt;}
.ws72{word-spacing:3.200000pt;}
.wsaf{word-spacing:3.264000pt;}
.ws2{word-spacing:3.306667pt;}
.ws35{word-spacing:3.328000pt;}
.ws11{word-spacing:3.456000pt;}
.ws40{word-spacing:3.520000pt;}
.ws6e{word-spacing:3.546667pt;}
.ws7e{word-spacing:3.584000pt;}
.ws2a{word-spacing:3.648000pt;}
.ws9f{word-spacing:3.712000pt;}
.ws3{word-spacing:3.733333pt;}
.ws33{word-spacing:3.776000pt;}
.ws26{word-spacing:3.840000pt;}
.ws41{word-spacing:3.904000pt;}
.ws6{word-spacing:3.968000pt;}
.ws53{word-spacing:4.032000pt;}
.ws83{word-spacing:4.096000pt;}
.ws29{word-spacing:4.160000pt;}
.ws63{word-spacing:4.224000pt;}
.ws3c{word-spacing:4.288000pt;}
.ws64{word-spacing:4.352000pt;}
.ws15{word-spacing:4.416000pt;}
.ws17{word-spacing:4.480000pt;}
.ws4c{word-spacing:4.544000pt;}
.ws14{word-spacing:4.608000pt;}
.wsc{word-spacing:4.672000pt;}
.wsb4{word-spacing:4.736000pt;}
.ws12{word-spacing:4.800000pt;}
.ws4a{word-spacing:4.864000pt;}
.ws6b{word-spacing:4.928000pt;}
.ws76{word-spacing:4.992000pt;}
.ws5a{word-spacing:5.056000pt;}
.ws6a{word-spacing:5.120000pt;}
.ws62{word-spacing:5.184000pt;}
.wsa9{word-spacing:5.248000pt;}
.ws60{word-spacing:5.312000pt;}
.ws67{word-spacing:5.440000pt;}
.wsa1{word-spacing:5.504000pt;}
.ws23{word-spacing:5.568000pt;}
.ws65{word-spacing:5.632000pt;}
.ws34{word-spacing:5.696000pt;}
.ws89{word-spacing:5.760000pt;}
.wsa2{word-spacing:5.888000pt;}
.ws22{word-spacing:5.952000pt;}
.ws88{word-spacing:6.016000pt;}
.ws1e{word-spacing:6.080000pt;}
.wsa7{word-spacing:6.144000pt;}
.ws93{word-spacing:6.208000pt;}
.ws78{word-spacing:6.272000pt;}
.ws9d{word-spacing:6.336000pt;}
.ws8c{word-spacing:6.400000pt;}
.ws13{word-spacing:6.464000pt;}
.ws49{word-spacing:6.528000pt;}
.ws68{word-spacing:6.592000pt;}
.ws9c{word-spacing:6.656000pt;}
.ws8e{word-spacing:6.720000pt;}
.ws81{word-spacing:6.848000pt;}
.ws87{word-spacing:6.912000pt;}
.ws8d{word-spacing:6.976000pt;}
.wsa5{word-spacing:7.104000pt;}
.ws42{word-spacing:7.168000pt;}
.ws1b{word-spacing:7.232000pt;}
.ws58{word-spacing:7.296000pt;}
.wsb0{word-spacing:7.360000pt;}
.wsa0{word-spacing:7.424000pt;}
.ws0{word-spacing:7.445333pt;}
.ws4{word-spacing:7.466667pt;}
.ws20{word-spacing:7.488000pt;}
.ws36{word-spacing:7.552000pt;}
.ws3a{word-spacing:7.616000pt;}
.ws47{word-spacing:7.680000pt;}
.ws24{word-spacing:7.744000pt;}
.ws18{word-spacing:7.808000pt;}
.ws9e{word-spacing:8.000000pt;}
.ws1d{word-spacing:8.064000pt;}
.ws59{word-spacing:8.128000pt;}
.ws85{word-spacing:8.192000pt;}
.ws5c{word-spacing:8.256000pt;}
.wsaa{word-spacing:8.320000pt;}
.ws79{word-spacing:8.448000pt;}
.wsb7{word-spacing:8.512000pt;}
.wsa3{word-spacing:8.576000pt;}
.ws97{word-spacing:8.640000pt;}
.wsab{word-spacing:8.704000pt;}
.ws82{word-spacing:8.768000pt;}
.wsa8{word-spacing:8.832000pt;}
.ws3f{word-spacing:8.896000pt;}
.ws16{word-spacing:8.960000pt;}
.ws1c{word-spacing:9.024000pt;}
.ws2e{word-spacing:9.152000pt;}
.ws71{word-spacing:49.546667pt;}
.ws8b{word-spacing:62.400000pt;}
.ws92{word-spacing:68.693333pt;}
.ws7d{word-spacing:70.133333pt;}
.wsad{word-spacing:169.066667pt;}
.ws6f{word-spacing:177.013333pt;}
.ws90{word-spacing:177.738667pt;}
.ws8a{word-spacing:262.346667pt;}
.ws70{word-spacing:278.346667pt;}
.ws91{word-spacing:321.013333pt;}
.ws7c{word-spacing:358.346667pt;}
.wsac{word-spacing:369.765333pt;}
.ws7a{word-spacing:401.013333pt;}
._d{margin-left:-835.898667pt;}
._a{margin-left:-20.746667pt;}
._12{margin-left:-17.717333pt;}
._13{margin-left:-16.266667pt;}
._14{margin-left:-14.314667pt;}
._6{margin-left:-12.906667pt;}
._3b{margin-left:-11.385600pt;}
._7{margin-left:-10.400000pt;}
._7f{margin-left:-9.328000pt;}
._5{margin-left:-7.216000pt;}
._11{margin-left:-6.227200pt;}
._2{margin-left:-5.296000pt;}
._f{margin-left:-3.740800pt;}
._8{margin-left:-2.474667pt;}
._3{margin-left:-1.066667pt;}
._4{width:1.616000pt;}
._9{width:2.691200pt;}
._1{width:3.680000pt;}
._c{width:5.331200pt;}
._10{width:6.275200pt;}
._e{width:7.926400pt;}
._b{width:9.427200pt;}
._65{width:10.438400pt;}
._5c{width:23.413333pt;}
._41{width:28.602667pt;}
._26{width:29.813333pt;}
._40{width:36.053333pt;}
._42{width:47.093333pt;}
._32{width:48.464000pt;}
._58{width:49.813333pt;}
._62{width:54.506667pt;}
._71{width:57.104000pt;}
._60{width:60.906667pt;}
._27{width:63.024000pt;}
._46{width:64.802667pt;}
._72{width:66.826667pt;}
._4a{width:70.400000pt;}
._3f{width:72.746667pt;}
._43{width:76.618667pt;}
._4d{width:78.666667pt;}
._53{width:79.909333pt;}
._20{width:81.546667pt;}
._63{width:83.045333pt;}
._45{width:83.984000pt;}
._31{width:85.333333pt;}
._2e{width:87.146667pt;}
._1f{width:93.120000pt;}
._33{width:100.656000pt;}
._38{width:103.306667pt;}
._34{width:105.552000pt;}
._1c{width:111.840000pt;}
._3a{width:112.890667pt;}
._59{width:116.640000pt;}
._1b{width:117.920000pt;}
._2f{width:119.253333pt;}
._2b{width:120.906667pt;}
._61{width:123.413333pt;}
._57{width:126.547200pt;}
._23{width:128.000000pt;}
._5a{width:133.120000pt;}
._25{width:135.738667pt;}
._24{width:140.997333pt;}
._5f{width:145.114667pt;}
._44{width:149.013333pt;}
._3d{width:151.146667pt;}
._2c{width:152.901333pt;}
._7a{width:159.466667pt;}
._4c{width:163.594667pt;}
._6a{width:166.442667pt;}
._5d{width:168.624000pt;}
._17{width:170.240000pt;}
._5e{width:173.210667pt;}
._2d{width:175.312000pt;}
._0{width:179.168000pt;}
._75{width:180.170667pt;}
._6b{width:181.325867pt;}
._6f{width:183.680000pt;}
._18{width:186.026667pt;}
._50{width:187.824000pt;}
._66{width:190.101333pt;}
._5b{width:191.040000pt;}
._67{width:202.058667pt;}
._1a{width:203.418667pt;}
._52{width:204.642667pt;}
._4b{width:205.653333pt;}
._51{width:207.581333pt;}
._47{width:208.949333pt;}
._56{width:210.520000pt;}
._64{width:211.680000pt;}
._37{width:216.960000pt;}
._6c{width:241.178667pt;}
._54{width:243.048000pt;}
._1e{width:245.440000pt;}
._68{width:246.392000pt;}
._19{width:248.693333pt;}
._7b{width:252.853333pt;}
._70{width:259.360000pt;}
._2a{width:261.280000pt;}
._4e{width:262.293333pt;}
._4f{width:270.384000pt;}
._49{width:273.600000pt;}
._7c{width:277.008000pt;}
._69{width:280.490667pt;}
._35{width:285.280000pt;}
._30{width:286.346667pt;}
._48{width:290.170667pt;}
._6d{width:295.466667pt;}
._3c{width:297.584000pt;}
._22{width:302.346667pt;}
._76{width:304.005333pt;}
._73{width:305.213333pt;}
._39{width:314.826667pt;}
._7d{width:317.280000pt;}
._6e{width:318.933333pt;}
._21{width:327.024000pt;}
._28{width:327.946667pt;}
._7e{width:334.400000pt;}
._77{width:348.085333pt;}
._1d{width:350.848000pt;}
._55{width:354.514667pt;}
._15{width:356.213333pt;}
._78{width:372.026667pt;}
._79{width:389.125333pt;}
._36{width:407.946667pt;}
._74{width:423.522667pt;}
._29{width:455.946667pt;}
._16{width:547.130667pt;}
._3e{width:629.333333pt;}
.fs3{font-size:42.666667pt;}
.fs4{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:49.333333pt;}
.y1{bottom:64.000000pt;}
.y44{bottom:104.000000pt;}
.y6b{bottom:104.069333pt;}
.y130{bottom:105.159333pt;}
.y21{bottom:105.294800pt;}
.y20d{bottom:105.530667pt;}
.y117{bottom:105.568267pt;}
.y17a{bottom:105.594667pt;}
.y1b7{bottom:105.838267pt;}
.yf5{bottom:106.010667pt;}
.y1dd{bottom:106.208000pt;}
.yb2{bottom:106.531733pt;}
.y155{bottom:106.901333pt;}
.yd0{bottom:106.969067pt;}
.y8e{bottom:108.478400pt;}
.y19d{bottom:112.812533pt;}
.y1dc{bottom:119.402667pt;}
.y20c{bottom:122.197333pt;}
.y6a{bottom:123.541333pt;}
.y43{bottom:124.000000pt;}
.y20{bottom:124.766800pt;}
.y179{bottom:125.194667pt;}
.y12f{bottom:125.431333pt;}
.y116{bottom:125.568267pt;}
.yf4{bottom:125.610667pt;}
.y1b6{bottom:125.838267pt;}
.y154{bottom:126.229333pt;}
.yb1{bottom:126.659733pt;}
.ycf{bottom:127.097067pt;}
.y8d{bottom:128.478400pt;}
.y19c{bottom:129.479200pt;}
.y1db{bottom:132.469333pt;}
.y20b{bottom:138.864000pt;}
.y69{bottom:143.013333pt;}
.y42{bottom:144.000000pt;}
.y1f{bottom:144.238800pt;}
.y178{bottom:144.794667pt;}
.yf3{bottom:144.938667pt;}
.y1da{bottom:145.536000pt;}
.y153{bottom:145.557333pt;}
.y115{bottom:145.568267pt;}
.y12e{bottom:145.703333pt;}
.y19b{bottom:146.145867pt;}
.yb0{bottom:146.787733pt;}
.yce{bottom:147.225067pt;}
.y8c{bottom:148.350400pt;}
.y20a{bottom:155.664000pt;}
.y1d9{bottom:158.602667pt;}
.y68{bottom:162.485333pt;}
.y1b5{bottom:162.505067pt;}
.y19a{bottom:162.812533pt;}
.y1e{bottom:163.710800pt;}
.y41{bottom:164.000000pt;}
.yf2{bottom:164.266667pt;}
.y177{bottom:164.394667pt;}
.y152{bottom:164.885333pt;}
.y114{bottom:165.840267pt;}
.y12d{bottom:165.975333pt;}
.yaf{bottom:166.915733pt;}
.ycd{bottom:167.353067pt;}
.y8b{bottom:168.222400pt;}
.y1d8{bottom:171.669333pt;}
.y209{bottom:172.464000pt;}
.y1b4{bottom:179.171733pt;}
.y199{bottom:179.479200pt;}
.y67{bottom:181.957333pt;}
.y1d{bottom:183.182800pt;}
.yf1{bottom:183.594667pt;}
.y176{bottom:183.994667pt;}
.y40{bottom:184.000000pt;}
.y151{bottom:184.213333pt;}
.y1d7{bottom:184.736000pt;}
.y113{bottom:186.112267pt;}
.y12c{bottom:186.247333pt;}
.yae{bottom:187.043733pt;}
.ycc{bottom:187.481067pt;}
.y8a{bottom:188.094400pt;}
.y208{bottom:189.264000pt;}
.y1b3{bottom:195.838400pt;}
.y1d6{bottom:197.802667pt;}
.y66{bottom:201.429333pt;}
.y1c{bottom:202.654800pt;}
.yf0{bottom:202.922667pt;}
.y150{bottom:203.541333pt;}
.y175{bottom:203.594667pt;}
.y45{bottom:204.000000pt;}
.y207{bottom:206.064000pt;}
.y112{bottom:206.384267pt;}
.y12b{bottom:206.519333pt;}
.yad{bottom:207.171733pt;}
.ycb{bottom:207.609067pt;}
.y89{bottom:207.966400pt;}
.y1d5{bottom:210.869333pt;}
.y1b2{bottom:212.505067pt;}
.y198{bottom:212.796267pt;}
.y65{bottom:220.901333pt;}
.y1b{bottom:222.126800pt;}
.yef{bottom:222.250667pt;}
.y206{bottom:222.864000pt;}
.y14f{bottom:222.869333pt;}
.y174{bottom:223.194667pt;}
.y3f{bottom:224.000000pt;}
.y111{bottom:226.656267pt;}
.y12a{bottom:226.791333pt;}
.yca{bottom:227.737067pt;}
.y88{bottom:227.838400pt;}
.y1b1{bottom:229.171733pt;}
.y197{bottom:229.465600pt;}
.y1d4{bottom:229.600000pt;}
.y205{bottom:239.664000pt;}
.y64{bottom:240.373333pt;}
.yee{bottom:241.578667pt;}
.y1a{bottom:241.598800pt;}
.y14e{bottom:242.197333pt;}
.y173{bottom:242.794667pt;}
.y3e{bottom:244.000000pt;}
.y196{bottom:246.134933pt;}
.y110{bottom:246.928267pt;}
.y129{bottom:247.063333pt;}
.yac{bottom:247.438400pt;}
.y87{bottom:247.704933pt;}
.yc9{bottom:247.865067pt;}
.y204{bottom:256.464000pt;}
.y63{bottom:259.845333pt;}
.yed{bottom:260.906667pt;}
.y19{bottom:261.070800pt;}
.y14d{bottom:261.525333pt;}
.y172{bottom:262.394667pt;}
.y1b0{bottom:262.505067pt;}
.y3d{bottom:264.000000pt;}
.yab{bottom:264.238400pt;}
.y10f{bottom:267.200267pt;}
.y128{bottom:267.335333pt;}
.y86{bottom:267.571600pt;}
.yc8{bottom:267.993067pt;}
.y1d3{bottom:268.976000pt;}
.y195{bottom:270.366267pt;}
.y203{bottom:273.264000pt;}
.y1af{bottom:279.158400pt;}
.y62{bottom:279.317333pt;}
.yec{bottom:280.234667pt;}
.y18{bottom:280.542800pt;}
.y14c{bottom:280.853333pt;}
.yaa{bottom:281.038400pt;}
.y171{bottom:281.994667pt;}
.y3c{bottom:284.000000pt;}
.y10e{bottom:287.472267pt;}
.y127{bottom:287.607333pt;}
.yc7{bottom:288.121067pt;}
.y1d2{bottom:288.848000pt;}
.y202{bottom:290.064000pt;}
.y1ae{bottom:295.827733pt;}
.ya9{bottom:297.838400pt;}
.y61{bottom:298.789333pt;}
.yeb{bottom:299.562667pt;}
.y17{bottom:300.014800pt;}
.y14b{bottom:300.181333pt;}
.y170{bottom:301.594667pt;}
.y194{bottom:303.704933pt;}
.y3b{bottom:304.000000pt;}
.y201{bottom:306.864000pt;}
.y85{bottom:307.273067pt;}
.y10d{bottom:307.744267pt;}
.yc6{bottom:308.249067pt;}
.y1d1{bottom:308.720000pt;}
.y1ad{bottom:312.497067pt;}
.ya8{bottom:314.638400pt;}
.y60{bottom:318.261333pt;}
.yea{bottom:318.890667pt;}
.y16{bottom:319.486800pt;}
.y14a{bottom:319.509333pt;}
.y16f{bottom:321.322667pt;}
.y200{bottom:323.664000pt;}
.y3a{bottom:324.000000pt;}
.y126{bottom:326.771600pt;}
.y84{bottom:327.145067pt;}
.y10c{bottom:328.016267pt;}
.yc5{bottom:328.377067pt;}
.y1d0{bottom:328.592000pt;}
.ya7{bottom:331.438400pt;}
.y193{bottom:333.600000pt;}
.y225{bottom:337.333333pt;}
.y5f{bottom:337.733333pt;}
.ye9{bottom:338.218667pt;}
.y15{bottom:338.958800pt;}
.y149{bottom:338.981333pt;}
.y16e{bottom:341.050667pt;}
.y125{bottom:343.438267pt;}
.y39{bottom:344.000000pt;}
.y1ac{bottom:345.835733pt;}
.y1ff{bottom:346.288000pt;}
.y83{bottom:347.017067pt;}
.ya6{bottom:348.238400pt;}
.y10b{bottom:348.288267pt;}
.y1cf{bottom:348.464000pt;}
.yc4{bottom:348.505067pt;}
.y224{bottom:354.000000pt;}
.y5e{bottom:357.205333pt;}
.ye8{bottom:357.546667pt;}
.y14{bottom:358.430800pt;}
.y148{bottom:358.453333pt;}
.y124{bottom:360.104933pt;}
.y16d{bottom:360.778667pt;}
.y1ab{bottom:362.505067pt;}
.y38{bottom:364.000000pt;}
.ya5{bottom:365.038400pt;}
.y82{bottom:366.889067pt;}
.y1ce{bottom:368.336000pt;}
.y10a{bottom:368.560267pt;}
.y223{bottom:370.666667pt;}
.y192{bottom:373.600000pt;}
.y5d{bottom:376.677333pt;}
.y123{bottom:376.771600pt;}
.ye7{bottom:376.874667pt;}
.y13{bottom:377.902800pt;}
.y147{bottom:377.925333pt;}
.y16c{bottom:380.506667pt;}
.ya4{bottom:381.838400pt;}
.y37{bottom:384.000000pt;}
.yc3{bottom:385.304933pt;}
.y1fe{bottom:386.288000pt;}
.y81{bottom:386.761067pt;}
.y222{bottom:387.333333pt;}
.y1cd{bottom:388.208000pt;}
.y109{bottom:388.832267pt;}
.y1aa{bottom:392.400000pt;}
.y191{bottom:393.200000pt;}
.y122{bottom:393.438267pt;}
.y5c{bottom:396.149333pt;}
.ye6{bottom:396.202667pt;}
.y12{bottom:397.374800pt;}
.y146{bottom:397.397333pt;}
.ya3{bottom:398.642267pt;}
.y1fd{bottom:399.749333pt;}
.y16b{bottom:400.234667pt;}
.yc2{bottom:401.971600pt;}
.y36{bottom:404.000000pt;}
.y80{bottom:406.633067pt;}
.y1cc{bottom:408.080000pt;}
.y108{bottom:409.104267pt;}
.y121{bottom:410.104933pt;}
.y190{bottom:412.800000pt;}
.y1fc{bottom:413.210667pt;}
.y221{bottom:414.000000pt;}
.ya2{bottom:415.438267pt;}
.ye5{bottom:415.530667pt;}
.y5b{bottom:415.621333pt;}
.y11{bottom:416.846800pt;}
.y145{bottom:416.869333pt;}
.yc1{bottom:418.638267pt;}
.y16a{bottom:419.962667pt;}
.y35{bottom:424.000000pt;}
.y7f{bottom:426.505067pt;}
.y1fb{bottom:426.672000pt;}
.y120{bottom:426.771600pt;}
.y1cb{bottom:427.952000pt;}
.y107{bottom:429.376267pt;}
.y220{bottom:430.666667pt;}
.y18f{bottom:432.400000pt;}
.y1a9{bottom:432.464000pt;}
.ye4{bottom:434.858667pt;}
.y5a{bottom:435.093333pt;}
.yc0{bottom:435.304933pt;}
.y10{bottom:436.318800pt;}
.y144{bottom:436.341333pt;}
.y169{bottom:439.690667pt;}
.y1fa{bottom:440.133333pt;}
.y11f{bottom:443.438267pt;}
.y34{bottom:444.000000pt;}
.ya1{bottom:445.466667pt;}
.y21f{bottom:447.333333pt;}
.y1ca{bottom:447.824000pt;}
.y106{bottom:449.648267pt;}
.ybf{bottom:451.971600pt;}
.y18e{bottom:452.000000pt;}
.y1a8{bottom:452.592000pt;}
.y1f9{bottom:453.594667pt;}
.ye3{bottom:454.186667pt;}
.y59{bottom:454.565333pt;}
.yf{bottom:455.790800pt;}
.y143{bottom:455.813333pt;}
.y168{bottom:459.418667pt;}
.ya0{bottom:462.933333pt;}
.y33{bottom:464.000000pt;}
.y7e{bottom:466.238400pt;}
.y1f8{bottom:467.056000pt;}
.y1c9{bottom:467.696000pt;}
.ybe{bottom:468.638267pt;}
.y105{bottom:469.920267pt;}
.y18d{bottom:471.600000pt;}
.y1a7{bottom:472.720000pt;}
.ye2{bottom:473.514667pt;}
.y58{bottom:474.037333pt;}
.ye{bottom:475.262800pt;}
.y142{bottom:475.285333pt;}
.y11e{bottom:476.771600pt;}
.y167{bottom:479.146667pt;}
.y1f7{bottom:480.517333pt;}
.y7d{bottom:482.771733pt;}
.y32{bottom:484.000000pt;}
.ybd{bottom:485.304933pt;}
.y1c8{bottom:487.568000pt;}
.y104{bottom:490.185867pt;}
.y21e{bottom:490.666667pt;}
.y18c{bottom:491.200000pt;}
.ye1{bottom:492.842667pt;}
.y1a6{bottom:492.848000pt;}
.y11d{bottom:493.424933pt;}
.y57{bottom:493.509333pt;}
.y1f6{bottom:493.978667pt;}
.yd{bottom:494.734800pt;}
.y141{bottom:494.757333pt;}
.y166{bottom:498.874667pt;}
.y7c{bottom:499.305067pt;}
.ybc{bottom:501.971600pt;}
.y9f{bottom:503.226667pt;}
.y31{bottom:504.000000pt;}
.y103{bottom:507.119200pt;}
.y1c7{bottom:507.440000pt;}
.y11c{bottom:510.094267pt;}
.y18b{bottom:510.800000pt;}
.ye0{bottom:512.314667pt;}
.y1a5{bottom:512.976000pt;}
.y56{bottom:512.981333pt;}
.yc{bottom:514.206800pt;}
.y140{bottom:514.229333pt;}
.y7b{bottom:515.838400pt;}
.y165{bottom:518.602667pt;}
.ybb{bottom:518.635733pt;}
.y1f5{bottom:520.901333pt;}
.y9e{bottom:523.226667pt;}
.y30{bottom:524.000000pt;}
.y102{bottom:524.052533pt;}
.y11b{bottom:526.763600pt;}
.y1c6{bottom:527.312000pt;}
.y21d{bottom:527.333333pt;}
.y18a{bottom:530.400000pt;}
.ydf{bottom:531.786667pt;}
.y55{bottom:532.453333pt;}
.y1a4{bottom:533.104000pt;}
.yb{bottom:533.673467pt;}
.y13f{bottom:533.701333pt;}
.y1f4{bottom:534.362667pt;}
.yba{bottom:535.305067pt;}
.y164{bottom:538.330667pt;}
.y101{bottom:540.985867pt;}
.y9d{bottom:543.226667pt;}
.y2f{bottom:544.000000pt;}
.y1c5{bottom:547.184000pt;}
.y1f3{bottom:547.824000pt;}
.y7a{bottom:548.905067pt;}
.y189{bottom:550.000000pt;}
.yde{bottom:551.258667pt;}
.y54{bottom:551.925333pt;}
.y13e{bottom:553.173333pt;}
.y1a3{bottom:553.232000pt;}
.y100{bottom:557.919200pt;}
.y163{bottom:558.058667pt;}
.y11a{bottom:560.102267pt;}
.y21c{bottom:560.666667pt;}
.y1f2{bottom:561.285333pt;}
.y9c{bottom:563.226667pt;}
.y2e{bottom:564.000000pt;}
.yb9{bottom:565.200000pt;}
.y79{bottom:565.438400pt;}
.y1c4{bottom:567.056000pt;}
.y188{bottom:569.600000pt;}
.ydd{bottom:570.730667pt;}
.y53{bottom:571.397333pt;}
.ya{bottom:572.606800pt;}
.y13d{bottom:572.645333pt;}
.y1a2{bottom:573.360000pt;}
.y1f1{bottom:574.746667pt;}
.y119{bottom:576.771600pt;}
.y21b{bottom:577.333333pt;}
.y162{bottom:577.786667pt;}
.y78{bottom:581.971733pt;}
.yff{bottom:582.412533pt;}
.yb8{bottom:582.533333pt;}
.y9b{bottom:583.226667pt;}
.y2d{bottom:584.000000pt;}
.y1c3{bottom:586.928000pt;}
.y1f0{bottom:588.208000pt;}
.y9{bottom:588.740133pt;}
.y187{bottom:589.200000pt;}
.ydc{bottom:590.202667pt;}
.y52{bottom:590.869333pt;}
.y13c{bottom:592.117333pt;}
.y1a1{bottom:593.488000pt;}
.y21a{bottom:594.000000pt;}
.y161{bottom:597.514667pt;}
.y77{bottom:598.505067pt;}
.y1ef{bottom:601.669333pt;}
.y9a{bottom:603.226667pt;}
.y2c{bottom:604.000000pt;}
.y118{bottom:606.666667pt;}
.y1c2{bottom:606.848000pt;}
.yfe{bottom:606.896933pt;}
.y186{bottom:608.800000pt;}
.ydb{bottom:609.674667pt;}
.y51{bottom:610.341333pt;}
.y219{bottom:610.666667pt;}
.y13b{bottom:611.589333pt;}
.y1a0{bottom:613.616000pt;}
.y76{bottom:615.038400pt;}
.y1ee{bottom:615.130667pt;}
.y160{bottom:617.242667pt;}
.yb7{bottom:622.586667pt;}
.y99{bottom:623.226667pt;}
.y2b{bottom:624.000000pt;}
.y8{bottom:625.660933pt;}
.y1c1{bottom:626.720000pt;}
.y218{bottom:627.333333pt;}
.y185{bottom:628.400000pt;}
.y1ed{bottom:628.592000pt;}
.yda{bottom:629.146667pt;}
.y50{bottom:629.813333pt;}
.y13a{bottom:631.061333pt;}
.y75{bottom:631.571733pt;}
.y19f{bottom:633.744000pt;}
.y15f{bottom:636.970667pt;}
.y1ec{bottom:642.053333pt;}
.yb6{bottom:642.714667pt;}
.y98{bottom:643.226667pt;}
.y2a{bottom:644.000000pt;}
.y7{bottom:645.127600pt;}
.y1c0{bottom:646.448000pt;}
.y184{bottom:648.000000pt;}
.y74{bottom:648.105067pt;}
.yd9{bottom:648.618667pt;}
.y4f{bottom:649.285333pt;}
.y139{bottom:650.533333pt;}
.y19e{bottom:653.872000pt;}
.y1eb{bottom:655.514667pt;}
.y15e{bottom:656.698667pt;}
.yfd{bottom:657.702933pt;}
.y217{bottom:660.666667pt;}
.yb5{bottom:662.842667pt;}
.y97{bottom:663.226667pt;}
.y29{bottom:664.000000pt;}
.y73{bottom:664.638400pt;}
.y1bf{bottom:666.176000pt;}
.y183{bottom:667.600000pt;}
.yd8{bottom:668.090667pt;}
.y4e{bottom:668.757333pt;}
.y1ea{bottom:668.976000pt;}
.y138{bottom:670.000000pt;}
.yfc{bottom:674.638267pt;}
.y15d{bottom:676.426667pt;}
.y216{bottom:677.333333pt;}
.y72{bottom:681.174933pt;}
.y1e9{bottom:682.437333pt;}
.yb4{bottom:682.970667pt;}
.y96{bottom:683.226667pt;}
.y28{bottom:684.000000pt;}
.y6{bottom:685.381600pt;}
.y1be{bottom:685.904000pt;}
.y182{bottom:687.200000pt;}
.yd7{bottom:687.562667pt;}
.y4d{bottom:688.229333pt;}
.y137{bottom:689.333333pt;}
.y215{bottom:694.000000pt;}
.y1e8{bottom:695.898667pt;}
.y15c{bottom:696.154667pt;}
.y71{bottom:697.704933pt;}
.yb3{bottom:703.098667pt;}
.y95{bottom:703.226667pt;}
.y27{bottom:704.000000pt;}
.yfb{bottom:704.800000pt;}
.y5{bottom:704.848267pt;}
.y1bd{bottom:705.632000pt;}
.y181{bottom:706.800000pt;}
.yd6{bottom:707.034667pt;}
.y4c{bottom:707.701333pt;}
.y1e7{bottom:709.360000pt;}
.y214{bottom:710.666667pt;}
.y15b{bottom:715.882667pt;}
.yfa{bottom:722.400000pt;}
.y1e6{bottom:722.821333pt;}
.y94{bottom:723.226667pt;}
.y26{bottom:724.000000pt;}
.y1bc{bottom:725.360000pt;}
.y180{bottom:726.400000pt;}
.yd5{bottom:726.506667pt;}
.y4b{bottom:727.173333pt;}
.y213{bottom:727.333333pt;}
.y70{bottom:727.466667pt;}
.y136{bottom:728.026667pt;}
.y1e5{bottom:736.293333pt;}
.y93{bottom:743.354667pt;}
.y25{bottom:744.000000pt;}
.y6f{bottom:744.666667pt;}
.y1bb{bottom:745.088000pt;}
.y15a{bottom:745.354667pt;}
.yd4{bottom:745.978667pt;}
.y17f{bottom:746.000000pt;}
.y4a{bottom:746.645333pt;}
.y135{bottom:747.354667pt;}
.y1e4{bottom:749.754667pt;}
.y212{bottom:760.666667pt;}
.yf9{bottom:762.917333pt;}
.y1e3{bottom:763.216000pt;}
.y92{bottom:763.482667pt;}
.y4{bottom:764.000000pt;}
.y1ba{bottom:764.816000pt;}
.y159{bottom:765.082667pt;}
.yd3{bottom:765.450667pt;}
.y17e{bottom:765.600000pt;}
.y49{bottom:766.117333pt;}
.y134{bottom:766.682667pt;}
.y1e2{bottom:776.677333pt;}
.y211{bottom:777.333333pt;}
.yf8{bottom:783.189333pt;}
.y91{bottom:783.610667pt;}
.y24{bottom:784.000000pt;}
.y6e{bottom:784.389333pt;}
.y1b9{bottom:784.544000pt;}
.y158{bottom:784.810667pt;}
.yd2{bottom:784.922667pt;}
.y17d{bottom:785.200000pt;}
.y48{bottom:785.589333pt;}
.y133{bottom:786.010667pt;}
.y1e1{bottom:790.138667pt;}
.y3{bottom:790.666667pt;}
.y210{bottom:794.000000pt;}
.yf7{bottom:803.461333pt;}
.y1e0{bottom:803.610667pt;}
.y90{bottom:803.738667pt;}
.y23{bottom:804.000000pt;}
.y6d{bottom:804.261333pt;}
.y1b8{bottom:804.272000pt;}
.yd1{bottom:804.394667pt;}
.y157{bottom:804.538667pt;}
.y17c{bottom:804.800000pt;}
.y47{bottom:805.061333pt;}
.y132{bottom:805.338667pt;}
.y20f{bottom:810.666667pt;}
.y1df{bottom:817.072000pt;}
.yf6{bottom:823.733333pt;}
.y8f{bottom:823.866667pt;}
.y22{bottom:824.000000pt;}
.y6c{bottom:824.133333pt;}
.y156{bottom:824.266667pt;}
.y17b{bottom:824.400000pt;}
.y46{bottom:824.533333pt;}
.y131{bottom:824.666667pt;}
.y20e{bottom:827.333333pt;}
.y1de{bottom:830.533333pt;}
.hc{height:29.437500pt;}
.ha{height:35.456000pt;}
.h9{height:36.045573pt;}
.hb{height:36.229167pt;}
.h5{height:36.796875pt;}
.h4{height:42.656250pt;}
.h6{height:44.156250pt;}
.h8{height:44.320000pt;}
.h3{height:44.960000pt;}
.h1{height:45.286458pt;}
.h7{height:54.343750pt;}
.h2{height:73.593750pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.000000pt;}
.x3{left:73.228400pt;}
.x6{left:99.996400pt;}
.x5{left:113.228400pt;}
.x2{left:120.000000pt;}
.xf{left:126.460400pt;}
.x8{left:160.350400pt;}
.x10{left:165.103467pt;}
.x11{left:173.415333pt;}
.xd{left:200.785467pt;}
.xc{left:206.700800pt;}
.x7{left:209.205733pt;}
.xa{left:214.312133pt;}
.xe{left:216.440133pt;}
.xb{left:218.974800pt;}
.x9{left:258.974800pt;}
.x4{left:564.791600pt;}
}




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