
    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_e8825af834b7f1cd88bd95d5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.043945;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_86068e1c0aebed6a75a7075f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_3c5471114ab7f4181bfc287f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900391;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_da80cfd2972e23954b3b67c0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ef61112a743a35a4938f9954.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_56319cb16af4fbc83461dc0d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.731445;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_e7daf5178155ad00d537001e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.043945;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_83a84a69d6683994b812cb56.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_4e8a47dca69ed4a6656f5573.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.903809;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_793047ac1725c7e3ee967e49.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.043945;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_18623c77e40c9774b20926ea.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_3feb2888ec88adffd3b2867f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.905762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_b6560522feed0b49bb5b4cb7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_f193bd1201e6c197203de056.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-23.976000px;}
.v5{vertical-align:-1.039200px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.474800px;}
.v1{vertical-align:19.005000px;}
.v4{vertical-align:32.400000px;}
.ls18{letter-spacing:-1.425000px;}
.ls7{letter-spacing:-0.918000px;}
.ls27{letter-spacing:-0.378000px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.009000px;}
.ls3{letter-spacing:0.010800px;}
.ls1e{letter-spacing:0.054000px;}
.ls13{letter-spacing:0.057000px;}
.lsb{letter-spacing:0.114000px;}
.ls25{letter-spacing:0.162000px;}
.ls29{letter-spacing:0.216000px;}
.ls15{letter-spacing:0.228000px;}
.ls28{letter-spacing:0.324000px;}
.ls14{letter-spacing:0.414900px;}
.ls11{letter-spacing:0.415500px;}
.ls23{letter-spacing:0.432000px;}
.lsf{letter-spacing:0.456000px;}
.ls22{letter-spacing:0.486000px;}
.lsd{letter-spacing:0.513000px;}
.lse{letter-spacing:0.570000px;}
.ls4{letter-spacing:0.576000px;}
.ls2a{letter-spacing:0.594000px;}
.ls1d{letter-spacing:0.648000px;}
.lsc{letter-spacing:0.684000px;}
.ls21{letter-spacing:0.702000px;}
.ls16{letter-spacing:0.741000px;}
.ls1f{letter-spacing:0.756000px;}
.ls12{letter-spacing:0.798000px;}
.ls1a{letter-spacing:0.855000px;}
.ls1c{letter-spacing:0.864000px;}
.lsa{letter-spacing:0.907200px;}
.ls20{letter-spacing:0.972000px;}
.ls5{letter-spacing:1.020000px;}
.ls24{letter-spacing:1.080000px;}
.ls26{letter-spacing:1.134000px;}
.ls2{letter-spacing:1.224000px;}
.ls8{letter-spacing:1.326000px;}
.ls19{letter-spacing:9.900000px;}
.ls1b{letter-spacing:9.900600px;}
.ls17{letter-spacing:124.103400px;}
.ls10{letter-spacing:785.646000px;}
.ls1{letter-spacing:1223.316000px;}
.ls9{letter-spacing:1381.914000px;}
.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;}
}
.ws2{word-spacing:-26.826000px;}
.ws3b{word-spacing:-14.934000px;}
.wsb9{word-spacing:-14.148000px;}
.wsec{word-spacing:-13.986000px;}
.ws19{word-spacing:-13.507200px;}
.ws1{word-spacing:-13.500000px;}
.ws4{word-spacing:-12.750000px;}
.ws3{word-spacing:-12.600000px;}
.ws0{word-spacing:-10.500000px;}
.ws50{word-spacing:-10.494000px;}
.ws11{word-spacing:-2.805000px;}
.ws74{word-spacing:-2.304000px;}
.wsb{word-spacing:-2.244000px;}
.ws72{word-spacing:-1.872000px;}
.ws75{word-spacing:-1.728000px;}
.ws83{word-spacing:-1.392000px;}
.ws73{word-spacing:-1.344000px;}
.wse7{word-spacing:-1.134000px;}
.ws6{word-spacing:-1.122000px;}
.wsdd{word-spacing:-1.080000px;}
.wsa{word-spacing:-1.020000px;}
.ws63{word-spacing:-0.864000px;}
.wsc3{word-spacing:-0.756000px;}
.ws22{word-spacing:-0.741000px;}
.wsbf{word-spacing:-0.702000px;}
.ws30{word-spacing:-0.513000px;}
.wsdb{word-spacing:-0.486000px;}
.ws17{word-spacing:-0.459000px;}
.ws68{word-spacing:-0.456000px;}
.wsd6{word-spacing:-0.432000px;}
.wsef{word-spacing:-0.324000px;}
.ws78{word-spacing:-0.228000px;}
.wsf1{word-spacing:-0.216000px;}
.ws13{word-spacing:-0.204000px;}
.ws1c{word-spacing:-0.171000px;}
.wsc1{word-spacing:-0.054000px;}
.ws5{word-spacing:0.000000px;}
.ws10{word-spacing:0.153000px;}
.ws67{word-spacing:0.228000px;}
.wsdc{word-spacing:0.378000px;}
.ws70{word-spacing:0.513000px;}
.wsc{word-spacing:0.561000px;}
.wsf6{word-spacing:0.594000px;}
.ws81{word-spacing:0.624000px;}
.ws82{word-spacing:0.672000px;}
.wsab{word-spacing:0.798000px;}
.wsf{word-spacing:1.122000px;}
.wsf2{word-spacing:1.458000px;}
.ws38{word-spacing:1.539000px;}
.ws5b{word-spacing:1.596000px;}
.wsce{word-spacing:1.620000px;}
.ws15{word-spacing:1.734000px;}
.wsd5{word-spacing:1.836000px;}
.ws7a{word-spacing:1.881000px;}
.wsbc{word-spacing:1.995000px;}
.wsc2{word-spacing:1.998000px;}
.ws39{word-spacing:2.166000px;}
.ws94{word-spacing:2.223000px;}
.ws9b{word-spacing:2.337000px;}
.ws8a{word-spacing:2.394000px;}
.ws56{word-spacing:2.451000px;}
.ws29{word-spacing:2.508000px;}
.wsb5{word-spacing:2.622000px;}
.ws7c{word-spacing:2.679000px;}
.ws7b{word-spacing:2.736000px;}
.wsb8{word-spacing:2.850000px;}
.wsbd{word-spacing:2.964000px;}
.ws18{word-spacing:3.111000px;}
.wsee{word-spacing:3.186000px;}
.ws6b{word-spacing:3.192000px;}
.ws6f{word-spacing:3.249000px;}
.wsb2{word-spacing:3.363000px;}
.wsed{word-spacing:3.402000px;}
.wsad{word-spacing:3.420000px;}
.ws6d{word-spacing:3.591000px;}
.ws7d{word-spacing:3.705000px;}
.wsd{word-spacing:3.723000px;}
.ws62{word-spacing:3.762000px;}
.ws14{word-spacing:3.978000px;}
.wscf{word-spacing:3.996000px;}
.ws4f{word-spacing:4.047000px;}
.wsde{word-spacing:4.050000px;}
.wsaa{word-spacing:4.104000px;}
.ws65{word-spacing:4.161000px;}
.ws99{word-spacing:4.218000px;}
.ws31{word-spacing:4.275000px;}
.ws71{word-spacing:4.389000px;}
.ws42{word-spacing:4.446000px;}
.ws6c{word-spacing:4.503000px;}
.ws2a{word-spacing:4.731000px;}
.wse{word-spacing:4.743000px;}
.ws5c{word-spacing:4.788000px;}
.wsc7{word-spacing:4.806000px;}
.wsb1{word-spacing:4.845000px;}
.wsf4{word-spacing:4.860000px;}
.ws9{word-spacing:4.896000px;}
.ws5f{word-spacing:4.959000px;}
.wsf7{word-spacing:4.968000px;}
.ws47{word-spacing:5.073000px;}
.ws85{word-spacing:5.130000px;}
.ws77{word-spacing:5.187000px;}
.ws93{word-spacing:5.244000px;}
.wsb4{word-spacing:5.301000px;}
.ws49{word-spacing:5.358000px;}
.wsd7{word-spacing:5.400000px;}
.ws33{word-spacing:5.472000px;}
.ws4c{word-spacing:5.586000px;}
.wsd2{word-spacing:5.616000px;}
.wsc9{word-spacing:5.724000px;}
.ws36{word-spacing:5.757000px;}
.ws26{word-spacing:5.814000px;}
.wsf5{word-spacing:5.832000px;}
.ws6a{word-spacing:5.871000px;}
.wsc0{word-spacing:5.940000px;}
.ws45{word-spacing:5.985000px;}
.wsdf{word-spacing:5.994000px;}
.ws8{word-spacing:6.000000px;}
.ws3c{word-spacing:6.042000px;}
.ws55{word-spacing:6.099000px;}
.ws91{word-spacing:6.156000px;}
.wse2{word-spacing:6.210000px;}
.ws80{word-spacing:6.213000px;}
.ws87{word-spacing:6.270000px;}
.wsd8{word-spacing:6.318000px;}
.ws3f{word-spacing:6.327000px;}
.ws41{word-spacing:6.384000px;}
.ws88{word-spacing:6.441000px;}
.wsf0{word-spacing:6.480000px;}
.ws32{word-spacing:6.555000px;}
.ws2b{word-spacing:6.612000px;}
.wse3{word-spacing:6.642000px;}
.ws46{word-spacing:6.669000px;}
.ws27{word-spacing:6.726000px;}
.wsc4{word-spacing:6.750000px;}
.wsae{word-spacing:6.783000px;}
.ws57{word-spacing:6.840000px;}
.ws28{word-spacing:6.897000px;}
.ws12{word-spacing:6.987000px;}
.ws5d{word-spacing:7.011000px;}
.wsea{word-spacing:7.074000px;}
.ws23{word-spacing:7.125000px;}
.wse0{word-spacing:7.128000px;}
.ws95{word-spacing:7.239000px;}
.wscc{word-spacing:7.290000px;}
.ws9a{word-spacing:7.296000px;}
.ws60{word-spacing:7.353000px;}
.ws16{word-spacing:7.395000px;}
.ws9c{word-spacing:7.410000px;}
.wsa9{word-spacing:7.524000px;}
.ws69{word-spacing:7.581000px;}
.ws48{word-spacing:7.638000px;}
.wsbb{word-spacing:7.695000px;}
.ws61{word-spacing:7.752000px;}
.wse5{word-spacing:7.830000px;}
.ws8f{word-spacing:7.866000px;}
.ws98{word-spacing:7.923000px;}
.ws8c{word-spacing:7.980000px;}
.wse8{word-spacing:7.992000px;}
.ws90{word-spacing:8.094000px;}
.ws34{word-spacing:8.151000px;}
.wsf8{word-spacing:8.154000px;}
.ws40{word-spacing:8.208000px;}
.wsd0{word-spacing:8.262000px;}
.ws76{word-spacing:8.265000px;}
.ws84{word-spacing:8.322000px;}
.ws8d{word-spacing:8.379000px;}
.ws96{word-spacing:8.436000px;}
.ws2e{word-spacing:8.550000px;}
.ws4d{word-spacing:8.607000px;}
.ws2c{word-spacing:8.664000px;}
.ws3a{word-spacing:8.721000px;}
.ws5e{word-spacing:8.778000px;}
.wsc6{word-spacing:8.802000px;}
.ws4b{word-spacing:8.892000px;}
.wse6{word-spacing:8.910000px;}
.wscd{word-spacing:9.018000px;}
.wseb{word-spacing:9.072000px;}
.ws3e{word-spacing:9.120000px;}
.ws97{word-spacing:9.177000px;}
.ws35{word-spacing:9.234000px;}
.wsda{word-spacing:9.288000px;}
.ws44{word-spacing:9.291000px;}
.wsd4{word-spacing:9.342000px;}
.ws6e{word-spacing:9.348000px;}
.wsca{word-spacing:9.396000px;}
.wsa8{word-spacing:9.462000px;}
.ws2f{word-spacing:9.519000px;}
.ws92{word-spacing:9.633000px;}
.wse1{word-spacing:9.666000px;}
.wscb{word-spacing:9.774000px;}
.ws24{word-spacing:9.804000px;}
.ws25{word-spacing:9.861000px;}
.ws51{word-spacing:9.975000px;}
.ws89{word-spacing:10.032000px;}
.ws59{word-spacing:10.089000px;}
.ws86{word-spacing:10.146000px;}
.ws4a{word-spacing:10.203000px;}
.ws21{word-spacing:10.260000px;}
.ws37{word-spacing:10.317000px;}
.wse4{word-spacing:10.368000px;}
.wsa7{word-spacing:10.374000px;}
.wsf9{word-spacing:10.422000px;}
.ws20{word-spacing:10.488000px;}
.ws8b{word-spacing:10.545000px;}
.wsac{word-spacing:10.602000px;}
.ws3d{word-spacing:10.659000px;}
.ws66{word-spacing:10.716000px;}
.ws7e{word-spacing:10.773000px;}
.wsd1{word-spacing:10.854000px;}
.ws1b{word-spacing:10.944000px;}
.ws1d{word-spacing:11.001000px;}
.wsf3{word-spacing:11.070000px;}
.wsb6{word-spacing:11.115000px;}
.ws5a{word-spacing:11.343000px;}
.ws1f{word-spacing:11.571000px;}
.ws4e{word-spacing:11.628000px;}
.ws1e{word-spacing:11.685000px;}
.wse9{word-spacing:11.826000px;}
.wsb0{word-spacing:11.856000px;}
.ws58{word-spacing:11.913000px;}
.ws54{word-spacing:12.255000px;}
.ws52{word-spacing:12.312000px;}
.ws79{word-spacing:12.540000px;}
.wsba{word-spacing:12.597000px;}
.ws8e{word-spacing:12.654000px;}
.wsd3{word-spacing:12.690000px;}
.wsb3{word-spacing:12.711000px;}
.ws53{word-spacing:12.825000px;}
.ws2d{word-spacing:13.053000px;}
.wsb7{word-spacing:13.167000px;}
.ws7f{word-spacing:13.224000px;}
.wsaf{word-spacing:13.338000px;}
.wsc5{word-spacing:13.392000px;}
.wsbe{word-spacing:13.500000px;}
.wsc8{word-spacing:13.554000px;}
.ws1a{word-spacing:13.566000px;}
.ws43{word-spacing:13.623000px;}
.ws64{word-spacing:14.250000px;}
.ws7{word-spacing:25.194000px;}
.ws9e{word-spacing:93.793200px;}
.wsa1{word-spacing:94.795200px;}
.wsa4{word-spacing:99.177000px;}
.wsa0{word-spacing:100.360800px;}
.wsa6{word-spacing:101.418000px;}
.wsa3{word-spacing:101.442000px;}
.wsa5{word-spacing:114.966600px;}
.ws9d{word-spacing:135.115800px;}
.wsd9{word-spacing:155.574000px;}
.ws9f{word-spacing:156.168000px;}
.wsa2{word-spacing:157.140000px;}
._b{margin-left:-7.239000px;}
._1c{margin-left:-5.886000px;}
._4{margin-left:-4.488000px;}
._0{margin-left:-2.520000px;}
._2{margin-left:-1.224000px;}
._1{width:1.602000px;}
._9{width:3.300000px;}
._3{width:4.335000px;}
._6{width:5.472000px;}
._c{width:6.555000px;}
._8{width:7.923000px;}
._a{width:8.946000px;}
._5{width:9.990000px;}
._7{width:11.664000px;}
._d{width:12.825000px;}
._1b{width:15.276000px;}
._11{width:69.282000px;}
._10{width:88.668000px;}
._12{width:102.600000px;}
._17{width:116.154000px;}
._f{width:119.667000px;}
._1d{width:148.878000px;}
._19{width:170.262000px;}
._13{width:206.102400px;}
._18{width:207.684000px;}
._1a{width:218.160000px;}
._14{width:221.991000px;}
._15{width:237.654000px;}
._16{width:251.154000px;}
._e{width:278.502000px;}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:33.231000px;}
.fsb{font-size:41.976000px;}
.fs1{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fs5{font-size:50.400000px;}
.fs8{font-size:51.000000px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:72.000000px;}
.fs9{font-size:84.000000px;}
.fs3{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y52{bottom:84.997650px;}
.y23{bottom:85.447650px;}
.yea{bottom:127.575000px;}
.yeb{bottom:128.438250px;}
.yc8{bottom:133.569000px;}
.y1d7{bottom:135.205050px;}
.y7b{bottom:136.010250px;}
.y51{bottom:138.142500px;}
.ya2{bottom:139.930950px;}
.y12a{bottom:140.811900px;}
.ye9{bottom:141.975000px;}
.y17a{bottom:142.311000px;}
.y14e{bottom:143.217000px;}
.yc7{bottom:149.175000px;}
.y1d6{bottom:151.108050px;}
.y7a{bottom:153.409500px;}
.y50{bottom:154.644000px;}
.ye8{bottom:156.375000px;}
.y1a8{bottom:156.805050px;}
.y179{bottom:157.755000px;}
.y14d{bottom:160.317000px;}
.yc6{bottom:163.575000px;}
.y1d5{bottom:167.011050px;}
.y129{bottom:169.725300px;}
.ye7{bottom:170.775000px;}
.y4f{bottom:171.145500px;}
.y1a7{bottom:173.005050px;}
.y178{bottom:173.199000px;}
.ya1{bottom:177.391500px;}
.y14c{bottom:177.417000px;}
.yc5{bottom:177.975000px;}
.y10f{bottom:180.834000px;}
.y1d4{bottom:182.914050px;}
.y4e{bottom:187.647000px;}
.y79{bottom:188.208000px;}
.y177{bottom:188.643000px;}
.y1a6{bottom:189.205050px;}
.ye6{bottom:191.169000px;}
.yc4{bottom:192.375000px;}
.ya0{bottom:194.192250px;}
.y14b{bottom:194.517000px;}
.y10e{bottom:198.390000px;}
.y128{bottom:198.638700px;}
.y1d3{bottom:198.817050px;}
.y176{bottom:204.087000px;}
.y4d{bottom:204.148500px;}
.y1a5{bottom:205.405050px;}
.yc3{bottom:206.775000px;}
.y9f{bottom:210.993000px;}
.y14a{bottom:211.617000px;}
.ye5{bottom:212.769000px;}
.y1d2{bottom:214.720050px;}
.y10d{bottom:215.946000px;}
.y1fd{bottom:219.337050px;}
.y175{bottom:219.531000px;}
.y4c{bottom:220.650000px;}
.yc2{bottom:221.175000px;}
.y1a4{bottom:221.605050px;}
.y78{bottom:223.006500px;}
.y22{bottom:224.811450px;}
.y127{bottom:227.552100px;}
.y149{bottom:228.717000px;}
.y1d1{bottom:230.623050px;}
.y10c{bottom:233.502000px;}
.y174{bottom:234.975000px;}
.y1fc{bottom:235.537050px;}
.y4b{bottom:237.151500px;}
.y1a3{bottom:237.805050px;}
.y77{bottom:239.508000px;}
.y21{bottom:241.016700px;}
.yc1{bottom:241.569000px;}
.y9e{bottom:244.594500px;}
.y148{bottom:245.817000px;}
.y1d0{bottom:246.526050px;}
.y173{bottom:250.419000px;}
.y1fb{bottom:251.737050px;}
.y4a{bottom:253.653000px;}
.y1a2{bottom:254.005050px;}
.y76{bottom:256.009500px;}
.y126{bottom:256.465500px;}
.y20{bottom:257.221950px;}
.y1cf{bottom:262.429050px;}
.y147{bottom:262.917000px;}
.y172{bottom:265.863000px;}
.y1fa{bottom:267.937050px;}
.y10b{bottom:268.599750px;}
.y49{bottom:270.154500px;}
.y1a1{bottom:270.205050px;}
.y75{bottom:272.511000px;}
.y1f{bottom:273.427200px;}
.y9d{bottom:278.196000px;}
.y1ce{bottom:278.332050px;}
.y146{bottom:280.017000px;}
.y171{bottom:281.307000px;}
.y1f9{bottom:284.137050px;}
.y125{bottom:285.378900px;}
.y1a0{bottom:286.405050px;}
.y48{bottom:286.656000px;}
.y74{bottom:289.012500px;}
.y1e{bottom:289.632450px;}
.y1cd{bottom:294.235050px;}
.yc0{bottom:294.692250px;}
.y9c{bottom:294.996750px;}
.y170{bottom:296.751000px;}
.y145{bottom:297.117000px;}
.y1f8{bottom:300.337050px;}
.y19f{bottom:302.605050px;}
.y47{bottom:303.157500px;}
.y10a{bottom:303.697500px;}
.y73{bottom:305.514000px;}
.y1d{bottom:305.837700px;}
.y1cc{bottom:310.138050px;}
.ye4{bottom:310.637250px;}
.ybf{bottom:311.792250px;}
.y9b{bottom:311.797500px;}
.y16f{bottom:312.195000px;}
.y144{bottom:314.217000px;}
.y124{bottom:314.292300px;}
.y1f7{bottom:316.537050px;}
.y19e{bottom:318.805050px;}
.y46{bottom:319.659000px;}
.y109{bottom:321.253500px;}
.y72{bottom:322.015500px;}
.y1c{bottom:322.042950px;}
.y1cb{bottom:326.041050px;}
.y16e{bottom:327.639000px;}
.ybe{bottom:328.593000px;}
.y9a{bottom:328.598250px;}
.ye3{bottom:328.635000px;}
.y143{bottom:331.317000px;}
.y1f6{bottom:332.737050px;}
.y19d{bottom:335.005050px;}
.y45{bottom:336.160500px;}
.y1b{bottom:338.248200px;}
.y71{bottom:338.517000px;}
.y108{bottom:338.809500px;}
.y1ca{bottom:341.944050px;}
.y16d{bottom:343.083000px;}
.y123{bottom:343.205700px;}
.ybd{bottom:345.393750px;}
.y99{bottom:345.399000px;}
.ye2{bottom:346.632750px;}
.y142{bottom:348.417000px;}
.y1f5{bottom:348.937050px;}
.y19c{bottom:351.205050px;}
.y44{bottom:352.662000px;}
.y1a{bottom:354.453450px;}
.y107{bottom:356.365500px;}
.y1c9{bottom:357.847050px;}
.y16c{bottom:358.527000px;}
.ybc{bottom:362.194500px;}
.y98{bottom:362.199750px;}
.ye1{bottom:364.630500px;}
.y1f4{bottom:365.137050px;}
.y141{bottom:365.517000px;}
.y19b{bottom:367.405050px;}
.y43{bottom:369.163500px;}
.y19{bottom:370.658700px;}
.y70{bottom:371.517000px;}
.y122{bottom:372.119100px;}
.y1c8{bottom:373.750050px;}
.y106{bottom:373.921500px;}
.y16b{bottom:373.971000px;}
.ybb{bottom:378.995250px;}
.y97{bottom:379.000500px;}
.y1f3{bottom:381.337050px;}
.y140{bottom:382.617000px;}
.ye0{bottom:382.628250px;}
.y19a{bottom:383.605050px;}
.y42{bottom:385.665000px;}
.y18{bottom:386.863950px;}
.y16a{bottom:389.415000px;}
.y1c7{bottom:389.653050px;}
.y105{bottom:391.477500px;}
.yba{bottom:395.796000px;}
.y96{bottom:395.801250px;}
.y1f2{bottom:397.537050px;}
.y199{bottom:399.805050px;}
.ydf{bottom:400.626000px;}
.y121{bottom:401.032500px;}
.y41{bottom:402.166500px;}
.y152{bottom:404.217000px;}
.y169{bottom:404.859000px;}
.y1c6{bottom:405.556050px;}
.y104{bottom:409.033500px;}
.yb9{bottom:412.596750px;}
.y95{bottom:412.602000px;}
.y1f1{bottom:413.737050px;}
.y198{bottom:416.005050px;}
.y13f{bottom:416.817150px;}
.yde{bottom:418.623750px;}
.y40{bottom:418.668000px;}
.y17{bottom:419.261700px;}
.y168{bottom:420.303000px;}
.y6f{bottom:420.975000px;}
.y151{bottom:421.317000px;}
.y1c5{bottom:421.459050px;}
.y103{bottom:426.589500px;}
.yb8{bottom:429.397500px;}
.y94{bottom:429.402750px;}
.y1f0{bottom:429.937050px;}
.y120{bottom:429.945900px;}
.y197{bottom:432.205050px;}
.y3f{bottom:435.169500px;}
.y16{bottom:435.466950px;}
.y167{bottom:435.747000px;}
.ydd{bottom:436.621500px;}
.y1c4{bottom:437.362050px;}
.y6e{bottom:437.476500px;}
.y150{bottom:438.417000px;}
.y102{bottom:444.145500px;}
.y1ef{bottom:446.137050px;}
.yb7{bottom:446.198250px;}
.y93{bottom:446.203500px;}
.y196{bottom:448.405050px;}
.y166{bottom:451.191000px;}
.y3e{bottom:451.671000px;}
.y1c3{bottom:453.265050px;}
.y6d{bottom:453.978000px;}
.ydc{bottom:454.619250px;}
.y14f{bottom:455.517000px;}
.y11f{bottom:458.859300px;}
.y101{bottom:461.701500px;}
.y1ee{bottom:462.337050px;}
.yb6{bottom:462.999000px;}
.y92{bottom:463.004250px;}
.y195{bottom:464.605050px;}
.y165{bottom:466.635000px;}
.y15{bottom:467.864700px;}
.y3d{bottom:468.172500px;}
.y1c2{bottom:469.168050px;}
.y6c{bottom:470.479500px;}
.y13e{bottom:472.617000px;}
.ydb{bottom:472.619250px;}
.y1ed{bottom:478.537050px;}
.y100{bottom:479.257500px;}
.y91{bottom:479.805000px;}
.y194{bottom:480.805050px;}
.y164{bottom:482.079000px;}
.y14{bottom:484.069950px;}
.y3c{bottom:484.674000px;}
.y1c1{bottom:485.071050px;}
.y6b{bottom:486.981000px;}
.y11e{bottom:487.772550px;}
.y13d{bottom:489.717000px;}
.yda{bottom:490.657500px;}
.y1ec{bottom:494.737050px;}
.yb5{bottom:496.600500px;}
.y90{bottom:496.605750px;}
.yff{bottom:496.813500px;}
.y193{bottom:497.005050px;}
.y163{bottom:497.523000px;}
.y13{bottom:500.275200px;}
.y1c0{bottom:500.974050px;}
.y3b{bottom:501.175500px;}
.y6a{bottom:503.482500px;}
.y13c{bottom:506.817000px;}
.yd9{bottom:508.655250px;}
.y1eb{bottom:510.937050px;}
.y162{bottom:512.967000px;}
.y192{bottom:513.205050px;}
.y8f{bottom:513.406500px;}
.yfe{bottom:514.369500px;}
.y12{bottom:516.480450px;}
.y11d{bottom:516.685950px;}
.y1bf{bottom:516.877050px;}
.y3a{bottom:517.677000px;}
.y69{bottom:519.984000px;}
.y13b{bottom:523.917000px;}
.yd8{bottom:526.653000px;}
.y1ea{bottom:527.137050px;}
.y191{bottom:529.405050px;}
.yb4{bottom:530.202000px;}
.y8e{bottom:530.207250px;}
.yfd{bottom:531.925500px;}
.y11{bottom:532.685700px;}
.y1be{bottom:532.780050px;}
.y39{bottom:534.178500px;}
.y68{bottom:536.485500px;}
.y13a{bottom:541.017000px;}
.y1e9{bottom:543.337050px;}
.yd7{bottom:544.650750px;}
.y161{bottom:545.517000px;}
.y11c{bottom:545.599350px;}
.y190{bottom:545.605050px;}
.yb3{bottom:547.002750px;}
.y8d{bottom:547.008000px;}
.y1bd{bottom:548.683050px;}
.y10{bottom:548.890950px;}
.yfc{bottom:549.481500px;}
.y38{bottom:550.680000px;}
.y67{bottom:552.987000px;}
.y139{bottom:558.117000px;}
.y1e8{bottom:559.537050px;}
.y18f{bottom:561.805050px;}
.yd6{bottom:562.648500px;}
.yb2{bottom:563.803500px;}
.y8c{bottom:563.808750px;}
.y1bc{bottom:564.586050px;}
.yf{bottom:565.096200px;}
.yfb{bottom:567.037500px;}
.y37{bottom:567.181500px;}
.y66{bottom:569.488500px;}
.y11b{bottom:574.512750px;}
.y138{bottom:575.217000px;}
.y1e7{bottom:575.737050px;}
.y18e{bottom:578.005050px;}
.y1bb{bottom:580.489050px;}
.yb1{bottom:580.604250px;}
.y8b{bottom:580.609500px;}
.ye{bottom:581.301450px;}
.y36{bottom:583.683000px;}
.yfa{bottom:584.593500px;}
.y65{bottom:585.990000px;}
.y1e6{bottom:591.937050px;}
.y137{bottom:592.317000px;}
.y18d{bottom:594.205050px;}
.y1ba{bottom:596.392050px;}
.yb0{bottom:597.405000px;}
.y8a{bottom:597.410250px;}
.yd{bottom:597.506700px;}
.yd5{bottom:598.644000px;}
.y35{bottom:600.184500px;}
.y160{bottom:601.294500px;}
.y64{bottom:602.491500px;}
.y11a{bottom:603.426150px;}
.y1e5{bottom:608.137050px;}
.y136{bottom:609.417000px;}
.y18c{bottom:610.405050px;}
.y1b9{bottom:612.295050px;}
.yc{bottom:613.711950px;}
.yaf{bottom:614.205750px;}
.y89{bottom:614.211000px;}
.y34{bottom:616.686000px;}
.y15f{bottom:617.796000px;}
.y63{bottom:618.993000px;}
.yf9{bottom:619.691250px;}
.y1e4{bottom:624.337050px;}
.y135{bottom:626.517000px;}
.y18b{bottom:626.605050px;}
.y1b8{bottom:628.198050px;}
.yb{bottom:629.917200px;}
.yae{bottom:631.006500px;}
.y88{bottom:631.011750px;}
.y119{bottom:632.339550px;}
.y33{bottom:633.187500px;}
.y15e{bottom:634.297500px;}
.yd4{bottom:634.639500px;}
.y62{bottom:635.494500px;}
.y1e3{bottom:640.537050px;}
.y18a{bottom:642.805050px;}
.y134{bottom:643.617000px;}
.y1b7{bottom:644.101050px;}
.ya{bottom:646.122450px;}
.yad{bottom:647.807250px;}
.y32{bottom:649.689000px;}
.y15d{bottom:650.799000px;}
.y61{bottom:651.996000px;}
.yd3{bottom:652.637250px;}
.yf8{bottom:654.789000px;}
.y1e2{bottom:656.737050px;}
.y189{bottom:659.005050px;}
.y1b6{bottom:660.004050px;}
.y133{bottom:660.717000px;}
.y118{bottom:661.252950px;}
.y9{bottom:662.327700px;}
.yac{bottom:664.608000px;}
.y87{bottom:664.613250px;}
.y31{bottom:666.190500px;}
.y15c{bottom:667.300500px;}
.y60{bottom:668.497500px;}
.yd2{bottom:670.635000px;}
.yf7{bottom:672.345000px;}
.y1e1{bottom:672.937050px;}
.y188{bottom:675.205050px;}
.y1b5{bottom:675.907050px;}
.y132{bottom:677.817000px;}
.yab{bottom:681.408750px;}
.y30{bottom:682.692000px;}
.y15b{bottom:683.802000px;}
.y5f{bottom:684.999000px;}
.yd1{bottom:688.632750px;}
.y1e0{bottom:689.137050px;}
.yf6{bottom:689.901000px;}
.y117{bottom:690.166350px;}
.y187{bottom:691.405050px;}
.y1b4{bottom:691.810050px;}
.y131{bottom:694.917000px;}
.yaa{bottom:698.209500px;}
.y86{bottom:698.214750px;}
.y2f{bottom:699.193500px;}
.y15a{bottom:700.303500px;}
.y5e{bottom:701.500500px;}
.y1df{bottom:705.337050px;}
.yd0{bottom:706.630500px;}
.yf5{bottom:707.457000px;}
.y186{bottom:707.605050px;}
.y1b3{bottom:707.713050px;}
.y130{bottom:712.017000px;}
.y8{bottom:712.727700px;}
.ya9{bottom:715.010250px;}
.y85{bottom:715.015500px;}
.y2e{bottom:715.695000px;}
.y159{bottom:716.805000px;}
.y5d{bottom:718.002000px;}
.y116{bottom:719.079750px;}
.y1de{bottom:721.537050px;}
.y1b2{bottom:723.616050px;}
.y185{bottom:723.805050px;}
.ycf{bottom:724.628250px;}
.yf4{bottom:725.013000px;}
.y7{bottom:727.127700px;}
.y12f{bottom:729.117000px;}
.ya8{bottom:731.811000px;}
.y84{bottom:731.816250px;}
.y2d{bottom:732.196500px;}
.y158{bottom:733.306500px;}
.y5c{bottom:734.503500px;}
.y1dd{bottom:737.737050px;}
.y1b1{bottom:739.519050px;}
.y184{bottom:740.005050px;}
.yf3{bottom:742.569000px;}
.yce{bottom:742.626000px;}
.y12e{bottom:746.217000px;}
.y115{bottom:747.993150px;}
.y83{bottom:748.611000px;}
.ya7{bottom:748.611750px;}
.y2c{bottom:748.698000px;}
.y157{bottom:749.808000px;}
.y5b{bottom:751.005000px;}
.y1dc{bottom:753.937050px;}
.y1b0{bottom:755.422050px;}
.y183{bottom:756.205050px;}
.y6{bottom:758.627700px;}
.yf2{bottom:760.125000px;}
.y12d{bottom:763.317000px;}
.y2b{bottom:765.199500px;}
.y82{bottom:765.411750px;}
.ya6{bottom:765.412500px;}
.y156{bottom:766.309500px;}
.y5a{bottom:767.506500px;}
.y1db{bottom:770.137050px;}
.y1af{bottom:771.325050px;}
.y182{bottom:772.405050px;}
.y5{bottom:775.727700px;}
.y114{bottom:776.906400px;}
.yf1{bottom:777.681000px;}
.ycd{bottom:778.621500px;}
.y12c{bottom:780.417000px;}
.y2a{bottom:781.701000px;}
.y81{bottom:782.212500px;}
.ya5{bottom:782.213250px;}
.y155{bottom:782.811000px;}
.y59{bottom:784.008000px;}
.y1da{bottom:786.337050px;}
.y1ae{bottom:787.228050px;}
.y181{bottom:788.605050px;}
.yf0{bottom:795.237000px;}
.y12b{bottom:797.517000px;}
.y29{bottom:798.202500px;}
.y80{bottom:799.013250px;}
.ya4{bottom:799.014000px;}
.y154{bottom:799.312500px;}
.y58{bottom:800.509500px;}
.y1d9{bottom:802.537050px;}
.y1ad{bottom:803.131050px;}
.y180{bottom:804.805050px;}
.y113{bottom:805.823250px;}
.yef{bottom:812.793000px;}
.y4{bottom:814.427700px;}
.ycc{bottom:814.617000px;}
.y28{bottom:814.704000px;}
.y7f{bottom:815.814000px;}
.y57{bottom:817.011000px;}
.y1d8{bottom:818.737050px;}
.y1ac{bottom:819.034050px;}
.y17f{bottom:821.005050px;}
.yee{bottom:830.349000px;}
.y112{bottom:830.960250px;}
.y27{bottom:831.205500px;}
.ycb{bottom:831.717000px;}
.y153{bottom:832.315500px;}
.y7e{bottom:832.614750px;}
.ya3{bottom:832.615500px;}
.y56{bottom:833.512500px;}
.y1ab{bottom:834.937050px;}
.y17e{bottom:837.205050px;}
.y111{bottom:838.691550px;}
.y3{bottom:845.027700px;}
.y26{bottom:847.707000px;}
.yed{bottom:847.905000px;}
.yca{bottom:848.817000px;}
.y7d{bottom:849.415500px;}
.y55{bottom:850.014000px;}
.y1aa{bottom:851.137050px;}
.y17d{bottom:852.649050px;}
.yec{bottom:865.461000px;}
.yc9{bottom:865.917000px;}
.y7c{bottom:866.216250px;}
.y54{bottom:866.515500px;}
.y1a9{bottom:867.337050px;}
.y17c{bottom:868.093050px;}
.y2{bottom:875.627700px;}
.y25{bottom:880.707000px;}
.y110{bottom:883.003200px;}
.y53{bottom:883.017000px;}
.y17b{bottom:883.537050px;}
.y1{bottom:924.675600px;}
.y24{bottom:925.010700px;}
.he{height:28.838004px;}
.h12{height:32.906250px;}
.h11{height:32.976562px;}
.h8{height:34.913086px;}
.h14{height:36.966797px;}
.h19{height:37.494141px;}
.hc{height:39.020508px;}
.h5{height:39.577148px;}
.h6{height:42.117188px;}
.h7{height:44.749512px;}
.h18{height:47.381836px;}
.h15{height:48.974960px;}
.h17{height:48.988160px;}
.h16{height:48.988760px;}
.hb{height:50.014160px;}
.hf{height:50.017160px;}
.hd{height:50.038160px;}
.h10{height:50.113160px;}
.h2{height:52.646484px;}
.h9{height:60.375000px;}
.h4{height:63.175781px;}
.ha{height:63.949219px;}
.h3{height:69.826172px;}
.h13{height:70.841597px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:85.050000px;}
.x3{left:91.409700px;}
.x4{left:114.825000px;}
.x2{left:127.575000px;}
.x8{left:135.702900px;}
.x7{left:151.176300px;}
.x6{left:196.798500px;}
.xa{left:247.207500px;}
.x9{left:568.923600px;}
.x5{left:599.762400px;}
@media print{
.v2{vertical-align:-21.312000pt;}
.v5{vertical-align:-0.923733pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.310933pt;}
.v1{vertical-align:16.893333pt;}
.v4{vertical-align:28.800000pt;}
.ls18{letter-spacing:-1.266667pt;}
.ls7{letter-spacing:-0.816000pt;}
.ls27{letter-spacing:-0.336000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.008000pt;}
.ls3{letter-spacing:0.009600pt;}
.ls1e{letter-spacing:0.048000pt;}
.ls13{letter-spacing:0.050667pt;}
.lsb{letter-spacing:0.101333pt;}
.ls25{letter-spacing:0.144000pt;}
.ls29{letter-spacing:0.192000pt;}
.ls15{letter-spacing:0.202667pt;}
.ls28{letter-spacing:0.288000pt;}
.ls14{letter-spacing:0.368800pt;}
.ls11{letter-spacing:0.369333pt;}
.ls23{letter-spacing:0.384000pt;}
.lsf{letter-spacing:0.405333pt;}
.ls22{letter-spacing:0.432000pt;}
.lsd{letter-spacing:0.456000pt;}
.lse{letter-spacing:0.506667pt;}
.ls4{letter-spacing:0.512000pt;}
.ls2a{letter-spacing:0.528000pt;}
.ls1d{letter-spacing:0.576000pt;}
.lsc{letter-spacing:0.608000pt;}
.ls21{letter-spacing:0.624000pt;}
.ls16{letter-spacing:0.658667pt;}
.ls1f{letter-spacing:0.672000pt;}
.ls12{letter-spacing:0.709333pt;}
.ls1a{letter-spacing:0.760000pt;}
.ls1c{letter-spacing:0.768000pt;}
.lsa{letter-spacing:0.806400pt;}
.ls20{letter-spacing:0.864000pt;}
.ls5{letter-spacing:0.906667pt;}
.ls24{letter-spacing:0.960000pt;}
.ls26{letter-spacing:1.008000pt;}
.ls2{letter-spacing:1.088000pt;}
.ls8{letter-spacing:1.178667pt;}
.ls19{letter-spacing:8.800000pt;}
.ls1b{letter-spacing:8.800533pt;}
.ls17{letter-spacing:110.314133pt;}
.ls10{letter-spacing:698.352000pt;}
.ls1{letter-spacing:1087.392000pt;}
.ls9{letter-spacing:1228.368000pt;}
.ws2{word-spacing:-23.845333pt;}
.ws3b{word-spacing:-13.274667pt;}
.wsb9{word-spacing:-12.576000pt;}
.wsec{word-spacing:-12.432000pt;}
.ws19{word-spacing:-12.006400pt;}
.ws1{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.333333pt;}
.ws3{word-spacing:-11.200000pt;}
.ws0{word-spacing:-9.333333pt;}
.ws50{word-spacing:-9.328000pt;}
.ws11{word-spacing:-2.493333pt;}
.ws74{word-spacing:-2.048000pt;}
.wsb{word-spacing:-1.994667pt;}
.ws72{word-spacing:-1.664000pt;}
.ws75{word-spacing:-1.536000pt;}
.ws83{word-spacing:-1.237333pt;}
.ws73{word-spacing:-1.194667pt;}
.wse7{word-spacing:-1.008000pt;}
.ws6{word-spacing:-0.997333pt;}
.wsdd{word-spacing:-0.960000pt;}
.wsa{word-spacing:-0.906667pt;}
.ws63{word-spacing:-0.768000pt;}
.wsc3{word-spacing:-0.672000pt;}
.ws22{word-spacing:-0.658667pt;}
.wsbf{word-spacing:-0.624000pt;}
.ws30{word-spacing:-0.456000pt;}
.wsdb{word-spacing:-0.432000pt;}
.ws17{word-spacing:-0.408000pt;}
.ws68{word-spacing:-0.405333pt;}
.wsd6{word-spacing:-0.384000pt;}
.wsef{word-spacing:-0.288000pt;}
.ws78{word-spacing:-0.202667pt;}
.wsf1{word-spacing:-0.192000pt;}
.ws13{word-spacing:-0.181333pt;}
.ws1c{word-spacing:-0.152000pt;}
.wsc1{word-spacing:-0.048000pt;}
.ws5{word-spacing:0.000000pt;}
.ws10{word-spacing:0.136000pt;}
.ws67{word-spacing:0.202667pt;}
.wsdc{word-spacing:0.336000pt;}
.ws70{word-spacing:0.456000pt;}
.wsc{word-spacing:0.498667pt;}
.wsf6{word-spacing:0.528000pt;}
.ws81{word-spacing:0.554667pt;}
.ws82{word-spacing:0.597333pt;}
.wsab{word-spacing:0.709333pt;}
.wsf{word-spacing:0.997333pt;}
.wsf2{word-spacing:1.296000pt;}
.ws38{word-spacing:1.368000pt;}
.ws5b{word-spacing:1.418667pt;}
.wsce{word-spacing:1.440000pt;}
.ws15{word-spacing:1.541333pt;}
.wsd5{word-spacing:1.632000pt;}
.ws7a{word-spacing:1.672000pt;}
.wsbc{word-spacing:1.773333pt;}
.wsc2{word-spacing:1.776000pt;}
.ws39{word-spacing:1.925333pt;}
.ws94{word-spacing:1.976000pt;}
.ws9b{word-spacing:2.077333pt;}
.ws8a{word-spacing:2.128000pt;}
.ws56{word-spacing:2.178667pt;}
.ws29{word-spacing:2.229333pt;}
.wsb5{word-spacing:2.330667pt;}
.ws7c{word-spacing:2.381333pt;}
.ws7b{word-spacing:2.432000pt;}
.wsb8{word-spacing:2.533333pt;}
.wsbd{word-spacing:2.634667pt;}
.ws18{word-spacing:2.765333pt;}
.wsee{word-spacing:2.832000pt;}
.ws6b{word-spacing:2.837333pt;}
.ws6f{word-spacing:2.888000pt;}
.wsb2{word-spacing:2.989333pt;}
.wsed{word-spacing:3.024000pt;}
.wsad{word-spacing:3.040000pt;}
.ws6d{word-spacing:3.192000pt;}
.ws7d{word-spacing:3.293333pt;}
.wsd{word-spacing:3.309333pt;}
.ws62{word-spacing:3.344000pt;}
.ws14{word-spacing:3.536000pt;}
.wscf{word-spacing:3.552000pt;}
.ws4f{word-spacing:3.597333pt;}
.wsde{word-spacing:3.600000pt;}
.wsaa{word-spacing:3.648000pt;}
.ws65{word-spacing:3.698667pt;}
.ws99{word-spacing:3.749333pt;}
.ws31{word-spacing:3.800000pt;}
.ws71{word-spacing:3.901333pt;}
.ws42{word-spacing:3.952000pt;}
.ws6c{word-spacing:4.002667pt;}
.ws2a{word-spacing:4.205333pt;}
.wse{word-spacing:4.216000pt;}
.ws5c{word-spacing:4.256000pt;}
.wsc7{word-spacing:4.272000pt;}
.wsb1{word-spacing:4.306667pt;}
.wsf4{word-spacing:4.320000pt;}
.ws9{word-spacing:4.352000pt;}
.ws5f{word-spacing:4.408000pt;}
.wsf7{word-spacing:4.416000pt;}
.ws47{word-spacing:4.509333pt;}
.ws85{word-spacing:4.560000pt;}
.ws77{word-spacing:4.610667pt;}
.ws93{word-spacing:4.661333pt;}
.wsb4{word-spacing:4.712000pt;}
.ws49{word-spacing:4.762667pt;}
.wsd7{word-spacing:4.800000pt;}
.ws33{word-spacing:4.864000pt;}
.ws4c{word-spacing:4.965333pt;}
.wsd2{word-spacing:4.992000pt;}
.wsc9{word-spacing:5.088000pt;}
.ws36{word-spacing:5.117333pt;}
.ws26{word-spacing:5.168000pt;}
.wsf5{word-spacing:5.184000pt;}
.ws6a{word-spacing:5.218667pt;}
.wsc0{word-spacing:5.280000pt;}
.ws45{word-spacing:5.320000pt;}
.wsdf{word-spacing:5.328000pt;}
.ws8{word-spacing:5.333333pt;}
.ws3c{word-spacing:5.370667pt;}
.ws55{word-spacing:5.421333pt;}
.ws91{word-spacing:5.472000pt;}
.wse2{word-spacing:5.520000pt;}
.ws80{word-spacing:5.522667pt;}
.ws87{word-spacing:5.573333pt;}
.wsd8{word-spacing:5.616000pt;}
.ws3f{word-spacing:5.624000pt;}
.ws41{word-spacing:5.674667pt;}
.ws88{word-spacing:5.725333pt;}
.wsf0{word-spacing:5.760000pt;}
.ws32{word-spacing:5.826667pt;}
.ws2b{word-spacing:5.877333pt;}
.wse3{word-spacing:5.904000pt;}
.ws46{word-spacing:5.928000pt;}
.ws27{word-spacing:5.978667pt;}
.wsc4{word-spacing:6.000000pt;}
.wsae{word-spacing:6.029333pt;}
.ws57{word-spacing:6.080000pt;}
.ws28{word-spacing:6.130667pt;}
.ws12{word-spacing:6.210667pt;}
.ws5d{word-spacing:6.232000pt;}
.wsea{word-spacing:6.288000pt;}
.ws23{word-spacing:6.333333pt;}
.wse0{word-spacing:6.336000pt;}
.ws95{word-spacing:6.434667pt;}
.wscc{word-spacing:6.480000pt;}
.ws9a{word-spacing:6.485333pt;}
.ws60{word-spacing:6.536000pt;}
.ws16{word-spacing:6.573333pt;}
.ws9c{word-spacing:6.586667pt;}
.wsa9{word-spacing:6.688000pt;}
.ws69{word-spacing:6.738667pt;}
.ws48{word-spacing:6.789333pt;}
.wsbb{word-spacing:6.840000pt;}
.ws61{word-spacing:6.890667pt;}
.wse5{word-spacing:6.960000pt;}
.ws8f{word-spacing:6.992000pt;}
.ws98{word-spacing:7.042667pt;}
.ws8c{word-spacing:7.093333pt;}
.wse8{word-spacing:7.104000pt;}
.ws90{word-spacing:7.194667pt;}
.ws34{word-spacing:7.245333pt;}
.wsf8{word-spacing:7.248000pt;}
.ws40{word-spacing:7.296000pt;}
.wsd0{word-spacing:7.344000pt;}
.ws76{word-spacing:7.346667pt;}
.ws84{word-spacing:7.397333pt;}
.ws8d{word-spacing:7.448000pt;}
.ws96{word-spacing:7.498667pt;}
.ws2e{word-spacing:7.600000pt;}
.ws4d{word-spacing:7.650667pt;}
.ws2c{word-spacing:7.701333pt;}
.ws3a{word-spacing:7.752000pt;}
.ws5e{word-spacing:7.802667pt;}
.wsc6{word-spacing:7.824000pt;}
.ws4b{word-spacing:7.904000pt;}
.wse6{word-spacing:7.920000pt;}
.wscd{word-spacing:8.016000pt;}
.wseb{word-spacing:8.064000pt;}
.ws3e{word-spacing:8.106667pt;}
.ws97{word-spacing:8.157333pt;}
.ws35{word-spacing:8.208000pt;}
.wsda{word-spacing:8.256000pt;}
.ws44{word-spacing:8.258667pt;}
.wsd4{word-spacing:8.304000pt;}
.ws6e{word-spacing:8.309333pt;}
.wsca{word-spacing:8.352000pt;}
.wsa8{word-spacing:8.410667pt;}
.ws2f{word-spacing:8.461333pt;}
.ws92{word-spacing:8.562667pt;}
.wse1{word-spacing:8.592000pt;}
.wscb{word-spacing:8.688000pt;}
.ws24{word-spacing:8.714667pt;}
.ws25{word-spacing:8.765333pt;}
.ws51{word-spacing:8.866667pt;}
.ws89{word-spacing:8.917333pt;}
.ws59{word-spacing:8.968000pt;}
.ws86{word-spacing:9.018667pt;}
.ws4a{word-spacing:9.069333pt;}
.ws21{word-spacing:9.120000pt;}
.ws37{word-spacing:9.170667pt;}
.wse4{word-spacing:9.216000pt;}
.wsa7{word-spacing:9.221333pt;}
.wsf9{word-spacing:9.264000pt;}
.ws20{word-spacing:9.322667pt;}
.ws8b{word-spacing:9.373333pt;}
.wsac{word-spacing:9.424000pt;}
.ws3d{word-spacing:9.474667pt;}
.ws66{word-spacing:9.525333pt;}
.ws7e{word-spacing:9.576000pt;}
.wsd1{word-spacing:9.648000pt;}
.ws1b{word-spacing:9.728000pt;}
.ws1d{word-spacing:9.778667pt;}
.wsf3{word-spacing:9.840000pt;}
.wsb6{word-spacing:9.880000pt;}
.ws5a{word-spacing:10.082667pt;}
.ws1f{word-spacing:10.285333pt;}
.ws4e{word-spacing:10.336000pt;}
.ws1e{word-spacing:10.386667pt;}
.wse9{word-spacing:10.512000pt;}
.wsb0{word-spacing:10.538667pt;}
.ws58{word-spacing:10.589333pt;}
.ws54{word-spacing:10.893333pt;}
.ws52{word-spacing:10.944000pt;}
.ws79{word-spacing:11.146667pt;}
.wsba{word-spacing:11.197333pt;}
.ws8e{word-spacing:11.248000pt;}
.wsd3{word-spacing:11.280000pt;}
.wsb3{word-spacing:11.298667pt;}
.ws53{word-spacing:11.400000pt;}
.ws2d{word-spacing:11.602667pt;}
.wsb7{word-spacing:11.704000pt;}
.ws7f{word-spacing:11.754667pt;}
.wsaf{word-spacing:11.856000pt;}
.wsc5{word-spacing:11.904000pt;}
.wsbe{word-spacing:12.000000pt;}
.wsc8{word-spacing:12.048000pt;}
.ws1a{word-spacing:12.058667pt;}
.ws43{word-spacing:12.109333pt;}
.ws64{word-spacing:12.666667pt;}
.ws7{word-spacing:22.394667pt;}
.ws9e{word-spacing:83.371733pt;}
.wsa1{word-spacing:84.262400pt;}
.wsa4{word-spacing:88.157333pt;}
.wsa0{word-spacing:89.209600pt;}
.wsa6{word-spacing:90.149333pt;}
.wsa3{word-spacing:90.170667pt;}
.wsa5{word-spacing:102.192533pt;}
.ws9d{word-spacing:120.102933pt;}
.wsd9{word-spacing:138.288000pt;}
.ws9f{word-spacing:138.816000pt;}
.wsa2{word-spacing:139.680000pt;}
._b{margin-left:-6.434667pt;}
._1c{margin-left:-5.232000pt;}
._4{margin-left:-3.989333pt;}
._0{margin-left:-2.240000pt;}
._2{margin-left:-1.088000pt;}
._1{width:1.424000pt;}
._9{width:2.933333pt;}
._3{width:3.853333pt;}
._6{width:4.864000pt;}
._c{width:5.826667pt;}
._8{width:7.042667pt;}
._a{width:7.952000pt;}
._5{width:8.880000pt;}
._7{width:10.368000pt;}
._d{width:11.400000pt;}
._1b{width:13.578667pt;}
._11{width:61.584000pt;}
._10{width:78.816000pt;}
._12{width:91.200000pt;}
._17{width:103.248000pt;}
._f{width:106.370667pt;}
._1d{width:132.336000pt;}
._19{width:151.344000pt;}
._13{width:183.202133pt;}
._18{width:184.608000pt;}
._1a{width:193.920000pt;}
._14{width:197.325333pt;}
._15{width:211.248000pt;}
._16{width:223.248000pt;}
._e{width:247.557333pt;}
.fsa{font-size:29.538667pt;}
.fsb{font-size:37.312000pt;}
.fs1{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fs5{font-size:44.800000pt;}
.fs8{font-size:45.333333pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:64.000000pt;}
.fs9{font-size:74.666667pt;}
.fs3{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y52{bottom:75.553467pt;}
.y23{bottom:75.953467pt;}
.yea{bottom:113.400000pt;}
.yeb{bottom:114.167333pt;}
.yc8{bottom:118.728000pt;}
.y1d7{bottom:120.182267pt;}
.y7b{bottom:120.898000pt;}
.y51{bottom:122.793333pt;}
.ya2{bottom:124.383067pt;}
.y12a{bottom:125.166133pt;}
.ye9{bottom:126.200000pt;}
.y17a{bottom:126.498667pt;}
.y14e{bottom:127.304000pt;}
.yc7{bottom:132.600000pt;}
.y1d6{bottom:134.318267pt;}
.y7a{bottom:136.364000pt;}
.y50{bottom:137.461333pt;}
.ye8{bottom:139.000000pt;}
.y1a8{bottom:139.382267pt;}
.y179{bottom:140.226667pt;}
.y14d{bottom:142.504000pt;}
.yc6{bottom:145.400000pt;}
.y1d5{bottom:148.454267pt;}
.y129{bottom:150.866933pt;}
.ye7{bottom:151.800000pt;}
.y4f{bottom:152.129333pt;}
.y1a7{bottom:153.782267pt;}
.y178{bottom:153.954667pt;}
.ya1{bottom:157.681333pt;}
.y14c{bottom:157.704000pt;}
.yc5{bottom:158.200000pt;}
.y10f{bottom:160.741333pt;}
.y1d4{bottom:162.590267pt;}
.y4e{bottom:166.797333pt;}
.y79{bottom:167.296000pt;}
.y177{bottom:167.682667pt;}
.y1a6{bottom:168.182267pt;}
.ye6{bottom:169.928000pt;}
.yc4{bottom:171.000000pt;}
.ya0{bottom:172.615333pt;}
.y14b{bottom:172.904000pt;}
.y10e{bottom:176.346667pt;}
.y128{bottom:176.567733pt;}
.y1d3{bottom:176.726267pt;}
.y176{bottom:181.410667pt;}
.y4d{bottom:181.465333pt;}
.y1a5{bottom:182.582267pt;}
.yc3{bottom:183.800000pt;}
.y9f{bottom:187.549333pt;}
.y14a{bottom:188.104000pt;}
.ye5{bottom:189.128000pt;}
.y1d2{bottom:190.862267pt;}
.y10d{bottom:191.952000pt;}
.y1fd{bottom:194.966267pt;}
.y175{bottom:195.138667pt;}
.y4c{bottom:196.133333pt;}
.yc2{bottom:196.600000pt;}
.y1a4{bottom:196.982267pt;}
.y78{bottom:198.228000pt;}
.y22{bottom:199.832400pt;}
.y127{bottom:202.268533pt;}
.y149{bottom:203.304000pt;}
.y1d1{bottom:204.998267pt;}
.y10c{bottom:207.557333pt;}
.y174{bottom:208.866667pt;}
.y1fc{bottom:209.366267pt;}
.y4b{bottom:210.801333pt;}
.y1a3{bottom:211.382267pt;}
.y77{bottom:212.896000pt;}
.y21{bottom:214.237067pt;}
.yc1{bottom:214.728000pt;}
.y9e{bottom:217.417333pt;}
.y148{bottom:218.504000pt;}
.y1d0{bottom:219.134267pt;}
.y173{bottom:222.594667pt;}
.y1fb{bottom:223.766267pt;}
.y4a{bottom:225.469333pt;}
.y1a2{bottom:225.782267pt;}
.y76{bottom:227.564000pt;}
.y126{bottom:227.969333pt;}
.y20{bottom:228.641733pt;}
.y1cf{bottom:233.270267pt;}
.y147{bottom:233.704000pt;}
.y172{bottom:236.322667pt;}
.y1fa{bottom:238.166267pt;}
.y10b{bottom:238.755333pt;}
.y49{bottom:240.137333pt;}
.y1a1{bottom:240.182267pt;}
.y75{bottom:242.232000pt;}
.y1f{bottom:243.046400pt;}
.y9d{bottom:247.285333pt;}
.y1ce{bottom:247.406267pt;}
.y146{bottom:248.904000pt;}
.y171{bottom:250.050667pt;}
.y1f9{bottom:252.566267pt;}
.y125{bottom:253.670133pt;}
.y1a0{bottom:254.582267pt;}
.y48{bottom:254.805333pt;}
.y74{bottom:256.900000pt;}
.y1e{bottom:257.451067pt;}
.y1cd{bottom:261.542267pt;}
.yc0{bottom:261.948667pt;}
.y9c{bottom:262.219333pt;}
.y170{bottom:263.778667pt;}
.y145{bottom:264.104000pt;}
.y1f8{bottom:266.966267pt;}
.y19f{bottom:268.982267pt;}
.y47{bottom:269.473333pt;}
.y10a{bottom:269.953333pt;}
.y73{bottom:271.568000pt;}
.y1d{bottom:271.855733pt;}
.y1cc{bottom:275.678267pt;}
.ye4{bottom:276.122000pt;}
.ybf{bottom:277.148667pt;}
.y9b{bottom:277.153333pt;}
.y16f{bottom:277.506667pt;}
.y144{bottom:279.304000pt;}
.y124{bottom:279.370933pt;}
.y1f7{bottom:281.366267pt;}
.y19e{bottom:283.382267pt;}
.y46{bottom:284.141333pt;}
.y109{bottom:285.558667pt;}
.y72{bottom:286.236000pt;}
.y1c{bottom:286.260400pt;}
.y1cb{bottom:289.814267pt;}
.y16e{bottom:291.234667pt;}
.ybe{bottom:292.082667pt;}
.y9a{bottom:292.087333pt;}
.ye3{bottom:292.120000pt;}
.y143{bottom:294.504000pt;}
.y1f6{bottom:295.766267pt;}
.y19d{bottom:297.782267pt;}
.y45{bottom:298.809333pt;}
.y1b{bottom:300.665067pt;}
.y71{bottom:300.904000pt;}
.y108{bottom:301.164000pt;}
.y1ca{bottom:303.950267pt;}
.y16d{bottom:304.962667pt;}
.y123{bottom:305.071733pt;}
.ybd{bottom:307.016667pt;}
.y99{bottom:307.021333pt;}
.ye2{bottom:308.118000pt;}
.y142{bottom:309.704000pt;}
.y1f5{bottom:310.166267pt;}
.y19c{bottom:312.182267pt;}
.y44{bottom:313.477333pt;}
.y1a{bottom:315.069733pt;}
.y107{bottom:316.769333pt;}
.y1c9{bottom:318.086267pt;}
.y16c{bottom:318.690667pt;}
.ybc{bottom:321.950667pt;}
.y98{bottom:321.955333pt;}
.ye1{bottom:324.116000pt;}
.y1f4{bottom:324.566267pt;}
.y141{bottom:324.904000pt;}
.y19b{bottom:326.582267pt;}
.y43{bottom:328.145333pt;}
.y19{bottom:329.474400pt;}
.y70{bottom:330.237333pt;}
.y122{bottom:330.772533pt;}
.y1c8{bottom:332.222267pt;}
.y106{bottom:332.374667pt;}
.y16b{bottom:332.418667pt;}
.ybb{bottom:336.884667pt;}
.y97{bottom:336.889333pt;}
.y1f3{bottom:338.966267pt;}
.y140{bottom:340.104000pt;}
.ye0{bottom:340.114000pt;}
.y19a{bottom:340.982267pt;}
.y42{bottom:342.813333pt;}
.y18{bottom:343.879067pt;}
.y16a{bottom:346.146667pt;}
.y1c7{bottom:346.358267pt;}
.y105{bottom:347.980000pt;}
.yba{bottom:351.818667pt;}
.y96{bottom:351.823333pt;}
.y1f2{bottom:353.366267pt;}
.y199{bottom:355.382267pt;}
.ydf{bottom:356.112000pt;}
.y121{bottom:356.473333pt;}
.y41{bottom:357.481333pt;}
.y152{bottom:359.304000pt;}
.y169{bottom:359.874667pt;}
.y1c6{bottom:360.494267pt;}
.y104{bottom:363.585333pt;}
.yb9{bottom:366.752667pt;}
.y95{bottom:366.757333pt;}
.y1f1{bottom:367.766267pt;}
.y198{bottom:369.782267pt;}
.y13f{bottom:370.504133pt;}
.yde{bottom:372.110000pt;}
.y40{bottom:372.149333pt;}
.y17{bottom:372.677067pt;}
.y168{bottom:373.602667pt;}
.y6f{bottom:374.200000pt;}
.y151{bottom:374.504000pt;}
.y1c5{bottom:374.630267pt;}
.y103{bottom:379.190667pt;}
.yb8{bottom:381.686667pt;}
.y94{bottom:381.691333pt;}
.y1f0{bottom:382.166267pt;}
.y120{bottom:382.174133pt;}
.y197{bottom:384.182267pt;}
.y3f{bottom:386.817333pt;}
.y16{bottom:387.081733pt;}
.y167{bottom:387.330667pt;}
.ydd{bottom:388.108000pt;}
.y1c4{bottom:388.766267pt;}
.y6e{bottom:388.868000pt;}
.y150{bottom:389.704000pt;}
.y102{bottom:394.796000pt;}
.y1ef{bottom:396.566267pt;}
.yb7{bottom:396.620667pt;}
.y93{bottom:396.625333pt;}
.y196{bottom:398.582267pt;}
.y166{bottom:401.058667pt;}
.y3e{bottom:401.485333pt;}
.y1c3{bottom:402.902267pt;}
.y6d{bottom:403.536000pt;}
.ydc{bottom:404.106000pt;}
.y14f{bottom:404.904000pt;}
.y11f{bottom:407.874933pt;}
.y101{bottom:410.401333pt;}
.y1ee{bottom:410.966267pt;}
.yb6{bottom:411.554667pt;}
.y92{bottom:411.559333pt;}
.y195{bottom:412.982267pt;}
.y165{bottom:414.786667pt;}
.y15{bottom:415.879733pt;}
.y3d{bottom:416.153333pt;}
.y1c2{bottom:417.038267pt;}
.y6c{bottom:418.204000pt;}
.y13e{bottom:420.104000pt;}
.ydb{bottom:420.106000pt;}
.y1ed{bottom:425.366267pt;}
.y100{bottom:426.006667pt;}
.y91{bottom:426.493333pt;}
.y194{bottom:427.382267pt;}
.y164{bottom:428.514667pt;}
.y14{bottom:430.284400pt;}
.y3c{bottom:430.821333pt;}
.y1c1{bottom:431.174267pt;}
.y6b{bottom:432.872000pt;}
.y11e{bottom:433.575600pt;}
.y13d{bottom:435.304000pt;}
.yda{bottom:436.140000pt;}
.y1ec{bottom:439.766267pt;}
.yb5{bottom:441.422667pt;}
.y90{bottom:441.427333pt;}
.yff{bottom:441.612000pt;}
.y193{bottom:441.782267pt;}
.y163{bottom:442.242667pt;}
.y13{bottom:444.689067pt;}
.y1c0{bottom:445.310267pt;}
.y3b{bottom:445.489333pt;}
.y6a{bottom:447.540000pt;}
.y13c{bottom:450.504000pt;}
.yd9{bottom:452.138000pt;}
.y1eb{bottom:454.166267pt;}
.y162{bottom:455.970667pt;}
.y192{bottom:456.182267pt;}
.y8f{bottom:456.361333pt;}
.yfe{bottom:457.217333pt;}
.y12{bottom:459.093733pt;}
.y11d{bottom:459.276400pt;}
.y1bf{bottom:459.446267pt;}
.y3a{bottom:460.157333pt;}
.y69{bottom:462.208000pt;}
.y13b{bottom:465.704000pt;}
.yd8{bottom:468.136000pt;}
.y1ea{bottom:468.566267pt;}
.y191{bottom:470.582267pt;}
.yb4{bottom:471.290667pt;}
.y8e{bottom:471.295333pt;}
.yfd{bottom:472.822667pt;}
.y11{bottom:473.498400pt;}
.y1be{bottom:473.582267pt;}
.y39{bottom:474.825333pt;}
.y68{bottom:476.876000pt;}
.y13a{bottom:480.904000pt;}
.y1e9{bottom:482.966267pt;}
.yd7{bottom:484.134000pt;}
.y161{bottom:484.904000pt;}
.y11c{bottom:484.977200pt;}
.y190{bottom:484.982267pt;}
.yb3{bottom:486.224667pt;}
.y8d{bottom:486.229333pt;}
.y1bd{bottom:487.718267pt;}
.y10{bottom:487.903067pt;}
.yfc{bottom:488.428000pt;}
.y38{bottom:489.493333pt;}
.y67{bottom:491.544000pt;}
.y139{bottom:496.104000pt;}
.y1e8{bottom:497.366267pt;}
.y18f{bottom:499.382267pt;}
.yd6{bottom:500.132000pt;}
.yb2{bottom:501.158667pt;}
.y8c{bottom:501.163333pt;}
.y1bc{bottom:501.854267pt;}
.yf{bottom:502.307733pt;}
.yfb{bottom:504.033333pt;}
.y37{bottom:504.161333pt;}
.y66{bottom:506.212000pt;}
.y11b{bottom:510.678000pt;}
.y138{bottom:511.304000pt;}
.y1e7{bottom:511.766267pt;}
.y18e{bottom:513.782267pt;}
.y1bb{bottom:515.990267pt;}
.yb1{bottom:516.092667pt;}
.y8b{bottom:516.097333pt;}
.ye{bottom:516.712400pt;}
.y36{bottom:518.829333pt;}
.yfa{bottom:519.638667pt;}
.y65{bottom:520.880000pt;}
.y1e6{bottom:526.166267pt;}
.y137{bottom:526.504000pt;}
.y18d{bottom:528.182267pt;}
.y1ba{bottom:530.126267pt;}
.yb0{bottom:531.026667pt;}
.y8a{bottom:531.031333pt;}
.yd{bottom:531.117067pt;}
.yd5{bottom:532.128000pt;}
.y35{bottom:533.497333pt;}
.y160{bottom:534.484000pt;}
.y64{bottom:535.548000pt;}
.y11a{bottom:536.378800pt;}
.y1e5{bottom:540.566267pt;}
.y136{bottom:541.704000pt;}
.y18c{bottom:542.582267pt;}
.y1b9{bottom:544.262267pt;}
.yc{bottom:545.521733pt;}
.yaf{bottom:545.960667pt;}
.y89{bottom:545.965333pt;}
.y34{bottom:548.165333pt;}
.y15f{bottom:549.152000pt;}
.y63{bottom:550.216000pt;}
.yf9{bottom:550.836667pt;}
.y1e4{bottom:554.966267pt;}
.y135{bottom:556.904000pt;}
.y18b{bottom:556.982267pt;}
.y1b8{bottom:558.398267pt;}
.yb{bottom:559.926400pt;}
.yae{bottom:560.894667pt;}
.y88{bottom:560.899333pt;}
.y119{bottom:562.079600pt;}
.y33{bottom:562.833333pt;}
.y15e{bottom:563.820000pt;}
.yd4{bottom:564.124000pt;}
.y62{bottom:564.884000pt;}
.y1e3{bottom:569.366267pt;}
.y18a{bottom:571.382267pt;}
.y134{bottom:572.104000pt;}
.y1b7{bottom:572.534267pt;}
.ya{bottom:574.331067pt;}
.yad{bottom:575.828667pt;}
.y32{bottom:577.501333pt;}
.y15d{bottom:578.488000pt;}
.y61{bottom:579.552000pt;}
.yd3{bottom:580.122000pt;}
.yf8{bottom:582.034667pt;}
.y1e2{bottom:583.766267pt;}
.y189{bottom:585.782267pt;}
.y1b6{bottom:586.670267pt;}
.y133{bottom:587.304000pt;}
.y118{bottom:587.780400pt;}
.y9{bottom:588.735733pt;}
.yac{bottom:590.762667pt;}
.y87{bottom:590.767333pt;}
.y31{bottom:592.169333pt;}
.y15c{bottom:593.156000pt;}
.y60{bottom:594.220000pt;}
.yd2{bottom:596.120000pt;}
.yf7{bottom:597.640000pt;}
.y1e1{bottom:598.166267pt;}
.y188{bottom:600.182267pt;}
.y1b5{bottom:600.806267pt;}
.y132{bottom:602.504000pt;}
.yab{bottom:605.696667pt;}
.y30{bottom:606.837333pt;}
.y15b{bottom:607.824000pt;}
.y5f{bottom:608.888000pt;}
.yd1{bottom:612.118000pt;}
.y1e0{bottom:612.566267pt;}
.yf6{bottom:613.245333pt;}
.y117{bottom:613.481200pt;}
.y187{bottom:614.582267pt;}
.y1b4{bottom:614.942267pt;}
.y131{bottom:617.704000pt;}
.yaa{bottom:620.630667pt;}
.y86{bottom:620.635333pt;}
.y2f{bottom:621.505333pt;}
.y15a{bottom:622.492000pt;}
.y5e{bottom:623.556000pt;}
.y1df{bottom:626.966267pt;}
.yd0{bottom:628.116000pt;}
.yf5{bottom:628.850667pt;}
.y186{bottom:628.982267pt;}
.y1b3{bottom:629.078267pt;}
.y130{bottom:632.904000pt;}
.y8{bottom:633.535733pt;}
.ya9{bottom:635.564667pt;}
.y85{bottom:635.569333pt;}
.y2e{bottom:636.173333pt;}
.y159{bottom:637.160000pt;}
.y5d{bottom:638.224000pt;}
.y116{bottom:639.182000pt;}
.y1de{bottom:641.366267pt;}
.y1b2{bottom:643.214267pt;}
.y185{bottom:643.382267pt;}
.ycf{bottom:644.114000pt;}
.yf4{bottom:644.456000pt;}
.y7{bottom:646.335733pt;}
.y12f{bottom:648.104000pt;}
.ya8{bottom:650.498667pt;}
.y84{bottom:650.503333pt;}
.y2d{bottom:650.841333pt;}
.y158{bottom:651.828000pt;}
.y5c{bottom:652.892000pt;}
.y1dd{bottom:655.766267pt;}
.y1b1{bottom:657.350267pt;}
.y184{bottom:657.782267pt;}
.yf3{bottom:660.061333pt;}
.yce{bottom:660.112000pt;}
.y12e{bottom:663.304000pt;}
.y115{bottom:664.882800pt;}
.y83{bottom:665.432000pt;}
.ya7{bottom:665.432667pt;}
.y2c{bottom:665.509333pt;}
.y157{bottom:666.496000pt;}
.y5b{bottom:667.560000pt;}
.y1dc{bottom:670.166267pt;}
.y1b0{bottom:671.486267pt;}
.y183{bottom:672.182267pt;}
.y6{bottom:674.335733pt;}
.yf2{bottom:675.666667pt;}
.y12d{bottom:678.504000pt;}
.y2b{bottom:680.177333pt;}
.y82{bottom:680.366000pt;}
.ya6{bottom:680.366667pt;}
.y156{bottom:681.164000pt;}
.y5a{bottom:682.228000pt;}
.y1db{bottom:684.566267pt;}
.y1af{bottom:685.622267pt;}
.y182{bottom:686.582267pt;}
.y5{bottom:689.535733pt;}
.y114{bottom:690.583467pt;}
.yf1{bottom:691.272000pt;}
.ycd{bottom:692.108000pt;}
.y12c{bottom:693.704000pt;}
.y2a{bottom:694.845333pt;}
.y81{bottom:695.300000pt;}
.ya5{bottom:695.300667pt;}
.y155{bottom:695.832000pt;}
.y59{bottom:696.896000pt;}
.y1da{bottom:698.966267pt;}
.y1ae{bottom:699.758267pt;}
.y181{bottom:700.982267pt;}
.yf0{bottom:706.877333pt;}
.y12b{bottom:708.904000pt;}
.y29{bottom:709.513333pt;}
.y80{bottom:710.234000pt;}
.ya4{bottom:710.234667pt;}
.y154{bottom:710.500000pt;}
.y58{bottom:711.564000pt;}
.y1d9{bottom:713.366267pt;}
.y1ad{bottom:713.894267pt;}
.y180{bottom:715.382267pt;}
.y113{bottom:716.287333pt;}
.yef{bottom:722.482667pt;}
.y4{bottom:723.935733pt;}
.ycc{bottom:724.104000pt;}
.y28{bottom:724.181333pt;}
.y7f{bottom:725.168000pt;}
.y57{bottom:726.232000pt;}
.y1d8{bottom:727.766267pt;}
.y1ac{bottom:728.030267pt;}
.y17f{bottom:729.782267pt;}
.yee{bottom:738.088000pt;}
.y112{bottom:738.631333pt;}
.y27{bottom:738.849333pt;}
.ycb{bottom:739.304000pt;}
.y153{bottom:739.836000pt;}
.y7e{bottom:740.102000pt;}
.ya3{bottom:740.102667pt;}
.y56{bottom:740.900000pt;}
.y1ab{bottom:742.166267pt;}
.y17e{bottom:744.182267pt;}
.y111{bottom:745.503600pt;}
.y3{bottom:751.135733pt;}
.y26{bottom:753.517333pt;}
.yed{bottom:753.693333pt;}
.yca{bottom:754.504000pt;}
.y7d{bottom:755.036000pt;}
.y55{bottom:755.568000pt;}
.y1aa{bottom:756.566267pt;}
.y17d{bottom:757.910267pt;}
.yec{bottom:769.298667pt;}
.yc9{bottom:769.704000pt;}
.y7c{bottom:769.970000pt;}
.y54{bottom:770.236000pt;}
.y1a9{bottom:770.966267pt;}
.y17c{bottom:771.638267pt;}
.y2{bottom:778.335733pt;}
.y25{bottom:782.850667pt;}
.y110{bottom:784.891733pt;}
.y53{bottom:784.904000pt;}
.y17b{bottom:785.366267pt;}
.y1{bottom:821.933867pt;}
.y24{bottom:822.231733pt;}
.he{height:25.633781pt;}
.h12{height:29.250000pt;}
.h11{height:29.312500pt;}
.h8{height:31.033854pt;}
.h14{height:32.859375pt;}
.h19{height:33.328125pt;}
.hc{height:34.684896pt;}
.h5{height:35.179688pt;}
.h6{height:37.437500pt;}
.h7{height:39.777344pt;}
.h18{height:42.117188pt;}
.h15{height:43.533298pt;}
.h17{height:43.545031pt;}
.h16{height:43.545565pt;}
.hb{height:44.457031pt;}
.hf{height:44.459698pt;}
.hd{height:44.478365pt;}
.h10{height:44.545031pt;}
.h2{height:46.796875pt;}
.h9{height:53.666667pt;}
.h4{height:56.156250pt;}
.ha{height:56.843750pt;}
.h3{height:62.067708pt;}
.h13{height:62.970308pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:75.600000pt;}
.x3{left:81.253067pt;}
.x4{left:102.066667pt;}
.x2{left:113.400000pt;}
.x8{left:120.624800pt;}
.x7{left:134.378933pt;}
.x6{left:174.932000pt;}
.xa{left:219.740000pt;}
.x9{left:505.709867pt;}
.x5{left:533.122133pt;}
}




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