
    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_90ad6e216627672f1e9604c6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.150000;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_4516d8d5d8a696aa3e225c00.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.137000;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_d852a509f252444492f4c20a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.132000;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_a5d778c3919caf946c9fefc2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.984000;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_ff01ca1eafcbfc6ccaa948b7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.121000;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_8c0ecba13c97a27a0ea180b1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.984000;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;}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-17.981280px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.977340px;}
.ls3e{letter-spacing:-7.260000px;}
.ls2c{letter-spacing:-2.322000px;}
.ls32{letter-spacing:-1.584000px;}
.ls47{letter-spacing:-1.188000px;}
.lsf{letter-spacing:-1.134000px;}
.ls2b{letter-spacing:-1.080000px;}
.ls57{letter-spacing:-1.069578px;}
.ls56{letter-spacing:-0.900000px;}
.ls2{letter-spacing:-0.858000px;}
.ls5a{letter-spacing:-0.840000px;}
.ls59{letter-spacing:-0.726000px;}
.ls20{letter-spacing:-0.594000px;}
.ls37{letter-spacing:-0.540000px;}
.ls50{letter-spacing:-0.528000px;}
.ls49{letter-spacing:-0.462000px;}
.ls43{letter-spacing:-0.396000px;}
.ls1f{letter-spacing:-0.378000px;}
.ls45{letter-spacing:-0.360000px;}
.ls2e{letter-spacing:-0.324000px;}
.ls4a{letter-spacing:-0.315546px;}
.ls44{letter-spacing:-0.270468px;}
.ls5b{letter-spacing:-0.258174px;}
.ls3f{letter-spacing:-0.221292px;}
.ls1{letter-spacing:-0.198000px;}
.ls4c{letter-spacing:-0.184410px;}
.ls19{letter-spacing:-0.120000px;}
.ls21{letter-spacing:-0.108000px;}
.ls4b{letter-spacing:-0.066000px;}
.ls0{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.000840px;}
.ls30{letter-spacing:0.021960px;}
.ls1a{letter-spacing:0.036882px;}
.ls1b{letter-spacing:0.054000px;}
.ls18{letter-spacing:0.060000px;}
.ls33{letter-spacing:0.066000px;}
.ls3a{letter-spacing:0.073764px;}
.ls3b{letter-spacing:0.108000px;}
.ls42{letter-spacing:0.120000px;}
.ls12{letter-spacing:0.132000px;}
.ls41{letter-spacing:0.180000px;}
.ls3c{letter-spacing:0.198000px;}
.ls5{letter-spacing:0.228000px;}
.ls52{letter-spacing:0.240000px;}
.lsb{letter-spacing:0.264000px;}
.ls22{letter-spacing:0.270000px;}
.ls17{letter-spacing:0.300000px;}
.ls13{letter-spacing:0.318780px;}
.ls38{letter-spacing:0.328980px;}
.ls2f{letter-spacing:0.330000px;}
.ls16{letter-spacing:0.360000px;}
.ls1e{letter-spacing:0.378000px;}
.ls53{letter-spacing:0.396000px;}
.ls7{letter-spacing:0.399000px;}
.lsc{letter-spacing:0.405702px;}
.ls51{letter-spacing:0.420000px;}
.ls6{letter-spacing:0.456000px;}
.ls29{letter-spacing:0.462000px;}
.ls15{letter-spacing:0.480000px;}
.ls4d{letter-spacing:0.486000px;}
.ls31{letter-spacing:0.528000px;}
.ls10{letter-spacing:0.590112px;}
.lsd{letter-spacing:0.594000px;}
.ls24{letter-spacing:0.660000px;}
.ls1c{letter-spacing:0.663876px;}
.ls54{letter-spacing:0.720000px;}
.ls46{letter-spacing:0.726000px;}
.ls39{letter-spacing:0.792000px;}
.ls9{letter-spacing:0.842340px;}
.ls8{letter-spacing:0.855000px;}
.ls11{letter-spacing:0.864000px;}
.ls58{letter-spacing:0.900000px;}
.ls27{letter-spacing:0.924000px;}
.ls5c{letter-spacing:0.960000px;}
.ls1d{letter-spacing:0.972000px;}
.ls26{letter-spacing:0.990000px;}
.ls4e{letter-spacing:1.056000px;}
.ls55{letter-spacing:1.080000px;}
.ls2d{letter-spacing:1.188000px;}
.ls60{letter-spacing:1.200000px;}
.ls23{letter-spacing:1.254000px;}
.lse{letter-spacing:1.296000px;}
.ls28{letter-spacing:1.320000px;}
.ls36{letter-spacing:1.350000px;}
.ls34{letter-spacing:1.364634px;}
.ls5f{letter-spacing:1.380000px;}
.ls3{letter-spacing:1.386000px;}
.ls48{letter-spacing:1.452000px;}
.ls2a{letter-spacing:1.458000px;}
.ls25{letter-spacing:1.716000px;}
.ls40{letter-spacing:1.782000px;}
.ls4f{letter-spacing:1.794840px;}
.ls5d{letter-spacing:1.860000px;}
.ls35{letter-spacing:1.998000px;}
.ls5e{letter-spacing:2.250000px;}
.ls4{letter-spacing:2.400000px;}
.ls3d{letter-spacing:6.787500px;}
.lsa{letter-spacing:15.645000px;}
.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;}
}
.ws94{word-spacing:-17.292000px;}
.ws48{word-spacing:-17.160000px;}
.ws73{word-spacing:-16.962000px;}
.ws25{word-spacing:-16.764000px;}
.ws7{word-spacing:-16.500000px;}
.wsfe{word-spacing:-16.200000px;}
.ws87{word-spacing:-16.104000px;}
.wsa9{word-spacing:-16.038000px;}
.wsb3{word-spacing:-15.972000px;}
.ws0{word-spacing:-15.642000px;}
.ws26{word-spacing:-15.480000px;}
.ws95{word-spacing:-15.312000px;}
.wsf6{word-spacing:-15.240000px;}
.ws74{word-spacing:-15.000000px;}
.ws4a{word-spacing:-14.958000px;}
.ws5e{word-spacing:-14.916000px;}
.ws27{word-spacing:-14.880000px;}
.ws5f{word-spacing:-14.850000px;}
.ws6{word-spacing:-14.820000px;}
.ws2a{word-spacing:-14.364000px;}
.ws5{word-spacing:-14.250000px;}
.wseb{word-spacing:-14.160000px;}
.wscb{word-spacing:-14.100000px;}
.ws60{word-spacing:-14.094000px;}
.ws28{word-spacing:-13.878000px;}
.ws29{word-spacing:-12.906000px;}
.ws49{word-spacing:-11.269500px;}
.ws4b{word-spacing:-11.178000px;}
.ws86{word-spacing:-10.999032px;}
.wsa8{word-spacing:-10.953954px;}
.ws79{word-spacing:-9.240000px;}
.wse0{word-spacing:-3.000000px;}
.ws45{word-spacing:-2.484000px;}
.ws4e{word-spacing:-2.442000px;}
.ws32{word-spacing:-2.244000px;}
.wse8{word-spacing:-2.220000px;}
.ws46{word-spacing:-2.214000px;}
.ws19{word-spacing:-2.178000px;}
.ws51{word-spacing:-2.112000px;}
.ws9d{word-spacing:-2.046000px;}
.wsdf{word-spacing:-1.980000px;}
.wse{word-spacing:-1.938000px;}
.wsf1{word-spacing:-1.740000px;}
.wsfa{word-spacing:-1.650000px;}
.wsd4{word-spacing:-1.620000px;}
.wsd7{word-spacing:-1.518000px;}
.ws100{word-spacing:-1.500000px;}
.wsc8{word-spacing:-1.452000px;}
.ws6d{word-spacing:-1.364634px;}
.ws7d{word-spacing:-1.260000px;}
.ws43{word-spacing:-1.242000px;}
.wsf2{word-spacing:-1.188000px;}
.wsd9{word-spacing:-0.858000px;}
.ws5a{word-spacing:-0.792000px;}
.ws9e{word-spacing:-0.726000px;}
.ws40{word-spacing:-0.663876px;}
.ws55{word-spacing:-0.660000px;}
.wsc1{word-spacing:-0.600000px;}
.ws47{word-spacing:-0.594000px;}
.ws21{word-spacing:-0.590112px;}
.ws101{word-spacing:-0.480000px;}
.wse7{word-spacing:-0.420000px;}
.ws1c{word-spacing:-0.405702px;}
.ws62{word-spacing:-0.396000px;}
.wscc{word-spacing:-0.360000px;}
.wsf{word-spacing:-0.342000px;}
.ws42{word-spacing:-0.270000px;}
.ws9c{word-spacing:-0.198000px;}
.ws23{word-spacing:-0.162000px;}
.wsd8{word-spacing:-0.132000px;}
.wsc3{word-spacing:-0.120000px;}
.ws78{word-spacing:-0.073764px;}
.ws17{word-spacing:-0.066000px;}
.wsd5{word-spacing:-0.060000px;}
.ws3f{word-spacing:-0.036882px;}
.ws1{word-spacing:0.000000px;}
.wsd2{word-spacing:0.060000px;}
.ws44{word-spacing:0.108000px;}
.wsf9{word-spacing:0.132000px;}
.wsea{word-spacing:0.180000px;}
.wsaf{word-spacing:0.184410px;}
.wsf8{word-spacing:0.198000px;}
.ws85{word-spacing:0.221292px;}
.wsf3{word-spacing:0.258174px;}
.ws68{word-spacing:0.300000px;}
.ws34{word-spacing:0.330000px;}
.wsbc{word-spacing:0.360000px;}
.wsee{word-spacing:0.396000px;}
.ws8d{word-spacing:0.420000px;}
.wsf4{word-spacing:0.432000px;}
.wsce{word-spacing:0.462000px;}
.wsdb{word-spacing:0.486000px;}
.wsd6{word-spacing:0.528000px;}
.wsc7{word-spacing:0.540000px;}
.ws8f{word-spacing:0.594000px;}
.wsae{word-spacing:0.660000px;}
.ws72{word-spacing:0.702000px;}
.ws102{word-spacing:0.720000px;}
.wsb8{word-spacing:0.726000px;}
.ws52{word-spacing:0.792000px;}
.ws53{word-spacing:0.858000px;}
.ws71{word-spacing:0.864000px;}
.wse4{word-spacing:0.900000px;}
.wsc{word-spacing:0.912000px;}
.ws39{word-spacing:0.924000px;}
.wsfd{word-spacing:0.960000px;}
.ws24{word-spacing:0.972000px;}
.ws1b{word-spacing:1.056000px;}
.wsda{word-spacing:1.069578px;}
.wsb6{word-spacing:1.080000px;}
.ws4{word-spacing:1.122000px;}
.ws20{word-spacing:1.134000px;}
.wsc4{word-spacing:1.140000px;}
.ws1a{word-spacing:1.188000px;}
.ws31{word-spacing:1.254000px;}
.ws69{word-spacing:1.260000px;}
.wsa7{word-spacing:1.296000px;}
.ws59{word-spacing:1.320000px;}
.ws30{word-spacing:1.386000px;}
.wsc2{word-spacing:1.440000px;}
.ws77{word-spacing:1.452000px;}
.ws6f{word-spacing:1.512000px;}
.wsba{word-spacing:1.518000px;}
.ws83{word-spacing:1.584000px;}
.wsa6{word-spacing:1.620000px;}
.ws81{word-spacing:1.650000px;}
.ws61{word-spacing:1.716000px;}
.wse5{word-spacing:1.740000px;}
.ws8{word-spacing:1.767000px;}
.ws2f{word-spacing:1.782000px;}
.ws98{word-spacing:1.800000px;}
.wsf5{word-spacing:1.836000px;}
.ws2e{word-spacing:1.848000px;}
.ws35{word-spacing:1.914000px;}
.ws3c{word-spacing:1.920000px;}
.ws22{word-spacing:1.944000px;}
.ws4f{word-spacing:1.980000px;}
.ws76{word-spacing:2.046000px;}
.ws10{word-spacing:2.109000px;}
.ws50{word-spacing:2.112000px;}
.ws5c{word-spacing:2.160000px;}
.ws11{word-spacing:2.166000px;}
.ws16{word-spacing:2.178000px;}
.wsd3{word-spacing:2.220000px;}
.ws6c{word-spacing:2.268000px;}
.ws13{word-spacing:2.280000px;}
.ws36{word-spacing:2.310000px;}
.ws93{word-spacing:2.340000px;}
.ws80{word-spacing:2.376000px;}
.ws7e{word-spacing:2.400000px;}
.ws57{word-spacing:2.442000px;}
.ws5d{word-spacing:2.484000px;}
.ws2{word-spacing:2.508000px;}
.wsb0{word-spacing:2.538000px;}
.ws14{word-spacing:2.565000px;}
.wsfb{word-spacing:2.574000px;}
.ws3d{word-spacing:2.580000px;}
.ws70{word-spacing:2.592000px;}
.wscf{word-spacing:2.640000px;}
.ws8e{word-spacing:2.700000px;}
.ws3{word-spacing:2.706000px;}
.wsb{word-spacing:2.736000px;}
.ws75{word-spacing:2.772000px;}
.ws9b{word-spacing:2.820000px;}
.wsa0{word-spacing:2.838000px;}
.wsb5{word-spacing:2.880000px;}
.wsed{word-spacing:2.904000px;}
.wsa5{word-spacing:2.916000px;}
.ws97{word-spacing:2.940000px;}
.wsd1{word-spacing:3.000000px;}
.ws92{word-spacing:3.060000px;}
.ws33{word-spacing:3.102000px;}
.ws3a{word-spacing:3.120000px;}
.ws56{word-spacing:3.168000px;}
.wsa2{word-spacing:3.234000px;}
.ws99{word-spacing:3.240000px;}
.wsff{word-spacing:3.300000px;}
.wsc5{word-spacing:3.360000px;}
.wsec{word-spacing:3.366000px;}
.ws37{word-spacing:3.432000px;}
.wsa3{word-spacing:3.498000px;}
.wsb2{word-spacing:3.510000px;}
.wse2{word-spacing:3.540000px;}
.wsb7{word-spacing:3.564000px;}
.wsa{word-spacing:3.591000px;}
.ws7b{word-spacing:3.600000px;}
.ws6b{word-spacing:3.618000px;}
.wsbb{word-spacing:3.660000px;}
.ws54{word-spacing:3.696000px;}
.ws1e{word-spacing:3.726000px;}
.wsad{word-spacing:3.762000px;}
.ws66{word-spacing:3.828000px;}
.ws89{word-spacing:3.840000px;}
.wsef{word-spacing:3.894000px;}
.ws7a{word-spacing:3.960000px;}
.wsd{word-spacing:3.990000px;}
.ws103{word-spacing:4.020000px;}
.ws84{word-spacing:4.026000px;}
.ws6a{word-spacing:4.080000px;}
.wsa4{word-spacing:4.158000px;}
.ws96{word-spacing:4.200000px;}
.wsa1{word-spacing:4.224000px;}
.ws90{word-spacing:4.320000px;}
.wsaa{word-spacing:4.380000px;}
.wsca{word-spacing:4.422000px;}
.ws1d{word-spacing:4.428000px;}
.ws7c{word-spacing:4.440000px;}
.ws1f{word-spacing:4.482000px;}
.wsb9{word-spacing:4.488000px;}
.ws4d{word-spacing:4.554000px;}
.ws3b{word-spacing:4.560000px;}
.wsb1{word-spacing:4.590000px;}
.wsc9{word-spacing:4.620000px;}
.ws4c{word-spacing:4.686000px;}
.ws15{word-spacing:4.788000px;}
.ws63{word-spacing:4.818000px;}
.wsd0{word-spacing:4.884000px;}
.wsc0{word-spacing:4.920000px;}
.wsf7{word-spacing:5.016000px;}
.ws12{word-spacing:5.073000px;}
.ws2c{word-spacing:5.082000px;}
.wsf0{word-spacing:5.148000px;}
.wsbe{word-spacing:5.160000px;}
.ws8a{word-spacing:5.220000px;}
.wscd{word-spacing:5.280000px;}
.ws82{word-spacing:5.412000px;}
.wsc6{word-spacing:5.460000px;}
.ws58{word-spacing:5.478000px;}
.wse6{word-spacing:5.520000px;}
.ws64{word-spacing:5.544000px;}
.ws8b{word-spacing:5.580000px;}
.wsbf{word-spacing:5.610000px;}
.ws9f{word-spacing:5.676000px;}
.ws9{word-spacing:5.700000px;}
.ws2b{word-spacing:5.742000px;}
.ws9a{word-spacing:5.760000px;}
.ws41{word-spacing:5.778000px;}
.wsab{word-spacing:5.808000px;}
.ws8c{word-spacing:5.820000px;}
.ws38{word-spacing:5.874000px;}
.wsb4{word-spacing:5.880000px;}
.ws3e{word-spacing:6.000000px;}
.wsbd{word-spacing:6.006000px;}
.ws6e{word-spacing:6.102000px;}
.ws91{word-spacing:6.138000px;}
.wsac{word-spacing:6.270000px;}
.ws18{word-spacing:6.336000px;}
.ws7f{word-spacing:6.402000px;}
.wse1{word-spacing:6.420000px;}
.ws5b{word-spacing:6.426000px;}
.ws65{word-spacing:6.534000px;}
.ws2d{word-spacing:6.600000px;}
.ws67{word-spacing:6.666000px;}
.wse9{word-spacing:6.930000px;}
.wsfc{word-spacing:6.960000px;}
.ws88{word-spacing:6.996000px;}
.wse3{word-spacing:8.220000px;}
.wsdc{word-spacing:10.560000px;}
.wsdd{word-spacing:14.220000px;}
.wsde{word-spacing:26.520000px;}
._1b{margin-left:-25.026000px;}
._9{margin-left:-19.339980px;}
._18{margin-left:-13.506888px;}
._1e{margin-left:-11.070485px;}
._1d{margin-left:-9.893461px;}
._6{margin-left:-8.059125px;}
._7{margin-left:-6.415853px;}
._5{margin-left:-5.175144px;}
._4{margin-left:-4.146575px;}
._3{margin-left:-2.488035px;}
._0{margin-left:-1.440456px;}
._1{width:1.246437px;}
._2{width:2.318213px;}
._8{width:4.065506px;}
._19{width:6.388944px;}
._1a{width:8.208768px;}
._a{width:10.578546px;}
._17{width:64.664877px;}
._f{width:77.985360px;}
._12{width:109.005605px;}
._13{width:123.793275px;}
._11{width:162.792999px;}
._c{width:176.113225px;}
._14{width:196.052213px;}
._16{width:202.005184px;}
._d{width:305.865285px;}
._15{width:319.365023px;}
._e{width:328.425016px;}
._10{width:380.173161px;}
._b{width:454.901068px;}
._1c{width:571.014053px;}
.fc1{color:rgb(123,121,121);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:36.882000px;}
.fs5{font-size:45.078000px;}
.fs2{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs4{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs0{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:42.421950px;}
.yb{bottom:51.023400px;}
.y6b{bottom:93.542940px;}
.ya6{bottom:93.543195px;}
.y30{bottom:93.543510px;}
.y8c{bottom:93.544260px;}
.y12d{bottom:95.882100px;}
.y11f{bottom:95.889900px;}
.y190{bottom:96.656850px;}
.ye9{bottom:98.038830px;}
.yb0{bottom:98.039100px;}
.y16f{bottom:98.530650px;}
.y107{bottom:110.043195px;}
.y2f{bottom:110.043510px;}
.y8b{bottom:110.044260px;}
.ye8{bottom:114.295680px;}
.y6a{bottom:114.538845px;}
.ya5{bottom:114.539100px;}
.y12c{bottom:115.982700px;}
.y11e{bottom:115.989900px;}
.y18f{bottom:116.756850px;}
.y16e{bottom:118.631250px;}
.y106{bottom:126.543195px;}
.y2e{bottom:126.543510px;}
.y69{bottom:130.795095px;}
.ye7{bottom:130.795680px;}
.y146{bottom:131.039100px;}
.y8a{bottom:131.039580px;}
.y12b{bottom:136.083300px;}
.y11d{bottom:136.089900px;}
.y18e{bottom:136.856850px;}
.y16d{bottom:138.731850px;}
.yc6{bottom:145.205100px;}
.y89{bottom:147.296430px;}
.y2d{bottom:147.538830px;}
.y105{bottom:147.539100px;}
.y68{bottom:151.791000px;}
.y12a{bottom:156.183900px;}
.y11c{bottom:156.189900px;}
.y18d{bottom:156.956850px;}
.y16c{bottom:158.832450px;}
.y2c{bottom:163.795680px;}
.yc5{bottom:165.305100px;}
.y88{bottom:168.291750px;}
.yaf{bottom:176.283900px;}
.y129{bottom:176.284500px;}
.y11b{bottom:176.289900px;}
.y1ae{bottom:177.378000px;}
.y2b{bottom:180.295680px;}
.y87{bottom:184.548000px;}
.y50{bottom:184.791000px;}
.ya4{bottom:186.862950px;}
.ye6{bottom:193.576770px;}
.yae{bottom:196.384500px;}
.y11a{bottom:196.389900px;}
.y67{bottom:197.161035px;}
.y104{bottom:197.470200px;}
.y1ad{bottom:197.478000px;}
.y18c{bottom:198.316350px;}
.y16b{bottom:199.032450px;}
.y86{bottom:201.048000px;}
.y2a{bottom:201.291000px;}
.yc4{bottom:205.505100px;}
.ya3{bottom:210.493800px;}
.ye5{bottom:213.676770px;}
.yad{bottom:216.484500px;}
.y119{bottom:216.489900px;}
.y185{bottom:217.254450px;}
.y66{bottom:217.261035px;}
.y85{bottom:217.548000px;}
.y103{bottom:217.570800px;}
.y1ac{bottom:217.578000px;}
.y16a{bottom:219.132450px;}
.yc3{bottom:225.605100px;}
.ye4{bottom:233.776770px;}
.ya2{bottom:234.124650px;}
.yac{bottom:236.584500px;}
.y118{bottom:236.589900px;}
.y184{bottom:237.355050px;}
.y65{bottom:237.361050px;}
.y102{bottom:237.671400px;}
.y1ab{bottom:237.678000px;}
.y29{bottom:244.996335px;}
.ye3{bottom:253.876800px;}
.y4f{bottom:256.683900px;}
.yab{bottom:256.685100px;}
.y117{bottom:256.689900px;}
.y183{bottom:257.455650px;}
.y64{bottom:257.461050px;}
.ya1{bottom:257.755500px;}
.y101{bottom:257.772000px;}
.y1aa{bottom:257.778000px;}
.y169{bottom:259.332450px;}
.y28{bottom:265.096335px;}
.yc2{bottom:265.805100px;}
.ye2{bottom:273.976800px;}
.y4e{bottom:276.784500px;}
.yaa{bottom:276.785100px;}
.y128{bottom:276.785700px;}
.y116{bottom:276.789900px;}
.y182{bottom:277.556250px;}
.y63{bottom:277.561050px;}
.y100{bottom:277.872600px;}
.y1a9{bottom:277.878000px;}
.ya0{bottom:278.005500px;}
.y168{bottom:279.432450px;}
.y27{bottom:285.196335px;}
.yc1{bottom:285.905100px;}
.ye1{bottom:294.076800px;}
.y4d{bottom:296.885100px;}
.y127{bottom:296.886300px;}
.y12e{bottom:296.889900px;}
.y181{bottom:297.656850px;}
.y62{bottom:297.661050px;}
.y145{bottom:297.663450px;}
.yff{bottom:297.972600px;}
.y1a8{bottom:297.978000px;}
.y167{bottom:299.533050px;}
.y9f{bottom:301.636350px;}
.y26{bottom:305.296335px;}
.yc0{bottom:306.005700px;}
.ye0{bottom:314.176800px;}
.y84{bottom:315.831000px;}
.y4c{bottom:316.985700px;}
.y126{bottom:316.986900px;}
.y115{bottom:316.989900px;}
.y180{bottom:317.757450px;}
.y144{bottom:317.763450px;}
.y1a7{bottom:318.078000px;}
.y9e{bottom:325.267200px;}
.y25{bottom:325.396335px;}
.ydf{bottom:334.276800px;}
.y83{bottom:335.931000px;}
.y4b{bottom:337.086300px;}
.y125{bottom:337.087500px;}
.y114{bottom:337.089900px;}
.y17f{bottom:337.858050px;}
.y143{bottom:337.863450px;}
.yfe{bottom:338.172600px;}
.y1a6{bottom:338.178000px;}
.y61{bottom:339.020550px;}
.y166{bottom:339.733050px;}
.ybf{bottom:341.646000px;}
.y24{bottom:345.496335px;}
.y9d{bottom:348.898050px;}
.yde{bottom:354.376800px;}
.y82{bottom:356.031000px;}
.y4a{bottom:357.186300px;}
.y18b{bottom:357.186900px;}
.y124{bottom:357.188100px;}
.y113{bottom:357.189900px;}
.y17e{bottom:357.958650px;}
.y142{bottom:357.963450px;}
.yfd{bottom:358.272600px;}
.y1a5{bottom:358.278000px;}
.ybe{bottom:361.746600px;}
.y23{bottom:365.596335px;}
.y9c{bottom:369.148050px;}
.ydd{bottom:374.476800px;}
.y81{bottom:376.131000px;}
.y49{bottom:377.286300px;}
.y123{bottom:377.288700px;}
.y112{bottom:377.289900px;}
.y17d{bottom:378.058650px;}
.y141{bottom:378.063450px;}
.y1a4{bottom:378.378000px;}
.y165{bottom:379.933050px;}
.ybd{bottom:381.847200px;}
.y9b{bottom:392.778900px;}
.ydc{bottom:394.576800px;}
.y80{bottom:396.231000px;}
.y48{bottom:397.386900px;}
.y60{bottom:397.388100px;}
.y122{bottom:397.388700px;}
.y111{bottom:397.389900px;}
.y140{bottom:398.163450px;}
.yfc{bottom:398.472600px;}
.y1a3{bottom:398.478000px;}
.y164{bottom:400.033050px;}
.ybc{bottom:401.947200px;}
.y22{bottom:406.955850px;}
.y9a{bottom:413.028900px;}
.ydb{bottom:414.676800px;}
.y18a{bottom:417.486900px;}
.ya9{bottom:417.487500px;}
.y5f{bottom:417.488100px;}
.y110{bottom:417.489900px;}
.y17c{bottom:418.258650px;}
.y13f{bottom:418.263450px;}
.yfb{bottom:418.573200px;}
.y1a2{bottom:418.578000px;}
.y163{bottom:420.133650px;}
.ybb{bottom:422.047200px;}
.yda{bottom:434.776800px;}
.y7f{bottom:436.431000px;}
.y99{bottom:436.659750px;}
.y47{bottom:437.586900px;}
.y5e{bottom:437.588100px;}
.y121{bottom:437.588700px;}
.y10f{bottom:437.589900px;}
.y17b{bottom:438.359250px;}
.y13e{bottom:438.363450px;}
.yfa{bottom:438.673200px;}
.y1a1{bottom:438.678000px;}
.y162{bottom:440.233650px;}
.yd9{bottom:454.876800px;}
.y7e{bottom:456.531000px;}
.y46{bottom:457.687500px;}
.y5d{bottom:457.688700px;}
.y10e{bottom:457.689900px;}
.y17a{bottom:458.459850px;}
.y13d{bottom:458.463450px;}
.yf9{bottom:458.773800px;}
.y1a0{bottom:458.778000px;}
.y98{bottom:460.290600px;}
.y161{bottom:460.334250px;}
.yba{bottom:462.247200px;}
.y21{bottom:465.323400px;}
.yd8{bottom:474.976800px;}
.y7d{bottom:476.631000px;}
.y189{bottom:477.787500px;}
.y45{bottom:477.788100px;}
.y5c{bottom:477.788700px;}
.y10d{bottom:477.789900px;}
.y179{bottom:478.559850px;}
.y13c{bottom:478.563450px;}
.yf8{bottom:478.874400px;}
.y19f{bottom:478.878000px;}
.yb9{bottom:482.347800px;}
.y20{bottom:483.323400px;}
.y97{bottom:483.921450px;}
.ya{bottom:487.197000px;}
.yd7{bottom:495.076800px;}
.y160{bottom:495.433650px;}
.y7c{bottom:496.731000px;}
.y44{bottom:497.888100px;}
.y5b{bottom:497.888700px;}
.y10c{bottom:497.889900px;}
.y13b{bottom:498.663450px;}
.yf7{bottom:498.974400px;}
.y19e{bottom:498.978000px;}
.y1f{bottom:501.323400px;}
.yb8{bottom:502.448400px;}
.y96{bottom:507.552300px;}
.yd6{bottom:515.176800px;}
.y15f{bottom:515.534250px;}
.y7b{bottom:516.831000px;}
.y43{bottom:517.988100px;}
.y5a{bottom:517.988700px;}
.y120{bottom:517.989300px;}
.y10b{bottom:517.989900px;}
.y178{bottom:518.759850px;}
.y13a{bottom:518.763450px;}
.yf6{bottom:519.074400px;}
.y19d{bottom:519.078000px;}
.y1e{bottom:519.323400px;}
.yb7{bottom:522.549000px;}
.y8{bottom:529.444500px;}
.y95{bottom:531.183150px;}
.yd5{bottom:535.276800px;}
.y15e{bottom:535.634850px;}
.y7a{bottom:536.931000px;}
.y1d{bottom:537.323400px;}
.y42{bottom:538.088700px;}
.y59{bottom:538.089300px;}
.y10a{bottom:538.089900px;}
.y177{bottom:538.860450px;}
.y139{bottom:538.863450px;}
.yf5{bottom:539.175000px;}
.y19c{bottom:539.178000px;}
.yb6{bottom:542.649000px;}
.y7{bottom:549.544500px;}
.y94{bottom:554.814000px;}
.y1c{bottom:555.323400px;}
.yd4{bottom:555.376800px;}
.y15d{bottom:555.735450px;}
.y79{bottom:557.031000px;}
.y41{bottom:558.188700px;}
.ya8{bottom:558.189300px;}
.y58{bottom:558.189900px;}
.y176{bottom:558.961050px;}
.y138{bottom:558.963450px;}
.yf4{bottom:559.275600px;}
.y19b{bottom:559.278000px;}
.yb5{bottom:562.749600px;}
.y6{bottom:569.644500px;}
.y1b{bottom:573.323400px;}
.yd3{bottom:575.476800px;}
.y15c{bottom:575.836050px;}
.y78{bottom:577.131000px;}
.y188{bottom:578.288700px;}
.y40{bottom:578.289300px;}
.y57{bottom:578.289900px;}
.y175{bottom:579.061650px;}
.y137{bottom:579.063450px;}
.yf3{bottom:579.375600px;}
.y19a{bottom:579.378000px;}
.y5{bottom:589.744500px;}
.y1a{bottom:591.323400px;}
.yd2{bottom:595.576800px;}
.y15b{bottom:595.935450px;}
.y77{bottom:597.231000px;}
.y187{bottom:598.389300px;}
.y3f{bottom:598.389900px;}
.y56{bottom:598.390500px;}
.y174{bottom:599.161650px;}
.y136{bottom:599.163450px;}
.yf2{bottom:599.475600px;}
.y199{bottom:599.478000px;}
.yb4{bottom:602.949600px;}
.y19{bottom:609.323400px;}
.yd1{bottom:615.677400px;}
.y76{bottom:617.331000px;}
.y93{bottom:618.489300px;}
.y109{bottom:618.489900px;}
.y3e{bottom:618.490500px;}
.y55{bottom:618.491100px;}
.y173{bottom:619.261650px;}
.y135{bottom:619.263450px;}
.yf1{bottom:619.576200px;}
.y198{bottom:619.578000px;}
.yb3{bottom:623.050200px;}
.y18{bottom:627.323400px;}
.yd0{bottom:635.777400px;}
.y75{bottom:637.431000px;}
.y92{bottom:638.588700px;}
.y186{bottom:638.589300px;}
.y3d{bottom:638.589900px;}
.y54{bottom:638.590500px;}
.y172{bottom:639.362250px;}
.y134{bottom:639.363450px;}
.yf0{bottom:639.676800px;}
.y197{bottom:639.678600px;}
.yb2{bottom:643.150200px;}
.y17{bottom:645.323400px;}
.y15a{bottom:649.638450px;}
.ycf{bottom:655.877400px;}
.y74{bottom:657.531000px;}
.y91{bottom:658.689300px;}
.ya7{bottom:658.689900px;}
.y3c{bottom:658.690500px;}
.y171{bottom:659.462850px;}
.y133{bottom:659.463450px;}
.yef{bottom:659.776200px;}
.y196{bottom:659.778000px;}
.y159{bottom:669.739050px;}
.y150{bottom:669.743250px;}
.y73{bottom:677.631000px;}
.y90{bottom:678.789300px;}
.yb1{bottom:678.789900px;}
.y3b{bottom:678.790500px;}
.y132{bottom:679.563450px;}
.yee{bottom:679.876800px;}
.y195{bottom:679.878000px;}
.y16{bottom:681.323400px;}
.y158{bottom:689.839650px;}
.y14f{bottom:689.843850px;}
.y4{bottom:694.884000px;}
.yce{bottom:696.077400px;}
.y72{bottom:697.731000px;}
.y8f{bottom:698.889900px;}
.y3a{bottom:698.890500px;}
.y53{bottom:698.891100px;}
.y15{bottom:699.323400px;}
.y131{bottom:699.663450px;}
.yed{bottom:699.977400px;}
.y194{bottom:699.978000px;}
.y157{bottom:709.940250px;}
.y14e{bottom:709.943850px;}
.ycd{bottom:716.178000px;}
.y14{bottom:717.323400px;}
.y71{bottom:717.831000px;}
.y8e{bottom:718.990500px;}
.y39{bottom:718.991100px;}
.y52{bottom:718.991700px;}
.y130{bottom:719.763450px;}
.yec{bottom:720.077400px;}
.y193{bottom:720.078000px;}
.y156{bottom:730.040850px;}
.y14d{bottom:730.043850px;}
.y3{bottom:732.384000px;}
.y13{bottom:735.323400px;}
.ycc{bottom:736.278000px;}
.y70{bottom:737.931000px;}
.y8d{bottom:739.089900px;}
.y38{bottom:739.090500px;}
.y51{bottom:739.091100px;}
.y192{bottom:740.178600px;}
.y170{bottom:741.022950px;}
.y155{bottom:750.141450px;}
.y14c{bottom:750.143850px;}
.y12{bottom:753.323400px;}
.ycb{bottom:756.378000px;}
.y6f{bottom:758.031000px;}
.y37{bottom:759.190500px;}
.yeb{bottom:760.277400px;}
.y191{bottom:760.278000px;}
.y12f{bottom:761.122950px;}
.y154{bottom:770.242050px;}
.y14b{bottom:770.244450px;}
.y11{bottom:771.323400px;}
.y6e{bottom:778.131000px;}
.y108{bottom:779.290500px;}
.y36{bottom:779.291100px;}
.yea{bottom:780.378000px;}
.y10{bottom:789.323400px;}
.y153{bottom:790.342650px;}
.y14a{bottom:790.344450px;}
.y6d{bottom:798.231000px;}
.y35{bottom:799.390500px;}
.yca{bottom:800.478600px;}
.yf{bottom:807.323400px;}
.y152{bottom:810.442650px;}
.y149{bottom:810.445050px;}
.y2{bottom:812.404500px;}
.y6c{bottom:818.331000px;}
.y34{bottom:819.491100px;}
.yc9{bottom:820.578000px;}
.ye{bottom:825.323400px;}
.y151{bottom:830.543250px;}
.y148{bottom:830.545650px;}
.y33{bottom:839.590500px;}
.yc8{bottom:840.678600px;}
.yd{bottom:843.323400px;}
.y1{bottom:849.904500px;}
.y147{bottom:854.176500px;}
.y32{bottom:859.690500px;}
.yc7{bottom:860.778000px;}
.yc{bottom:861.323400px;}
.y31{bottom:918.279000px;}
.hc{height:31.829166px;}
.h5{height:41.424000px;}
.hd{height:46.602000px;}
.h6{height:47.190000px;}
.h9{height:49.191000px;}
.h8{height:49.476000px;}
.h7{height:51.780000px;}
.h10{height:52.080000px;}
.h4{height:56.958000px;}
.hf{height:57.288000px;}
.hb{height:60.879654px;}
.he{height:60.881994px;}
.ha{height:61.105044px;}
.h2{height:103.680000px;}
.h3{height:104.160000px;}
.h0{height:977.953500px;}
.h1{height:978.000000px;}
.w1{width:680.250000px;}
.w0{width:680.310000px;}
.x0{left:0.000000px;}
.xc{left:102.047700px;}
.x10{left:108.650400px;}
.x2{left:118.161900px;}
.xb{left:123.307500px;}
.xf{left:168.571500px;}
.xe{left:170.079615px;}
.x1{left:173.376000px;}
.x9{left:192.541500px;}
.x3{left:198.409500px;}
.x7{left:206.289300px;}
.x8{left:215.638500px;}
.x5{left:239.394750px;}
.x4{left:267.123000px;}
.xd{left:280.054500px;}
.x6{left:285.868950px;}
.x11{left:319.605900px;}
.xa{left:328.908000px;}
.x12{left:346.535400px;}
@media print{
.v2{vertical-align:-15.983360pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.535413pt;}
.ls3e{letter-spacing:-6.453333pt;}
.ls2c{letter-spacing:-2.064000pt;}
.ls32{letter-spacing:-1.408000pt;}
.ls47{letter-spacing:-1.056000pt;}
.lsf{letter-spacing:-1.008000pt;}
.ls2b{letter-spacing:-0.960000pt;}
.ls57{letter-spacing:-0.950736pt;}
.ls56{letter-spacing:-0.800000pt;}
.ls2{letter-spacing:-0.762667pt;}
.ls5a{letter-spacing:-0.746667pt;}
.ls59{letter-spacing:-0.645333pt;}
.ls20{letter-spacing:-0.528000pt;}
.ls37{letter-spacing:-0.480000pt;}
.ls50{letter-spacing:-0.469333pt;}
.ls49{letter-spacing:-0.410667pt;}
.ls43{letter-spacing:-0.352000pt;}
.ls1f{letter-spacing:-0.336000pt;}
.ls45{letter-spacing:-0.320000pt;}
.ls2e{letter-spacing:-0.288000pt;}
.ls4a{letter-spacing:-0.280485pt;}
.ls44{letter-spacing:-0.240416pt;}
.ls5b{letter-spacing:-0.229488pt;}
.ls3f{letter-spacing:-0.196704pt;}
.ls1{letter-spacing:-0.176000pt;}
.ls4c{letter-spacing:-0.163920pt;}
.ls19{letter-spacing:-0.106667pt;}
.ls21{letter-spacing:-0.096000pt;}
.ls4b{letter-spacing:-0.058667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.000747pt;}
.ls30{letter-spacing:0.019520pt;}
.ls1a{letter-spacing:0.032784pt;}
.ls1b{letter-spacing:0.048000pt;}
.ls18{letter-spacing:0.053333pt;}
.ls33{letter-spacing:0.058667pt;}
.ls3a{letter-spacing:0.065568pt;}
.ls3b{letter-spacing:0.096000pt;}
.ls42{letter-spacing:0.106667pt;}
.ls12{letter-spacing:0.117333pt;}
.ls41{letter-spacing:0.160000pt;}
.ls3c{letter-spacing:0.176000pt;}
.ls5{letter-spacing:0.202667pt;}
.ls52{letter-spacing:0.213333pt;}
.lsb{letter-spacing:0.234667pt;}
.ls22{letter-spacing:0.240000pt;}
.ls17{letter-spacing:0.266667pt;}
.ls13{letter-spacing:0.283360pt;}
.ls38{letter-spacing:0.292427pt;}
.ls2f{letter-spacing:0.293333pt;}
.ls16{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:0.336000pt;}
.ls53{letter-spacing:0.352000pt;}
.ls7{letter-spacing:0.354667pt;}
.lsc{letter-spacing:0.360624pt;}
.ls51{letter-spacing:0.373333pt;}
.ls6{letter-spacing:0.405333pt;}
.ls29{letter-spacing:0.410667pt;}
.ls15{letter-spacing:0.426667pt;}
.ls4d{letter-spacing:0.432000pt;}
.ls31{letter-spacing:0.469333pt;}
.ls10{letter-spacing:0.524544pt;}
.lsd{letter-spacing:0.528000pt;}
.ls24{letter-spacing:0.586667pt;}
.ls1c{letter-spacing:0.590112pt;}
.ls54{letter-spacing:0.640000pt;}
.ls46{letter-spacing:0.645333pt;}
.ls39{letter-spacing:0.704000pt;}
.ls9{letter-spacing:0.748747pt;}
.ls8{letter-spacing:0.760000pt;}
.ls11{letter-spacing:0.768000pt;}
.ls58{letter-spacing:0.800000pt;}
.ls27{letter-spacing:0.821333pt;}
.ls5c{letter-spacing:0.853333pt;}
.ls1d{letter-spacing:0.864000pt;}
.ls26{letter-spacing:0.880000pt;}
.ls4e{letter-spacing:0.938667pt;}
.ls55{letter-spacing:0.960000pt;}
.ls2d{letter-spacing:1.056000pt;}
.ls60{letter-spacing:1.066667pt;}
.ls23{letter-spacing:1.114667pt;}
.lse{letter-spacing:1.152000pt;}
.ls28{letter-spacing:1.173333pt;}
.ls36{letter-spacing:1.200000pt;}
.ls34{letter-spacing:1.213008pt;}
.ls5f{letter-spacing:1.226667pt;}
.ls3{letter-spacing:1.232000pt;}
.ls48{letter-spacing:1.290667pt;}
.ls2a{letter-spacing:1.296000pt;}
.ls25{letter-spacing:1.525333pt;}
.ls40{letter-spacing:1.584000pt;}
.ls4f{letter-spacing:1.595413pt;}
.ls5d{letter-spacing:1.653333pt;}
.ls35{letter-spacing:1.776000pt;}
.ls5e{letter-spacing:2.000000pt;}
.ls4{letter-spacing:2.133333pt;}
.ls3d{letter-spacing:6.033333pt;}
.lsa{letter-spacing:13.906667pt;}
.ws94{word-spacing:-15.370667pt;}
.ws48{word-spacing:-15.253333pt;}
.ws73{word-spacing:-15.077333pt;}
.ws25{word-spacing:-14.901333pt;}
.ws7{word-spacing:-14.666667pt;}
.wsfe{word-spacing:-14.400000pt;}
.ws87{word-spacing:-14.314667pt;}
.wsa9{word-spacing:-14.256000pt;}
.wsb3{word-spacing:-14.197333pt;}
.ws0{word-spacing:-13.904000pt;}
.ws26{word-spacing:-13.760000pt;}
.ws95{word-spacing:-13.610667pt;}
.wsf6{word-spacing:-13.546667pt;}
.ws74{word-spacing:-13.333333pt;}
.ws4a{word-spacing:-13.296000pt;}
.ws5e{word-spacing:-13.258667pt;}
.ws27{word-spacing:-13.226667pt;}
.ws5f{word-spacing:-13.200000pt;}
.ws6{word-spacing:-13.173333pt;}
.ws2a{word-spacing:-12.768000pt;}
.ws5{word-spacing:-12.666667pt;}
.wseb{word-spacing:-12.586667pt;}
.wscb{word-spacing:-12.533333pt;}
.ws60{word-spacing:-12.528000pt;}
.ws28{word-spacing:-12.336000pt;}
.ws29{word-spacing:-11.472000pt;}
.ws49{word-spacing:-10.017333pt;}
.ws4b{word-spacing:-9.936000pt;}
.ws86{word-spacing:-9.776917pt;}
.wsa8{word-spacing:-9.736848pt;}
.ws79{word-spacing:-8.213333pt;}
.wse0{word-spacing:-2.666667pt;}
.ws45{word-spacing:-2.208000pt;}
.ws4e{word-spacing:-2.170667pt;}
.ws32{word-spacing:-1.994667pt;}
.wse8{word-spacing:-1.973333pt;}
.ws46{word-spacing:-1.968000pt;}
.ws19{word-spacing:-1.936000pt;}
.ws51{word-spacing:-1.877333pt;}
.ws9d{word-spacing:-1.818667pt;}
.wsdf{word-spacing:-1.760000pt;}
.wse{word-spacing:-1.722667pt;}
.wsf1{word-spacing:-1.546667pt;}
.wsfa{word-spacing:-1.466667pt;}
.wsd4{word-spacing:-1.440000pt;}
.wsd7{word-spacing:-1.349333pt;}
.ws100{word-spacing:-1.333333pt;}
.wsc8{word-spacing:-1.290667pt;}
.ws6d{word-spacing:-1.213008pt;}
.ws7d{word-spacing:-1.120000pt;}
.ws43{word-spacing:-1.104000pt;}
.wsf2{word-spacing:-1.056000pt;}
.wsd9{word-spacing:-0.762667pt;}
.ws5a{word-spacing:-0.704000pt;}
.ws9e{word-spacing:-0.645333pt;}
.ws40{word-spacing:-0.590112pt;}
.ws55{word-spacing:-0.586667pt;}
.wsc1{word-spacing:-0.533333pt;}
.ws47{word-spacing:-0.528000pt;}
.ws21{word-spacing:-0.524544pt;}
.ws101{word-spacing:-0.426667pt;}
.wse7{word-spacing:-0.373333pt;}
.ws1c{word-spacing:-0.360624pt;}
.ws62{word-spacing:-0.352000pt;}
.wscc{word-spacing:-0.320000pt;}
.wsf{word-spacing:-0.304000pt;}
.ws42{word-spacing:-0.240000pt;}
.ws9c{word-spacing:-0.176000pt;}
.ws23{word-spacing:-0.144000pt;}
.wsd8{word-spacing:-0.117333pt;}
.wsc3{word-spacing:-0.106667pt;}
.ws78{word-spacing:-0.065568pt;}
.ws17{word-spacing:-0.058667pt;}
.wsd5{word-spacing:-0.053333pt;}
.ws3f{word-spacing:-0.032784pt;}
.ws1{word-spacing:0.000000pt;}
.wsd2{word-spacing:0.053333pt;}
.ws44{word-spacing:0.096000pt;}
.wsf9{word-spacing:0.117333pt;}
.wsea{word-spacing:0.160000pt;}
.wsaf{word-spacing:0.163920pt;}
.wsf8{word-spacing:0.176000pt;}
.ws85{word-spacing:0.196704pt;}
.wsf3{word-spacing:0.229488pt;}
.ws68{word-spacing:0.266667pt;}
.ws34{word-spacing:0.293333pt;}
.wsbc{word-spacing:0.320000pt;}
.wsee{word-spacing:0.352000pt;}
.ws8d{word-spacing:0.373333pt;}
.wsf4{word-spacing:0.384000pt;}
.wsce{word-spacing:0.410667pt;}
.wsdb{word-spacing:0.432000pt;}
.wsd6{word-spacing:0.469333pt;}
.wsc7{word-spacing:0.480000pt;}
.ws8f{word-spacing:0.528000pt;}
.wsae{word-spacing:0.586667pt;}
.ws72{word-spacing:0.624000pt;}
.ws102{word-spacing:0.640000pt;}
.wsb8{word-spacing:0.645333pt;}
.ws52{word-spacing:0.704000pt;}
.ws53{word-spacing:0.762667pt;}
.ws71{word-spacing:0.768000pt;}
.wse4{word-spacing:0.800000pt;}
.wsc{word-spacing:0.810667pt;}
.ws39{word-spacing:0.821333pt;}
.wsfd{word-spacing:0.853333pt;}
.ws24{word-spacing:0.864000pt;}
.ws1b{word-spacing:0.938667pt;}
.wsda{word-spacing:0.950736pt;}
.wsb6{word-spacing:0.960000pt;}
.ws4{word-spacing:0.997333pt;}
.ws20{word-spacing:1.008000pt;}
.wsc4{word-spacing:1.013333pt;}
.ws1a{word-spacing:1.056000pt;}
.ws31{word-spacing:1.114667pt;}
.ws69{word-spacing:1.120000pt;}
.wsa7{word-spacing:1.152000pt;}
.ws59{word-spacing:1.173333pt;}
.ws30{word-spacing:1.232000pt;}
.wsc2{word-spacing:1.280000pt;}
.ws77{word-spacing:1.290667pt;}
.ws6f{word-spacing:1.344000pt;}
.wsba{word-spacing:1.349333pt;}
.ws83{word-spacing:1.408000pt;}
.wsa6{word-spacing:1.440000pt;}
.ws81{word-spacing:1.466667pt;}
.ws61{word-spacing:1.525333pt;}
.wse5{word-spacing:1.546667pt;}
.ws8{word-spacing:1.570667pt;}
.ws2f{word-spacing:1.584000pt;}
.ws98{word-spacing:1.600000pt;}
.wsf5{word-spacing:1.632000pt;}
.ws2e{word-spacing:1.642667pt;}
.ws35{word-spacing:1.701333pt;}
.ws3c{word-spacing:1.706667pt;}
.ws22{word-spacing:1.728000pt;}
.ws4f{word-spacing:1.760000pt;}
.ws76{word-spacing:1.818667pt;}
.ws10{word-spacing:1.874667pt;}
.ws50{word-spacing:1.877333pt;}
.ws5c{word-spacing:1.920000pt;}
.ws11{word-spacing:1.925333pt;}
.ws16{word-spacing:1.936000pt;}
.wsd3{word-spacing:1.973333pt;}
.ws6c{word-spacing:2.016000pt;}
.ws13{word-spacing:2.026667pt;}
.ws36{word-spacing:2.053333pt;}
.ws93{word-spacing:2.080000pt;}
.ws80{word-spacing:2.112000pt;}
.ws7e{word-spacing:2.133333pt;}
.ws57{word-spacing:2.170667pt;}
.ws5d{word-spacing:2.208000pt;}
.ws2{word-spacing:2.229333pt;}
.wsb0{word-spacing:2.256000pt;}
.ws14{word-spacing:2.280000pt;}
.wsfb{word-spacing:2.288000pt;}
.ws3d{word-spacing:2.293333pt;}
.ws70{word-spacing:2.304000pt;}
.wscf{word-spacing:2.346667pt;}
.ws8e{word-spacing:2.400000pt;}
.ws3{word-spacing:2.405333pt;}
.wsb{word-spacing:2.432000pt;}
.ws75{word-spacing:2.464000pt;}
.ws9b{word-spacing:2.506667pt;}
.wsa0{word-spacing:2.522667pt;}
.wsb5{word-spacing:2.560000pt;}
.wsed{word-spacing:2.581333pt;}
.wsa5{word-spacing:2.592000pt;}
.ws97{word-spacing:2.613333pt;}
.wsd1{word-spacing:2.666667pt;}
.ws92{word-spacing:2.720000pt;}
.ws33{word-spacing:2.757333pt;}
.ws3a{word-spacing:2.773333pt;}
.ws56{word-spacing:2.816000pt;}
.wsa2{word-spacing:2.874667pt;}
.ws99{word-spacing:2.880000pt;}
.wsff{word-spacing:2.933333pt;}
.wsc5{word-spacing:2.986667pt;}
.wsec{word-spacing:2.992000pt;}
.ws37{word-spacing:3.050667pt;}
.wsa3{word-spacing:3.109333pt;}
.wsb2{word-spacing:3.120000pt;}
.wse2{word-spacing:3.146667pt;}
.wsb7{word-spacing:3.168000pt;}
.wsa{word-spacing:3.192000pt;}
.ws7b{word-spacing:3.200000pt;}
.ws6b{word-spacing:3.216000pt;}
.wsbb{word-spacing:3.253333pt;}
.ws54{word-spacing:3.285333pt;}
.ws1e{word-spacing:3.312000pt;}
.wsad{word-spacing:3.344000pt;}
.ws66{word-spacing:3.402667pt;}
.ws89{word-spacing:3.413333pt;}
.wsef{word-spacing:3.461333pt;}
.ws7a{word-spacing:3.520000pt;}
.wsd{word-spacing:3.546667pt;}
.ws103{word-spacing:3.573333pt;}
.ws84{word-spacing:3.578667pt;}
.ws6a{word-spacing:3.626667pt;}
.wsa4{word-spacing:3.696000pt;}
.ws96{word-spacing:3.733333pt;}
.wsa1{word-spacing:3.754667pt;}
.ws90{word-spacing:3.840000pt;}
.wsaa{word-spacing:3.893333pt;}
.wsca{word-spacing:3.930667pt;}
.ws1d{word-spacing:3.936000pt;}
.ws7c{word-spacing:3.946667pt;}
.ws1f{word-spacing:3.984000pt;}
.wsb9{word-spacing:3.989333pt;}
.ws4d{word-spacing:4.048000pt;}
.ws3b{word-spacing:4.053333pt;}
.wsb1{word-spacing:4.080000pt;}
.wsc9{word-spacing:4.106667pt;}
.ws4c{word-spacing:4.165333pt;}
.ws15{word-spacing:4.256000pt;}
.ws63{word-spacing:4.282667pt;}
.wsd0{word-spacing:4.341333pt;}
.wsc0{word-spacing:4.373333pt;}
.wsf7{word-spacing:4.458667pt;}
.ws12{word-spacing:4.509333pt;}
.ws2c{word-spacing:4.517333pt;}
.wsf0{word-spacing:4.576000pt;}
.wsbe{word-spacing:4.586667pt;}
.ws8a{word-spacing:4.640000pt;}
.wscd{word-spacing:4.693333pt;}
.ws82{word-spacing:4.810667pt;}
.wsc6{word-spacing:4.853333pt;}
.ws58{word-spacing:4.869333pt;}
.wse6{word-spacing:4.906667pt;}
.ws64{word-spacing:4.928000pt;}
.ws8b{word-spacing:4.960000pt;}
.wsbf{word-spacing:4.986667pt;}
.ws9f{word-spacing:5.045333pt;}
.ws9{word-spacing:5.066667pt;}
.ws2b{word-spacing:5.104000pt;}
.ws9a{word-spacing:5.120000pt;}
.ws41{word-spacing:5.136000pt;}
.wsab{word-spacing:5.162667pt;}
.ws8c{word-spacing:5.173333pt;}
.ws38{word-spacing:5.221333pt;}
.wsb4{word-spacing:5.226667pt;}
.ws3e{word-spacing:5.333333pt;}
.wsbd{word-spacing:5.338667pt;}
.ws6e{word-spacing:5.424000pt;}
.ws91{word-spacing:5.456000pt;}
.wsac{word-spacing:5.573333pt;}
.ws18{word-spacing:5.632000pt;}
.ws7f{word-spacing:5.690667pt;}
.wse1{word-spacing:5.706667pt;}
.ws5b{word-spacing:5.712000pt;}
.ws65{word-spacing:5.808000pt;}
.ws2d{word-spacing:5.866667pt;}
.ws67{word-spacing:5.925333pt;}
.wse9{word-spacing:6.160000pt;}
.wsfc{word-spacing:6.186667pt;}
.ws88{word-spacing:6.218667pt;}
.wse3{word-spacing:7.306667pt;}
.wsdc{word-spacing:9.386667pt;}
.wsdd{word-spacing:12.640000pt;}
.wsde{word-spacing:23.573333pt;}
._1b{margin-left:-22.245333pt;}
._9{margin-left:-17.191093pt;}
._18{margin-left:-12.006122pt;}
._1e{margin-left:-9.840431pt;}
._1d{margin-left:-8.794188pt;}
._6{margin-left:-7.163667pt;}
._7{margin-left:-5.702981pt;}
._5{margin-left:-4.600128pt;}
._4{margin-left:-3.685844pt;}
._3{margin-left:-2.211587pt;}
._0{margin-left:-1.280405pt;}
._1{width:1.107944pt;}
._2{width:2.060634pt;}
._8{width:3.613783pt;}
._19{width:5.679061pt;}
._1a{width:7.296683pt;}
._a{width:9.403152pt;}
._17{width:57.479891pt;}
._f{width:69.320320pt;}
._12{width:96.893871pt;}
._13{width:110.038467pt;}
._11{width:144.704888pt;}
._c{width:156.545089pt;}
._14{width:174.268633pt;}
._16{width:179.560163pt;}
._d{width:271.880253pt;}
._15{width:283.880020pt;}
._e{width:291.933348pt;}
._10{width:337.931699pt;}
._b{width:404.356505pt;}
._1c{width:507.568048pt;}
.fs6{font-size:32.784000pt;}
.fs5{font-size:40.069333pt;}
.fs2{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs4{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs0{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:37.708400pt;}
.yb{bottom:45.354133pt;}
.y6b{bottom:83.149280pt;}
.ya6{bottom:83.149507pt;}
.y30{bottom:83.149787pt;}
.y8c{bottom:83.150453pt;}
.y12d{bottom:85.228533pt;}
.y11f{bottom:85.235467pt;}
.y190{bottom:85.917200pt;}
.ye9{bottom:87.145627pt;}
.yb0{bottom:87.145867pt;}
.y16f{bottom:87.582800pt;}
.y107{bottom:97.816173pt;}
.y2f{bottom:97.816453pt;}
.y8b{bottom:97.817120pt;}
.ye8{bottom:101.596160pt;}
.y6a{bottom:101.812307pt;}
.ya5{bottom:101.812533pt;}
.y12c{bottom:103.095733pt;}
.y11e{bottom:103.102133pt;}
.y18f{bottom:103.783867pt;}
.y16e{bottom:105.450000pt;}
.y106{bottom:112.482840pt;}
.y2e{bottom:112.483120pt;}
.y69{bottom:116.262307pt;}
.ye7{bottom:116.262827pt;}
.y146{bottom:116.479200pt;}
.y8a{bottom:116.479627pt;}
.y12b{bottom:120.962933pt;}
.y11d{bottom:120.968800pt;}
.y18e{bottom:121.650533pt;}
.y16d{bottom:123.317200pt;}
.yc6{bottom:129.071200pt;}
.y89{bottom:130.930160pt;}
.y2d{bottom:131.145627pt;}
.y105{bottom:131.145867pt;}
.y68{bottom:134.925333pt;}
.y12a{bottom:138.830133pt;}
.y11c{bottom:138.835467pt;}
.y18d{bottom:139.517200pt;}
.y16c{bottom:141.184400pt;}
.y2c{bottom:145.596160pt;}
.yc5{bottom:146.937867pt;}
.y88{bottom:149.592667pt;}
.yaf{bottom:156.696800pt;}
.y129{bottom:156.697333pt;}
.y11b{bottom:156.702133pt;}
.y1ae{bottom:157.669333pt;}
.y2b{bottom:160.262827pt;}
.y87{bottom:164.042667pt;}
.y50{bottom:164.258667pt;}
.ya4{bottom:166.100400pt;}
.ye6{bottom:172.068240pt;}
.yae{bottom:174.564000pt;}
.y11a{bottom:174.568800pt;}
.y67{bottom:175.254253pt;}
.y104{bottom:175.529067pt;}
.y1ad{bottom:175.536000pt;}
.y18c{bottom:176.281200pt;}
.y16b{bottom:176.917733pt;}
.y86{bottom:178.709333pt;}
.y2a{bottom:178.925333pt;}
.yc4{bottom:182.671200pt;}
.ya3{bottom:187.105600pt;}
.ye5{bottom:189.934907pt;}
.yad{bottom:192.430667pt;}
.y119{bottom:192.435467pt;}
.y185{bottom:193.115067pt;}
.y66{bottom:193.120920pt;}
.y85{bottom:193.376000pt;}
.y103{bottom:193.396267pt;}
.y1ac{bottom:193.402667pt;}
.y16a{bottom:194.784400pt;}
.yc3{bottom:200.537867pt;}
.ye4{bottom:207.801573pt;}
.ya2{bottom:208.110800pt;}
.yac{bottom:210.297333pt;}
.y118{bottom:210.302133pt;}
.y184{bottom:210.982267pt;}
.y65{bottom:210.987600pt;}
.y102{bottom:211.263467pt;}
.y1ab{bottom:211.269333pt;}
.y29{bottom:217.774520pt;}
.ye3{bottom:225.668267pt;}
.y4f{bottom:228.163467pt;}
.yab{bottom:228.164533pt;}
.y117{bottom:228.168800pt;}
.y183{bottom:228.849467pt;}
.y64{bottom:228.854267pt;}
.ya1{bottom:229.116000pt;}
.y101{bottom:229.130667pt;}
.y1aa{bottom:229.136000pt;}
.y169{bottom:230.517733pt;}
.y28{bottom:235.641187pt;}
.yc2{bottom:236.271200pt;}
.ye2{bottom:243.534933pt;}
.y4e{bottom:246.030667pt;}
.yaa{bottom:246.031200pt;}
.y128{bottom:246.031733pt;}
.y116{bottom:246.035467pt;}
.y182{bottom:246.716667pt;}
.y63{bottom:246.720933pt;}
.y100{bottom:246.997867pt;}
.y1a9{bottom:247.002667pt;}
.ya0{bottom:247.116000pt;}
.y168{bottom:248.384400pt;}
.y27{bottom:253.507853pt;}
.yc1{bottom:254.137867pt;}
.ye1{bottom:261.401600pt;}
.y4d{bottom:263.897867pt;}
.y127{bottom:263.898933pt;}
.y12e{bottom:263.902133pt;}
.y181{bottom:264.583867pt;}
.y62{bottom:264.587600pt;}
.y145{bottom:264.589733pt;}
.yff{bottom:264.864533pt;}
.y1a8{bottom:264.869333pt;}
.y167{bottom:266.251600pt;}
.y9f{bottom:268.121200pt;}
.y26{bottom:271.374520pt;}
.yc0{bottom:272.005067pt;}
.ye0{bottom:279.268267pt;}
.y84{bottom:280.738667pt;}
.y4c{bottom:281.765067pt;}
.y126{bottom:281.766133pt;}
.y115{bottom:281.768800pt;}
.y180{bottom:282.451067pt;}
.y144{bottom:282.456400pt;}
.y1a7{bottom:282.736000pt;}
.y9e{bottom:289.126400pt;}
.y25{bottom:289.241187pt;}
.ydf{bottom:297.134933pt;}
.y83{bottom:298.605333pt;}
.y4b{bottom:299.632267pt;}
.y125{bottom:299.633333pt;}
.y114{bottom:299.635467pt;}
.y17f{bottom:300.318267pt;}
.y143{bottom:300.323067pt;}
.yfe{bottom:300.597867pt;}
.y1a6{bottom:300.602667pt;}
.y61{bottom:301.351600pt;}
.y166{bottom:301.984933pt;}
.ybf{bottom:303.685333pt;}
.y24{bottom:307.107853pt;}
.y9d{bottom:310.131600pt;}
.yde{bottom:315.001600pt;}
.y82{bottom:316.472000pt;}
.y4a{bottom:317.498933pt;}
.y18b{bottom:317.499467pt;}
.y124{bottom:317.500533pt;}
.y113{bottom:317.502133pt;}
.y17e{bottom:318.185467pt;}
.y142{bottom:318.189733pt;}
.yfd{bottom:318.464533pt;}
.y1a5{bottom:318.469333pt;}
.ybe{bottom:321.552533pt;}
.y23{bottom:324.974520pt;}
.y9c{bottom:328.131600pt;}
.ydd{bottom:332.868267pt;}
.y81{bottom:334.338667pt;}
.y49{bottom:335.365600pt;}
.y123{bottom:335.367733pt;}
.y112{bottom:335.368800pt;}
.y17d{bottom:336.052133pt;}
.y141{bottom:336.056400pt;}
.y1a4{bottom:336.336000pt;}
.y165{bottom:337.718267pt;}
.ybd{bottom:339.419733pt;}
.y9b{bottom:349.136800pt;}
.ydc{bottom:350.734933pt;}
.y80{bottom:352.205333pt;}
.y48{bottom:353.232800pt;}
.y60{bottom:353.233867pt;}
.y122{bottom:353.234400pt;}
.y111{bottom:353.235467pt;}
.y140{bottom:353.923067pt;}
.yfc{bottom:354.197867pt;}
.y1a3{bottom:354.202667pt;}
.y164{bottom:355.584933pt;}
.ybc{bottom:357.286400pt;}
.y22{bottom:361.738533pt;}
.y9a{bottom:367.136800pt;}
.ydb{bottom:368.601600pt;}
.y18a{bottom:371.099467pt;}
.ya9{bottom:371.100000pt;}
.y5f{bottom:371.100533pt;}
.y110{bottom:371.102133pt;}
.y17c{bottom:371.785467pt;}
.y13f{bottom:371.789733pt;}
.yfb{bottom:372.065067pt;}
.y1a2{bottom:372.069333pt;}
.y163{bottom:373.452133pt;}
.ybb{bottom:375.153067pt;}
.yda{bottom:386.468267pt;}
.y7f{bottom:387.938667pt;}
.y99{bottom:388.142000pt;}
.y47{bottom:388.966133pt;}
.y5e{bottom:388.967200pt;}
.y121{bottom:388.967733pt;}
.y10f{bottom:388.968800pt;}
.y17b{bottom:389.652667pt;}
.y13e{bottom:389.656400pt;}
.yfa{bottom:389.931733pt;}
.y1a1{bottom:389.936000pt;}
.y162{bottom:391.318800pt;}
.yd9{bottom:404.334933pt;}
.y7e{bottom:405.805333pt;}
.y46{bottom:406.833333pt;}
.y5d{bottom:406.834400pt;}
.y10e{bottom:406.835467pt;}
.y17a{bottom:407.519867pt;}
.y13d{bottom:407.523067pt;}
.yf9{bottom:407.798933pt;}
.y1a0{bottom:407.802667pt;}
.y98{bottom:409.147200pt;}
.y161{bottom:409.186000pt;}
.yba{bottom:410.886400pt;}
.y21{bottom:413.620800pt;}
.yd8{bottom:422.201600pt;}
.y7d{bottom:423.672000pt;}
.y189{bottom:424.700000pt;}
.y45{bottom:424.700533pt;}
.y5c{bottom:424.701067pt;}
.y10d{bottom:424.702133pt;}
.y179{bottom:425.386533pt;}
.y13c{bottom:425.389733pt;}
.yf8{bottom:425.666133pt;}
.y19f{bottom:425.669333pt;}
.yb9{bottom:428.753600pt;}
.y20{bottom:429.620800pt;}
.y97{bottom:430.152400pt;}
.ya{bottom:433.064000pt;}
.yd7{bottom:440.068267pt;}
.y160{bottom:440.385467pt;}
.y7c{bottom:441.538667pt;}
.y44{bottom:442.567200pt;}
.y5b{bottom:442.567733pt;}
.y10c{bottom:442.568800pt;}
.y13b{bottom:443.256400pt;}
.yf7{bottom:443.532800pt;}
.y19e{bottom:443.536000pt;}
.y1f{bottom:445.620800pt;}
.yb8{bottom:446.620800pt;}
.y96{bottom:451.157600pt;}
.yd6{bottom:457.934933pt;}
.y15f{bottom:458.252667pt;}
.y7b{bottom:459.405333pt;}
.y43{bottom:460.433867pt;}
.y5a{bottom:460.434400pt;}
.y120{bottom:460.434933pt;}
.y10b{bottom:460.435467pt;}
.y178{bottom:461.119867pt;}
.y13a{bottom:461.123067pt;}
.yf6{bottom:461.399467pt;}
.y19d{bottom:461.402667pt;}
.y1e{bottom:461.620800pt;}
.yb7{bottom:464.488000pt;}
.y8{bottom:470.617333pt;}
.y95{bottom:472.162800pt;}
.yd5{bottom:475.801600pt;}
.y15e{bottom:476.119867pt;}
.y7a{bottom:477.272000pt;}
.y1d{bottom:477.620800pt;}
.y42{bottom:478.301067pt;}
.y59{bottom:478.301600pt;}
.y10a{bottom:478.302133pt;}
.y177{bottom:478.987067pt;}
.y139{bottom:478.989733pt;}
.yf5{bottom:479.266667pt;}
.y19c{bottom:479.269333pt;}
.yb6{bottom:482.354667pt;}
.y7{bottom:488.484000pt;}
.y94{bottom:493.168000pt;}
.y1c{bottom:493.620800pt;}
.yd4{bottom:493.668267pt;}
.y15d{bottom:493.987067pt;}
.y79{bottom:495.138667pt;}
.y41{bottom:496.167733pt;}
.ya8{bottom:496.168267pt;}
.y58{bottom:496.168800pt;}
.y176{bottom:496.854267pt;}
.y138{bottom:496.856400pt;}
.yf4{bottom:497.133867pt;}
.y19b{bottom:497.136000pt;}
.yb5{bottom:500.221867pt;}
.y6{bottom:506.350667pt;}
.y1b{bottom:509.620800pt;}
.yd3{bottom:511.534933pt;}
.y15c{bottom:511.854267pt;}
.y78{bottom:513.005333pt;}
.y188{bottom:514.034400pt;}
.y40{bottom:514.034933pt;}
.y57{bottom:514.035467pt;}
.y175{bottom:514.721467pt;}
.y137{bottom:514.723067pt;}
.yf3{bottom:515.000533pt;}
.y19a{bottom:515.002667pt;}
.y5{bottom:524.217333pt;}
.y1a{bottom:525.620800pt;}
.yd2{bottom:529.401600pt;}
.y15b{bottom:529.720400pt;}
.y77{bottom:530.872000pt;}
.y187{bottom:531.901600pt;}
.y3f{bottom:531.902133pt;}
.y56{bottom:531.902667pt;}
.y174{bottom:532.588133pt;}
.y136{bottom:532.589733pt;}
.yf2{bottom:532.867200pt;}
.y199{bottom:532.869333pt;}
.yb4{bottom:535.955200pt;}
.y19{bottom:541.620800pt;}
.yd1{bottom:547.268800pt;}
.y76{bottom:548.738667pt;}
.y93{bottom:549.768267pt;}
.y109{bottom:549.768800pt;}
.y3e{bottom:549.769333pt;}
.y55{bottom:549.769867pt;}
.y173{bottom:550.454800pt;}
.y135{bottom:550.456400pt;}
.yf1{bottom:550.734400pt;}
.y198{bottom:550.736000pt;}
.yb3{bottom:553.822400pt;}
.y18{bottom:557.620800pt;}
.yd0{bottom:565.135467pt;}
.y75{bottom:566.605333pt;}
.y92{bottom:567.634400pt;}
.y186{bottom:567.634933pt;}
.y3d{bottom:567.635467pt;}
.y54{bottom:567.636000pt;}
.y172{bottom:568.322000pt;}
.y134{bottom:568.323067pt;}
.yf0{bottom:568.601600pt;}
.y197{bottom:568.603200pt;}
.yb2{bottom:571.689067pt;}
.y17{bottom:573.620800pt;}
.y15a{bottom:577.456400pt;}
.ycf{bottom:583.002133pt;}
.y74{bottom:584.472000pt;}
.y91{bottom:585.501600pt;}
.ya7{bottom:585.502133pt;}
.y3c{bottom:585.502667pt;}
.y171{bottom:586.189200pt;}
.y133{bottom:586.189733pt;}
.yef{bottom:586.467733pt;}
.y196{bottom:586.469333pt;}
.y159{bottom:595.323600pt;}
.y150{bottom:595.327333pt;}
.y73{bottom:602.338667pt;}
.y90{bottom:603.368267pt;}
.yb1{bottom:603.368800pt;}
.y3b{bottom:603.369333pt;}
.y132{bottom:604.056400pt;}
.yee{bottom:604.334933pt;}
.y195{bottom:604.336000pt;}
.y16{bottom:605.620800pt;}
.y158{bottom:613.190800pt;}
.y14f{bottom:613.194533pt;}
.y4{bottom:617.674667pt;}
.yce{bottom:618.735467pt;}
.y72{bottom:620.205333pt;}
.y8f{bottom:621.235467pt;}
.y3a{bottom:621.236000pt;}
.y53{bottom:621.236533pt;}
.y15{bottom:621.620800pt;}
.y131{bottom:621.923067pt;}
.yed{bottom:622.202133pt;}
.y194{bottom:622.202667pt;}
.y157{bottom:631.058000pt;}
.y14e{bottom:631.061200pt;}
.ycd{bottom:636.602667pt;}
.y14{bottom:637.620800pt;}
.y71{bottom:638.072000pt;}
.y8e{bottom:639.102667pt;}
.y39{bottom:639.103200pt;}
.y52{bottom:639.103733pt;}
.y130{bottom:639.789733pt;}
.yec{bottom:640.068800pt;}
.y193{bottom:640.069333pt;}
.y156{bottom:648.925200pt;}
.y14d{bottom:648.927867pt;}
.y3{bottom:651.008000pt;}
.y13{bottom:653.620800pt;}
.ycc{bottom:654.469333pt;}
.y70{bottom:655.938667pt;}
.y8d{bottom:656.968800pt;}
.y38{bottom:656.969333pt;}
.y51{bottom:656.969867pt;}
.y192{bottom:657.936533pt;}
.y170{bottom:658.687067pt;}
.y155{bottom:666.792400pt;}
.y14c{bottom:666.794533pt;}
.y12{bottom:669.620800pt;}
.ycb{bottom:672.336000pt;}
.y6f{bottom:673.805333pt;}
.y37{bottom:674.836000pt;}
.yeb{bottom:675.802133pt;}
.y191{bottom:675.802667pt;}
.y12f{bottom:676.553733pt;}
.y154{bottom:684.659600pt;}
.y14b{bottom:684.661733pt;}
.y11{bottom:685.620800pt;}
.y6e{bottom:691.672000pt;}
.y108{bottom:692.702667pt;}
.y36{bottom:692.703200pt;}
.yea{bottom:693.669333pt;}
.y10{bottom:701.620800pt;}
.y153{bottom:702.526800pt;}
.y14a{bottom:702.528400pt;}
.y6d{bottom:709.538667pt;}
.y35{bottom:710.569333pt;}
.yca{bottom:711.536533pt;}
.yf{bottom:717.620800pt;}
.y152{bottom:720.393467pt;}
.y149{bottom:720.395600pt;}
.y2{bottom:722.137333pt;}
.y6c{bottom:727.405333pt;}
.y34{bottom:728.436533pt;}
.yc9{bottom:729.402667pt;}
.ye{bottom:733.620800pt;}
.y151{bottom:738.260667pt;}
.y148{bottom:738.262800pt;}
.y33{bottom:746.302667pt;}
.yc8{bottom:747.269867pt;}
.yd{bottom:749.620800pt;}
.y1{bottom:755.470667pt;}
.y147{bottom:759.268000pt;}
.y32{bottom:764.169333pt;}
.yc7{bottom:765.136000pt;}
.yc{bottom:765.620800pt;}
.y31{bottom:816.248000pt;}
.hc{height:28.292592pt;}
.h5{height:36.821333pt;}
.hd{height:41.424000pt;}
.h6{height:41.946667pt;}
.h9{height:43.725333pt;}
.h8{height:43.978667pt;}
.h7{height:46.026667pt;}
.h10{height:46.293333pt;}
.h4{height:50.629333pt;}
.hf{height:50.922667pt;}
.hb{height:54.115248pt;}
.he{height:54.117328pt;}
.ha{height:54.315595pt;}
.h2{height:92.160000pt;}
.h3{height:92.586667pt;}
.h0{height:869.292000pt;}
.h1{height:869.333333pt;}
.w1{width:604.666667pt;}
.w0{width:604.720000pt;}
.x0{left:0.000000pt;}
.xc{left:90.709067pt;}
.x10{left:96.578133pt;}
.x2{left:105.032800pt;}
.xb{left:109.606667pt;}
.xf{left:149.841333pt;}
.xe{left:151.181880pt;}
.x1{left:154.112000pt;}
.x9{left:171.148000pt;}
.x3{left:176.364000pt;}
.x7{left:183.368267pt;}
.x8{left:191.678667pt;}
.x5{left:212.795333pt;}
.x4{left:237.442667pt;}
.xd{left:248.937333pt;}
.x6{left:254.105733pt;}
.x11{left:284.094133pt;}
.xa{left:292.362667pt;}
.x12{left:308.031467pt;}
}




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