
    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_67a444a9de638296bae96f2c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_1565e003100986d953d54989.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_4e06302c70759fdd8d83b6ee.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.707031;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_8aff9db71240fce8020bef58.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_39829140ed75015f13242d83.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.750000;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_e2f367adea905d3897725908.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-56.880000px;}
.v4{vertical-align:-53.640000px;}
.v6{vertical-align:-50.313000px;}
.v1{vertical-align:-9.702480px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:9.720000px;}
.v5{vertical-align:41.895000px;}
.ls58{letter-spacing:-2.489760px;}
.ls3d{letter-spacing:-2.346120px;}
.ls45{letter-spacing:-2.298240px;}
.ls36{letter-spacing:-2.202480px;}
.ls59{letter-spacing:-2.154600px;}
.ls43{letter-spacing:-2.106720px;}
.ls44{letter-spacing:-1.963080px;}
.ls48{letter-spacing:-1.867320px;}
.ls56{letter-spacing:-1.771560px;}
.ls60{letter-spacing:-1.627920px;}
.ls61{letter-spacing:-1.580040px;}
.ls5a{letter-spacing:-1.436400px;}
.ls21{letter-spacing:-1.404000px;}
.ls4e{letter-spacing:-1.305720px;}
.ls39{letter-spacing:-1.292760px;}
.ls4c{letter-spacing:-1.221480px;}
.ls66{letter-spacing:-1.197000px;}
.ls2f{letter-spacing:-1.137240px;}
.ls53{letter-spacing:-1.053000px;}
.ls5b{letter-spacing:-0.972000px;}
.ls31{letter-spacing:-0.926640px;}
.ls33{letter-spacing:-0.884520px;}
.ls35{letter-spacing:-0.861840px;}
.ls1c{letter-spacing:-0.855000px;}
.ls2a{letter-spacing:-0.828000px;}
.ls23{letter-spacing:-0.792000px;}
.ls62{letter-spacing:-0.718200px;}
.ls5e{letter-spacing:-0.547560px;}
.ls22{letter-spacing:-0.540000px;}
.ls63{letter-spacing:-0.526680px;}
.ls34{letter-spacing:-0.478800px;}
.ls3a{letter-spacing:-0.430920px;}
.ls38{letter-spacing:-0.383040px;}
.ls52{letter-spacing:-0.379080px;}
.ls3b{letter-spacing:-0.335160px;}
.ls1f{letter-spacing:-0.324000px;}
.ls37{letter-spacing:-0.287280px;}
.ls49{letter-spacing:-0.270000px;}
.ls20{letter-spacing:-0.252000px;}
.ls64{letter-spacing:-0.239400px;}
.ls3c{letter-spacing:-0.191520px;}
.ls4f{letter-spacing:-0.168480px;}
.ls47{letter-spacing:-0.143640px;}
.ls3e{letter-spacing:-0.047880px;}
.ls1d{letter-spacing:0.000000px;}
.ls3f{letter-spacing:0.047880px;}
.ls1b{letter-spacing:0.095760px;}
.ls19{letter-spacing:0.104040px;}
.ls5c{letter-spacing:0.108000px;}
.lsc{letter-spacing:0.113760px;}
.ls11{letter-spacing:0.143640px;}
.ls54{letter-spacing:0.168480px;}
.ls41{letter-spacing:0.191520px;}
.ls4b{letter-spacing:0.210600px;}
.ls42{letter-spacing:0.239400px;}
.ls2{letter-spacing:0.252000px;}
.ls16{letter-spacing:0.299520px;}
.ls10{letter-spacing:0.383040px;}
.ls40{letter-spacing:0.430920px;}
.ls1e{letter-spacing:0.450000px;}
.ls67{letter-spacing:0.478800px;}
.ls14{letter-spacing:0.505440px;}
.ls2b{letter-spacing:0.612000px;}
.ls9{letter-spacing:0.631800px;}
.ls2c{letter-spacing:0.684000px;}
.lsa{letter-spacing:0.756000px;}
.ls5{letter-spacing:0.792000px;}
.lsd{letter-spacing:0.828000px;}
.ls12{letter-spacing:0.861840px;}
.ls28{letter-spacing:0.864000px;}
.ls1a{letter-spacing:0.884520px;}
.ls26{letter-spacing:0.900000px;}
.ls46{letter-spacing:0.909720px;}
.ls30{letter-spacing:0.926640px;}
.ls18{letter-spacing:0.968760px;}
.ls25{letter-spacing:0.972000px;}
.ls4a{letter-spacing:1.010880px;}
.ls2d{letter-spacing:1.044000px;}
.lsb{letter-spacing:1.053000px;}
.ls2e{letter-spacing:1.080000px;}
.ls5d{letter-spacing:1.134000px;}
.ls17{letter-spacing:1.137240px;}
.ls24{letter-spacing:1.152000px;}
.ls55{letter-spacing:1.179360px;}
.ls6{letter-spacing:1.224000px;}
.ls15{letter-spacing:1.263600px;}
.ls1{letter-spacing:1.332000px;}
.ls3{letter-spacing:1.440000px;}
.ls8{letter-spacing:1.558440px;}
.ls27{letter-spacing:1.584000px;}
.ls57{letter-spacing:1.675800px;}
.ls0{letter-spacing:1.692000px;}
.ls50{letter-spacing:1.728000px;}
.ls4d{letter-spacing:1.811160px;}
.ls32{letter-spacing:1.836000px;}
.ls51{letter-spacing:1.979640px;}
.lsf{letter-spacing:1.980000px;}
.ls29{letter-spacing:2.016000px;}
.ls4{letter-spacing:2.232000px;}
.lse{letter-spacing:2.304000px;}
.ls7{letter-spacing:2.592000px;}
.ls13{letter-spacing:74.594880px;}
.ls65{letter-spacing:92.954880px;}
.ls5f{letter-spacing:167.599440px;}
.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;}
}
.ws2e{word-spacing:-47.880000px;}
.ws15{word-spacing:-18.738000px;}
.ws33{word-spacing:-18.630000px;}
.ws40{word-spacing:-18.036000px;}
.ws14{word-spacing:-16.902000px;}
.ws73{word-spacing:-16.665840px;}
.ws2f{word-spacing:-16.632000px;}
.ws3f{word-spacing:-15.930000px;}
.ws2a{word-spacing:-15.896160px;}
.ws2d{word-spacing:-15.225840px;}
.ws34{word-spacing:-15.163200px;}
.ws22{word-spacing:-15.034320px;}
.ws32{word-spacing:-14.994720px;}
.ws1d{word-spacing:-14.986440px;}
.ws26{word-spacing:-14.938560px;}
.ws2b{word-spacing:-14.842800px;}
.ws1b{word-spacing:-14.699160px;}
.ws1c{word-spacing:-14.603400px;}
.ws18{word-spacing:-14.507640px;}
.ws39{word-spacing:-14.362920px;}
.ws76{word-spacing:-14.268240px;}
.ws30{word-spacing:-14.194440px;}
.ws38{word-spacing:-14.152320px;}
.ws19{word-spacing:-14.124600px;}
.ws7e{word-spacing:-13.789440px;}
.ws77{word-spacing:-13.693680px;}
.ws2{word-spacing:-13.635000px;}
.ws3a{word-spacing:-13.310640px;}
.wsb{word-spacing:-13.284000px;}
.ws6{word-spacing:-13.248000px;}
.ws1{word-spacing:-13.185000px;}
.ws11{word-spacing:-13.183560px;}
.ws2c{word-spacing:-13.119120px;}
.ws1a{word-spacing:-12.783960px;}
.ws16{word-spacing:-12.762360px;}
.ws20{word-spacing:-12.640320px;}
.wsa{word-spacing:-12.492000px;}
.ws7{word-spacing:-12.420000px;}
.ws10{word-spacing:-12.348000px;}
.ws35{word-spacing:-12.341160px;}
.ws0{word-spacing:-12.330000px;}
.wse{word-spacing:-12.312000px;}
.ws13{word-spacing:-12.256920px;}
.wsf{word-spacing:-12.096000px;}
.ws8{word-spacing:-12.060000px;}
.ws12{word-spacing:-12.046320px;}
.ws31{word-spacing:-11.962080px;}
.wsd{word-spacing:-11.952000px;}
.wsc{word-spacing:-11.880000px;}
.ws3c{word-spacing:-11.874240px;}
.ws41{word-spacing:-11.709360px;}
.ws3e{word-spacing:-11.539080px;}
.ws37{word-spacing:-11.288160px;}
.ws9{word-spacing:-11.268000px;}
.ws42{word-spacing:-11.161800px;}
.ws3b{word-spacing:-11.156040px;}
.ws36{word-spacing:-11.035440px;}
.ws17{word-spacing:-10.824840px;}
.ws3d{word-spacing:-10.820880px;}
.ws3{word-spacing:-10.548000px;}
.ws4{word-spacing:-10.224000px;}
.ws5{word-spacing:-9.144000px;}
.ws24{word-spacing:-2.906280px;}
.ws23{word-spacing:-2.283840px;}
.ws25{word-spacing:-2.244960px;}
.ws1f{word-spacing:-1.757160px;}
.ws4a{word-spacing:-1.584000px;}
.ws6d{word-spacing:-1.484280px;}
.ws50{word-spacing:-1.440000px;}
.ws63{word-spacing:-1.263600px;}
.ws4d{word-spacing:-1.152000px;}
.ws6c{word-spacing:-1.053000px;}
.ws48{word-spacing:-0.972000px;}
.ws72{word-spacing:-0.957600px;}
.ws4f{word-spacing:-0.926640px;}
.ws49{word-spacing:-0.900000px;}
.ws4b{word-spacing:-0.864000px;}
.ws5f{word-spacing:-0.716040px;}
.ws6f{word-spacing:-0.670320px;}
.ws52{word-spacing:-0.612000px;}
.ws4e{word-spacing:-0.505440px;}
.ws71{word-spacing:-0.478800px;}
.ws7a{word-spacing:-0.383040px;}
.ws51{word-spacing:-0.324000px;}
.ws6a{word-spacing:-0.294840px;}
.ws5e{word-spacing:-0.210600px;}
.ws66{word-spacing:-0.191520px;}
.ws62{word-spacing:-0.168480px;}
.ws6e{word-spacing:-0.143640px;}
.ws1e{word-spacing:-0.129240px;}
.ws68{word-spacing:-0.108000px;}
.ws70{word-spacing:-0.095760px;}
.ws21{word-spacing:-0.090360px;}
.ws5d{word-spacing:-0.042120px;}
.ws43{word-spacing:0.000000px;}
.ws59{word-spacing:0.047880px;}
.ws69{word-spacing:0.084240px;}
.ws61{word-spacing:0.168480px;}
.ws5c{word-spacing:0.191520px;}
.ws7d{word-spacing:0.239400px;}
.ws44{word-spacing:0.252000px;}
.ws58{word-spacing:0.287280px;}
.ws46{word-spacing:0.324000px;}
.ws56{word-spacing:0.335160px;}
.ws55{word-spacing:0.383040px;}
.ws6b{word-spacing:0.421200px;}
.ws54{word-spacing:0.430920px;}
.ws57{word-spacing:0.478800px;}
.ws7b{word-spacing:0.526680px;}
.ws45{word-spacing:0.540000px;}
.ws47{word-spacing:0.792000px;}
.ws4c{word-spacing:0.828000px;}
.ws5a{word-spacing:1.197000px;}
.ws53{word-spacing:1.292760px;}
.ws60{word-spacing:1.305720px;}
.ws79{word-spacing:1.340640px;}
.ws83{word-spacing:1.580040px;}
.ws64{word-spacing:1.771560px;}
.ws7c{word-spacing:1.867320px;}
.ws7f{word-spacing:1.915200px;}
.ws5b{word-spacing:2.058840px;}
.ws67{word-spacing:2.154600px;}
.ws65{word-spacing:2.489760px;}
.ws74{word-spacing:2.552040px;}
.ws75{word-spacing:3.213360px;}
.ws28{word-spacing:3.557520px;}
.ws27{word-spacing:5.329080px;}
.ws29{word-spacing:5.367960px;}
.ws78{word-spacing:5.996160px;}
.ws81{word-spacing:11.837520px;}
.ws80{word-spacing:13.609080px;}
.ws82{word-spacing:17.247960px;}
._6{margin-left:-5.938920px;}
._7{margin-left:-4.831560px;}
._3{margin-left:-3.109680px;}
._2{margin-left:-1.980000px;}
._1{width:1.125000px;}
._0{width:2.610000px;}
._9{width:3.774600px;}
._8{width:4.928040px;}
._4{width:10.835280px;}
._a{width:317.106000px;}
._5{width:1853.910360px;}
.fc7{color:rgb(12,100,171);}
.fc4{color:rgb(18,73,154);}
.fc5{color:rgb(51,51,51);}
.fc3{color:rgb(43,43,43);}
.fc2{color:rgb(171,171,171);}
.fc1{color:rgb(0,0,0);}
.fc6{color:rgb(0,153,204);}
.fc0{color:rgb(0,0,255);}
.fs7{font-size:33.120000px;}
.fs1{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs2{font-size:42.120000px;}
.fs0{font-size:45.000000px;}
.fs5{font-size:47.880000px;}
.fs3{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs9{font-size:60.120000px;}
.fs8{font-size:65.880000px;}
.fsa{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y13c{bottom:15.320400px;}
.y184{bottom:25.799790px;}
.y88{bottom:25.800150px;}
.yef{bottom:25.804830px;}
.y94{bottom:40.205250px;}
.y13d{bottom:48.448950px;}
.y10{bottom:50.082750px;}
.y13b{bottom:68.275680px;}
.yee{bottom:68.430000px;}
.yf{bottom:72.177600px;}
.y13a{bottom:90.144870px;}
.yed{bottom:90.390000px;}
.y11b{bottom:92.425950px;}
.yb9{bottom:93.071400px;}
.y11a{bottom:104.130000px;}
.yb8{bottom:104.771550px;}
.ye{bottom:111.998790px;}
.yec{bottom:112.260000px;}
.y139{bottom:114.084870px;}
.y5c{bottom:115.394580px;}
.yd{bottom:124.055640px;}
.yeb{bottom:129.630000px;}
.y5b{bottom:131.506200px;}
.y138{bottom:131.908200px;}
.y119{bottom:133.524000px;}
.yb7{bottom:134.167950px;}
.y118{bottom:145.224000px;}
.y5a{bottom:145.816200px;}
.yb6{bottom:145.867950px;}
.yc{bottom:148.980150px;}
.y59{bottom:156.704580px;}
.y137{bottom:160.036350px;}
.yea{bottom:161.025900px;}
.y183{bottom:162.652800px;}
.yb5{bottom:167.872200px;}
.y117{bottom:168.120000px;}
.yb{bottom:174.535950px;}
.y136{bottom:175.070670px;}
.ye9{bottom:175.964460px;}
.y9{bottom:180.289800px;}
.y182{bottom:184.612800px;}
.yb4{bottom:185.872200px;}
.y116{bottom:186.120000px;}
.ya{bottom:186.592800px;}
.y58{bottom:187.036200px;}
.y135{bottom:190.009230px;}
.ye8{bottom:190.998780px;}
.y8{bottom:191.989800px;}
.y15f{bottom:194.466000px;}
.y57{bottom:198.372870px;}
.yb3{bottom:203.782200px;}
.y115{bottom:204.030000px;}
.ye7{bottom:204.680490px;}
.y134{bottom:205.043550px;}
.y73{bottom:206.157750px;}
.y15e{bottom:206.161350px;}
.y181{bottom:206.482800px;}
.y56{bottom:216.191820px;}
.y31{bottom:221.388150px;}
.y87{bottom:223.999950px;}
.y180{bottom:230.419470px;}
.y55{bottom:232.028130px;}
.y30{bottom:233.088150px;}
.y15d{bottom:236.455350px;}
.y86{bottom:239.209950px;}
.y15c{bottom:248.155350px;}
.y17f{bottom:248.242800px;}
.y85{bottom:252.799950px;}
.y2f{bottom:255.984150px;}
.ye6{bottom:258.342000px;}
.y133{bottom:259.331100px;}
.y54{bottom:262.934670px;}
.y15b{bottom:269.080350px;}
.y84{bottom:270.079950px;}
.y2e{bottom:273.984150px;}
.y8f{bottom:275.299050px;}
.y17e{bottom:277.107090px;}
.y53{bottom:277.873230px;}
.ye5{bottom:280.212000px;}
.y83{bottom:285.380100px;}
.y15a{bottom:288.520350px;}
.y2d{bottom:291.894150px;}
.y17d{bottom:292.045650px;}
.y52{bottom:292.907550px;}
.y82{bottom:298.969950px;}
.y8d{bottom:299.959050px;}
.ye4{bottom:301.897680px;}
.y159{bottom:306.070350px;}
.y17c{bottom:307.079970px;}
.yb2{bottom:308.380950px;}
.y81{bottom:313.009950px;}
.ye3{bottom:316.932000px;}
.yb1{bottom:320.080950px;}
.y80{bottom:325.070100px;}
.y114{bottom:326.042100px;}
.ye2{bottom:335.112000px;}
.y72{bottom:340.166790px;}
.y113{bottom:340.622250px;}
.y51{bottom:346.407600px;}
.yb0{bottom:349.477200px;}
.y112{bottom:351.422100px;}
.y17b{bottom:356.911080px;}
.y7f{bottom:358.431600px;}
.yaf{bottom:361.177200px;}
.y111{bottom:363.122100px;}
.y50{bottom:368.277600px;}
.ye1{bottom:371.290740px;}
.y17a{bottom:371.945400px;}
.y7e{bottom:372.471600px;}
.y2c{bottom:377.731350px;}
.yae{bottom:384.075000px;}
.y7d{bottom:384.531600px;}
.y132{bottom:386.198160px;}
.ye0{bottom:389.114070px;}
.y2b{bottom:389.435550px;}
.y4f{bottom:390.237600px;}
.y110{bottom:393.411300px;}
.y179{bottom:394.446840px;}
.y7c{bottom:399.471600px;}
.yad{bottom:402.075000px;}
.ydf{bottom:405.046140px;}
.y10f{bottom:405.111300px;}
.y178{bottom:409.385400px;}
.y7b{bottom:411.531600px;}
.y4e{bottom:412.107600px;}
.y131{bottom:417.463800px;}
.y2a{bottom:418.829550px;}
.yac{bottom:419.985000px;}
.yde{bottom:420.882450px;}
.y10e{bottom:426.036300px;}
.y7a{bottom:426.471600px;}
.y4d{bottom:429.463830px;}
.y29{bottom:430.529550px;}
.y177{bottom:431.881080px;}
.y158{bottom:433.897200px;}
.y79{bottom:438.531600px;}
.y10d{bottom:445.476300px;}
.y157{bottom:445.592550px;}
.y176{bottom:446.915400px;}
.y130{bottom:449.004750px;}
.y28{bottom:453.425550px;}
.y78{bottom:458.989800px;}
.y4c{bottom:460.370370px;}
.y10c{bottom:463.026300px;}
.y12f{bottom:464.039070px;}
.y175{bottom:465.095400px;}
.y27{bottom:471.425550px;}
.ydd{bottom:474.927000px;}
.y4b{bottom:475.308930px;}
.y156{bottom:475.886550px;}
.y71{bottom:480.078900px;}
.yc0{bottom:484.380600px;}
.y155{bottom:487.586550px;}
.y26{bottom:489.335400px;}
.y4a{bottom:490.343250px;}
.y70{bottom:492.135750px;}
.ybf{bottom:496.080600px;}
.ydc{bottom:496.887000px;}
.y154{bottom:508.511550px;}
.y174{bottom:516.541920px;}
.ydb{bottom:518.757000px;}
.ybe{bottom:526.370400px;}
.y153{bottom:527.951550px;}
.y6f{bottom:528.705150px;}
.y173{bottom:531.480480px;}
.y12e{bottom:533.872050px;}
.yda{bottom:536.127000px;}
.ybd{bottom:538.070400px;}
.y49{bottom:543.849150px;}
.y152{bottom:545.501400px;}
.y172{bottom:546.514800px;}
.ybc{bottom:558.994800px;}
.y48{bottom:565.719150px;}
.yd9{bottom:567.017970px;}
.y6e{bottom:567.091350px;}
.y25{bottom:575.172600px;}
.ybb{bottom:578.434800px;}
.yd8{bottom:581.956530px;}
.y6d{bottom:585.496950px;}
.y24{bottom:586.867950px;}
.y47{bottom:587.679150px;}
.yba{bottom:595.984800px;}
.y12d{bottom:596.415300px;}
.yd7{bottom:596.990850px;}
.y6c{bottom:597.554310px;}
.y46{bottom:609.549150px;}
.y77{bottom:616.947600px;}
.y23{bottom:617.161950px;}
.y45{bottom:626.905080px;}
.y22{bottom:628.861950px;}
.y76{bottom:628.917600px;}
.y171{bottom:631.267800px;}
.y75{bottom:640.887600px;}
.y21{bottom:649.786950px;}
.yd6{bottom:650.496750px;}
.y74{bottom:652.947600px;}
.y44{bottom:657.811620px;}
.y10b{bottom:658.969350px;}
.y20{bottom:669.226950px;}
.y6b{bottom:671.801340px;}
.yd5{bottom:672.365940px;}
.y43{bottom:672.750180px;}
.y10a{bottom:674.989350px;}
.yab{bottom:682.715400px;}
.y6a{bottom:683.773950px;}
.y1f{bottom:686.776950px;}
.y42{bottom:687.784500px;}
.y109{bottom:690.289350px;}
.yd4{bottom:694.330890px;}
.yaa{bottom:694.415400px;}
.y69{bottom:695.830800px;}
.y108{bottom:701.989350px;}
.y170{bottom:704.526600px;}
.y68{bottom:713.608800px;}
.yd3{bottom:716.200080px;}
.y12c{bottom:721.489830px;}
.ya9{bottom:723.811950px;}
.y107{bottom:731.385150px;}
.y67{bottom:732.552000px;}
.yd2{bottom:733.568550px;}
.ya8{bottom:735.511950px;}
.y8c{bottom:738.090000px;}
.y41{bottom:741.290400px;}
.y106{bottom:743.085150px;}
.y66{bottom:744.522150px;}
.y151{bottom:746.215200px;}
.y12b{bottom:755.436750px;}
.ya7{bottom:756.436350px;}
.y65{bottom:756.583950px;}
.y150{bottom:757.915200px;}
.y40{bottom:763.160550px;}
.y105{bottom:764.010150px;}
.yd1{bottom:764.462340px;}
.y1e{bottom:773.507400px;}
.y64{bottom:774.358590px;}
.ya6{bottom:775.876350px;}
.yd0{bottom:779.400900px;}
.y104{bottom:783.450150px;}
.y3f{bottom:785.120400px;}
.y1d{bottom:785.209200px;}
.y12a{bottom:786.952350px;}
.y14f{bottom:787.683600px;}
.y63{bottom:792.228000px;}
.ya5{bottom:793.426350px;}
.ycf{bottom:794.435220px;}
.y14e{bottom:799.383600px;}
.y103{bottom:801.000300px;}
.y129{bottom:801.986670px;}
.y3e{bottom:806.990400px;}
.y62{bottom:810.907200px;}
.y16f{bottom:811.739820px;}
.y1c{bottom:814.603200px;}
.y14d{bottom:820.308000px;}
.y61{bottom:823.777200px;}
.y3d{bottom:824.360550px;}
.y1b{bottom:826.303200px;}
.y14c{bottom:839.748000px;}
.y128{bottom:841.475700px;}
.y60{bottom:841.777200px;}
.y16e{bottom:843.280770px;}
.y1a{bottom:848.308200px;}
.yce{bottom:848.336130px;}
.y3c{bottom:855.260640px;}
.y14b{bottom:857.298150px;}
.y16d{bottom:858.315090px;}
.y5f{bottom:858.877200px;}
.y127{bottom:863.440650px;}
.y19{bottom:866.308200px;}
.y3b{bottom:870.199200px;}
.ycd{bottom:870.301080px;}
.y5e{bottom:870.937200px;}
.y102{bottom:873.313200px;}
.ya4{bottom:880.156800px;}
.y18{bottom:884.218200px;}
.y101{bottom:885.017400px;}
.y3a{bottom:885.233520px;}
.y126{bottom:885.309840px;}
.ya3{bottom:891.856800px;}
.ycc{bottom:892.170270px;}
.y5d{bottom:907.506600px;}
.y125{bottom:909.249840px;}
.y16c{bottom:912.395550px;}
.y93{bottom:913.680000px;}
.y100{bottom:914.411400px;}
.ycb{bottom:916.110270px;}
.ya2{bottom:921.253200px;}
.yff{bottom:926.111400px;}
.y124{bottom:927.073170px;}
.y16b{bottom:928.055550px;}
.ya1{bottom:932.953200px;}
.yca{bottom:933.933600px;}
.y39{bottom:939.625200px;}
.y16a{bottom:941.915550px;}
.yfe{bottom:949.007400px;}
.y169{bottom:952.265550px;}
.y92{bottom:953.885250px;}
.ya0{bottom:955.851000px;}
.y123{bottom:955.944810px;}
.y38{bottom:961.495200px;}
.yc9{bottom:962.800680px;}
.yfd{bottom:967.007400px;}
.y168{bottom:968.735550px;}
.y122{bottom:970.883370px;}
.y17{bottom:970.948800px;}
.y9f{bottom:973.851000px;}
.yc8{bottom:977.739240px;}
.y91{bottom:981.435570px;}
.y16{bottom:982.653000px;}
.y37{bottom:983.455200px;}
.yfc{bottom:984.917550px;}
.y121{bottom:985.917690px;}
.y167{bottom:987.455550px;}
.y9e{bottom:991.761150px;}
.yc7{bottom:992.773560px;}
.y90{bottom:999.978900px;}
.y166{bottom:1001.135550px;}
.y36{bottom:1005.325350px;}
.y15{bottom:1012.047000px;}
.y120{bottom:1021.492530px;}
.y35{bottom:1022.686980px;}
.y14{bottom:1023.747000px;}
.y8e{bottom:1024.639050px;}
.y14a{bottom:1038.729000px;}
.y11f{bottom:1043.457480px;}
.yc6{bottom:1046.303400px;}
.y13{bottom:1046.643000px;}
.y8b{bottom:1049.209050px;}
.y165{bottom:1049.379000px;}
.y149{bottom:1050.428850px;}
.y34{bottom:1053.593520px;}
.y9d{bottom:1063.303800px;}
.y12{bottom:1064.643000px;}
.y11e{bottom:1065.326670px;}
.yc5{bottom:1068.173250px;}
.y33{bottom:1068.532080px;}
.y8a{bottom:1070.508750px;}
.y9c{bottom:1075.003800px;}
.y164{bottom:1076.175150px;}
.yfb{bottom:1078.328400px;}
.y148{bottom:1079.825550px;}
.y11{bottom:1082.553150px;}
.y32{bottom:1083.566400px;}
.y89{bottom:1087.518750px;}
.y11d{bottom:1089.266670px;}
.yfa{bottom:1090.021200px;}
.y147{bottom:1091.525550px;}
.yc4{bottom:1092.110070px;}
.y9b{bottom:1104.400200px;}
.y163{bottom:1106.339550px;}
.y11c{bottom:1107.090000px;}
.yc3{bottom:1109.933400px;}
.y146{bottom:1114.423200px;}
.y9a{bottom:1116.100200px;}
.yf9{bottom:1120.315200px;}
.y7{bottom:1120.800450px;}
.y162{bottom:1121.373870px;}
.yf8{bottom:1132.015200px;}
.y145{bottom:1132.423200px;}
.y6{bottom:1133.040450px;}
.y161{bottom:1136.312430px;}
.yf6{bottom:1140.565680px;}
.yc2{bottom:1140.842190px;}
.y99{bottom:1140.949800px;}
.y144{bottom:1150.333350px;}
.y160{bottom:1151.346750px;}
.yf7{bottom:1153.273200px;}
.yc1{bottom:1154.344350px;}
.y98{bottom:1158.769800px;}
.y13e{bottom:1167.210000px;}
.yf5{bottom:1169.010000px;}
.y5{bottom:1170.076200px;}
.y140{bottom:1172.241690px;}
.y3{bottom:1172.554800px;}
.yf4{bottom:1178.550000px;}
.y2{bottom:1183.534950px;}
.yf0{bottom:1185.030000px;}
.y13f{bottom:1185.923400px;}
.y4{bottom:1189.731000px;}
.y1{bottom:1195.504800px;}
.yf3{bottom:1203.990120px;}
.y187{bottom:1203.994920px;}
.y143{bottom:1203.998100px;}
.y97{bottom:1213.200180px;}
.yf2{bottom:1218.390030px;}
.y186{bottom:1218.394830px;}
.y142{bottom:1218.398010px;}
.y96{bottom:1227.600090px;}
.yf1{bottom:1232.789940px;}
.y185{bottom:1232.794740px;}
.y141{bottom:1232.797920px;}
.y95{bottom:1242.000000px;}
.ha{height:27.314297px;}
.h14{height:32.064609px;}
.hf{height:37.111816px;}
.h2{height:38.412000px;}
.h12{height:39.486973px;}
.h5{height:43.929844px;}
.h3{height:44.942040px;}
.hc{height:44.945880px;}
.h10{height:44.955960px;}
.h1{height:48.015000px;}
.h16{height:49.581387px;}
.hd{height:49.937344px;}
.h7{height:51.087960px;}
.hb{height:51.094440px;}
.h9{height:51.101280px;}
.h8{height:51.105480px;}
.h13{height:54.331699px;}
.h4{height:57.618000px;}
.h17{height:59.378906px;}
.h6{height:60.690960px;}
.h11{height:88.200000px;}
.h15{height:91.832344px;}
.he{height:526.410000px;}
.h0{height:1264.500000px;}
.w3{width:161.730000px;}
.w2{width:167.041500px;}
.w0{width:893.970000px;}
.w1{width:894.000000px;}
.x0{left:0.000000px;}
.x14{left:39.030000px;}
.x15{left:47.970000px;}
.x4{left:51.612450px;}
.xe{left:53.469000px;}
.x8{left:57.936000px;}
.x16{left:60.707250px;}
.x6{left:72.230400px;}
.x7{left:78.484200px;}
.xf{left:86.530140px;}
.x11{left:88.288650px;}
.x18{left:92.414100px;}
.x13{left:97.776150px;}
.x10{left:100.819200px;}
.x12{left:115.113600px;}
.x17{left:159.347250px;}
.x1{left:175.152900px;}
.x1e{left:231.386850px;}
.x5{left:232.916850px;}
.x9{left:251.636850px;}
.x1d{left:309.000000px;}
.x1c{left:310.530000px;}
.xd{left:332.634150px;}
.xa{left:334.164150px;}
.x1b{left:337.674150px;}
.x1f{left:352.047330px;}
.xb{left:353.154150px;}
.x1a{left:356.430390px;}
.x19{left:363.631650px;}
.xc{left:366.210630px;}
.x3{left:658.482300px;}
.x2{left:786.238500px;}
@media print{
.v3{vertical-align:-50.560000pt;}
.v4{vertical-align:-47.680000pt;}
.v6{vertical-align:-44.722667pt;}
.v1{vertical-align:-8.624427pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:8.640000pt;}
.v5{vertical-align:37.240000pt;}
.ls58{letter-spacing:-2.213120pt;}
.ls3d{letter-spacing:-2.085440pt;}
.ls45{letter-spacing:-2.042880pt;}
.ls36{letter-spacing:-1.957760pt;}
.ls59{letter-spacing:-1.915200pt;}
.ls43{letter-spacing:-1.872640pt;}
.ls44{letter-spacing:-1.744960pt;}
.ls48{letter-spacing:-1.659840pt;}
.ls56{letter-spacing:-1.574720pt;}
.ls60{letter-spacing:-1.447040pt;}
.ls61{letter-spacing:-1.404480pt;}
.ls5a{letter-spacing:-1.276800pt;}
.ls21{letter-spacing:-1.248000pt;}
.ls4e{letter-spacing:-1.160640pt;}
.ls39{letter-spacing:-1.149120pt;}
.ls4c{letter-spacing:-1.085760pt;}
.ls66{letter-spacing:-1.064000pt;}
.ls2f{letter-spacing:-1.010880pt;}
.ls53{letter-spacing:-0.936000pt;}
.ls5b{letter-spacing:-0.864000pt;}
.ls31{letter-spacing:-0.823680pt;}
.ls33{letter-spacing:-0.786240pt;}
.ls35{letter-spacing:-0.766080pt;}
.ls1c{letter-spacing:-0.760000pt;}
.ls2a{letter-spacing:-0.736000pt;}
.ls23{letter-spacing:-0.704000pt;}
.ls62{letter-spacing:-0.638400pt;}
.ls5e{letter-spacing:-0.486720pt;}
.ls22{letter-spacing:-0.480000pt;}
.ls63{letter-spacing:-0.468160pt;}
.ls34{letter-spacing:-0.425600pt;}
.ls3a{letter-spacing:-0.383040pt;}
.ls38{letter-spacing:-0.340480pt;}
.ls52{letter-spacing:-0.336960pt;}
.ls3b{letter-spacing:-0.297920pt;}
.ls1f{letter-spacing:-0.288000pt;}
.ls37{letter-spacing:-0.255360pt;}
.ls49{letter-spacing:-0.240000pt;}
.ls20{letter-spacing:-0.224000pt;}
.ls64{letter-spacing:-0.212800pt;}
.ls3c{letter-spacing:-0.170240pt;}
.ls4f{letter-spacing:-0.149760pt;}
.ls47{letter-spacing:-0.127680pt;}
.ls3e{letter-spacing:-0.042560pt;}
.ls1d{letter-spacing:0.000000pt;}
.ls3f{letter-spacing:0.042560pt;}
.ls1b{letter-spacing:0.085120pt;}
.ls19{letter-spacing:0.092480pt;}
.ls5c{letter-spacing:0.096000pt;}
.lsc{letter-spacing:0.101120pt;}
.ls11{letter-spacing:0.127680pt;}
.ls54{letter-spacing:0.149760pt;}
.ls41{letter-spacing:0.170240pt;}
.ls4b{letter-spacing:0.187200pt;}
.ls42{letter-spacing:0.212800pt;}
.ls2{letter-spacing:0.224000pt;}
.ls16{letter-spacing:0.266240pt;}
.ls10{letter-spacing:0.340480pt;}
.ls40{letter-spacing:0.383040pt;}
.ls1e{letter-spacing:0.400000pt;}
.ls67{letter-spacing:0.425600pt;}
.ls14{letter-spacing:0.449280pt;}
.ls2b{letter-spacing:0.544000pt;}
.ls9{letter-spacing:0.561600pt;}
.ls2c{letter-spacing:0.608000pt;}
.lsa{letter-spacing:0.672000pt;}
.ls5{letter-spacing:0.704000pt;}
.lsd{letter-spacing:0.736000pt;}
.ls12{letter-spacing:0.766080pt;}
.ls28{letter-spacing:0.768000pt;}
.ls1a{letter-spacing:0.786240pt;}
.ls26{letter-spacing:0.800000pt;}
.ls46{letter-spacing:0.808640pt;}
.ls30{letter-spacing:0.823680pt;}
.ls18{letter-spacing:0.861120pt;}
.ls25{letter-spacing:0.864000pt;}
.ls4a{letter-spacing:0.898560pt;}
.ls2d{letter-spacing:0.928000pt;}
.lsb{letter-spacing:0.936000pt;}
.ls2e{letter-spacing:0.960000pt;}
.ls5d{letter-spacing:1.008000pt;}
.ls17{letter-spacing:1.010880pt;}
.ls24{letter-spacing:1.024000pt;}
.ls55{letter-spacing:1.048320pt;}
.ls6{letter-spacing:1.088000pt;}
.ls15{letter-spacing:1.123200pt;}
.ls1{letter-spacing:1.184000pt;}
.ls3{letter-spacing:1.280000pt;}
.ls8{letter-spacing:1.385280pt;}
.ls27{letter-spacing:1.408000pt;}
.ls57{letter-spacing:1.489600pt;}
.ls0{letter-spacing:1.504000pt;}
.ls50{letter-spacing:1.536000pt;}
.ls4d{letter-spacing:1.609920pt;}
.ls32{letter-spacing:1.632000pt;}
.ls51{letter-spacing:1.759680pt;}
.lsf{letter-spacing:1.760000pt;}
.ls29{letter-spacing:1.792000pt;}
.ls4{letter-spacing:1.984000pt;}
.lse{letter-spacing:2.048000pt;}
.ls7{letter-spacing:2.304000pt;}
.ls13{letter-spacing:66.306560pt;}
.ls65{letter-spacing:82.626560pt;}
.ls5f{letter-spacing:148.977280pt;}
.ws2e{word-spacing:-42.560000pt;}
.ws15{word-spacing:-16.656000pt;}
.ws33{word-spacing:-16.560000pt;}
.ws40{word-spacing:-16.032000pt;}
.ws14{word-spacing:-15.024000pt;}
.ws73{word-spacing:-14.814080pt;}
.ws2f{word-spacing:-14.784000pt;}
.ws3f{word-spacing:-14.160000pt;}
.ws2a{word-spacing:-14.129920pt;}
.ws2d{word-spacing:-13.534080pt;}
.ws34{word-spacing:-13.478400pt;}
.ws22{word-spacing:-13.363840pt;}
.ws32{word-spacing:-13.328640pt;}
.ws1d{word-spacing:-13.321280pt;}
.ws26{word-spacing:-13.278720pt;}
.ws2b{word-spacing:-13.193600pt;}
.ws1b{word-spacing:-13.065920pt;}
.ws1c{word-spacing:-12.980800pt;}
.ws18{word-spacing:-12.895680pt;}
.ws39{word-spacing:-12.767040pt;}
.ws76{word-spacing:-12.682880pt;}
.ws30{word-spacing:-12.617280pt;}
.ws38{word-spacing:-12.579840pt;}
.ws19{word-spacing:-12.555200pt;}
.ws7e{word-spacing:-12.257280pt;}
.ws77{word-spacing:-12.172160pt;}
.ws2{word-spacing:-12.120000pt;}
.ws3a{word-spacing:-11.831680pt;}
.wsb{word-spacing:-11.808000pt;}
.ws6{word-spacing:-11.776000pt;}
.ws1{word-spacing:-11.720000pt;}
.ws11{word-spacing:-11.718720pt;}
.ws2c{word-spacing:-11.661440pt;}
.ws1a{word-spacing:-11.363520pt;}
.ws16{word-spacing:-11.344320pt;}
.ws20{word-spacing:-11.235840pt;}
.wsa{word-spacing:-11.104000pt;}
.ws7{word-spacing:-11.040000pt;}
.ws10{word-spacing:-10.976000pt;}
.ws35{word-spacing:-10.969920pt;}
.ws0{word-spacing:-10.960000pt;}
.wse{word-spacing:-10.944000pt;}
.ws13{word-spacing:-10.895040pt;}
.wsf{word-spacing:-10.752000pt;}
.ws8{word-spacing:-10.720000pt;}
.ws12{word-spacing:-10.707840pt;}
.ws31{word-spacing:-10.632960pt;}
.wsd{word-spacing:-10.624000pt;}
.wsc{word-spacing:-10.560000pt;}
.ws3c{word-spacing:-10.554880pt;}
.ws41{word-spacing:-10.408320pt;}
.ws3e{word-spacing:-10.256960pt;}
.ws37{word-spacing:-10.033920pt;}
.ws9{word-spacing:-10.016000pt;}
.ws42{word-spacing:-9.921600pt;}
.ws3b{word-spacing:-9.916480pt;}
.ws36{word-spacing:-9.809280pt;}
.ws17{word-spacing:-9.622080pt;}
.ws3d{word-spacing:-9.618560pt;}
.ws3{word-spacing:-9.376000pt;}
.ws4{word-spacing:-9.088000pt;}
.ws5{word-spacing:-8.128000pt;}
.ws24{word-spacing:-2.583360pt;}
.ws23{word-spacing:-2.030080pt;}
.ws25{word-spacing:-1.995520pt;}
.ws1f{word-spacing:-1.561920pt;}
.ws4a{word-spacing:-1.408000pt;}
.ws6d{word-spacing:-1.319360pt;}
.ws50{word-spacing:-1.280000pt;}
.ws63{word-spacing:-1.123200pt;}
.ws4d{word-spacing:-1.024000pt;}
.ws6c{word-spacing:-0.936000pt;}
.ws48{word-spacing:-0.864000pt;}
.ws72{word-spacing:-0.851200pt;}
.ws4f{word-spacing:-0.823680pt;}
.ws49{word-spacing:-0.800000pt;}
.ws4b{word-spacing:-0.768000pt;}
.ws5f{word-spacing:-0.636480pt;}
.ws6f{word-spacing:-0.595840pt;}
.ws52{word-spacing:-0.544000pt;}
.ws4e{word-spacing:-0.449280pt;}
.ws71{word-spacing:-0.425600pt;}
.ws7a{word-spacing:-0.340480pt;}
.ws51{word-spacing:-0.288000pt;}
.ws6a{word-spacing:-0.262080pt;}
.ws5e{word-spacing:-0.187200pt;}
.ws66{word-spacing:-0.170240pt;}
.ws62{word-spacing:-0.149760pt;}
.ws6e{word-spacing:-0.127680pt;}
.ws1e{word-spacing:-0.114880pt;}
.ws68{word-spacing:-0.096000pt;}
.ws70{word-spacing:-0.085120pt;}
.ws21{word-spacing:-0.080320pt;}
.ws5d{word-spacing:-0.037440pt;}
.ws43{word-spacing:0.000000pt;}
.ws59{word-spacing:0.042560pt;}
.ws69{word-spacing:0.074880pt;}
.ws61{word-spacing:0.149760pt;}
.ws5c{word-spacing:0.170240pt;}
.ws7d{word-spacing:0.212800pt;}
.ws44{word-spacing:0.224000pt;}
.ws58{word-spacing:0.255360pt;}
.ws46{word-spacing:0.288000pt;}
.ws56{word-spacing:0.297920pt;}
.ws55{word-spacing:0.340480pt;}
.ws6b{word-spacing:0.374400pt;}
.ws54{word-spacing:0.383040pt;}
.ws57{word-spacing:0.425600pt;}
.ws7b{word-spacing:0.468160pt;}
.ws45{word-spacing:0.480000pt;}
.ws47{word-spacing:0.704000pt;}
.ws4c{word-spacing:0.736000pt;}
.ws5a{word-spacing:1.064000pt;}
.ws53{word-spacing:1.149120pt;}
.ws60{word-spacing:1.160640pt;}
.ws79{word-spacing:1.191680pt;}
.ws83{word-spacing:1.404480pt;}
.ws64{word-spacing:1.574720pt;}
.ws7c{word-spacing:1.659840pt;}
.ws7f{word-spacing:1.702400pt;}
.ws5b{word-spacing:1.830080pt;}
.ws67{word-spacing:1.915200pt;}
.ws65{word-spacing:2.213120pt;}
.ws74{word-spacing:2.268480pt;}
.ws75{word-spacing:2.856320pt;}
.ws28{word-spacing:3.162240pt;}
.ws27{word-spacing:4.736960pt;}
.ws29{word-spacing:4.771520pt;}
.ws78{word-spacing:5.329920pt;}
.ws81{word-spacing:10.522240pt;}
.ws80{word-spacing:12.096960pt;}
.ws82{word-spacing:15.331520pt;}
._6{margin-left:-5.279040pt;}
._7{margin-left:-4.294720pt;}
._3{margin-left:-2.764160pt;}
._2{margin-left:-1.760000pt;}
._1{width:1.000000pt;}
._0{width:2.320000pt;}
._9{width:3.355200pt;}
._8{width:4.380480pt;}
._4{width:9.631360pt;}
._a{width:281.872000pt;}
._5{width:1647.920320pt;}
.fs7{font-size:29.440000pt;}
.fs1{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs2{font-size:37.440000pt;}
.fs0{font-size:40.000000pt;}
.fs5{font-size:42.560000pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs9{font-size:53.440000pt;}
.fs8{font-size:58.560000pt;}
.fsa{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y13c{bottom:13.618133pt;}
.y184{bottom:22.933147pt;}
.y88{bottom:22.933467pt;}
.yef{bottom:22.937627pt;}
.y94{bottom:35.738000pt;}
.y13d{bottom:43.065733pt;}
.y10{bottom:44.518000pt;}
.y13b{bottom:60.689493pt;}
.yee{bottom:60.826667pt;}
.yf{bottom:64.157867pt;}
.y13a{bottom:80.128773pt;}
.yed{bottom:80.346667pt;}
.y11b{bottom:82.156400pt;}
.yb9{bottom:82.730133pt;}
.y11a{bottom:92.560000pt;}
.yb8{bottom:93.130267pt;}
.ye{bottom:99.554480pt;}
.yec{bottom:99.786667pt;}
.y139{bottom:101.408773pt;}
.y5c{bottom:102.572960pt;}
.yd{bottom:110.271680pt;}
.yeb{bottom:115.226667pt;}
.y5b{bottom:116.894400pt;}
.y138{bottom:117.251733pt;}
.y119{bottom:118.688000pt;}
.yb7{bottom:119.260400pt;}
.y118{bottom:129.088000pt;}
.y5a{bottom:129.614400pt;}
.yb6{bottom:129.660400pt;}
.yc{bottom:132.426800pt;}
.y59{bottom:139.292960pt;}
.y137{bottom:142.254533pt;}
.yea{bottom:143.134133pt;}
.y183{bottom:144.580267pt;}
.yb5{bottom:149.219733pt;}
.y117{bottom:149.440000pt;}
.yb{bottom:155.143067pt;}
.y136{bottom:155.618373pt;}
.ye9{bottom:156.412853pt;}
.y9{bottom:160.257600pt;}
.y182{bottom:164.100267pt;}
.yb4{bottom:165.219733pt;}
.y116{bottom:165.440000pt;}
.ya{bottom:165.860267pt;}
.y58{bottom:166.254400pt;}
.y135{bottom:168.897093pt;}
.ye8{bottom:169.776693pt;}
.y8{bottom:170.657600pt;}
.y15f{bottom:172.858667pt;}
.y57{bottom:176.331440pt;}
.yb3{bottom:181.139733pt;}
.y115{bottom:181.360000pt;}
.ye7{bottom:181.938213pt;}
.y134{bottom:182.260933pt;}
.y73{bottom:183.251333pt;}
.y15e{bottom:183.254533pt;}
.y181{bottom:183.540267pt;}
.y56{bottom:192.170507pt;}
.y31{bottom:196.789467pt;}
.y87{bottom:199.111067pt;}
.y180{bottom:204.817307pt;}
.y55{bottom:206.247227pt;}
.y30{bottom:207.189467pt;}
.y15d{bottom:210.182533pt;}
.y86{bottom:212.631067pt;}
.y15c{bottom:220.582533pt;}
.y17f{bottom:220.660267pt;}
.y85{bottom:224.711067pt;}
.y2f{bottom:227.541467pt;}
.ye6{bottom:229.637333pt;}
.y133{bottom:230.516533pt;}
.y54{bottom:233.719707pt;}
.y15b{bottom:239.182533pt;}
.y84{bottom:240.071067pt;}
.y2e{bottom:243.541467pt;}
.y8f{bottom:244.710267pt;}
.y17e{bottom:246.317413pt;}
.y53{bottom:246.998427pt;}
.ye5{bottom:249.077333pt;}
.y83{bottom:253.671200pt;}
.y15a{bottom:256.462533pt;}
.y2d{bottom:259.461467pt;}
.y17d{bottom:259.596133pt;}
.y52{bottom:260.362267pt;}
.y82{bottom:265.751067pt;}
.y8d{bottom:266.630267pt;}
.ye4{bottom:268.353493pt;}
.y159{bottom:272.062533pt;}
.y17c{bottom:272.959973pt;}
.yb2{bottom:274.116400pt;}
.y81{bottom:278.231067pt;}
.ye3{bottom:281.717333pt;}
.yb1{bottom:284.516400pt;}
.y80{bottom:288.951200pt;}
.y114{bottom:289.815200pt;}
.ye2{bottom:297.877333pt;}
.y72{bottom:302.370480pt;}
.y113{bottom:302.775333pt;}
.y51{bottom:307.917867pt;}
.yb0{bottom:310.646400pt;}
.y112{bottom:312.375200pt;}
.y17b{bottom:317.254293pt;}
.y7f{bottom:318.605867pt;}
.yaf{bottom:321.046400pt;}
.y111{bottom:322.775200pt;}
.y50{bottom:327.357867pt;}
.ye1{bottom:330.036213pt;}
.y17a{bottom:330.618133pt;}
.y7e{bottom:331.085867pt;}
.y2c{bottom:335.761200pt;}
.yae{bottom:341.400000pt;}
.y7d{bottom:341.805867pt;}
.y132{bottom:343.287253pt;}
.ye0{bottom:345.879173pt;}
.y2b{bottom:346.164933pt;}
.y4f{bottom:346.877867pt;}
.y110{bottom:349.698933pt;}
.y179{bottom:350.619413pt;}
.y7c{bottom:355.085867pt;}
.yad{bottom:357.400000pt;}
.ydf{bottom:360.041013pt;}
.y10f{bottom:360.098933pt;}
.y178{bottom:363.898133pt;}
.y7b{bottom:365.805867pt;}
.y4e{bottom:366.317867pt;}
.y131{bottom:371.078933pt;}
.y2a{bottom:372.292933pt;}
.yac{bottom:373.320000pt;}
.yde{bottom:374.117733pt;}
.y10e{bottom:378.698933pt;}
.y7a{bottom:379.085867pt;}
.y4d{bottom:381.745627pt;}
.y29{bottom:382.692933pt;}
.y177{bottom:383.894293pt;}
.y158{bottom:385.686400pt;}
.y79{bottom:389.805867pt;}
.y10d{bottom:395.978933pt;}
.y157{bottom:396.082267pt;}
.y176{bottom:397.258133pt;}
.y130{bottom:399.115333pt;}
.y28{bottom:403.044933pt;}
.y78{bottom:407.990933pt;}
.y4c{bottom:409.218107pt;}
.y10c{bottom:411.578933pt;}
.y12f{bottom:412.479173pt;}
.y175{bottom:413.418133pt;}
.y27{bottom:419.044933pt;}
.ydd{bottom:422.157333pt;}
.y4b{bottom:422.496827pt;}
.y156{bottom:423.010267pt;}
.y71{bottom:426.736800pt;}
.yc0{bottom:430.560533pt;}
.y155{bottom:433.410267pt;}
.y26{bottom:434.964800pt;}
.y4a{bottom:435.860667pt;}
.y70{bottom:437.454000pt;}
.ybf{bottom:440.960533pt;}
.ydc{bottom:441.677333pt;}
.y154{bottom:452.010267pt;}
.y174{bottom:459.148373pt;}
.ydb{bottom:461.117333pt;}
.ybe{bottom:467.884800pt;}
.y153{bottom:469.290267pt;}
.y6f{bottom:469.960133pt;}
.y173{bottom:472.427093pt;}
.y12e{bottom:474.552933pt;}
.yda{bottom:476.557333pt;}
.ybd{bottom:478.284800pt;}
.y49{bottom:483.421467pt;}
.y152{bottom:484.890133pt;}
.y172{bottom:485.790933pt;}
.ybc{bottom:496.884267pt;}
.y48{bottom:502.861467pt;}
.yd9{bottom:504.015973pt;}
.y6e{bottom:504.081200pt;}
.y25{bottom:511.264533pt;}
.ybb{bottom:514.164267pt;}
.yd8{bottom:517.294693pt;}
.y6d{bottom:520.441733pt;}
.y24{bottom:521.660400pt;}
.y47{bottom:522.381467pt;}
.yba{bottom:529.764267pt;}
.y12d{bottom:530.146933pt;}
.yd7{bottom:530.658533pt;}
.y6c{bottom:531.159387pt;}
.y46{bottom:541.821467pt;}
.y77{bottom:548.397867pt;}
.y23{bottom:548.588400pt;}
.y45{bottom:557.248960pt;}
.y22{bottom:558.988400pt;}
.y76{bottom:559.037867pt;}
.y171{bottom:561.126933pt;}
.y75{bottom:569.677867pt;}
.y21{bottom:577.588400pt;}
.yd6{bottom:578.219333pt;}
.y74{bottom:580.397867pt;}
.y44{bottom:584.721440pt;}
.y10b{bottom:585.750533pt;}
.y20{bottom:594.868400pt;}
.y6b{bottom:597.156747pt;}
.yd5{bottom:597.658613pt;}
.y43{bottom:598.000160pt;}
.y10a{bottom:599.990533pt;}
.yab{bottom:606.858133pt;}
.y6a{bottom:607.799067pt;}
.y1f{bottom:610.468400pt;}
.y42{bottom:611.364000pt;}
.y109{bottom:613.590533pt;}
.yd4{bottom:617.183013pt;}
.yaa{bottom:617.258133pt;}
.y69{bottom:618.516267pt;}
.y108{bottom:623.990533pt;}
.y170{bottom:626.245867pt;}
.y68{bottom:634.318933pt;}
.yd3{bottom:636.622293pt;}
.y12c{bottom:641.324293pt;}
.ya9{bottom:643.388400pt;}
.y107{bottom:650.120133pt;}
.y67{bottom:651.157333pt;}
.yd2{bottom:652.060933pt;}
.ya8{bottom:653.788400pt;}
.y8c{bottom:656.080000pt;}
.y41{bottom:658.924800pt;}
.y106{bottom:660.520133pt;}
.y66{bottom:661.797467pt;}
.y151{bottom:663.302400pt;}
.y12b{bottom:671.499333pt;}
.ya7{bottom:672.387867pt;}
.y65{bottom:672.519067pt;}
.y150{bottom:673.702400pt;}
.y40{bottom:678.364933pt;}
.y105{bottom:679.120133pt;}
.yd1{bottom:679.522080pt;}
.y1e{bottom:687.562133pt;}
.y64{bottom:688.318747pt;}
.ya6{bottom:689.667867pt;}
.yd0{bottom:692.800800pt;}
.y104{bottom:696.400133pt;}
.y3f{bottom:697.884800pt;}
.y1d{bottom:697.963733pt;}
.y12a{bottom:699.513200pt;}
.y14f{bottom:700.163200pt;}
.y63{bottom:704.202667pt;}
.ya5{bottom:705.267867pt;}
.ycf{bottom:706.164640pt;}
.y14e{bottom:710.563200pt;}
.y103{bottom:712.000267pt;}
.y129{bottom:712.877040pt;}
.y3e{bottom:717.324800pt;}
.y62{bottom:720.806400pt;}
.y16f{bottom:721.546507pt;}
.y1c{bottom:724.091733pt;}
.y14d{bottom:729.162667pt;}
.y61{bottom:732.246400pt;}
.y3d{bottom:732.764933pt;}
.y1b{bottom:734.491733pt;}
.y14c{bottom:746.442667pt;}
.y128{bottom:747.978400pt;}
.y60{bottom:748.246400pt;}
.y16e{bottom:749.582907pt;}
.y1a{bottom:754.051733pt;}
.yce{bottom:754.076560pt;}
.y3c{bottom:760.231680pt;}
.y14b{bottom:762.042800pt;}
.y16d{bottom:762.946747pt;}
.y5f{bottom:763.446400pt;}
.y127{bottom:767.502800pt;}
.y19{bottom:770.051733pt;}
.y3b{bottom:773.510400pt;}
.ycd{bottom:773.600960pt;}
.y5e{bottom:774.166400pt;}
.y102{bottom:776.278400pt;}
.ya4{bottom:782.361600pt;}
.y18{bottom:785.971733pt;}
.y101{bottom:786.682133pt;}
.y3a{bottom:786.874240pt;}
.y126{bottom:786.942080pt;}
.ya3{bottom:792.761600pt;}
.ycc{bottom:793.040240pt;}
.y5d{bottom:806.672533pt;}
.y125{bottom:808.222080pt;}
.y16c{bottom:811.018267pt;}
.y93{bottom:812.160000pt;}
.y100{bottom:812.810133pt;}
.ycb{bottom:814.320240pt;}
.ya2{bottom:818.891733pt;}
.yff{bottom:823.210133pt;}
.y124{bottom:824.065040pt;}
.y16b{bottom:824.938267pt;}
.ya1{bottom:829.291733pt;}
.yca{bottom:830.163200pt;}
.y39{bottom:835.222400pt;}
.y16a{bottom:837.258267pt;}
.yfe{bottom:843.562133pt;}
.y169{bottom:846.458267pt;}
.y92{bottom:847.898000pt;}
.ya0{bottom:849.645333pt;}
.y123{bottom:849.728720pt;}
.y38{bottom:854.662400pt;}
.yc9{bottom:855.822827pt;}
.yfd{bottom:859.562133pt;}
.y168{bottom:861.098267pt;}
.y122{bottom:863.007440pt;}
.y17{bottom:863.065600pt;}
.y9f{bottom:865.645333pt;}
.yc8{bottom:869.101547pt;}
.y91{bottom:872.387173pt;}
.y16{bottom:873.469333pt;}
.y37{bottom:874.182400pt;}
.yfc{bottom:875.482267pt;}
.y121{bottom:876.371280pt;}
.y167{bottom:877.738267pt;}
.y9e{bottom:881.565467pt;}
.yc7{bottom:882.465387pt;}
.y90{bottom:888.870133pt;}
.y166{bottom:889.898267pt;}
.y36{bottom:893.622533pt;}
.y15{bottom:899.597333pt;}
.y120{bottom:907.993360pt;}
.y35{bottom:909.055093pt;}
.y14{bottom:909.997333pt;}
.y8e{bottom:910.790267pt;}
.y14a{bottom:923.314667pt;}
.y11f{bottom:927.517760pt;}
.yc6{bottom:930.047467pt;}
.y13{bottom:930.349333pt;}
.y8b{bottom:932.630267pt;}
.y165{bottom:932.781333pt;}
.y149{bottom:933.714533pt;}
.y34{bottom:936.527573pt;}
.y9d{bottom:945.158933pt;}
.y12{bottom:946.349333pt;}
.y11e{bottom:946.957040pt;}
.yc5{bottom:949.487333pt;}
.y33{bottom:949.806293pt;}
.y8a{bottom:951.563333pt;}
.y9c{bottom:955.558933pt;}
.y164{bottom:956.600133pt;}
.yfb{bottom:958.514133pt;}
.y148{bottom:959.844933pt;}
.y11{bottom:962.269467pt;}
.y32{bottom:963.170133pt;}
.y89{bottom:966.683333pt;}
.y11d{bottom:968.237040pt;}
.yfa{bottom:968.907733pt;}
.y147{bottom:970.244933pt;}
.yc4{bottom:970.764507pt;}
.y9b{bottom:981.689067pt;}
.y163{bottom:983.412933pt;}
.y11c{bottom:984.080000pt;}
.yc3{bottom:986.607467pt;}
.y146{bottom:990.598400pt;}
.y9a{bottom:992.089067pt;}
.yf9{bottom:995.835733pt;}
.y7{bottom:996.267067pt;}
.y162{bottom:996.776773pt;}
.yf8{bottom:1006.235733pt;}
.y145{bottom:1006.598400pt;}
.y6{bottom:1007.147067pt;}
.y161{bottom:1010.055493pt;}
.yf6{bottom:1013.836160pt;}
.yc2{bottom:1014.081947pt;}
.y99{bottom:1014.177600pt;}
.y144{bottom:1022.518533pt;}
.y160{bottom:1023.419333pt;}
.yf7{bottom:1025.131733pt;}
.yc1{bottom:1026.083867pt;}
.y98{bottom:1030.017600pt;}
.y13e{bottom:1037.520000pt;}
.yf5{bottom:1039.120000pt;}
.y5{bottom:1040.067733pt;}
.y140{bottom:1041.992613pt;}
.y3{bottom:1042.270933pt;}
.yf4{bottom:1047.600000pt;}
.y2{bottom:1052.031067pt;}
.yf0{bottom:1053.360000pt;}
.y13f{bottom:1054.154133pt;}
.y4{bottom:1057.538667pt;}
.y1{bottom:1062.670933pt;}
.yf3{bottom:1070.213440pt;}
.y187{bottom:1070.217707pt;}
.y143{bottom:1070.220533pt;}
.y97{bottom:1078.400160pt;}
.yf2{bottom:1083.013360pt;}
.y186{bottom:1083.017627pt;}
.y142{bottom:1083.020453pt;}
.y96{bottom:1091.200080pt;}
.yf1{bottom:1095.813280pt;}
.y185{bottom:1095.817547pt;}
.y141{bottom:1095.820373pt;}
.y95{bottom:1104.000000pt;}
.ha{height:24.279375pt;}
.h14{height:28.501875pt;}
.hf{height:32.988281pt;}
.h2{height:34.144000pt;}
.h12{height:35.099531pt;}
.h5{height:39.048750pt;}
.h3{height:39.948480pt;}
.hc{height:39.951893pt;}
.h10{height:39.960853pt;}
.h1{height:42.680000pt;}
.h16{height:44.072344pt;}
.hd{height:44.388750pt;}
.h7{height:45.411520pt;}
.hb{height:45.417280pt;}
.h9{height:45.423360pt;}
.h8{height:45.427093pt;}
.h13{height:48.294844pt;}
.h4{height:51.216000pt;}
.h17{height:52.781250pt;}
.h6{height:53.947520pt;}
.h11{height:78.400000pt;}
.h15{height:81.628750pt;}
.he{height:467.920000pt;}
.h0{height:1124.000000pt;}
.w3{width:143.760000pt;}
.w2{width:148.481333pt;}
.w0{width:794.640000pt;}
.w1{width:794.666667pt;}
.x0{left:0.000000pt;}
.x14{left:34.693333pt;}
.x15{left:42.640000pt;}
.x4{left:45.877733pt;}
.xe{left:47.528000pt;}
.x8{left:51.498667pt;}
.x16{left:53.962000pt;}
.x6{left:64.204800pt;}
.x7{left:69.763733pt;}
.xf{left:76.915680pt;}
.x11{left:78.478800pt;}
.x18{left:82.145867pt;}
.x13{left:86.912133pt;}
.x10{left:89.617067pt;}
.x12{left:102.323200pt;}
.x17{left:141.642000pt;}
.x1{left:155.691467pt;}
.x1e{left:205.677200pt;}
.x5{left:207.037200pt;}
.x9{left:223.677200pt;}
.x1d{left:274.666667pt;}
.x1c{left:276.026667pt;}
.xd{left:295.674800pt;}
.xa{left:297.034800pt;}
.x1b{left:300.154800pt;}
.x1f{left:312.930960pt;}
.xb{left:313.914800pt;}
.x1a{left:316.827013pt;}
.x19{left:323.228133pt;}
.xc{left:325.520560pt;}
.x3{left:585.317600pt;}
.x2{left:698.878667pt;}
}




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