
    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_9c9c5ff68a3a13bf8665a915.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8e442dc91a8c9ed8a74b9903.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_02cd01ab444928e3531cd5f9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_2341853dc6b9781604db768e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_478c816f84d1909d69f48e85.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_633b9bb41e00c367a6a1c143.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_5e772510d9918d38820bd245.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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;}
.m4{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.245145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245145,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245150,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls35{letter-spacing:-0.780000px;}
.ls24{letter-spacing:-0.750000px;}
.ls2c{letter-spacing:-0.516000px;}
.ls4a{letter-spacing:-0.513600px;}
.ls9d{letter-spacing:-0.484200px;}
.ls67{letter-spacing:-0.476400px;}
.ls5a{letter-spacing:-0.453000px;}
.lsa2{letter-spacing:-0.452400px;}
.ls58{letter-spacing:-0.426000px;}
.ls2f{letter-spacing:-0.422400px;}
.ls8b{letter-spacing:-0.409800px;}
.ls5e{letter-spacing:-0.371400px;}
.ls5b{letter-spacing:-0.369000px;}
.ls71{letter-spacing:-0.355200px;}
.ls86{letter-spacing:-0.343800px;}
.ls79{letter-spacing:-0.340800px;}
.ls4d{letter-spacing:-0.339600px;}
.ls91{letter-spacing:-0.312600px;}
.ls31{letter-spacing:-0.308400px;}
.ls50{letter-spacing:-0.306600px;}
.ls37{letter-spacing:-0.303000px;}
.ls3a{letter-spacing:-0.299400px;}
.ls4b{letter-spacing:-0.291600px;}
.ls55{letter-spacing:-0.285600px;}
.ls3f{letter-spacing:-0.246600px;}
.ls47{letter-spacing:-0.243600px;}
.ls34{letter-spacing:-0.240600px;}
.ls39{letter-spacing:-0.232800px;}
.ls7a{letter-spacing:-0.216600px;}
.ls54{letter-spacing:-0.186600px;}
.ls4c{letter-spacing:-0.178800px;}
.ls9e{letter-spacing:-0.162000px;}
.ls46{letter-spacing:-0.160800px;}
.ls72{letter-spacing:-0.157200px;}
.ls6b{letter-spacing:-0.156000px;}
.ls6c{letter-spacing:-0.154200px;}
.ls41{letter-spacing:-0.153600px;}
.ls1d{letter-spacing:-0.135000px;}
.ls21{letter-spacing:-0.130800px;}
.ls20{letter-spacing:-0.123000px;}
.ls60{letter-spacing:-0.121200px;}
.ls7d{letter-spacing:-0.116400px;}
.ls2e{letter-spacing:-0.114600px;}
.ls23{letter-spacing:-0.113400px;}
.ls2a{letter-spacing:-0.094800px;}
.ls52{letter-spacing:-0.093000px;}
.ls56{letter-spacing:-0.092400px;}
.ls1c{letter-spacing:-0.090000px;}
.ls38{letter-spacing:-0.084600px;}
.ls5f{letter-spacing:-0.067200px;}
.ls7b{letter-spacing:-0.066000px;}
.lsa5{letter-spacing:-0.063600px;}
.ls43{letter-spacing:-0.060600px;}
.ls29{letter-spacing:-0.052800px;}
.ls70{letter-spacing:-0.048960px;}
.ls59{letter-spacing:-0.039000px;}
.ls8e{letter-spacing:-0.038880px;}
.ls8f{letter-spacing:-0.037800px;}
.ls75{letter-spacing:-0.023400px;}
.ls90{letter-spacing:-0.018360px;}
.lsa1{letter-spacing:-0.014760px;}
.ls87{letter-spacing:-0.013320px;}
.ls3b{letter-spacing:-0.011400px;}
.lsa0{letter-spacing:-0.011160px;}
.ls3e{letter-spacing:-0.009000px;}
.ls6a{letter-spacing:-0.008280px;}
.ls7f{letter-spacing:-0.007560px;}
.ls9f{letter-spacing:-0.006120px;}
.ls26{letter-spacing:-0.006000px;}
.ls33{letter-spacing:-0.003000px;}
.ls1a{letter-spacing:0.000000px;}
.ls5d{letter-spacing:0.001200px;}
.ls6d{letter-spacing:0.002886px;}
.ls81{letter-spacing:0.020160px;}
.ls49{letter-spacing:0.020400px;}
.ls5{letter-spacing:0.024000px;}
.ls6e{letter-spacing:0.041760px;}
.ls62{letter-spacing:0.045360px;}
.ls27{letter-spacing:0.045600px;}
.ls84{letter-spacing:0.047520px;}
.ls63{letter-spacing:0.048960px;}
.ls36{letter-spacing:0.051600px;}
.ls73{letter-spacing:0.051840px;}
.ls80{letter-spacing:0.053280px;}
.ls3d{letter-spacing:0.053400px;}
.ls30{letter-spacing:0.057000px;}
.ls8a{letter-spacing:0.057600px;}
.ls9{letter-spacing:0.060600px;}
.ls32{letter-spacing:0.064800px;}
.ls4{letter-spacing:0.065520px;}
.ls8{letter-spacing:0.068400px;}
.ls61{letter-spacing:0.074160px;}
.ls42{letter-spacing:0.074400px;}
.ls1e{letter-spacing:0.081600px;}
.ls1f{letter-spacing:0.088800px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls40{letter-spacing:0.098400px;}
.ls64{letter-spacing:0.108600px;}
.ls68{letter-spacing:0.111000px;}
.ls48{letter-spacing:0.113400px;}
.ls7c{letter-spacing:0.115800px;}
.ls3c{letter-spacing:0.116400px;}
.ls74{letter-spacing:0.118200px;}
.ls76{letter-spacing:0.118440px;}
.ls2d{letter-spacing:0.119400px;}
.ls65{letter-spacing:0.124800px;}
.ls44{letter-spacing:0.127200px;}
.ls13{letter-spacing:0.133200px;}
.ls7e{letter-spacing:0.143400px;}
.ls1b{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.148200px;}
.ls22{letter-spacing:0.155400px;}
.ls66{letter-spacing:0.166200px;}
.ls85{letter-spacing:0.170400px;}
.ls51{letter-spacing:0.173400px;}
.ls89{letter-spacing:0.173520px;}
.lsd{letter-spacing:0.180000px;}
.ls57{letter-spacing:0.180600px;}
.ls4f{letter-spacing:0.181200px;}
.ls10{letter-spacing:0.181440px;}
.ls53{letter-spacing:0.199200px;}
.ls83{letter-spacing:0.200880px;}
.ls69{letter-spacing:0.201000px;}
.ls4e{letter-spacing:0.206400px;}
.lsa{letter-spacing:0.206640px;}
.ls92{letter-spacing:0.243720px;}
.ls25{letter-spacing:0.264600px;}
.ls7{letter-spacing:0.267480px;}
.ls16{letter-spacing:0.293040px;}
.ls11{letter-spacing:0.310320px;}
.ls5c{letter-spacing:0.314400px;}
.ls0{letter-spacing:0.360000px;}
.ls88{letter-spacing:0.376200px;}
.ls28{letter-spacing:0.405600px;}
.lsa3{letter-spacing:0.413400px;}
.ls97{letter-spacing:0.428400px;}
.ls8c{letter-spacing:0.458280px;}
.ls19{letter-spacing:0.471000px;}
.ls8d{letter-spacing:0.476280px;}
.ls78{letter-spacing:0.487080px;}
.ls12{letter-spacing:0.533520px;}
.ls2b{letter-spacing:0.537000px;}
.ls96{letter-spacing:0.540000px;}
.ls45{letter-spacing:0.541200px;}
.lsc{letter-spacing:0.541440px;}
.ls82{letter-spacing:0.560880px;}
.ls93{letter-spacing:0.562320px;}
.lsb{letter-spacing:0.653760px;}
.ls6f{letter-spacing:0.836280px;}
.ls94{letter-spacing:2.973600px;}
.ls95{letter-spacing:3.693600px;}
.lsf{letter-spacing:4.053600px;}
.lse{letter-spacing:4.773600px;}
.ls9b{letter-spacing:6.573600px;}
.ls14{letter-spacing:7.293600px;}
.ls9a{letter-spacing:7.653600px;}
.ls18{letter-spacing:13.946400px;}
.ls99{letter-spacing:14.133600px;}
.ls98{letter-spacing:14.493600px;}
.ls15{letter-spacing:17.013600px;}
.ls17{letter-spacing:17.373600px;}
.ls3{letter-spacing:25.826400px;}
.lsa4{letter-spacing:47.726640px;}
.ls77{letter-spacing:60.213600px;}
.ls9c{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws7{word-spacing:-18.609000px;}
.ws4{word-spacing:-18.542400px;}
.ws2{word-spacing:-18.535200px;}
.ws3{word-spacing:-18.453600px;}
.ws5{word-spacing:-18.330600px;}
.ws6{word-spacing:-18.322800px;}
.ws8{word-spacing:-17.703600px;}
.wsc{word-spacing:-14.899200px;}
.ws46{word-spacing:-14.808000px;}
.ws9{word-spacing:-14.758200px;}
.wsb{word-spacing:-14.539200px;}
.ws47{word-spacing:-14.494800px;}
.wsa{word-spacing:-14.493600px;}
.wsd{word-spacing:-14.440800px;}
.ws4c{word-spacing:-14.372400px;}
.ws2e{word-spacing:-13.767600px;}
.ws10{word-spacing:-13.763400px;}
.ws79{word-spacing:-13.639800px;}
.ws6c{word-spacing:-13.602600px;}
.ws37{word-spacing:-13.432800px;}
.ws53{word-spacing:-13.427400px;}
.ws3c{word-spacing:-13.425600px;}
.ws38{word-spacing:-13.407600px;}
.ws41{word-spacing:-13.407000px;}
.ws3a{word-spacing:-13.399800px;}
.ws69{word-spacing:-13.396800px;}
.ws50{word-spacing:-13.392600px;}
.ws1f{word-spacing:-13.374600px;}
.ws64{word-spacing:-13.369800px;}
.ws3f{word-spacing:-13.359600px;}
.ws2d{word-spacing:-13.353600px;}
.ws4f{word-spacing:-13.351200px;}
.ws12{word-spacing:-13.345800px;}
.ws5d{word-spacing:-13.344600px;}
.ws25{word-spacing:-13.342800px;}
.ws62{word-spacing:-13.342200px;}
.ws31{word-spacing:-13.339800px;}
.ws52{word-spacing:-13.337400px;}
.ws4e{word-spacing:-13.335000px;}
.ws29{word-spacing:-13.324800px;}
.ws2a{word-spacing:-13.300800px;}
.ws21{word-spacing:-13.294800px;}
.ws19{word-spacing:-13.291200px;}
.ws23{word-spacing:-13.287000px;}
.ws6d{word-spacing:-13.284000px;}
.ws16{word-spacing:-13.283400px;}
.ws26{word-spacing:-13.279800px;}
.ws66{word-spacing:-13.279680px;}
.ws5c{word-spacing:-13.278240px;}
.ws1d{word-spacing:-13.278000px;}
.ws4d{word-spacing:-13.275360px;}
.ws68{word-spacing:-13.273920px;}
.ws58{word-spacing:-13.268160px;}
.ws18{word-spacing:-13.250400px;}
.ws32{word-spacing:-13.246800px;}
.ws67{word-spacing:-13.246560px;}
.ws57{word-spacing:-13.229286px;}
.ws13{word-spacing:-13.226400px;}
.ws1a{word-spacing:-13.223400px;}
.ws75{word-spacing:-13.220280px;}
.ws65{word-spacing:-13.218840px;}
.ws54{word-spacing:-13.218120px;}
.ws27{word-spacing:-13.217400px;}
.ws76{word-spacing:-13.215240px;}
.ws24{word-spacing:-13.215000px;}
.ws6b{word-spacing:-13.213080px;}
.ws77{word-spacing:-13.211640px;}
.ws71{word-spacing:-13.208040px;}
.ws5e{word-spacing:-13.203000px;}
.ws70{word-spacing:-13.188600px;}
.ws6f{word-spacing:-13.187520px;}
.ws43{word-spacing:-13.187400px;}
.ws59{word-spacing:-13.177440px;}
.ws2c{word-spacing:-13.165800px;}
.ws7a{word-spacing:-13.162800px;}
.ws61{word-spacing:-13.160400px;}
.ws49{word-spacing:-13.159200px;}
.ws40{word-spacing:-13.134000px;}
.ws3b{word-spacing:-13.133400px;}
.wsf{word-spacing:-13.131600px;}
.ws14{word-spacing:-13.111800px;}
.ws63{word-spacing:-13.110000px;}
.ws2b{word-spacing:-13.072800px;}
.ws56{word-spacing:-13.072200px;}
.ws55{word-spacing:-13.070400px;}
.ws5b{word-spacing:-13.069200px;}
.ws2f{word-spacing:-13.065600px;}
.ws74{word-spacing:-13.064400px;}
.ws35{word-spacing:-13.047600px;}
.ws3d{word-spacing:-13.039800px;}
.ws60{word-spacing:-13.009800px;}
.ws20{word-spacing:-12.993600px;}
.ws1b{word-spacing:-12.985800px;}
.ws30{word-spacing:-12.982800px;}
.ws28{word-spacing:-12.979800px;}
.ws3e{word-spacing:-12.940800px;}
.ws34{word-spacing:-12.934800px;}
.ws22{word-spacing:-12.927000px;}
.ws1e{word-spacing:-12.923400px;}
.ws39{word-spacing:-12.919800px;}
.ws17{word-spacing:-12.918000px;}
.ws72{word-spacing:-12.913800px;}
.ws36{word-spacing:-12.886800px;}
.ws5f{word-spacing:-12.885600px;}
.ws6a{word-spacing:-12.882600px;}
.ws5a{word-spacing:-12.871200px;}
.ws45{word-spacing:-12.857400px;}
.ws48{word-spacing:-12.855000px;}
.ws6e{word-spacing:-12.816600px;}
.ws15{word-spacing:-12.804000px;}
.ws42{word-spacing:-12.800400px;}
.ws78{word-spacing:-12.774000px;}
.ws44{word-spacing:-12.773400px;}
.ws51{word-spacing:-12.750000px;}
.ws73{word-spacing:-12.742200px;}
.ws33{word-spacing:-12.712800px;}
.ws11{word-spacing:-12.710400px;}
.ws1c{word-spacing:-12.446400px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wse{word-spacing:-8.553600px;}
.ws4b{word-spacing:0.000000px;}
.ws4a{word-spacing:4.304880px;}
._18{margin-left:-9.014640px;}
._17{margin-left:-7.260360px;}
._16{margin-left:-5.686560px;}
._9{margin-left:-4.357920px;}
._5{margin-left:-3.351840px;}
._6{margin-left:-2.351400px;}
._0{margin-left:-1.212000px;}
._7{width:1.389480px;}
._8{width:3.065400px;}
._4{width:4.876200px;}
._14{width:6.111000px;}
._c{width:7.123080px;}
._a{width:8.501160px;}
._b{width:9.643560px;}
._15{width:11.242440px;}
._11{width:14.789400px;}
._d{width:16.189800px;}
._e{width:17.203080px;}
._f{width:19.041480px;}
._10{width:21.036720px;}
._12{width:22.184400px;}
._13{width:23.446199px;}
._3{width:25.418856px;}
._1{width:26.962356px;}
._2{width:28.392048px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs8{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.ybb{bottom:6.030000px;}
.y5e{bottom:7.740000px;}
.y3a{bottom:7.830000px;}
.y81{bottom:7.860000px;}
.y3d{bottom:7.920000px;}
.yda{bottom:7.950000px;}
.ybc{bottom:13.950000px;}
.y57{bottom:16.110000px;}
.y8d{bottom:25.470000px;}
.y121{bottom:29.910000px;}
.ye8{bottom:29.970000px;}
.yb9{bottom:31.590000px;}
.y55{bottom:33.660000px;}
.y12f{bottom:35.190000px;}
.y6a{bottom:35.280000px;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.yc8{bottom:112.080000px;}
.y12d{bottom:112.620000px;}
.ya2{bottom:115.500000px;}
.y10a{bottom:117.120000px;}
.y7c{bottom:119.550000px;}
.y109{bottom:129.360000px;}
.y7b{bottom:131.790000px;}
.y52{bottom:137.640000px;}
.yc7{bottom:139.440000px;}
.y29{bottom:141.600000px;}
.ya1{bottom:142.860000px;}
.ye6{bottom:145.740000px;}
.y12c{bottom:148.170000px;}
.y151{bottom:155.190000px;}
.y108{bottom:156.630000px;}
.y7a{bottom:157.620000px;}
.y28{bottom:159.240000px;}
.yc6{bottom:166.800000px;}
.ya0{bottom:170.130000px;}
.y150{bottom:172.830000px;}
.y51{bottom:173.190000px;}
.y27{bottom:176.790000px;}
.ye5{bottom:181.290000px;}
.y12b{bottom:183.090000px;}
.y79{bottom:183.450000px;}
.y107{bottom:183.990000px;}
.y14f{bottom:190.380000px;}
.yc5{bottom:194.160000px;}
.y26{bottom:194.340000px;}
.y12a{bottom:195.240000px;}
.y9f{bottom:197.490000px;}
.ye4{bottom:198.930000px;}
.y50{bottom:208.740000px;}
.y78{bottom:209.280000px;}
.y106{bottom:211.350000px;}
.ye3{bottom:216.480000px;}
.y14e{bottom:216.930000px;}
.yc4{bottom:221.430000px;}
.y129{bottom:222.600000px;}
.y9e{bottom:224.850000px;}
.y25{bottom:229.980000px;}
.y14d{bottom:234.570000px;}
.y77{bottom:235.110000px;}
.y105{bottom:238.620000px;}
.y4f{bottom:244.380000px;}
.y24{bottom:247.530000px;}
.yc3{bottom:248.790000px;}
.y128{bottom:249.870000px;}
.ye2{bottom:251.310000px;}
.y9d{bottom:252.120000px;}
.y75{bottom:260.940000px;}
.y14c{bottom:261.480000px;}
.ye1{bottom:263.550000px;}
.y23{bottom:265.170000px;}
.y104{bottom:265.980000px;}
.y127{bottom:277.230000px;}
.y9c{bottom:279.480000px;}
.y4e{bottom:279.930000px;}
.y22{bottom:282.720000px;}
.y76{bottom:286.770000px;}
.ye0{bottom:290.820000px;}
.y103{bottom:293.340000px;}
.y4d{bottom:297.480000px;}
.y21{bottom:300.270000px;}
.y126{bottom:304.590000px;}
.y9b{bottom:306.840000px;}
.y14b{bottom:309.720000px;}
.y4c{bottom:315.120000px;}
.y20{bottom:317.910000px;}
.ydf{bottom:318.180000px;}
.y102{bottom:320.700000px;}
.y125{bottom:331.950000px;}
.yc2{bottom:332.310000px;}
.y74{bottom:333.930000px;}
.y9a{bottom:334.200000px;}
.y1f{bottom:335.460000px;}
.y14a{bottom:336.630000px;}
.yc1{bottom:344.550000px;}
.yde{bottom:345.540000px;}
.y101{bottom:347.970000px;}
.y4b{bottom:349.950000px;}
.y1e{bottom:353.100000px;}
.y124{bottom:359.220000px;}
.y99{bottom:361.470000px;}
.y4a{bottom:362.190000px;}
.y73{bottom:369.570000px;}
.yc0{bottom:370.020000px;}
.ydd{bottom:372.810000px;}
.y149{bottom:373.620000px;}
.y100{bottom:375.330000px;}
.y1d{bottom:380.010000px;}
.y123{bottom:386.580000px;}
.y72{bottom:387.120000px;}
.y98{bottom:388.830000px;}
.y49{bottom:389.460000px;}
.ybf{bottom:395.490000px;}
.y148{bottom:400.530000px;}
.yff{bottom:402.690000px;}
.y122{bottom:413.940000px;}
.y16d{bottom:415.470000px;}
.y97{bottom:416.190000px;}
.y48{bottom:416.820000px;}
.ybe{bottom:421.050000px;}
.ydc{bottom:421.590000px;}
.y71{bottom:421.950000px;}
.y1c{bottom:428.610000px;}
.yfe{bottom:430.050000px;}
.y16c{bottom:433.110000px;}
.y70{bottom:434.190000px;}
.y147{bottom:437.610000px;}
.y120{bottom:441.300000px;}
.y96{bottom:443.550000px;}
.y47{bottom:444.180000px;}
.ybd{bottom:446.520000px;}
.y16b{bottom:450.660000px;}
.y146{bottom:455.160000px;}
.ydb{bottom:456.420000px;}
.yfd{bottom:457.320000px;}
.y6f{bottom:461.550000px;}
.y1b{bottom:465.600000px;}
.yd9{bottom:468.570000px;}
.y95{bottom:470.850000px;}
.y46{bottom:471.480000px;}
.yb8{bottom:472.020000px;}
.y145{bottom:472.830000px;}
.y16a{bottom:477.330000px;}
.y1a{bottom:483.180000px;}
.yfc{bottom:484.710000px;}
.y6e{bottom:488.850000px;}
.yd8{bottom:495.960000px;}
.yba{bottom:497.580000px;}
.y94{bottom:498.210000px;}
.y144{bottom:499.650000px;}
.y19{bottom:500.820000px;}
.y169{bottom:503.880000px;}
.yfb{bottom:512.070000px;}
.y6d{bottom:516.210000px;}
.y18{bottom:518.370000px;}
.y45{bottom:520.260000px;}
.yd7{bottom:523.320000px;}
.y93{bottom:525.570000px;}
.y168{bottom:530.430000px;}
.y17{bottom:535.920000px;}
.y143{bottom:537.000000px;}
.y11f{bottom:538.620000px;}
.yfa{bottom:539.340000px;}
.y6c{bottom:543.570000px;}
.yb7{bottom:544.380000px;}
.yd6{bottom:550.590000px;}
.y92{bottom:552.840000px;}
.y16{bottom:553.560000px;}
.y44{bottom:555.810000px;}
.y167{bottom:557.070000px;}
.yf9{bottom:566.700000px;}
.y69{bottom:570.840000px;}
.yb6{bottom:571.020000px;}
.y15{bottom:571.110000px;}
.y43{bottom:573.360000px;}
.y11e{bottom:574.260000px;}
.y166{bottom:574.620000px;}
.yd5{bottom:577.950000px;}
.y91{bottom:580.200000px;}
.y142{bottom:585.330000px;}
.y14{bottom:588.750000px;}
.y42{bottom:591.000000px;}
.y11d{bottom:591.810000px;}
.yf8{bottom:594.060000px;}
.y6b{bottom:598.200000px;}
.y165{bottom:601.260000px;}
.y141{bottom:602.880000px;}
.yd4{bottom:605.310000px;}
.y13{bottom:606.300000px;}
.yb5{bottom:606.570000px;}
.y90{bottom:607.560000px;}
.y41{bottom:608.550000px;}
.y11c{bottom:609.450000px;}
.y164{bottom:618.810000px;}
.y140{bottom:620.520000px;}
.yf7{bottom:621.420000px;}
.y12{bottom:623.850000px;}
.yb4{bottom:624.210000px;}
.yd3{bottom:632.670000px;}
.y8f{bottom:634.920000px;}
.y13f{bottom:638.070000px;}
.y11{bottom:641.490000px;}
.y40{bottom:643.380000px;}
.y11b{bottom:644.280000px;}
.y163{bottom:645.360000px;}
.y68{bottom:646.890000px;}
.yf6{bottom:648.690000px;}
.y3f{bottom:655.620000px;}
.y11a{bottom:656.430000px;}
.y10{bottom:659.040000px;}
.yd2{bottom:659.940000px;}
.y8e{bottom:662.190000px;}
.yb3{bottom:671.190000px;}
.y162{bottom:672.000000px;}
.y13e{bottom:673.260000px;}
.yf5{bottom:676.050000px;}
.yf{bottom:676.680000px;}
.y67{bottom:682.530000px;}
.y3e{bottom:682.890000px;}
.y119{bottom:683.790000px;}
.yd1{bottom:687.300000px;}
.y8c{bottom:689.550000px;}
.y13d{bottom:690.810000px;}
.ye{bottom:694.230000px;}
.yb2{bottom:698.550000px;}
.y66{bottom:700.080000px;}
.yf4{bottom:703.410000px;}
.y13c{bottom:708.450000px;}
.y3c{bottom:710.250000px;}
.y118{bottom:711.150000px;}
.yd0{bottom:714.660000px;}
.y161{bottom:716.190000px;}
.y65{bottom:717.630000px;}
.yd{bottom:721.140000px;}
.yb1{bottom:725.910000px;}
.y13b{bottom:726.000000px;}
.y64{bottom:735.270000px;}
.y3b{bottom:737.610000px;}
.y117{bottom:738.420000px;}
.ycf{bottom:742.020000px;}
.y160{bottom:742.740000px;}
.y13a{bottom:743.550000px;}
.yf3{bottom:752.100000px;}
.y8b{bottom:755.880000px;}
.y139{bottom:761.190000px;}
.y39{bottom:764.970000px;}
.y116{bottom:765.780000px;}
.yce{bottom:769.290000px;}
.yc{bottom:769.380000px;}
.y63{bottom:770.100000px;}
.yb0{bottom:774.600000px;}
.yf2{bottom:778.650000px;}
.y62{bottom:782.250000px;}
.y8a{bottom:782.430000px;}
.y138{bottom:788.100000px;}
.y115{bottom:793.140000px;}
.y15f{bottom:795.930000px;}
.yb{bottom:805.200000px;}
.y61{bottom:808.170000px;}
.yaf{bottom:810.150000px;}
.y38{bottom:813.660000px;}
.yf1{bottom:814.290000px;}
.y89{bottom:817.980000px;}
.y114{bottom:820.500000px;}
.y15e{bottom:822.480000px;}
.yae{bottom:827.790000px;}
.yf0{bottom:831.840000px;}
.y60{bottom:834.000000px;}
.y88{bottom:835.620000px;}
.y137{bottom:836.340000px;}
.y15d{bottom:840.030000px;}
.y37{bottom:840.210000px;}
.ya{bottom:841.200000px;}
.y113{bottom:847.770000px;}
.y87{bottom:853.170000px;}
.ycd{bottom:853.620000px;}
.y136{bottom:853.890000px;}
.y5f{bottom:859.830000px;}
.yad{bottom:863.340000px;}
.yef{bottom:866.670000px;}
.ycc{bottom:871.170000px;}
.y112{bottom:875.130000px;}
.y36{bottom:876.120000px;}
.yee{bottom:878.910000px;}
.yac{bottom:880.890000px;}
.y9{bottom:880.980000px;}
.y15c{bottom:884.220000px;}
.y5d{bottom:885.660000px;}
.y86{bottom:888.000000px;}
.ycb{bottom:888.810000px;}
.y8{bottom:895.200000px;}
.yab{bottom:898.530000px;}
.y7{bottom:898.980000px;}
.y85{bottom:900.240000px;}
.y135{bottom:900.960000px;}
.y15b{bottom:901.860000px;}
.y111{bottom:902.490000px;}
.yed{bottom:906.180000px;}
.y5c{bottom:911.490000px;}
.yaa{bottom:916.080000px;}
.y6{bottom:916.980000px;}
.yca{bottom:923.640000px;}
.y35{bottom:924.450000px;}
.y84{bottom:927.600000px;}
.y134{bottom:928.320000px;}
.y15a{bottom:928.410000px;}
.y110{bottom:929.850000px;}
.yec{bottom:933.540000px;}
.yc9{bottom:935.790000px;}
.y5b{bottom:937.320000px;}
.y34{bottom:942.000000px;}
.y159{bottom:945.960000px;}
.y5{bottom:949.290000px;}
.ya9{bottom:951.000000px;}
.y83{bottom:954.870000px;}
.y133{bottom:955.680000px;}
.y10f{bottom:957.120000px;}
.y33{bottom:959.550000px;}
.yeb{bottom:960.900000px;}
.y5a{bottom:963.150000px;}
.y158{bottom:972.600000px;}
.y32{bottom:977.190000px;}
.y82{bottom:982.230000px;}
.y132{bottom:982.950000px;}
.y10e{bottom:984.480000px;}
.y4{bottom:987.630000px;}
.yea{bottom:988.260000px;}
.y59{bottom:988.980000px;}
.y157{bottom:990.150000px;}
.ya8{bottom:990.510000px;}
.y31{bottom:994.740000px;}
.y80{bottom:1009.590000px;}
.y131{bottom:1010.340000px;}
.y10d{bottom:1011.870000px;}
.y3{bottom:1012.320000px;}
.y58{bottom:1014.840000px;}
.ye9{bottom:1015.560000px;}
.y156{bottom:1016.820000px;}
.ya7{bottom:1017.810000px;}
.y30{bottom:1029.960000px;}
.y155{bottom:1034.370000px;}
.y7f{bottom:1036.890000px;}
.y12e{bottom:1037.700000px;}
.y54{bottom:1040.670000px;}
.ye7{bottom:1042.920000px;}
.ya6{bottom:1045.170000px;}
.y2f{bottom:1056.870000px;}
.y10c{bottom:1060.560000px;}
.y154{bottom:1060.920000px;}
.y7e{bottom:1064.250000px;}
.y130{bottom:1064.970000px;}
.y56{bottom:1066.500000px;}
.ya5{bottom:1072.530000px;}
.y153{bottom:1078.560000px;}
.y10b{bottom:1087.110000px;}
.y7d{bottom:1091.610000px;}
.y152{bottom:1096.110000px;}
.ya4{bottom:1099.890000px;}
.y2e{bottom:1105.110000px;}
.y53{bottom:1113.750000px;}
.y2d{bottom:1122.750000px;}
.ya3{bottom:1127.160000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.h16{height:24.750000px;}
.h17{height:24.780000px;}
.h12{height:25.020000px;}
.h10{height:25.110000px;}
.h11{height:25.140000px;}
.hb{height:26.550000px;}
.he{height:26.580000px;}
.hc{height:26.640000px;}
.h18{height:26.670000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.hd{height:40.539023px;}
.h14{height:44.190000px;}
.h8{height:45.840938px;}
.h1a{height:48.630000px;}
.h19{height:48.690000px;}
.h15{height:50.310000px;}
.h7{height:50.902383px;}
.hf{height:50.940000px;}
.h1b{height:53.910000px;}
.h13{height:54.000000px;}
.h5{height:55.779258px;}
.h1c{height:61.793886px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w1a{width:35.820000px;}
.w2c{width:35.910000px;}
.wd{width:41.400000px;}
.w1c{width:43.740000px;}
.w2d{width:43.770000px;}
.w3{width:52.020000px;}
.wf{width:52.320000px;}
.w1f{width:52.380000px;}
.w20{width:63.120000px;}
.w13{width:65.070000px;}
.w14{width:65.610000px;}
.w3a{width:77.040000px;}
.w38{width:80.730000px;}
.w29{width:82.530000px;}
.w37{width:83.340000px;}
.w28{width:88.380000px;}
.wb{width:88.470000px;}
.w21{width:88.560000px;}
.w22{width:92.880000px;}
.w31{width:92.970000px;}
.w17{width:94.890000px;}
.w2a{width:94.980000px;}
.w30{width:102.330000px;}
.w12{width:109.350000px;}
.w1d{width:109.380000px;}
.wc{width:116.370000px;}
.w1e{width:118.980000px;}
.w25{width:119.070000px;}
.w35{width:120.990000px;}
.w19{width:126.270000px;}
.w8{width:126.630000px;}
.w23{width:126.810000px;}
.w9{width:126.900000px;}
.w24{width:126.990000px;}
.w1b{width:127.080000px;}
.w34{width:127.110000px;}
.w11{width:131.520000px;}
.we{width:137.520000px;}
.w5{width:137.550000px;}
.w18{width:148.050000px;}
.w39{width:150.600000px;}
.w2b{width:150.780000px;}
.w7{width:158.880000px;}
.w4{width:169.290000px;}
.w2e{width:176.880000px;}
.w32{width:207.660000px;}
.w33{width:208.020000px;}
.w2f{width:228.000000px;}
.w10{width:231.570000px;}
.wa{width:232.770000px;}
.w26{width:235.020000px;}
.w15{width:243.540000px;}
.w16{width:243.750000px;}
.w6{width:254.160000px;}
.w27{width:306.120000px;}
.w36{width:393.960000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.740000px;}
.x29{left:66.420000px;}
.x1{left:68.040000px;}
.x2a{left:69.750000px;}
.x14{left:77.130000px;}
.xf{left:81.180000px;}
.x23{left:84.510000px;}
.x10{left:90.450000px;}
.x56{left:111.239987px;}
.x3c{left:113.220000px;}
.x45{left:123.390000px;}
.x2b{left:131.130000px;}
.x52{left:133.740000px;}
.x36{left:138.780000px;}
.x4c{left:146.610000px;}
.x24{left:148.050000px;}
.x25{left:151.140000px;}
.x11{left:163.200000px;}
.x42{left:172.829987px;}
.xc{left:176.070000px;}
.x3b{left:191.099987px;}
.x30{left:194.249987px;}
.x43{left:199.470000px;}
.x1c{left:202.620000px;}
.x18{left:209.640000px;}
.x5{left:211.079987px;}
.x4b{left:216.929987px;}
.x53{left:255.450000px;}
.x7{left:266.430000px;}
.x12{left:290.910000px;}
.x31{left:303.330000px;}
.x26{left:307.650000px;}
.x37{left:316.380000px;}
.x9{left:319.170000px;}
.x1f{left:327.720000px;}
.x46{left:331.860000px;}
.x16{left:333.030000px;}
.x32{left:339.960000px;}
.x3d{left:341.940000px;}
.x38{left:353.010000px;}
.x4d{left:355.440000px;}
.xb{left:361.649987px;}
.x2c{left:366.870000px;}
.x47{left:368.400000px;}
.x3e{left:378.570000px;}
.x4e{left:391.980000px;}
.x54{left:421.050000px;}
.xd{left:430.950000px;}
.x19{left:442.020000px;}
.x1d{left:446.880000px;}
.x2e{left:450.210000px;}
.x20{left:455.520000px;}
.x33{left:467.760000px;}
.x17{left:471.360000px;}
.x39{left:480.810000px;}
.xa{left:489.270000px;}
.x48{left:496.200000px;}
.x21{left:499.980000px;}
.x3f{left:506.370000px;}
.x1b{left:507.930000px;}
.x34{left:512.250000px;}
.x4f{left:519.810000px;}
.x13{left:524.490000px;}
.x49{left:540.690000px;}
.x1e{left:542.580000px;}
.x2f{left:546.000000px;}
.x40{left:550.860000px;}
.x27{left:563.010000px;}
.x50{left:564.360000px;}
.x55{left:572.370000px;}
.x1a{left:574.260000px;}
.xe{left:590.550000px;}
.x44{left:600.810000px;}
.x22{left:610.170000px;}
.x15{left:613.680000px;}
.x35{left:622.410000px;}
.x3a{left:635.460000px;}
.x4a{left:650.850000px;}
.x28{left:652.290000px;}
.x51{left:653.640000px;}
.x41{left:660.930000px;}
.x2d{left:673.710000px;}
.x2{left:756.510000px;}
.x3{left:759.750000px;}
.x6{left:800.339987px;}
.x4{left:825.270000px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls35{letter-spacing:-0.693333pt;}
.ls24{letter-spacing:-0.666667pt;}
.ls2c{letter-spacing:-0.458667pt;}
.ls4a{letter-spacing:-0.456533pt;}
.ls9d{letter-spacing:-0.430400pt;}
.ls67{letter-spacing:-0.423467pt;}
.ls5a{letter-spacing:-0.402667pt;}
.lsa2{letter-spacing:-0.402133pt;}
.ls58{letter-spacing:-0.378667pt;}
.ls2f{letter-spacing:-0.375467pt;}
.ls8b{letter-spacing:-0.364267pt;}
.ls5e{letter-spacing:-0.330133pt;}
.ls5b{letter-spacing:-0.328000pt;}
.ls71{letter-spacing:-0.315733pt;}
.ls86{letter-spacing:-0.305600pt;}
.ls79{letter-spacing:-0.302933pt;}
.ls4d{letter-spacing:-0.301867pt;}
.ls91{letter-spacing:-0.277867pt;}
.ls31{letter-spacing:-0.274133pt;}
.ls50{letter-spacing:-0.272533pt;}
.ls37{letter-spacing:-0.269333pt;}
.ls3a{letter-spacing:-0.266133pt;}
.ls4b{letter-spacing:-0.259200pt;}
.ls55{letter-spacing:-0.253867pt;}
.ls3f{letter-spacing:-0.219200pt;}
.ls47{letter-spacing:-0.216533pt;}
.ls34{letter-spacing:-0.213867pt;}
.ls39{letter-spacing:-0.206933pt;}
.ls7a{letter-spacing:-0.192533pt;}
.ls54{letter-spacing:-0.165867pt;}
.ls4c{letter-spacing:-0.158933pt;}
.ls9e{letter-spacing:-0.144000pt;}
.ls46{letter-spacing:-0.142933pt;}
.ls72{letter-spacing:-0.139733pt;}
.ls6b{letter-spacing:-0.138667pt;}
.ls6c{letter-spacing:-0.137067pt;}
.ls41{letter-spacing:-0.136533pt;}
.ls1d{letter-spacing:-0.120000pt;}
.ls21{letter-spacing:-0.116267pt;}
.ls20{letter-spacing:-0.109333pt;}
.ls60{letter-spacing:-0.107733pt;}
.ls7d{letter-spacing:-0.103467pt;}
.ls2e{letter-spacing:-0.101867pt;}
.ls23{letter-spacing:-0.100800pt;}
.ls2a{letter-spacing:-0.084267pt;}
.ls52{letter-spacing:-0.082667pt;}
.ls56{letter-spacing:-0.082133pt;}
.ls1c{letter-spacing:-0.080000pt;}
.ls38{letter-spacing:-0.075200pt;}
.ls5f{letter-spacing:-0.059733pt;}
.ls7b{letter-spacing:-0.058667pt;}
.lsa5{letter-spacing:-0.056533pt;}
.ls43{letter-spacing:-0.053867pt;}
.ls29{letter-spacing:-0.046933pt;}
.ls70{letter-spacing:-0.043520pt;}
.ls59{letter-spacing:-0.034667pt;}
.ls8e{letter-spacing:-0.034560pt;}
.ls8f{letter-spacing:-0.033600pt;}
.ls75{letter-spacing:-0.020800pt;}
.ls90{letter-spacing:-0.016320pt;}
.lsa1{letter-spacing:-0.013120pt;}
.ls87{letter-spacing:-0.011840pt;}
.ls3b{letter-spacing:-0.010133pt;}
.lsa0{letter-spacing:-0.009920pt;}
.ls3e{letter-spacing:-0.008000pt;}
.ls6a{letter-spacing:-0.007360pt;}
.ls7f{letter-spacing:-0.006720pt;}
.ls9f{letter-spacing:-0.005440pt;}
.ls26{letter-spacing:-0.005333pt;}
.ls33{letter-spacing:-0.002667pt;}
.ls1a{letter-spacing:0.000000pt;}
.ls5d{letter-spacing:0.001067pt;}
.ls6d{letter-spacing:0.002565pt;}
.ls81{letter-spacing:0.017920pt;}
.ls49{letter-spacing:0.018133pt;}
.ls5{letter-spacing:0.021333pt;}
.ls6e{letter-spacing:0.037120pt;}
.ls62{letter-spacing:0.040320pt;}
.ls27{letter-spacing:0.040533pt;}
.ls84{letter-spacing:0.042240pt;}
.ls63{letter-spacing:0.043520pt;}
.ls36{letter-spacing:0.045867pt;}
.ls73{letter-spacing:0.046080pt;}
.ls80{letter-spacing:0.047360pt;}
.ls3d{letter-spacing:0.047467pt;}
.ls30{letter-spacing:0.050667pt;}
.ls8a{letter-spacing:0.051200pt;}
.ls9{letter-spacing:0.053867pt;}
.ls32{letter-spacing:0.057600pt;}
.ls4{letter-spacing:0.058240pt;}
.ls8{letter-spacing:0.060800pt;}
.ls61{letter-spacing:0.065920pt;}
.ls42{letter-spacing:0.066133pt;}
.ls1e{letter-spacing:0.072533pt;}
.ls1f{letter-spacing:0.078933pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls40{letter-spacing:0.087467pt;}
.ls64{letter-spacing:0.096533pt;}
.ls68{letter-spacing:0.098667pt;}
.ls48{letter-spacing:0.100800pt;}
.ls7c{letter-spacing:0.102933pt;}
.ls3c{letter-spacing:0.103467pt;}
.ls74{letter-spacing:0.105067pt;}
.ls76{letter-spacing:0.105280pt;}
.ls2d{letter-spacing:0.106133pt;}
.ls65{letter-spacing:0.110933pt;}
.ls44{letter-spacing:0.113067pt;}
.ls13{letter-spacing:0.118400pt;}
.ls7e{letter-spacing:0.127467pt;}
.ls1b{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.131733pt;}
.ls22{letter-spacing:0.138133pt;}
.ls66{letter-spacing:0.147733pt;}
.ls85{letter-spacing:0.151467pt;}
.ls51{letter-spacing:0.154133pt;}
.ls89{letter-spacing:0.154240pt;}
.lsd{letter-spacing:0.160000pt;}
.ls57{letter-spacing:0.160533pt;}
.ls4f{letter-spacing:0.161067pt;}
.ls10{letter-spacing:0.161280pt;}
.ls53{letter-spacing:0.177067pt;}
.ls83{letter-spacing:0.178560pt;}
.ls69{letter-spacing:0.178667pt;}
.ls4e{letter-spacing:0.183467pt;}
.lsa{letter-spacing:0.183680pt;}
.ls92{letter-spacing:0.216640pt;}
.ls25{letter-spacing:0.235200pt;}
.ls7{letter-spacing:0.237760pt;}
.ls16{letter-spacing:0.260480pt;}
.ls11{letter-spacing:0.275840pt;}
.ls5c{letter-spacing:0.279467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls88{letter-spacing:0.334400pt;}
.ls28{letter-spacing:0.360533pt;}
.lsa3{letter-spacing:0.367467pt;}
.ls97{letter-spacing:0.380800pt;}
.ls8c{letter-spacing:0.407360pt;}
.ls19{letter-spacing:0.418667pt;}
.ls8d{letter-spacing:0.423360pt;}
.ls78{letter-spacing:0.432960pt;}
.ls12{letter-spacing:0.474240pt;}
.ls2b{letter-spacing:0.477333pt;}
.ls96{letter-spacing:0.480000pt;}
.ls45{letter-spacing:0.481067pt;}
.lsc{letter-spacing:0.481280pt;}
.ls82{letter-spacing:0.498560pt;}
.ls93{letter-spacing:0.499840pt;}
.lsb{letter-spacing:0.581120pt;}
.ls6f{letter-spacing:0.743360pt;}
.ls94{letter-spacing:2.643200pt;}
.ls95{letter-spacing:3.283200pt;}
.lsf{letter-spacing:3.603200pt;}
.lse{letter-spacing:4.243200pt;}
.ls9b{letter-spacing:5.843200pt;}
.ls14{letter-spacing:6.483200pt;}
.ls9a{letter-spacing:6.803200pt;}
.ls18{letter-spacing:12.396800pt;}
.ls99{letter-spacing:12.563200pt;}
.ls98{letter-spacing:12.883200pt;}
.ls15{letter-spacing:15.123200pt;}
.ls17{letter-spacing:15.443200pt;}
.ls3{letter-spacing:22.956800pt;}
.lsa4{letter-spacing:42.423680pt;}
.ls77{letter-spacing:53.523200pt;}
.ls9c{letter-spacing:71.863680pt;}
.ws7{word-spacing:-16.541333pt;}
.ws4{word-spacing:-16.482133pt;}
.ws2{word-spacing:-16.475733pt;}
.ws3{word-spacing:-16.403200pt;}
.ws5{word-spacing:-16.293867pt;}
.ws6{word-spacing:-16.286933pt;}
.ws8{word-spacing:-15.736533pt;}
.wsc{word-spacing:-13.243733pt;}
.ws46{word-spacing:-13.162667pt;}
.ws9{word-spacing:-13.118400pt;}
.wsb{word-spacing:-12.923733pt;}
.ws47{word-spacing:-12.884267pt;}
.wsa{word-spacing:-12.883200pt;}
.wsd{word-spacing:-12.836267pt;}
.ws4c{word-spacing:-12.775467pt;}
.ws2e{word-spacing:-12.237867pt;}
.ws10{word-spacing:-12.234133pt;}
.ws79{word-spacing:-12.124267pt;}
.ws6c{word-spacing:-12.091200pt;}
.ws37{word-spacing:-11.940267pt;}
.ws53{word-spacing:-11.935467pt;}
.ws3c{word-spacing:-11.933867pt;}
.ws38{word-spacing:-11.917867pt;}
.ws41{word-spacing:-11.917333pt;}
.ws3a{word-spacing:-11.910933pt;}
.ws69{word-spacing:-11.908267pt;}
.ws50{word-spacing:-11.904533pt;}
.ws1f{word-spacing:-11.888533pt;}
.ws64{word-spacing:-11.884267pt;}
.ws3f{word-spacing:-11.875200pt;}
.ws2d{word-spacing:-11.869867pt;}
.ws4f{word-spacing:-11.867733pt;}
.ws12{word-spacing:-11.862933pt;}
.ws5d{word-spacing:-11.861867pt;}
.ws25{word-spacing:-11.860267pt;}
.ws62{word-spacing:-11.859733pt;}
.ws31{word-spacing:-11.857600pt;}
.ws52{word-spacing:-11.855467pt;}
.ws4e{word-spacing:-11.853333pt;}
.ws29{word-spacing:-11.844267pt;}
.ws2a{word-spacing:-11.822933pt;}
.ws21{word-spacing:-11.817600pt;}
.ws19{word-spacing:-11.814400pt;}
.ws23{word-spacing:-11.810667pt;}
.ws6d{word-spacing:-11.808000pt;}
.ws16{word-spacing:-11.807467pt;}
.ws26{word-spacing:-11.804267pt;}
.ws66{word-spacing:-11.804160pt;}
.ws5c{word-spacing:-11.802880pt;}
.ws1d{word-spacing:-11.802667pt;}
.ws4d{word-spacing:-11.800320pt;}
.ws68{word-spacing:-11.799040pt;}
.ws58{word-spacing:-11.793920pt;}
.ws18{word-spacing:-11.778133pt;}
.ws32{word-spacing:-11.774933pt;}
.ws67{word-spacing:-11.774720pt;}
.ws57{word-spacing:-11.759365pt;}
.ws13{word-spacing:-11.756800pt;}
.ws1a{word-spacing:-11.754133pt;}
.ws75{word-spacing:-11.751360pt;}
.ws65{word-spacing:-11.750080pt;}
.ws54{word-spacing:-11.749440pt;}
.ws27{word-spacing:-11.748800pt;}
.ws76{word-spacing:-11.746880pt;}
.ws24{word-spacing:-11.746667pt;}
.ws6b{word-spacing:-11.744960pt;}
.ws77{word-spacing:-11.743680pt;}
.ws71{word-spacing:-11.740480pt;}
.ws5e{word-spacing:-11.736000pt;}
.ws70{word-spacing:-11.723200pt;}
.ws6f{word-spacing:-11.722240pt;}
.ws43{word-spacing:-11.722133pt;}
.ws59{word-spacing:-11.713280pt;}
.ws2c{word-spacing:-11.702933pt;}
.ws7a{word-spacing:-11.700267pt;}
.ws61{word-spacing:-11.698133pt;}
.ws49{word-spacing:-11.697067pt;}
.ws40{word-spacing:-11.674667pt;}
.ws3b{word-spacing:-11.674133pt;}
.wsf{word-spacing:-11.672533pt;}
.ws14{word-spacing:-11.654933pt;}
.ws63{word-spacing:-11.653333pt;}
.ws2b{word-spacing:-11.620267pt;}
.ws56{word-spacing:-11.619733pt;}
.ws55{word-spacing:-11.618133pt;}
.ws5b{word-spacing:-11.617067pt;}
.ws2f{word-spacing:-11.613867pt;}
.ws74{word-spacing:-11.612800pt;}
.ws35{word-spacing:-11.597867pt;}
.ws3d{word-spacing:-11.590933pt;}
.ws60{word-spacing:-11.564267pt;}
.ws20{word-spacing:-11.549867pt;}
.ws1b{word-spacing:-11.542933pt;}
.ws30{word-spacing:-11.540267pt;}
.ws28{word-spacing:-11.537600pt;}
.ws3e{word-spacing:-11.502933pt;}
.ws34{word-spacing:-11.497600pt;}
.ws22{word-spacing:-11.490667pt;}
.ws1e{word-spacing:-11.487467pt;}
.ws39{word-spacing:-11.484267pt;}
.ws17{word-spacing:-11.482667pt;}
.ws72{word-spacing:-11.478933pt;}
.ws36{word-spacing:-11.454933pt;}
.ws5f{word-spacing:-11.453867pt;}
.ws6a{word-spacing:-11.451200pt;}
.ws5a{word-spacing:-11.441067pt;}
.ws45{word-spacing:-11.428800pt;}
.ws48{word-spacing:-11.426667pt;}
.ws6e{word-spacing:-11.392533pt;}
.ws15{word-spacing:-11.381333pt;}
.ws42{word-spacing:-11.378133pt;}
.ws78{word-spacing:-11.354667pt;}
.ws44{word-spacing:-11.354133pt;}
.ws51{word-spacing:-11.333333pt;}
.ws73{word-spacing:-11.326400pt;}
.ws33{word-spacing:-11.300267pt;}
.ws11{word-spacing:-11.298133pt;}
.ws1c{word-spacing:-11.063467pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wse{word-spacing:-7.603200pt;}
.ws4b{word-spacing:0.000000pt;}
.ws4a{word-spacing:3.826560pt;}
._18{margin-left:-8.013013pt;}
._17{margin-left:-6.453653pt;}
._16{margin-left:-5.054720pt;}
._9{margin-left:-3.873707pt;}
._5{margin-left:-2.979413pt;}
._6{margin-left:-2.090133pt;}
._0{margin-left:-1.077333pt;}
._7{width:1.235093pt;}
._8{width:2.724800pt;}
._4{width:4.334400pt;}
._14{width:5.432000pt;}
._c{width:6.331627pt;}
._a{width:7.556587pt;}
._b{width:8.572053pt;}
._15{width:9.993280pt;}
._11{width:13.146133pt;}
._d{width:14.390933pt;}
._e{width:15.291627pt;}
._f{width:16.925760pt;}
._10{width:18.699307pt;}
._12{width:19.719467pt;}
._13{width:20.841066pt;}
._3{width:22.594538pt;}
._1{width:23.966539pt;}
._2{width:25.237376pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs8{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.ybb{bottom:5.360000pt;}
.y5e{bottom:6.880000pt;}
.y3a{bottom:6.960000pt;}
.y81{bottom:6.986667pt;}
.y3d{bottom:7.040000pt;}
.yda{bottom:7.066667pt;}
.ybc{bottom:12.400000pt;}
.y57{bottom:14.320000pt;}
.y8d{bottom:22.640000pt;}
.y121{bottom:26.586667pt;}
.ye8{bottom:26.640000pt;}
.yb9{bottom:28.080000pt;}
.y55{bottom:29.920000pt;}
.y12f{bottom:31.280000pt;}
.y6a{bottom:31.360000pt;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.yc8{bottom:99.626667pt;}
.y12d{bottom:100.106667pt;}
.ya2{bottom:102.666667pt;}
.y10a{bottom:104.106667pt;}
.y7c{bottom:106.266667pt;}
.y109{bottom:114.986667pt;}
.y7b{bottom:117.146667pt;}
.y52{bottom:122.346667pt;}
.yc7{bottom:123.946667pt;}
.y29{bottom:125.866667pt;}
.ya1{bottom:126.986667pt;}
.ye6{bottom:129.546667pt;}
.y12c{bottom:131.706667pt;}
.y151{bottom:137.946667pt;}
.y108{bottom:139.226667pt;}
.y7a{bottom:140.106667pt;}
.y28{bottom:141.546667pt;}
.yc6{bottom:148.266667pt;}
.ya0{bottom:151.226667pt;}
.y150{bottom:153.626667pt;}
.y51{bottom:153.946667pt;}
.y27{bottom:157.146667pt;}
.ye5{bottom:161.146667pt;}
.y12b{bottom:162.746667pt;}
.y79{bottom:163.066667pt;}
.y107{bottom:163.546667pt;}
.y14f{bottom:169.226667pt;}
.yc5{bottom:172.586667pt;}
.y26{bottom:172.746667pt;}
.y12a{bottom:173.546667pt;}
.y9f{bottom:175.546667pt;}
.ye4{bottom:176.826667pt;}
.y50{bottom:185.546667pt;}
.y78{bottom:186.026667pt;}
.y106{bottom:187.866667pt;}
.ye3{bottom:192.426667pt;}
.y14e{bottom:192.826667pt;}
.yc4{bottom:196.826667pt;}
.y129{bottom:197.866667pt;}
.y9e{bottom:199.866667pt;}
.y25{bottom:204.426667pt;}
.y14d{bottom:208.506667pt;}
.y77{bottom:208.986667pt;}
.y105{bottom:212.106667pt;}
.y4f{bottom:217.226667pt;}
.y24{bottom:220.026667pt;}
.yc3{bottom:221.146667pt;}
.y128{bottom:222.106667pt;}
.ye2{bottom:223.386667pt;}
.y9d{bottom:224.106667pt;}
.y75{bottom:231.946667pt;}
.y14c{bottom:232.426667pt;}
.ye1{bottom:234.266667pt;}
.y23{bottom:235.706667pt;}
.y104{bottom:236.426667pt;}
.y127{bottom:246.426667pt;}
.y9c{bottom:248.426667pt;}
.y4e{bottom:248.826667pt;}
.y22{bottom:251.306667pt;}
.y76{bottom:254.906667pt;}
.ye0{bottom:258.506667pt;}
.y103{bottom:260.746667pt;}
.y4d{bottom:264.426667pt;}
.y21{bottom:266.906667pt;}
.y126{bottom:270.746667pt;}
.y9b{bottom:272.746667pt;}
.y14b{bottom:275.306667pt;}
.y4c{bottom:280.106667pt;}
.y20{bottom:282.586667pt;}
.ydf{bottom:282.826667pt;}
.y102{bottom:285.066667pt;}
.y125{bottom:295.066667pt;}
.yc2{bottom:295.386667pt;}
.y74{bottom:296.826667pt;}
.y9a{bottom:297.066667pt;}
.y1f{bottom:298.186667pt;}
.y14a{bottom:299.226667pt;}
.yc1{bottom:306.266667pt;}
.yde{bottom:307.146667pt;}
.y101{bottom:309.306667pt;}
.y4b{bottom:311.066667pt;}
.y1e{bottom:313.866667pt;}
.y124{bottom:319.306667pt;}
.y99{bottom:321.306667pt;}
.y4a{bottom:321.946667pt;}
.y73{bottom:328.506667pt;}
.yc0{bottom:328.906667pt;}
.ydd{bottom:331.386667pt;}
.y149{bottom:332.106667pt;}
.y100{bottom:333.626667pt;}
.y1d{bottom:337.786667pt;}
.y123{bottom:343.626667pt;}
.y72{bottom:344.106667pt;}
.y98{bottom:345.626667pt;}
.y49{bottom:346.186667pt;}
.ybf{bottom:351.546667pt;}
.y148{bottom:356.026667pt;}
.yff{bottom:357.946667pt;}
.y122{bottom:367.946667pt;}
.y16d{bottom:369.306667pt;}
.y97{bottom:369.946667pt;}
.y48{bottom:370.506667pt;}
.ybe{bottom:374.266667pt;}
.ydc{bottom:374.746667pt;}
.y71{bottom:375.066667pt;}
.y1c{bottom:380.986667pt;}
.yfe{bottom:382.266667pt;}
.y16c{bottom:384.986667pt;}
.y70{bottom:385.946667pt;}
.y147{bottom:388.986667pt;}
.y120{bottom:392.266667pt;}
.y96{bottom:394.266667pt;}
.y47{bottom:394.826667pt;}
.ybd{bottom:396.906667pt;}
.y16b{bottom:400.586667pt;}
.y146{bottom:404.586667pt;}
.ydb{bottom:405.706667pt;}
.yfd{bottom:406.506667pt;}
.y6f{bottom:410.266667pt;}
.y1b{bottom:413.866667pt;}
.yd9{bottom:416.506667pt;}
.y95{bottom:418.533333pt;}
.y46{bottom:419.093333pt;}
.yb8{bottom:419.573333pt;}
.y145{bottom:420.293333pt;}
.y16a{bottom:424.293333pt;}
.y1a{bottom:429.493333pt;}
.yfc{bottom:430.853333pt;}
.y6e{bottom:434.533333pt;}
.yd8{bottom:440.853333pt;}
.yba{bottom:442.293333pt;}
.y94{bottom:442.853333pt;}
.y144{bottom:444.133333pt;}
.y19{bottom:445.173333pt;}
.y169{bottom:447.893333pt;}
.yfb{bottom:455.173333pt;}
.y6d{bottom:458.853333pt;}
.y18{bottom:460.773333pt;}
.y45{bottom:462.453333pt;}
.yd7{bottom:465.173333pt;}
.y93{bottom:467.173333pt;}
.y168{bottom:471.493333pt;}
.y17{bottom:476.373333pt;}
.y143{bottom:477.333333pt;}
.y11f{bottom:478.773333pt;}
.yfa{bottom:479.413333pt;}
.y6c{bottom:483.173333pt;}
.yb7{bottom:483.893333pt;}
.yd6{bottom:489.413333pt;}
.y92{bottom:491.413333pt;}
.y16{bottom:492.053333pt;}
.y44{bottom:494.053333pt;}
.y167{bottom:495.173333pt;}
.yf9{bottom:503.733333pt;}
.y69{bottom:507.413333pt;}
.yb6{bottom:507.573333pt;}
.y15{bottom:507.653333pt;}
.y43{bottom:509.653333pt;}
.y11e{bottom:510.453333pt;}
.y166{bottom:510.773333pt;}
.yd5{bottom:513.733333pt;}
.y91{bottom:515.733333pt;}
.y142{bottom:520.293333pt;}
.y14{bottom:523.333333pt;}
.y42{bottom:525.333333pt;}
.y11d{bottom:526.053333pt;}
.yf8{bottom:528.053333pt;}
.y6b{bottom:531.733333pt;}
.y165{bottom:534.453333pt;}
.y141{bottom:535.893333pt;}
.yd4{bottom:538.053333pt;}
.y13{bottom:538.933333pt;}
.yb5{bottom:539.173333pt;}
.y90{bottom:540.053333pt;}
.y41{bottom:540.933333pt;}
.y11c{bottom:541.733333pt;}
.y164{bottom:550.053333pt;}
.y140{bottom:551.573333pt;}
.yf7{bottom:552.373333pt;}
.y12{bottom:554.533333pt;}
.yb4{bottom:554.853333pt;}
.yd3{bottom:562.373333pt;}
.y8f{bottom:564.373333pt;}
.y13f{bottom:567.173333pt;}
.y11{bottom:570.213333pt;}
.y40{bottom:571.893333pt;}
.y11b{bottom:572.693333pt;}
.y163{bottom:573.653333pt;}
.y68{bottom:575.013333pt;}
.yf6{bottom:576.613333pt;}
.y3f{bottom:582.773333pt;}
.y11a{bottom:583.493333pt;}
.y10{bottom:585.813333pt;}
.yd2{bottom:586.613333pt;}
.y8e{bottom:588.613333pt;}
.yb3{bottom:596.613333pt;}
.y162{bottom:597.333333pt;}
.y13e{bottom:598.453333pt;}
.yf5{bottom:600.933333pt;}
.yf{bottom:601.493333pt;}
.y67{bottom:606.693333pt;}
.y3e{bottom:607.013333pt;}
.y119{bottom:607.813333pt;}
.yd1{bottom:610.933333pt;}
.y8c{bottom:612.933333pt;}
.y13d{bottom:614.053333pt;}
.ye{bottom:617.093333pt;}
.yb2{bottom:620.933333pt;}
.y66{bottom:622.293333pt;}
.yf4{bottom:625.253333pt;}
.y13c{bottom:629.733333pt;}
.y3c{bottom:631.333333pt;}
.y118{bottom:632.133333pt;}
.yd0{bottom:635.253333pt;}
.y161{bottom:636.613333pt;}
.y65{bottom:637.893333pt;}
.yd{bottom:641.013333pt;}
.yb1{bottom:645.253333pt;}
.y13b{bottom:645.333333pt;}
.y64{bottom:653.573333pt;}
.y3b{bottom:655.653333pt;}
.y117{bottom:656.373333pt;}
.ycf{bottom:659.573333pt;}
.y160{bottom:660.213333pt;}
.y13a{bottom:660.933333pt;}
.yf3{bottom:668.533333pt;}
.y8b{bottom:671.893333pt;}
.y139{bottom:676.613333pt;}
.y39{bottom:679.973333pt;}
.y116{bottom:680.693333pt;}
.yce{bottom:683.813333pt;}
.yc{bottom:683.893333pt;}
.y63{bottom:684.533333pt;}
.yb0{bottom:688.533333pt;}
.yf2{bottom:692.133333pt;}
.y62{bottom:695.333333pt;}
.y8a{bottom:695.493333pt;}
.y138{bottom:700.533333pt;}
.y115{bottom:705.013333pt;}
.y15f{bottom:707.493333pt;}
.yb{bottom:715.733333pt;}
.y61{bottom:718.373333pt;}
.yaf{bottom:720.133333pt;}
.y38{bottom:723.253333pt;}
.yf1{bottom:723.813333pt;}
.y89{bottom:727.093333pt;}
.y114{bottom:729.333333pt;}
.y15e{bottom:731.093333pt;}
.yae{bottom:735.813333pt;}
.yf0{bottom:739.413333pt;}
.y60{bottom:741.333333pt;}
.y88{bottom:742.773333pt;}
.y137{bottom:743.413333pt;}
.y15d{bottom:746.693333pt;}
.y37{bottom:746.853333pt;}
.ya{bottom:747.733333pt;}
.y113{bottom:753.573333pt;}
.y87{bottom:758.373333pt;}
.ycd{bottom:758.773333pt;}
.y136{bottom:759.013333pt;}
.y5f{bottom:764.293333pt;}
.yad{bottom:767.413333pt;}
.yef{bottom:770.373333pt;}
.ycc{bottom:774.373333pt;}
.y112{bottom:777.893333pt;}
.y36{bottom:778.773333pt;}
.yee{bottom:781.253333pt;}
.yac{bottom:783.013333pt;}
.y9{bottom:783.093333pt;}
.y15c{bottom:785.973333pt;}
.y5d{bottom:787.253333pt;}
.y86{bottom:789.333333pt;}
.ycb{bottom:790.053333pt;}
.y8{bottom:795.733333pt;}
.yab{bottom:798.693333pt;}
.y7{bottom:799.093333pt;}
.y85{bottom:800.213333pt;}
.y135{bottom:800.853333pt;}
.y15b{bottom:801.653333pt;}
.y111{bottom:802.213333pt;}
.yed{bottom:805.493333pt;}
.y5c{bottom:810.213333pt;}
.yaa{bottom:814.293333pt;}
.y6{bottom:815.093333pt;}
.yca{bottom:821.013333pt;}
.y35{bottom:821.733333pt;}
.y84{bottom:824.533333pt;}
.y134{bottom:825.173333pt;}
.y15a{bottom:825.253333pt;}
.y110{bottom:826.533333pt;}
.yec{bottom:829.813333pt;}
.yc9{bottom:831.813333pt;}
.y5b{bottom:833.173333pt;}
.y34{bottom:837.333333pt;}
.y159{bottom:840.853333pt;}
.y5{bottom:843.813333pt;}
.ya9{bottom:845.333333pt;}
.y83{bottom:848.773333pt;}
.y133{bottom:849.493333pt;}
.y10f{bottom:850.773333pt;}
.y33{bottom:852.933333pt;}
.yeb{bottom:854.133333pt;}
.y5a{bottom:856.133333pt;}
.y158{bottom:864.533333pt;}
.y32{bottom:868.613333pt;}
.y82{bottom:873.093333pt;}
.y132{bottom:873.733333pt;}
.y10e{bottom:875.093333pt;}
.y4{bottom:877.893333pt;}
.yea{bottom:878.453333pt;}
.y59{bottom:879.093333pt;}
.y157{bottom:880.133333pt;}
.ya8{bottom:880.453333pt;}
.y31{bottom:884.213333pt;}
.y80{bottom:897.413333pt;}
.y131{bottom:898.080000pt;}
.y10d{bottom:899.440000pt;}
.y3{bottom:899.840000pt;}
.y58{bottom:902.080000pt;}
.ye9{bottom:902.720000pt;}
.y156{bottom:903.840000pt;}
.ya7{bottom:904.720000pt;}
.y30{bottom:915.520000pt;}
.y155{bottom:919.440000pt;}
.y7f{bottom:921.680000pt;}
.y12e{bottom:922.400000pt;}
.y54{bottom:925.040000pt;}
.ye7{bottom:927.040000pt;}
.ya6{bottom:929.040000pt;}
.y2f{bottom:939.440000pt;}
.y10c{bottom:942.720000pt;}
.y154{bottom:943.040000pt;}
.y7e{bottom:946.000000pt;}
.y130{bottom:946.640000pt;}
.y56{bottom:948.000000pt;}
.ya5{bottom:953.360000pt;}
.y153{bottom:958.720000pt;}
.y10b{bottom:966.320000pt;}
.y7d{bottom:970.320000pt;}
.y152{bottom:974.320000pt;}
.ya4{bottom:977.680000pt;}
.y2e{bottom:982.320000pt;}
.y53{bottom:990.000000pt;}
.y2d{bottom:998.000000pt;}
.ya3{bottom:1001.920000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.h16{height:22.000000pt;}
.h17{height:22.026667pt;}
.h12{height:22.240000pt;}
.h10{height:22.320000pt;}
.h11{height:22.346667pt;}
.hb{height:23.600000pt;}
.he{height:23.626667pt;}
.hc{height:23.680000pt;}
.h18{height:23.706667pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.hd{height:36.034687pt;}
.h14{height:39.280000pt;}
.h8{height:40.747500pt;}
.h1a{height:43.226667pt;}
.h19{height:43.280000pt;}
.h15{height:44.720000pt;}
.h7{height:45.246562pt;}
.hf{height:45.280000pt;}
.h1b{height:47.920000pt;}
.h13{height:48.000000pt;}
.h5{height:49.581562pt;}
.h1c{height:54.927899pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w1a{width:31.840000pt;}
.w2c{width:31.920000pt;}
.wd{width:36.800000pt;}
.w1c{width:38.880000pt;}
.w2d{width:38.906667pt;}
.w3{width:46.240000pt;}
.wf{width:46.506667pt;}
.w1f{width:46.560000pt;}
.w20{width:56.106667pt;}
.w13{width:57.840000pt;}
.w14{width:58.320000pt;}
.w3a{width:68.480000pt;}
.w38{width:71.760000pt;}
.w29{width:73.360000pt;}
.w37{width:74.080000pt;}
.w28{width:78.560000pt;}
.wb{width:78.640000pt;}
.w21{width:78.720000pt;}
.w22{width:82.560000pt;}
.w31{width:82.640000pt;}
.w17{width:84.346667pt;}
.w2a{width:84.426667pt;}
.w30{width:90.960000pt;}
.w12{width:97.200000pt;}
.w1d{width:97.226667pt;}
.wc{width:103.440000pt;}
.w1e{width:105.760000pt;}
.w25{width:105.840000pt;}
.w35{width:107.546667pt;}
.w19{width:112.240000pt;}
.w8{width:112.560000pt;}
.w23{width:112.720000pt;}
.w9{width:112.800000pt;}
.w24{width:112.880000pt;}
.w1b{width:112.960000pt;}
.w34{width:112.986667pt;}
.w11{width:116.906667pt;}
.we{width:122.240000pt;}
.w5{width:122.266667pt;}
.w18{width:131.600000pt;}
.w39{width:133.866667pt;}
.w2b{width:134.026667pt;}
.w7{width:141.226667pt;}
.w4{width:150.480000pt;}
.w2e{width:157.226667pt;}
.w32{width:184.586667pt;}
.w33{width:184.906667pt;}
.w2f{width:202.666667pt;}
.w10{width:205.840000pt;}
.wa{width:206.906667pt;}
.w26{width:208.906667pt;}
.w15{width:216.480000pt;}
.w16{width:216.666667pt;}
.w6{width:225.920000pt;}
.w27{width:272.106667pt;}
.w36{width:350.186667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.880000pt;}
.x29{left:59.040000pt;}
.x1{left:60.480000pt;}
.x2a{left:62.000000pt;}
.x14{left:68.560000pt;}
.xf{left:72.160000pt;}
.x23{left:75.120000pt;}
.x10{left:80.400000pt;}
.x56{left:98.879988pt;}
.x3c{left:100.640000pt;}
.x45{left:109.680000pt;}
.x2b{left:116.560000pt;}
.x52{left:118.880000pt;}
.x36{left:123.360000pt;}
.x4c{left:130.320000pt;}
.x24{left:131.600000pt;}
.x25{left:134.346667pt;}
.x11{left:145.066667pt;}
.x42{left:153.626655pt;}
.xc{left:156.506667pt;}
.x3b{left:169.866655pt;}
.x30{left:172.666655pt;}
.x43{left:177.306667pt;}
.x1c{left:180.106667pt;}
.x18{left:186.346667pt;}
.x5{left:187.626655pt;}
.x4b{left:192.826655pt;}
.x53{left:227.066667pt;}
.x7{left:236.826667pt;}
.x12{left:258.586667pt;}
.x31{left:269.626667pt;}
.x26{left:273.466667pt;}
.x37{left:281.226667pt;}
.x9{left:283.706667pt;}
.x1f{left:291.306667pt;}
.x46{left:294.986667pt;}
.x16{left:296.026667pt;}
.x32{left:302.186667pt;}
.x3d{left:303.946667pt;}
.x38{left:313.786667pt;}
.x4d{left:315.946667pt;}
.xb{left:321.466655pt;}
.x2c{left:326.106667pt;}
.x47{left:327.466667pt;}
.x3e{left:336.506667pt;}
.x4e{left:348.426667pt;}
.x54{left:374.266667pt;}
.xd{left:383.066667pt;}
.x19{left:392.906667pt;}
.x1d{left:397.226667pt;}
.x2e{left:400.186667pt;}
.x20{left:404.906667pt;}
.x33{left:415.786667pt;}
.x17{left:418.986667pt;}
.x39{left:427.386667pt;}
.xa{left:434.906667pt;}
.x48{left:441.066667pt;}
.x21{left:444.426667pt;}
.x3f{left:450.106667pt;}
.x1b{left:451.493333pt;}
.x34{left:455.333333pt;}
.x4f{left:462.053333pt;}
.x13{left:466.213333pt;}
.x49{left:480.613333pt;}
.x1e{left:482.293333pt;}
.x2f{left:485.333333pt;}
.x40{left:489.653333pt;}
.x27{left:500.453333pt;}
.x50{left:501.653333pt;}
.x55{left:508.773333pt;}
.x1a{left:510.453333pt;}
.xe{left:524.933333pt;}
.x44{left:534.053333pt;}
.x22{left:542.373333pt;}
.x15{left:545.493333pt;}
.x35{left:553.253333pt;}
.x3a{left:564.853333pt;}
.x4a{left:578.533333pt;}
.x28{left:579.813333pt;}
.x51{left:581.013333pt;}
.x41{left:587.493333pt;}
.x2d{left:598.853333pt;}
.x2{left:672.453333pt;}
.x3{left:675.333333pt;}
.x6{left:711.413322pt;}
.x4{left:733.573333pt;}
}




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