
    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_254af56bd5bd9ef72d0387fc.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.871094;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_c4208e950920b23673ddb311.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_5866647877149e8fa9a7dc94.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_8048e9ccb74fa41b62697977.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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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);}
.v0{vertical-align:0.000000px;}
.ls4c{letter-spacing:-2.489760px;}
.ls56{letter-spacing:-2.346120px;}
.ls59{letter-spacing:-2.298240px;}
.ls26{letter-spacing:-2.202480px;}
.ls4d{letter-spacing:-2.154600px;}
.ls57{letter-spacing:-2.106720px;}
.ls58{letter-spacing:-1.963080px;}
.ls2c{letter-spacing:-1.915200px;}
.ls41{letter-spacing:-1.867320px;}
.ls4a{letter-spacing:-1.771560px;}
.ls5f{letter-spacing:-1.627920px;}
.ls4e{letter-spacing:-1.436400px;}
.ls1c{letter-spacing:-1.404000px;}
.ls45{letter-spacing:-1.305720px;}
.ls40{letter-spacing:-1.292760px;}
.ls44{letter-spacing:-1.221480px;}
.ls3e{letter-spacing:-1.197000px;}
.ls36{letter-spacing:-1.137240px;}
.ls4f{letter-spacing:-0.972000px;}
.ls3c{letter-spacing:-0.926640px;}
.ls5a{letter-spacing:-0.884520px;}
.ls28{letter-spacing:-0.861840px;}
.ls18{letter-spacing:-0.855000px;}
.ls1e{letter-spacing:-0.792000px;}
.ls48{letter-spacing:-0.758160px;}
.ls5e{letter-spacing:-0.718200px;}
.ls2b{letter-spacing:-0.670320px;}
.ls54{letter-spacing:-0.547560px;}
.ls1d{letter-spacing:-0.540000px;}
.ls2a{letter-spacing:-0.526680px;}
.ls29{letter-spacing:-0.478800px;}
.ls3f{letter-spacing:-0.430920px;}
.ls55{letter-spacing:-0.383040px;}
.ls47{letter-spacing:-0.379080px;}
.ls2f{letter-spacing:-0.335160px;}
.ls1a{letter-spacing:-0.324000px;}
.ls27{letter-spacing:-0.287280px;}
.ls35{letter-spacing:-0.270000px;}
.ls1b{letter-spacing:-0.252000px;}
.ls5d{letter-spacing:-0.191520px;}
.ls46{letter-spacing:-0.168480px;}
.ls16{letter-spacing:-0.143640px;}
.ls52{letter-spacing:-0.126360px;}
.ls15{letter-spacing:-0.095760px;}
.ls17{letter-spacing:-0.047880px;}
.ls13{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.042120px;}
.ls14{letter-spacing:0.047880px;}
.ls0{letter-spacing:0.095760px;}
.ls50{letter-spacing:0.108000px;}
.ls4{letter-spacing:0.113760px;}
.ls2d{letter-spacing:0.191520px;}
.ls37{letter-spacing:0.210600px;}
.ls5c{letter-spacing:0.239400px;}
.ls3{letter-spacing:0.252000px;}
.ls10{letter-spacing:0.299520px;}
.ls30{letter-spacing:0.383040px;}
.ls60{letter-spacing:0.430920px;}
.ls19{letter-spacing:0.450000px;}
.ls2e{letter-spacing:0.478800px;}
.lse{letter-spacing:0.505440px;}
.lsd{letter-spacing:0.526680px;}
.ls25{letter-spacing:0.612000px;}
.ls43{letter-spacing:0.622440px;}
.lsb{letter-spacing:0.631800px;}
.ls42{letter-spacing:0.718200px;}
.lsc{letter-spacing:0.756000px;}
.ls31{letter-spacing:0.766080px;}
.ls5{letter-spacing:0.828000px;}
.ls5b{letter-spacing:0.861840px;}
.ls12{letter-spacing:0.884520px;}
.ls24{letter-spacing:0.900000px;}
.ls32{letter-spacing:0.909720px;}
.ls3b{letter-spacing:0.926640px;}
.ls33{letter-spacing:0.957600px;}
.lsa{letter-spacing:0.968760px;}
.ls22{letter-spacing:0.972000px;}
.ls3a{letter-spacing:1.010880px;}
.ls53{letter-spacing:1.053000px;}
.ls20{letter-spacing:1.080000px;}
.ls51{letter-spacing:1.134000px;}
.ls8{letter-spacing:1.137240px;}
.ls1f{letter-spacing:1.152000px;}
.ls49{letter-spacing:1.179360px;}
.ls23{letter-spacing:1.224000px;}
.lsf{letter-spacing:1.263600px;}
.ls2{letter-spacing:1.332000px;}
.ls21{letter-spacing:1.440000px;}
.ls9{letter-spacing:1.558440px;}
.ls4b{letter-spacing:1.675800px;}
.ls1{letter-spacing:1.692000px;}
.ls34{letter-spacing:1.728000px;}
.ls38{letter-spacing:1.811160px;}
.ls3d{letter-spacing:1.836000px;}
.ls39{letter-spacing:1.979640px;}
.ls7{letter-spacing:1.980000px;}
.ls6{letter-spacing:2.304000px;}
.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;}
}
.ws23{word-spacing:-18.738000px;}
.ws1b{word-spacing:-18.630000px;}
.ws34{word-spacing:-18.036000px;}
.ws1a{word-spacing:-16.902000px;}
.ws5b{word-spacing:-16.665840px;}
.ws1c{word-spacing:-16.632000px;}
.ws33{word-spacing:-15.930000px;}
.ws18{word-spacing:-15.896160px;}
.ws15{word-spacing:-15.465240px;}
.ws69{word-spacing:-15.225840px;}
.ws20{word-spacing:-15.163200px;}
.ws10{word-spacing:-15.034320px;}
.ws1f{word-spacing:-14.994720px;}
.wsc{word-spacing:-14.986440px;}
.ws6a{word-spacing:-14.938560px;}
.ws67{word-spacing:-14.842800px;}
.wsd{word-spacing:-14.699160px;}
.ws6e{word-spacing:-14.603400px;}
.ws16{word-spacing:-14.507640px;}
.ws2d{word-spacing:-14.362920px;}
.ws12{word-spacing:-14.316120px;}
.ws6c{word-spacing:-14.268240px;}
.ws21{word-spacing:-14.194440px;}
.ws2c{word-spacing:-14.152320px;}
.wse{word-spacing:-14.124600px;}
.ws24{word-spacing:-13.789440px;}
.ws4{word-spacing:-13.635000px;}
.ws2e{word-spacing:-13.310640px;}
.ws2b{word-spacing:-13.225680px;}
.ws3{word-spacing:-13.185000px;}
.ws1d{word-spacing:-13.183560px;}
.ws25{word-spacing:-13.119120px;}
.wsb{word-spacing:-12.783960px;}
.ws64{word-spacing:-12.762360px;}
.ws5c{word-spacing:-12.640320px;}
.wsa{word-spacing:-12.492000px;}
.ws9{word-spacing:-12.348000px;}
.ws29{word-spacing:-12.341160px;}
.ws2{word-spacing:-12.330000px;}
.ws22{word-spacing:-12.256920px;}
.ws1e{word-spacing:-12.046320px;}
.ws28{word-spacing:-11.962080px;}
.ws30{word-spacing:-11.874240px;}
.ws35{word-spacing:-11.709360px;}
.ws2a{word-spacing:-11.583000px;}
.ws32{word-spacing:-11.539080px;}
.ws8{word-spacing:-11.268000px;}
.ws36{word-spacing:-11.161800px;}
.ws2f{word-spacing:-11.156040px;}
.ws0{word-spacing:-10.868760px;}
.ws65{word-spacing:-10.824840px;}
.ws31{word-spacing:-10.820880px;}
.ws1{word-spacing:-10.677240px;}
.ws5{word-spacing:-10.548000px;}
.ws6{word-spacing:-10.224000px;}
.ws7{word-spacing:-9.144000px;}
.ws19{word-spacing:-4.399560px;}
.ws27{word-spacing:-3.747240px;}
.ws17{word-spacing:-3.289320px;}
.ws26{word-spacing:-3.193560px;}
.ws14{word-spacing:-2.906280px;}
.ws75{word-spacing:-1.820880px;}
.ws37{word-spacing:-1.484280px;}
.ws41{word-spacing:-1.440000px;}
.ws40{word-spacing:-1.152000px;}
.ws5a{word-spacing:-1.053000px;}
.ws3b{word-spacing:-0.957600px;}
.ws4a{word-spacing:-0.926640px;}
.ws43{word-spacing:-0.900000px;}
.ws51{word-spacing:-0.884520px;}
.ws11{word-spacing:-0.751680px;}
.ws4e{word-spacing:-0.716040px;}
.ws44{word-spacing:-0.612000px;}
.ws48{word-spacing:-0.505440px;}
.ws47{word-spacing:-0.383040px;}
.ws59{word-spacing:-0.336960px;}
.ws42{word-spacing:-0.324000px;}
.ws58{word-spacing:-0.294840px;}
.ws49{word-spacing:-0.210600px;}
.ws54{word-spacing:-0.191520px;}
.wsf{word-spacing:-0.129240px;}
.ws56{word-spacing:-0.108000px;}
.ws74{word-spacing:-0.049320px;}
.ws4d{word-spacing:-0.042120px;}
.ws38{word-spacing:0.000000px;}
.ws3a{word-spacing:0.047880px;}
.ws57{word-spacing:0.084240px;}
.ws39{word-spacing:0.095760px;}
.ws50{word-spacing:0.168480px;}
.ws70{word-spacing:0.191520px;}
.ws3c{word-spacing:0.252000px;}
.ws73{word-spacing:0.287280px;}
.ws3e{word-spacing:0.324000px;}
.ws78{word-spacing:0.333720px;}
.ws46{word-spacing:0.335160px;}
.ws66{word-spacing:0.383040px;}
.ws4b{word-spacing:0.430920px;}
.ws45{word-spacing:0.478800px;}
.ws3d{word-spacing:0.540000px;}
.ws6f{word-spacing:0.622440px;}
.ws3f{word-spacing:0.792000px;}
.ws77{word-spacing:0.956160px;}
.ws4c{word-spacing:1.292760px;}
.ws4f{word-spacing:1.305720px;}
.ws79{word-spacing:1.627920px;}
.ws71{word-spacing:1.723680px;}
.ws52{word-spacing:1.771560px;}
.ws55{word-spacing:2.154600px;}
.ws76{word-spacing:2.440440px;}
.ws53{word-spacing:2.489760px;}
.ws72{word-spacing:2.552040px;}
.ws5e{word-spacing:3.557520px;}
.ws13{word-spacing:4.218840px;}
.ws61{word-spacing:5.014800px;}
.ws6b{word-spacing:5.329080px;}
.ws68{word-spacing:5.367960px;}
.ws6d{word-spacing:5.424840px;}
.ws62{word-spacing:6.797520px;}
.ws63{word-spacing:7.276320px;}
.ws5d{word-spacing:8.569080px;}
.ws60{word-spacing:8.664840px;}
.ws5f{word-spacing:12.207960px;}
._7{margin-left:-5.938920px;}
._8{margin-left:-4.721616px;}
._3{margin-left:-2.585520px;}
._0{margin-left:-1.436400px;}
._1{width:1.015056px;}
._2{width:2.610000px;}
._a{width:3.618144px;}
._9{width:5.644080px;}
._4{width:10.835280px;}
._6{width:51.976080px;}
._5{width:1852.862328px;}
.fc8{color:rgb(12,100,171);}
.fc6{color:rgb(18,73,154);}
.fc5{color:rgb(204,0,0);}
.fc4{color:rgb(0,153,204);}
.fc1{color:rgb(0,0,255);}
.fc7{color:rgb(51,51,51);}
.fc3{color:rgb(43,43,43);}
.fc2{color:rgb(171,171,171);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:29.880000px;}
.fs2{font-size:36.000000px;}
.fs5{font-size:42.120000px;}
.fs6{font-size:42.840000px;}
.fs1{font-size:45.000000px;}
.fs0{font-size:47.880000px;}
.fs4{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.y0{bottom:0.000000px;}
.y7c{bottom:25.800150px;}
.y8c{bottom:40.220850px;}
.y178{bottom:43.677000px;}
.y159{bottom:53.598150px;}
.y177{bottom:55.377000px;}
.y32{bottom:57.883350px;}
.y158{bottom:66.558150px;}
.y27{bottom:80.174550px;}
.y19{bottom:82.909200px;}
.y157{bottom:87.258150px;}
.y18{bottom:94.609200px;}
.y31{bottom:96.810840px;}
.y156{bottom:98.958150px;}
.y26{bottom:102.044400px;}
.y30{bottom:108.867690px;}
.y176{bottom:110.415600px;}
.y155{bottom:119.882550px;}
.y25{bottom:124.004400px;}
.ydf{bottom:124.714830px;}
.y17{bottom:124.899000px;}
.y2f{bottom:133.792200px;}
.y16{bottom:136.599000px;}
.y154{bottom:139.322550px;}
.yde{bottom:139.749150px;}
.y175{bottom:142.849290px;}
.y24{bottom:145.874550px;}
.y153{bottom:156.872400px;}
.y15{bottom:157.523400px;}
.y174{bottom:157.883610px;}
.y2e{bottom:159.348150px;}
.ydd{bottom:162.250740px;}
.y23{bottom:163.244400px;}
.y124{bottom:170.820000px;}
.y2d{bottom:171.405000px;}
.y14{bottom:176.963400px;}
.ydc{bottom:177.189300px;}
.y123{bottom:182.520000px;}
.ydb{bottom:190.329150px;}
.y2c{bottom:190.969800px;}
.y13{bottom:194.513400px;}
.y22{bottom:195.406950px;}
.yda{bottom:198.429150px;}
.y7b{bottom:208.812150px;}
.y173{bottom:210.156600px;}
.y109{bottom:219.324600px;}
.yd9{bottom:220.114830px;}
.y152{bottom:222.161550px;}
.y7a{bottom:224.022000px;}
.y108{bottom:231.024600px;}
.y172{bottom:231.848040px;}
.y151{bottom:233.861550px;}
.yd8{bottom:235.149150px;}
.y79{bottom:237.612000px;}
.y12{bottom:242.827800px;}
.y171{bottom:246.786600px;}
.yd7{bottom:248.199300px;}
.y107{bottom:251.949000px;}
.y11{bottom:254.527800px;}
.y78{bottom:254.892000px;}
.yd6{bottom:256.299150px;}
.y11e{bottom:256.776600px;}
.y150{bottom:263.257800px;}
.y170{bottom:269.282280px;}
.y77{bottom:270.192150px;}
.y106{bottom:271.389000px;}
.y93{bottom:273.164100px;}
.y14f{bottom:274.957800px;}
.yd5{bottom:277.984830px;}
.y76{bottom:283.782000px;}
.y16f{bottom:284.316600px;}
.y10{bottom:284.817750px;}
.y92{bottom:284.864100px;}
.y105{bottom:288.939000px;}
.y11d{bottom:289.829670px;}
.yd4{bottom:293.019150px;}
.yf{bottom:296.517750px;}
.y75{bottom:297.822150px;}
.y14e{bottom:297.855600px;}
.y16e{bottom:302.496600px;}
.yd3{bottom:306.159150px;}
.y74{bottom:309.882150px;}
.yd2{bottom:314.259150px;}
.y91{bottom:314.260350px;}
.y14d{bottom:315.855600px;}
.ye{bottom:317.442000px;}
.y21{bottom:322.266630px;}
.y2b{bottom:324.978840px;}
.y90{bottom:325.960350px;}
.y14c{bottom:333.765750px;}
.y16d{bottom:334.659150px;}
.yd1{bottom:336.129150px;}
.yd{bottom:336.882000px;}
.y11c{bottom:343.024350px;}
.y73{bottom:343.243950px;}
.y8f{bottom:348.858300px;}
.yd0{bottom:353.499150px;}
.yc{bottom:354.432150px;}
.y20{bottom:355.327770px;}
.y72{bottom:357.283950px;}
.y11b{bottom:364.894200px;}
.y8e{bottom:366.858300px;}
.yee{bottom:368.522400px;}
.y71{bottom:369.343950px;}
.y14b{bottom:379.526400px;}
.yed{bottom:380.222400px;}
.y70{bottom:384.283950px;}
.y8d{bottom:384.768150px;}
.ycf{bottom:385.661700px;}
.y11a{bottom:386.764350px;}
.y14a{bottom:391.226550px;}
.y6f{bottom:396.343950px;}
.y149{bottom:402.476550px;}
.y119{bottom:408.724350px;}
.yec{bottom:409.618800px;}
.y1f{bottom:409.839150px;}
.y6e{bottom:411.283950px;}
.yb{bottom:412.573800px;}
.yeb{bottom:421.318800px;}
.y87{bottom:423.008250px;}
.y148{bottom:423.176550px;}
.y6d{bottom:423.343950px;}
.ya{bottom:424.273800px;}
.y118{bottom:430.594350px;}
.ybb{bottom:431.422500px;}
.y1e{bottom:431.709150px;}
.y147{bottom:434.876550px;}
.yea{bottom:442.243200px;}
.yba{bottom:443.122500px;}
.y6c{bottom:443.802150px;}
.y16c{bottom:447.227400px;}
.y85{bottom:447.578250px;}
.y117{bottom:447.964350px;}
.y1d{bottom:453.669150px;}
.y9{bottom:453.670350px;}
.yb9{bottom:454.372500px;}
.y146{bottom:457.774350px;}
.ye9{bottom:461.683200px;}
.y2a{bottom:464.890950px;}
.y8{bottom:465.370350px;}
.yb8{bottom:466.522500px;}
.y83{bottom:472.148250px;}
.yb7{bottom:475.072500px;}
.y1c{bottom:475.539150px;}
.y145{bottom:475.774350px;}
.y29{bottom:476.947800px;}
.ye8{bottom:479.233200px;}
.y16b{bottom:479.657580px;}
.y116{bottom:480.126600px;}
.yb6{bottom:486.772500px;}
.y48{bottom:488.268150px;}
.y1b{bottom:492.909000px;}
.y144{bottom:493.684350px;}
.y16a{bottom:494.691900px;}
.y197{bottom:494.736000px;}
.y81{bottom:496.808250px;}
.y47{bottom:506.268150px;}
.y196{bottom:506.436150px;}
.yb5{bottom:507.696900px;}
.yce{bottom:512.519160px;}
.y28{bottom:513.517200px;}
.y195{bottom:517.686000px;}
.y46{bottom:524.178000px;}
.y1a{bottom:525.071400px;}
.y104{bottom:525.887400px;}
.yb4{bottom:527.136900px;}
.y194{bottom:529.836000px;}
.y103{bottom:537.587400px;}
.y193{bottom:538.386000px;}
.yb3{bottom:544.686900px;}
.ycd{bottom:545.580300px;}
.y169{bottom:548.197800px;}
.y102{bottom:548.837400px;}
.y192{bottom:550.086000px;}
.y143{bottom:550.932600px;}
.y67{bottom:552.796950px;}
.y1ae{bottom:561.543600px;}
.y142{bottom:562.632600px;}
.y101{bottom:569.537400px;}
.y168{bottom:570.067800px;}
.y66{bottom:571.202550px;}
.y80{bottom:571.590000px;}
.y191{bottom:572.090400px;}
.y45{bottom:572.492550px;}
.y100{bottom:581.237400px;}
.y65{bottom:583.259910px;}
.y44{bottom:584.196750px;}
.y190{bottom:590.090400px;}
.yb2{bottom:591.340950px;}
.y167{bottom:592.027800px;}
.y115{bottom:592.687350px;}
.y141{bottom:592.922400px;}
.y1ad{bottom:593.976930px;}
.y6b{bottom:602.653200px;}
.yb1{bottom:603.040950px;}
.y140{bottom:604.622400px;}
.y18f{bottom:608.000400px;}
.y1ac{bottom:609.011250px;}
.y43{bottom:613.590750px;}
.y166{bottom:613.897800px;}
.yb0{bottom:614.290950px;}
.y6a{bottom:614.623200px;}
.y42{bottom:625.290750px;}
.y13f{bottom:625.546950px;}
.yaf{bottom:626.440950px;}
.y69{bottom:626.593200px;}
.y165{bottom:631.267800px;}
.yae{bottom:634.990950px;}
.y68{bottom:638.653200px;}
.y13e{bottom:644.986950px;}
.yff{bottom:645.120000px;}
.yad{bottom:646.690950px;}
.y41{bottom:648.186750px;}
.y55{bottom:651.924960px;}
.y64{bottom:657.506940px;}
.ycc{bottom:658.133730px;}
.y1ab{bottom:661.224390px;}
.y13d{bottom:662.536950px;}
.yfe{bottom:663.120000px;}
.y164{bottom:663.430200px;}
.y40{bottom:666.186750px;}
.y114{bottom:667.009080px;}
.yac{bottom:667.615350px;}
.y63{bottom:669.479550px;}
.y1aa{bottom:676.162950px;}
.yfd{bottom:681.030000px;}
.y62{bottom:681.536400px;}
.y113{bottom:682.043400px;}
.y3f{bottom:684.096600px;}
.y54{bottom:684.986100px;}
.yab{bottom:687.055350px;}
.y1a9{bottom:689.302950px;}
.ycb{bottom:690.572430px;}
.y186{bottom:693.837600px;}
.y1a8{bottom:697.402950px;}
.y61{bottom:699.314400px;}
.yaa{bottom:704.605350px;}
.y185{bottom:705.532800px;}
.yca{bottom:705.606750px;}
.y13c{bottom:709.191000px;}
.y60{bottom:718.257600px;}
.y1a7{bottom:719.272950px;}
.y13b{bottom:720.891000px;}
.y5f{bottom:730.227750px;}
.y13a{bottom:732.141000px;}
.y184{bottom:735.826800px;}
.y53{bottom:737.235150px;}
.y1a6{bottom:740.958630px;}
.y5e{bottom:742.289550px;}
.y139{bottom:744.291000px;}
.y183{bottom:747.526800px;}
.y138{bottom:752.841000px;}
.y1a5{bottom:755.992950px;}
.yc9{bottom:758.621880px;}
.y52{bottom:759.105150px;}
.y5d{bottom:760.064190px;}
.ya9{bottom:762.747300px;}
.y137{bottom:764.541000px;}
.y182{bottom:768.451800px;}
.y1a4{bottom:774.172950px;}
.ya8{bottom:774.447300px;}
.y5c{bottom:777.933600px;}
.yc8{bottom:780.586830px;}
.y51{bottom:781.065150px;}
.y136{bottom:785.465400px;}
.y181{bottom:787.891800px;}
.y163{bottom:790.287660px;}
.y5b{bottom:796.612800px;}
.ye7{bottom:797.950500px;}
.yc7{bottom:802.456020px;}
.y50{bottom:802.935150px;}
.ya7{bottom:803.843550px;}
.y135{bottom:804.905400px;}
.y180{bottom:805.441950px;}
.y3e{bottom:805.669800px;}
.y1a3{bottom:806.335350px;}
.y5a{bottom:809.482800px;}
.ye6{bottom:809.650350px;}
.ya6{bottom:815.543550px;}
.y3d{bottom:817.365000px;}
.y134{bottom:822.455550px;}
.y162{bottom:823.348800px;}
.y4f{bottom:824.805150px;}
.yc6{bottom:826.396020px;}
.y59{bottom:827.482800px;}
.ya5{bottom:836.467950px;}
.ye5{bottom:839.046750px;}
.yc5{bottom:844.219350px;}
.y58{bottom:844.582800px;}
.y4e{bottom:846.765150px;}
.y3c{bottom:847.659000px;}
.ye4{bottom:850.746750px;}
.y18e{bottom:852.096000px;}
.y112{bottom:853.543080px;}
.ya4{bottom:855.907950px;}
.y57{bottom:856.642950px;}
.y3b{bottom:859.359000px;}
.y18d{bottom:863.796000px;}
.y111{bottom:868.577400px;}
.y4d{bottom:868.635150px;}
.y133{bottom:869.109600px;}
.ye3{bottom:871.108200px;}
.ya3{bottom:873.458100px;}
.yc4{bottom:874.351350px;}
.y18c{bottom:875.046000px;}
.y3a{bottom:880.284000px;}
.y132{bottom:880.809750px;}
.y4c{bottom:885.996360px;}
.y131{bottom:892.059600px;}
.y56{bottom:893.212200px;}
.y18b{bottom:895.746150px;}
.y8b{bottom:895.770000px;}
.y39{bottom:899.724000px;}
.y18a{bottom:907.446150px;}
.y130{bottom:912.759750px;}
.y38{bottom:917.274000px;}
.y4b{bottom:918.159750px;}
.yfc{bottom:918.559350px;}
.ya2{bottom:920.112150px;}
.y110{bottom:923.400000px;}
.y12f{bottom:924.459750px;}
.y189{bottom:928.370400px;}
.yfb{bottom:930.259350px;}
.ya1{bottom:931.812150px;}
.y1a2{bottom:933.198150px;}
.y8a{bottom:935.990850px;}
.ya0{bottom:943.062150px;}
.y10f{bottom:945.360150px;}
.y12e{bottom:945.384150px;}
.y188{bottom:947.810400px;}
.y161{bottom:950.208480px;}
.yfa{bottom:959.655750px;}
.y89{bottom:962.560680px;}
.y9f{bottom:963.762150px;}
.y12d{bottom:964.824150px;}
.y187{bottom:965.360550px;}
.y1a1{bottom:966.258030px;}
.y10e{bottom:967.230150px;}
.yf9{bottom:971.355750px;}
.y9e{bottom:975.462150px;}
.y88{bottom:981.188250px;}
.y12c{bottom:982.374150px;}
.y160{bottom:983.269620px;}
.y10d{bottom:984.600150px;}
.yf8{bottom:994.253550px;}
.y9d{bottom:998.359950px;}
.yc3{bottom:1002.090660px;}
.y86{bottom:1005.758250px;}
.yf7{bottom:1012.253550px;}
.y10c{bottom:1016.142630px;}
.y9c{bottom:1016.359950px;}
.y1a0{bottom:1019.656200px;}
.yf6{bottom:1030.163550px;}
.y84{bottom:1030.328250px;}
.y10b{bottom:1031.176950px;}
.y9b{bottom:1034.269950px;}
.yc2{bottom:1035.151800px;}
.y15f{bottom:1037.781000px;}
.y12b{bottom:1040.515800px;}
.y19f{bottom:1041.341880px;}
.y37{bottom:1045.101150px;}
.y17f{bottom:1052.091000px;}
.y12a{bottom:1052.215800px;}
.y82{bottom:1054.988250px;}
.y19e{bottom:1056.376200px;}
.y36{bottom:1056.800550px;}
.y15e{bottom:1059.651000px;}
.y17e{bottom:1063.795200px;}
.yf5{bottom:1076.817750px;}
.y19d{bottom:1078.877640px;}
.y7f{bottom:1079.558250px;}
.y15d{bottom:1081.611000px;}
.y129{bottom:1081.612200px;}
.y35{bottom:1087.094550px;}
.yc1{bottom:1088.286630px;}
.yf4{bottom:1088.517750px;}
.y9a{bottom:1091.518500px;}
.y17d{bottom:1093.189200px;}
.y128{bottom:1093.312200px;}
.y19c{bottom:1093.816200px;}
.y34{bottom:1098.794550px;}
.yf3{bottom:1099.767750px;}
.y7e{bottom:1100.857800px;}
.y4a{bottom:1101.588030px;}
.y99{bottom:1103.218350px;}
.y15c{bottom:1103.481000px;}
.y17c{bottom:1104.889200px;}
.y19b{bottom:1106.956200px;}
.yc0{bottom:1110.251580px;}
.yf2{bottom:1111.917600px;}
.y19a{bottom:1115.056200px;}
.y127{bottom:1116.210000px;}
.y49{bottom:1116.622350px;}
.y7d{bottom:1117.867800px;}
.y33{bottom:1119.152550px;}
.yf1{bottom:1120.467750px;}
.y15b{bottom:1120.851000px;}
.y17b{bottom:1127.785200px;}
.ybf{bottom:1132.120770px;}
.yf0{bottom:1132.167750px;}
.y199{bottom:1132.426200px;}
.y98{bottom:1132.614750px;}
.y126{bottom:1134.210000px;}
.y97{bottom:1144.314750px;}
.y17a{bottom:1145.785200px;}
.y10a{bottom:1150.772400px;}
.y125{bottom:1152.120000px;}
.y15a{bottom:1153.013400px;}
.yef{bottom:1153.422600px;}
.ybe{bottom:1156.060770px;}
.y179{bottom:1163.695350px;}
.y198{bottom:1164.588750px;}
.y96{bottom:1167.212550px;}
.y7{bottom:1170.076200px;}
.y5{bottom:1172.554800px;}
.ybd{bottom:1173.884100px;}
.y120{bottom:1174.680000px;}
.y122{bottom:1180.009080px;}
.y4{bottom:1183.534950px;}
.y95{bottom:1185.212550px;}
.y6{bottom:1189.731000px;}
.y11f{bottom:1194.030000px;}
.y121{bottom:1195.043400px;}
.y3{bottom:1195.504800px;}
.y94{bottom:1203.122550px;}
.ybc{bottom:1204.016100px;}
.ye0{bottom:1205.209500px;}
.y2{bottom:1214.850090px;}
.ye2{bottom:1214.852070px;}
.y1{bottom:1229.250000px;}
.ye1{bottom:1229.251980px;}
.hf{height:20.702988px;}
.hb{height:31.179199px;}
.h1{height:33.174668px;}
.h3{height:38.412000px;}
.he{height:42.045117px;}
.hc{height:43.929844px;}
.h7{height:44.942040px;}
.h8{height:44.945880px;}
.h2{height:48.015000px;}
.h9{height:49.937344px;}
.h5{height:51.087960px;}
.h6{height:57.618000px;}
.h4{height:60.690960px;}
.hd{height:88.201500px;}
.ha{height:692.910000px;}
.h0{height:1264.500000px;}
.w3{width:161.730000px;}
.w2{width:167.041500px;}
.w0{width:893.970000px;}
.w1{width:894.000000px;}
.x0{left:0.000000px;}
.x1a{left:33.000000px;}
.x13{left:39.030000px;}
.x1{left:47.966850px;}
.xa{left:51.863550px;}
.xe{left:53.469000px;}
.x15{left:57.867000px;}
.x14{left:59.667000px;}
.x16{left:60.707250px;}
.xb{left:72.230400px;}
.xd{left:78.484200px;}
.xf{left:86.530140px;}
.xc{left:88.288650px;}
.x12{left:97.776150px;}
.x10{left:100.819200px;}
.x11{left:115.113600px;}
.x17{left:159.347250px;}
.x2{left:175.152900px;}
.x18{left:231.386850px;}
.x6{left:232.916850px;}
.x5{left:251.636850px;}
.x7{left:334.164150px;}
.x19{left:337.674150px;}
.x9{left:351.894150px;}
.x8{left:353.154150px;}
.x4{left:658.482300px;}
.x3{left:786.238500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4c{letter-spacing:-2.213120pt;}
.ls56{letter-spacing:-2.085440pt;}
.ls59{letter-spacing:-2.042880pt;}
.ls26{letter-spacing:-1.957760pt;}
.ls4d{letter-spacing:-1.915200pt;}
.ls57{letter-spacing:-1.872640pt;}
.ls58{letter-spacing:-1.744960pt;}
.ls2c{letter-spacing:-1.702400pt;}
.ls41{letter-spacing:-1.659840pt;}
.ls4a{letter-spacing:-1.574720pt;}
.ls5f{letter-spacing:-1.447040pt;}
.ls4e{letter-spacing:-1.276800pt;}
.ls1c{letter-spacing:-1.248000pt;}
.ls45{letter-spacing:-1.160640pt;}
.ls40{letter-spacing:-1.149120pt;}
.ls44{letter-spacing:-1.085760pt;}
.ls3e{letter-spacing:-1.064000pt;}
.ls36{letter-spacing:-1.010880pt;}
.ls4f{letter-spacing:-0.864000pt;}
.ls3c{letter-spacing:-0.823680pt;}
.ls5a{letter-spacing:-0.786240pt;}
.ls28{letter-spacing:-0.766080pt;}
.ls18{letter-spacing:-0.760000pt;}
.ls1e{letter-spacing:-0.704000pt;}
.ls48{letter-spacing:-0.673920pt;}
.ls5e{letter-spacing:-0.638400pt;}
.ls2b{letter-spacing:-0.595840pt;}
.ls54{letter-spacing:-0.486720pt;}
.ls1d{letter-spacing:-0.480000pt;}
.ls2a{letter-spacing:-0.468160pt;}
.ls29{letter-spacing:-0.425600pt;}
.ls3f{letter-spacing:-0.383040pt;}
.ls55{letter-spacing:-0.340480pt;}
.ls47{letter-spacing:-0.336960pt;}
.ls2f{letter-spacing:-0.297920pt;}
.ls1a{letter-spacing:-0.288000pt;}
.ls27{letter-spacing:-0.255360pt;}
.ls35{letter-spacing:-0.240000pt;}
.ls1b{letter-spacing:-0.224000pt;}
.ls5d{letter-spacing:-0.170240pt;}
.ls46{letter-spacing:-0.149760pt;}
.ls16{letter-spacing:-0.127680pt;}
.ls52{letter-spacing:-0.112320pt;}
.ls15{letter-spacing:-0.085120pt;}
.ls17{letter-spacing:-0.042560pt;}
.ls13{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.037440pt;}
.ls14{letter-spacing:0.042560pt;}
.ls0{letter-spacing:0.085120pt;}
.ls50{letter-spacing:0.096000pt;}
.ls4{letter-spacing:0.101120pt;}
.ls2d{letter-spacing:0.170240pt;}
.ls37{letter-spacing:0.187200pt;}
.ls5c{letter-spacing:0.212800pt;}
.ls3{letter-spacing:0.224000pt;}
.ls10{letter-spacing:0.266240pt;}
.ls30{letter-spacing:0.340480pt;}
.ls60{letter-spacing:0.383040pt;}
.ls19{letter-spacing:0.400000pt;}
.ls2e{letter-spacing:0.425600pt;}
.lse{letter-spacing:0.449280pt;}
.lsd{letter-spacing:0.468160pt;}
.ls25{letter-spacing:0.544000pt;}
.ls43{letter-spacing:0.553280pt;}
.lsb{letter-spacing:0.561600pt;}
.ls42{letter-spacing:0.638400pt;}
.lsc{letter-spacing:0.672000pt;}
.ls31{letter-spacing:0.680960pt;}
.ls5{letter-spacing:0.736000pt;}
.ls5b{letter-spacing:0.766080pt;}
.ls12{letter-spacing:0.786240pt;}
.ls24{letter-spacing:0.800000pt;}
.ls32{letter-spacing:0.808640pt;}
.ls3b{letter-spacing:0.823680pt;}
.ls33{letter-spacing:0.851200pt;}
.lsa{letter-spacing:0.861120pt;}
.ls22{letter-spacing:0.864000pt;}
.ls3a{letter-spacing:0.898560pt;}
.ls53{letter-spacing:0.936000pt;}
.ls20{letter-spacing:0.960000pt;}
.ls51{letter-spacing:1.008000pt;}
.ls8{letter-spacing:1.010880pt;}
.ls1f{letter-spacing:1.024000pt;}
.ls49{letter-spacing:1.048320pt;}
.ls23{letter-spacing:1.088000pt;}
.lsf{letter-spacing:1.123200pt;}
.ls2{letter-spacing:1.184000pt;}
.ls21{letter-spacing:1.280000pt;}
.ls9{letter-spacing:1.385280pt;}
.ls4b{letter-spacing:1.489600pt;}
.ls1{letter-spacing:1.504000pt;}
.ls34{letter-spacing:1.536000pt;}
.ls38{letter-spacing:1.609920pt;}
.ls3d{letter-spacing:1.632000pt;}
.ls39{letter-spacing:1.759680pt;}
.ls7{letter-spacing:1.760000pt;}
.ls6{letter-spacing:2.048000pt;}
.ws23{word-spacing:-16.656000pt;}
.ws1b{word-spacing:-16.560000pt;}
.ws34{word-spacing:-16.032000pt;}
.ws1a{word-spacing:-15.024000pt;}
.ws5b{word-spacing:-14.814080pt;}
.ws1c{word-spacing:-14.784000pt;}
.ws33{word-spacing:-14.160000pt;}
.ws18{word-spacing:-14.129920pt;}
.ws15{word-spacing:-13.746880pt;}
.ws69{word-spacing:-13.534080pt;}
.ws20{word-spacing:-13.478400pt;}
.ws10{word-spacing:-13.363840pt;}
.ws1f{word-spacing:-13.328640pt;}
.wsc{word-spacing:-13.321280pt;}
.ws6a{word-spacing:-13.278720pt;}
.ws67{word-spacing:-13.193600pt;}
.wsd{word-spacing:-13.065920pt;}
.ws6e{word-spacing:-12.980800pt;}
.ws16{word-spacing:-12.895680pt;}
.ws2d{word-spacing:-12.767040pt;}
.ws12{word-spacing:-12.725440pt;}
.ws6c{word-spacing:-12.682880pt;}
.ws21{word-spacing:-12.617280pt;}
.ws2c{word-spacing:-12.579840pt;}
.wse{word-spacing:-12.555200pt;}
.ws24{word-spacing:-12.257280pt;}
.ws4{word-spacing:-12.120000pt;}
.ws2e{word-spacing:-11.831680pt;}
.ws2b{word-spacing:-11.756160pt;}
.ws3{word-spacing:-11.720000pt;}
.ws1d{word-spacing:-11.718720pt;}
.ws25{word-spacing:-11.661440pt;}
.wsb{word-spacing:-11.363520pt;}
.ws64{word-spacing:-11.344320pt;}
.ws5c{word-spacing:-11.235840pt;}
.wsa{word-spacing:-11.104000pt;}
.ws9{word-spacing:-10.976000pt;}
.ws29{word-spacing:-10.969920pt;}
.ws2{word-spacing:-10.960000pt;}
.ws22{word-spacing:-10.895040pt;}
.ws1e{word-spacing:-10.707840pt;}
.ws28{word-spacing:-10.632960pt;}
.ws30{word-spacing:-10.554880pt;}
.ws35{word-spacing:-10.408320pt;}
.ws2a{word-spacing:-10.296000pt;}
.ws32{word-spacing:-10.256960pt;}
.ws8{word-spacing:-10.016000pt;}
.ws36{word-spacing:-9.921600pt;}
.ws2f{word-spacing:-9.916480pt;}
.ws0{word-spacing:-9.661120pt;}
.ws65{word-spacing:-9.622080pt;}
.ws31{word-spacing:-9.618560pt;}
.ws1{word-spacing:-9.490880pt;}
.ws5{word-spacing:-9.376000pt;}
.ws6{word-spacing:-9.088000pt;}
.ws7{word-spacing:-8.128000pt;}
.ws19{word-spacing:-3.910720pt;}
.ws27{word-spacing:-3.330880pt;}
.ws17{word-spacing:-2.923840pt;}
.ws26{word-spacing:-2.838720pt;}
.ws14{word-spacing:-2.583360pt;}
.ws75{word-spacing:-1.618560pt;}
.ws37{word-spacing:-1.319360pt;}
.ws41{word-spacing:-1.280000pt;}
.ws40{word-spacing:-1.024000pt;}
.ws5a{word-spacing:-0.936000pt;}
.ws3b{word-spacing:-0.851200pt;}
.ws4a{word-spacing:-0.823680pt;}
.ws43{word-spacing:-0.800000pt;}
.ws51{word-spacing:-0.786240pt;}
.ws11{word-spacing:-0.668160pt;}
.ws4e{word-spacing:-0.636480pt;}
.ws44{word-spacing:-0.544000pt;}
.ws48{word-spacing:-0.449280pt;}
.ws47{word-spacing:-0.340480pt;}
.ws59{word-spacing:-0.299520pt;}
.ws42{word-spacing:-0.288000pt;}
.ws58{word-spacing:-0.262080pt;}
.ws49{word-spacing:-0.187200pt;}
.ws54{word-spacing:-0.170240pt;}
.wsf{word-spacing:-0.114880pt;}
.ws56{word-spacing:-0.096000pt;}
.ws74{word-spacing:-0.043840pt;}
.ws4d{word-spacing:-0.037440pt;}
.ws38{word-spacing:0.000000pt;}
.ws3a{word-spacing:0.042560pt;}
.ws57{word-spacing:0.074880pt;}
.ws39{word-spacing:0.085120pt;}
.ws50{word-spacing:0.149760pt;}
.ws70{word-spacing:0.170240pt;}
.ws3c{word-spacing:0.224000pt;}
.ws73{word-spacing:0.255360pt;}
.ws3e{word-spacing:0.288000pt;}
.ws78{word-spacing:0.296640pt;}
.ws46{word-spacing:0.297920pt;}
.ws66{word-spacing:0.340480pt;}
.ws4b{word-spacing:0.383040pt;}
.ws45{word-spacing:0.425600pt;}
.ws3d{word-spacing:0.480000pt;}
.ws6f{word-spacing:0.553280pt;}
.ws3f{word-spacing:0.704000pt;}
.ws77{word-spacing:0.849920pt;}
.ws4c{word-spacing:1.149120pt;}
.ws4f{word-spacing:1.160640pt;}
.ws79{word-spacing:1.447040pt;}
.ws71{word-spacing:1.532160pt;}
.ws52{word-spacing:1.574720pt;}
.ws55{word-spacing:1.915200pt;}
.ws76{word-spacing:2.169280pt;}
.ws53{word-spacing:2.213120pt;}
.ws72{word-spacing:2.268480pt;}
.ws5e{word-spacing:3.162240pt;}
.ws13{word-spacing:3.750080pt;}
.ws61{word-spacing:4.457600pt;}
.ws6b{word-spacing:4.736960pt;}
.ws68{word-spacing:4.771520pt;}
.ws6d{word-spacing:4.822080pt;}
.ws62{word-spacing:6.042240pt;}
.ws63{word-spacing:6.467840pt;}
.ws5d{word-spacing:7.616960pt;}
.ws60{word-spacing:7.702080pt;}
.ws5f{word-spacing:10.851520pt;}
._7{margin-left:-5.279040pt;}
._8{margin-left:-4.196992pt;}
._3{margin-left:-2.298240pt;}
._0{margin-left:-1.276800pt;}
._1{width:0.902272pt;}
._2{width:2.320000pt;}
._a{width:3.216128pt;}
._9{width:5.016960pt;}
._4{width:9.631360pt;}
._6{width:46.200960pt;}
._5{width:1646.988736pt;}
.fs7{font-size:26.560000pt;}
.fs2{font-size:32.000000pt;}
.fs5{font-size:37.440000pt;}
.fs6{font-size:38.080000pt;}
.fs1{font-size:40.000000pt;}
.fs0{font-size:42.560000pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.y0{bottom:0.000000pt;}
.y7c{bottom:22.933467pt;}
.y8c{bottom:35.751867pt;}
.y178{bottom:38.824000pt;}
.y159{bottom:47.642800pt;}
.y177{bottom:49.224000pt;}
.y32{bottom:51.451867pt;}
.y158{bottom:59.162800pt;}
.y27{bottom:71.266267pt;}
.y19{bottom:73.697067pt;}
.y157{bottom:77.562800pt;}
.y18{bottom:84.097067pt;}
.y31{bottom:86.054080pt;}
.y156{bottom:87.962800pt;}
.y26{bottom:90.706133pt;}
.y30{bottom:96.771280pt;}
.y176{bottom:98.147200pt;}
.y155{bottom:106.562267pt;}
.y25{bottom:110.226133pt;}
.ydf{bottom:110.857627pt;}
.y17{bottom:111.021333pt;}
.y2f{bottom:118.926400pt;}
.y16{bottom:121.421333pt;}
.y154{bottom:123.842267pt;}
.yde{bottom:124.221467pt;}
.y175{bottom:126.977147pt;}
.y24{bottom:129.666267pt;}
.y153{bottom:139.442133pt;}
.y15{bottom:140.020800pt;}
.y174{bottom:140.340987pt;}
.y2e{bottom:141.642800pt;}
.ydd{bottom:144.222880pt;}
.y23{bottom:145.106133pt;}
.y124{bottom:151.840000pt;}
.y2d{bottom:152.360000pt;}
.y14{bottom:157.300800pt;}
.ydc{bottom:157.501600pt;}
.y123{bottom:162.240000pt;}
.ydb{bottom:169.181467pt;}
.y2c{bottom:169.750933pt;}
.y13{bottom:172.900800pt;}
.y22{bottom:173.695067pt;}
.yda{bottom:176.381467pt;}
.y7b{bottom:185.610800pt;}
.y173{bottom:186.805867pt;}
.y109{bottom:194.955200pt;}
.yd9{bottom:195.657627pt;}
.y152{bottom:197.476933pt;}
.y7a{bottom:199.130667pt;}
.y108{bottom:205.355200pt;}
.y172{bottom:206.087147pt;}
.y151{bottom:207.876933pt;}
.yd8{bottom:209.021467pt;}
.y79{bottom:211.210667pt;}
.y12{bottom:215.846933pt;}
.y171{bottom:219.365867pt;}
.yd7{bottom:220.621600pt;}
.y107{bottom:223.954667pt;}
.y11{bottom:226.246933pt;}
.y78{bottom:226.570667pt;}
.yd6{bottom:227.821467pt;}
.y11e{bottom:228.245867pt;}
.y150{bottom:234.006933pt;}
.y170{bottom:239.362027pt;}
.y77{bottom:240.170800pt;}
.y106{bottom:241.234667pt;}
.y93{bottom:242.812533pt;}
.y14f{bottom:244.406933pt;}
.yd5{bottom:247.097627pt;}
.y76{bottom:252.250667pt;}
.y16f{bottom:252.725867pt;}
.y10{bottom:253.171333pt;}
.y92{bottom:253.212533pt;}
.y105{bottom:256.834667pt;}
.y11d{bottom:257.626373pt;}
.yd4{bottom:260.461467pt;}
.yf{bottom:263.571333pt;}
.y75{bottom:264.730800pt;}
.y14e{bottom:264.760533pt;}
.y16e{bottom:268.885867pt;}
.yd3{bottom:272.141467pt;}
.y74{bottom:275.450800pt;}
.yd2{bottom:279.341467pt;}
.y91{bottom:279.342533pt;}
.y14d{bottom:280.760533pt;}
.ye{bottom:282.170667pt;}
.y21{bottom:286.459227pt;}
.y2b{bottom:288.870080pt;}
.y90{bottom:289.742533pt;}
.y14c{bottom:296.680667pt;}
.y16d{bottom:297.474800pt;}
.yd1{bottom:298.781467pt;}
.yd{bottom:299.450667pt;}
.y11c{bottom:304.910533pt;}
.y73{bottom:305.105733pt;}
.y8f{bottom:310.096267pt;}
.yd0{bottom:314.221467pt;}
.yc{bottom:315.050800pt;}
.y20{bottom:315.846907pt;}
.y72{bottom:317.585733pt;}
.y11b{bottom:324.350400pt;}
.y8e{bottom:326.096267pt;}
.yee{bottom:327.575467pt;}
.y71{bottom:328.305733pt;}
.y14b{bottom:337.356800pt;}
.yed{bottom:337.975467pt;}
.y70{bottom:341.585733pt;}
.y8d{bottom:342.016133pt;}
.ycf{bottom:342.810400pt;}
.y11a{bottom:343.790533pt;}
.y14a{bottom:347.756933pt;}
.y6f{bottom:352.305733pt;}
.y149{bottom:357.756933pt;}
.y119{bottom:363.310533pt;}
.yec{bottom:364.105600pt;}
.y1f{bottom:364.301467pt;}
.y6e{bottom:365.585733pt;}
.yb{bottom:366.732267pt;}
.yeb{bottom:374.505600pt;}
.y87{bottom:376.007333pt;}
.y148{bottom:376.156933pt;}
.y6d{bottom:376.305733pt;}
.ya{bottom:377.132267pt;}
.y118{bottom:382.750533pt;}
.ybb{bottom:383.486667pt;}
.y1e{bottom:383.741467pt;}
.y147{bottom:386.556933pt;}
.yea{bottom:393.105067pt;}
.yba{bottom:393.886667pt;}
.y6c{bottom:394.490800pt;}
.y16c{bottom:397.535467pt;}
.y85{bottom:397.847333pt;}
.y117{bottom:398.190533pt;}
.y1d{bottom:403.261467pt;}
.y9{bottom:403.262533pt;}
.yb9{bottom:403.886667pt;}
.y146{bottom:406.910533pt;}
.ye9{bottom:410.385067pt;}
.y2a{bottom:413.236400pt;}
.y8{bottom:413.662533pt;}
.yb8{bottom:414.686667pt;}
.y83{bottom:419.687333pt;}
.yb7{bottom:422.286667pt;}
.y1c{bottom:422.701467pt;}
.y145{bottom:422.910533pt;}
.y29{bottom:423.953600pt;}
.ye8{bottom:425.985067pt;}
.y16b{bottom:426.362293pt;}
.y116{bottom:426.779200pt;}
.yb6{bottom:432.686667pt;}
.y48{bottom:434.016133pt;}
.y1b{bottom:438.141333pt;}
.y144{bottom:438.830533pt;}
.y16a{bottom:439.726133pt;}
.y197{bottom:439.765333pt;}
.y81{bottom:441.607333pt;}
.y47{bottom:450.016133pt;}
.y196{bottom:450.165467pt;}
.yb5{bottom:451.286133pt;}
.yce{bottom:455.572587pt;}
.y28{bottom:456.459733pt;}
.y195{bottom:460.165333pt;}
.y46{bottom:465.936000pt;}
.y1a{bottom:466.730133pt;}
.y104{bottom:467.455467pt;}
.yb4{bottom:468.566133pt;}
.y194{bottom:470.965333pt;}
.y103{bottom:477.855467pt;}
.y193{bottom:478.565333pt;}
.yb3{bottom:484.166133pt;}
.ycd{bottom:484.960267pt;}
.y169{bottom:487.286933pt;}
.y102{bottom:487.855467pt;}
.y192{bottom:488.965333pt;}
.y143{bottom:489.717867pt;}
.y67{bottom:491.375067pt;}
.y1ae{bottom:499.149867pt;}
.y142{bottom:500.117867pt;}
.y101{bottom:506.255467pt;}
.y168{bottom:506.726933pt;}
.y66{bottom:507.735600pt;}
.y80{bottom:508.080000pt;}
.y191{bottom:508.524800pt;}
.y45{bottom:508.882267pt;}
.y100{bottom:516.655467pt;}
.y65{bottom:518.453253pt;}
.y44{bottom:519.286000pt;}
.y190{bottom:524.524800pt;}
.yb2{bottom:525.636400pt;}
.y167{bottom:526.246933pt;}
.y115{bottom:526.833200pt;}
.y141{bottom:527.042133pt;}
.y1ad{bottom:527.979493pt;}
.y6b{bottom:535.691733pt;}
.yb1{bottom:536.036400pt;}
.y140{bottom:537.442133pt;}
.y18f{bottom:540.444800pt;}
.y1ac{bottom:541.343333pt;}
.y43{bottom:545.414000pt;}
.y166{bottom:545.686933pt;}
.yb0{bottom:546.036400pt;}
.y6a{bottom:546.331733pt;}
.y42{bottom:555.814000pt;}
.y13f{bottom:556.041733pt;}
.yaf{bottom:556.836400pt;}
.y69{bottom:556.971733pt;}
.y165{bottom:561.126933pt;}
.yae{bottom:564.436400pt;}
.y68{bottom:567.691733pt;}
.y13e{bottom:573.321733pt;}
.yff{bottom:573.440000pt;}
.yad{bottom:574.836400pt;}
.y41{bottom:576.166000pt;}
.y55{bottom:579.488853pt;}
.y64{bottom:584.450613pt;}
.ycc{bottom:585.007760pt;}
.y1ab{bottom:587.755013pt;}
.y13d{bottom:588.921733pt;}
.yfe{bottom:589.440000pt;}
.y164{bottom:589.715733pt;}
.y40{bottom:592.166000pt;}
.y114{bottom:592.896960pt;}
.yac{bottom:593.435867pt;}
.y63{bottom:595.092933pt;}
.y1aa{bottom:601.033733pt;}
.yfd{bottom:605.360000pt;}
.y62{bottom:605.810133pt;}
.y113{bottom:606.260800pt;}
.y3f{bottom:608.085867pt;}
.y54{bottom:608.876533pt;}
.yab{bottom:610.715867pt;}
.y1a9{bottom:612.713733pt;}
.ycb{bottom:613.842160pt;}
.y186{bottom:616.744533pt;}
.y1a8{bottom:619.913733pt;}
.y61{bottom:621.612800pt;}
.yaa{bottom:626.315867pt;}
.y185{bottom:627.140267pt;}
.yca{bottom:627.206000pt;}
.y13c{bottom:630.392000pt;}
.y60{bottom:638.451200pt;}
.y1a7{bottom:639.353733pt;}
.y13b{bottom:640.792000pt;}
.y5f{bottom:649.091333pt;}
.y13a{bottom:650.792000pt;}
.y184{bottom:654.068267pt;}
.y53{bottom:655.320133pt;}
.y1a6{bottom:658.629893pt;}
.y5e{bottom:659.812933pt;}
.y139{bottom:661.592000pt;}
.y183{bottom:664.468267pt;}
.y138{bottom:669.192000pt;}
.y1a5{bottom:671.993733pt;}
.yc9{bottom:674.330560pt;}
.y52{bottom:674.760133pt;}
.y5d{bottom:675.612613pt;}
.ya9{bottom:677.997600pt;}
.y137{bottom:679.592000pt;}
.y182{bottom:683.068267pt;}
.y1a4{bottom:688.153733pt;}
.ya8{bottom:688.397600pt;}
.y5c{bottom:691.496533pt;}
.yc8{bottom:693.854960pt;}
.y51{bottom:694.280133pt;}
.y136{bottom:698.191467pt;}
.y181{bottom:700.348267pt;}
.y163{bottom:702.477920pt;}
.y5b{bottom:708.100267pt;}
.ye7{bottom:709.289333pt;}
.yc7{bottom:713.294240pt;}
.y50{bottom:713.720133pt;}
.ya7{bottom:714.527600pt;}
.y135{bottom:715.471467pt;}
.y180{bottom:715.948400pt;}
.y3e{bottom:716.150933pt;}
.y1a3{bottom:716.742533pt;}
.y5a{bottom:719.540267pt;}
.ye6{bottom:719.689200pt;}
.ya6{bottom:724.927600pt;}
.y3d{bottom:726.546667pt;}
.y134{bottom:731.071600pt;}
.y162{bottom:731.865600pt;}
.y4f{bottom:733.160133pt;}
.yc6{bottom:734.574240pt;}
.y59{bottom:735.540267pt;}
.ya5{bottom:743.527067pt;}
.ye5{bottom:745.819333pt;}
.yc5{bottom:750.417200pt;}
.y58{bottom:750.740267pt;}
.y4e{bottom:752.680133pt;}
.y3c{bottom:753.474667pt;}
.ye4{bottom:756.219333pt;}
.y18e{bottom:757.418667pt;}
.y112{bottom:758.704960pt;}
.ya4{bottom:760.807067pt;}
.y57{bottom:761.460400pt;}
.y3b{bottom:763.874667pt;}
.y18d{bottom:767.818667pt;}
.y111{bottom:772.068800pt;}
.y4d{bottom:772.120133pt;}
.y133{bottom:772.541867pt;}
.ye3{bottom:774.318400pt;}
.ya3{bottom:776.407200pt;}
.yc4{bottom:777.201200pt;}
.y18c{bottom:777.818667pt;}
.y3a{bottom:782.474667pt;}
.y132{bottom:782.942000pt;}
.y4c{bottom:787.552320pt;}
.y131{bottom:792.941867pt;}
.y56{bottom:793.966400pt;}
.y18b{bottom:796.218800pt;}
.y8b{bottom:796.240000pt;}
.y39{bottom:799.754667pt;}
.y18a{bottom:806.618800pt;}
.y130{bottom:811.342000pt;}
.y38{bottom:815.354667pt;}
.y4b{bottom:816.142000pt;}
.yfc{bottom:816.497200pt;}
.ya2{bottom:817.877467pt;}
.y110{bottom:820.800000pt;}
.y12f{bottom:821.742000pt;}
.y189{bottom:825.218133pt;}
.yfb{bottom:826.897200pt;}
.ya1{bottom:828.277467pt;}
.y1a2{bottom:829.509467pt;}
.y8a{bottom:831.991867pt;}
.ya0{bottom:838.277467pt;}
.y10f{bottom:840.320133pt;}
.y12e{bottom:840.341467pt;}
.y188{bottom:842.498133pt;}
.y161{bottom:844.629760pt;}
.yfa{bottom:853.027333pt;}
.y89{bottom:855.609493pt;}
.y9f{bottom:856.677467pt;}
.y12d{bottom:857.621467pt;}
.y187{bottom:858.098267pt;}
.y1a1{bottom:858.896027pt;}
.y10e{bottom:859.760133pt;}
.yf9{bottom:863.427333pt;}
.y9e{bottom:867.077467pt;}
.y88{bottom:872.167333pt;}
.y12c{bottom:873.221467pt;}
.y160{bottom:874.017440pt;}
.y10d{bottom:875.200133pt;}
.yf8{bottom:883.780933pt;}
.y9d{bottom:887.431067pt;}
.yc3{bottom:890.747253pt;}
.y86{bottom:894.007333pt;}
.yf7{bottom:899.780933pt;}
.y10c{bottom:903.237893pt;}
.y9c{bottom:903.431067pt;}
.y1a0{bottom:906.361067pt;}
.yf6{bottom:915.700933pt;}
.y84{bottom:915.847333pt;}
.y10b{bottom:916.601733pt;}
.y9b{bottom:919.351067pt;}
.yc2{bottom:920.134933pt;}
.y15f{bottom:922.472000pt;}
.y12b{bottom:924.902933pt;}
.y19f{bottom:925.637227pt;}
.y37{bottom:928.978800pt;}
.y17f{bottom:935.192000pt;}
.y12a{bottom:935.302933pt;}
.y82{bottom:937.767333pt;}
.y19e{bottom:939.001067pt;}
.y36{bottom:939.378267pt;}
.y15e{bottom:941.912000pt;}
.y17e{bottom:945.595733pt;}
.yf5{bottom:957.171333pt;}
.y19d{bottom:959.002347pt;}
.y7f{bottom:959.607333pt;}
.y15d{bottom:961.432000pt;}
.y129{bottom:961.433067pt;}
.y35{bottom:966.306267pt;}
.yc1{bottom:967.365893pt;}
.yf4{bottom:967.571333pt;}
.y9a{bottom:970.238667pt;}
.y17d{bottom:971.723733pt;}
.y128{bottom:971.833067pt;}
.y19c{bottom:972.281067pt;}
.y34{bottom:976.706267pt;}
.yf3{bottom:977.571333pt;}
.y7e{bottom:978.540267pt;}
.y4a{bottom:979.189360pt;}
.y99{bottom:980.638533pt;}
.y15c{bottom:980.872000pt;}
.y17c{bottom:982.123733pt;}
.y19b{bottom:983.961067pt;}
.yc0{bottom:986.890293pt;}
.yf2{bottom:988.371200pt;}
.y19a{bottom:991.161067pt;}
.y127{bottom:992.186667pt;}
.y49{bottom:992.553200pt;}
.y7d{bottom:993.660267pt;}
.y33{bottom:994.802267pt;}
.yf1{bottom:995.971333pt;}
.y15b{bottom:996.312000pt;}
.y17b{bottom:1002.475733pt;}
.ybf{bottom:1006.329573pt;}
.yf0{bottom:1006.371333pt;}
.y199{bottom:1006.601067pt;}
.y98{bottom:1006.768667pt;}
.y126{bottom:1008.186667pt;}
.y97{bottom:1017.168667pt;}
.y17a{bottom:1018.475733pt;}
.y10a{bottom:1022.908800pt;}
.y125{bottom:1024.106667pt;}
.y15a{bottom:1024.900800pt;}
.yef{bottom:1025.264533pt;}
.ybe{bottom:1027.609573pt;}
.y179{bottom:1034.395867pt;}
.y198{bottom:1035.190000pt;}
.y96{bottom:1037.522267pt;}
.y7{bottom:1040.067733pt;}
.y5{bottom:1042.270933pt;}
.ybd{bottom:1043.452533pt;}
.y120{bottom:1044.160000pt;}
.y122{bottom:1048.896960pt;}
.y4{bottom:1052.031067pt;}
.y95{bottom:1053.522267pt;}
.y6{bottom:1057.538667pt;}
.y11f{bottom:1061.360000pt;}
.y121{bottom:1062.260800pt;}
.y3{bottom:1062.670933pt;}
.y94{bottom:1069.442267pt;}
.ybc{bottom:1070.236533pt;}
.ye0{bottom:1071.297333pt;}
.y2{bottom:1079.866747pt;}
.ye2{bottom:1079.868507pt;}
.y1{bottom:1092.666667pt;}
.ye1{bottom:1092.668427pt;}
.hf{height:18.402656pt;}
.hb{height:27.714844pt;}
.h1{height:29.488594pt;}
.h3{height:34.144000pt;}
.he{height:37.373437pt;}
.hc{height:39.048750pt;}
.h7{height:39.948480pt;}
.h8{height:39.951893pt;}
.h2{height:42.680000pt;}
.h9{height:44.388750pt;}
.h5{height:45.411520pt;}
.h6{height:51.216000pt;}
.h4{height:53.947520pt;}
.hd{height:78.401333pt;}
.ha{height:615.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;}
.x1a{left:29.333333pt;}
.x13{left:34.693333pt;}
.x1{left:42.637200pt;}
.xa{left:46.100933pt;}
.xe{left:47.528000pt;}
.x15{left:51.437333pt;}
.x14{left:53.037333pt;}
.x16{left:53.962000pt;}
.xb{left:64.204800pt;}
.xd{left:69.763733pt;}
.xf{left:76.915680pt;}
.xc{left:78.478800pt;}
.x12{left:86.912133pt;}
.x10{left:89.617067pt;}
.x11{left:102.323200pt;}
.x17{left:141.642000pt;}
.x2{left:155.691467pt;}
.x18{left:205.677200pt;}
.x6{left:207.037200pt;}
.x5{left:223.677200pt;}
.x7{left:297.034800pt;}
.x19{left:300.154800pt;}
.x9{left:312.794800pt;}
.x8{left:313.914800pt;}
.x4{left:585.317600pt;}
.x3{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; }
  