
    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_d8a7e456535f91e86f462a5d.woff')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_852ad85827154e964af898d0.woff')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_2d2d00455c4d9c1858534202.woff')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_29047550b6ab1311d9841cd8.woff')format("woff");}.ff4{font-family:ff4;line-height:0.862793;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_bb521846140a7f52eebe2f58.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_f374f419b4eb706978f4685d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e6e474fc5a2a9c436d5e1ef4.woff')format("woff");}.ff7{font-family:ff7;line-height:0.862793;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);}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.720000px;}
.v1{vertical-align:36.692640px;}
.ls2b{letter-spacing:-0.776880px;}
.ls2a{letter-spacing:-0.537840px;}
.ls22{letter-spacing:-0.397440px;}
.ls14{letter-spacing:-0.358560px;}
.ls39{letter-spacing:-0.298800px;}
.ls5{letter-spacing:-0.287280px;}
.ls6{letter-spacing:-0.263520px;}
.ls12{letter-spacing:-0.241200px;}
.ls1b{letter-spacing:-0.239040px;}
.ls15{letter-spacing:-0.179280px;}
.ls16{letter-spacing:-0.119520px;}
.ls18{letter-spacing:-0.108000px;}
.lsa{letter-spacing:-0.059760px;}
.ls42{letter-spacing:-0.056880px;}
.ls13{letter-spacing:-0.048240px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.048240px;}
.ls17{letter-spacing:0.054000px;}
.ls28{letter-spacing:0.059760px;}
.lsd{letter-spacing:0.064080px;}
.lsc{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.095760px;}
.ls19{letter-spacing:0.096480px;}
.ls29{letter-spacing:0.119520px;}
.ls7{letter-spacing:0.131760px;}
.ls9{letter-spacing:0.179280px;}
.ls1a{letter-spacing:0.192960px;}
.ls11{letter-spacing:0.216000px;}
.ls1c{letter-spacing:0.239040px;}
.ls23{letter-spacing:0.298800px;}
.ls43{letter-spacing:0.341280px;}
.ls8{letter-spacing:0.358560px;}
.ls50{letter-spacing:0.478080px;}
.lsb{letter-spacing:0.617760px;}
.ls49{letter-spacing:0.657360px;}
.ls40{letter-spacing:0.776880px;}
.ls1e{letter-spacing:0.896400px;}
.ls2c{letter-spacing:1.613520px;}
.ls20{letter-spacing:2.330640px;}
.ls21{letter-spacing:3.047760px;}
.ls27{letter-spacing:3.764880px;}
.ls3d{letter-spacing:4.242960px;}
.ls2d{letter-spacing:5.328000px;}
.ls24{letter-spacing:5.916240px;}
.ls26{letter-spacing:8.784720px;}
.ls25{letter-spacing:9.561600px;}
.ls2e{letter-spacing:10.995840px;}
.ls2f{letter-spacing:11.712960px;}
.ls48{letter-spacing:15.298560px;}
.ls4a{letter-spacing:30.895920px;}
.ls3c{letter-spacing:46.732320px;}
.ls3e{letter-spacing:51.264000px;}
.ls38{letter-spacing:52.708320px;}
.ls3f{letter-spacing:53.963280px;}
.ls3b{letter-spacing:55.397520px;}
.ls3a{letter-spacing:56.465280px;}
.ls44{letter-spacing:61.134480px;}
.ls1d{letter-spacing:78.096960px;}
.ls46{letter-spacing:79.392960px;}
.ls34{letter-spacing:80.078400px;}
.ls1f{letter-spacing:82.767600px;}
.lse{letter-spacing:95.914800px;}
.ls36{letter-spacing:107.448480px;}
.ls32{letter-spacing:108.882720px;}
.ls35{letter-spacing:110.316960px;}
.ls1{letter-spacing:162.899280px;}
.ls4b{letter-spacing:167.907600px;}
.ls47{letter-spacing:217.605600px;}
.ls37{letter-spacing:231.271200px;}
.ls31{letter-spacing:243.509040px;}
.ls4d{letter-spacing:260.792640px;}
.ls4f{letter-spacing:260.834400px;}
.ls45{letter-spacing:306.180720px;}
.ls0{letter-spacing:324.882000px;}
.ls30{letter-spacing:421.346160px;}
.ls33{letter-spacing:433.614240px;}
.ls10{letter-spacing:716.582160px;}
.ls41{letter-spacing:850.504320px;}
.ls4e{letter-spacing:1237.868640px;}
.ls4c{letter-spacing:1431.549360px;}
.lsf{letter-spacing:1981.641600px;}
.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;}
}
.ws0{word-spacing:-21.354480px;}
.ws6b{word-spacing:-16.272000px;}
.ws1a{word-spacing:-14.970240px;}
.ws1b{word-spacing:-14.572800px;}
.ws6f{word-spacing:-14.163120px;}
.ws78{word-spacing:-13.983840px;}
.ws4e{word-spacing:-13.804560px;}
.ws11{word-spacing:-13.744800px;}
.ws1c{word-spacing:-13.685040px;}
.ws38{word-spacing:-13.625280px;}
.ws37{word-spacing:-13.565520px;}
.ws9{word-spacing:-13.505760px;}
.ws1{word-spacing:-13.446000px;}
.wsc{word-spacing:-13.386240px;}
.wsb{word-spacing:-13.326480px;}
.ws10{word-spacing:-13.266720px;}
.ws6c{word-spacing:-13.196160px;}
.wsa{word-spacing:-13.147200px;}
.ws6a{word-spacing:-12.798000px;}
.wsd{word-spacing:-12.258000px;}
.wse{word-spacing:-12.096000px;}
.wsf{word-spacing:-11.095200px;}
.ws2b{word-spacing:-3.705120px;}
.ws2a{word-spacing:-3.346560px;}
.ws26{word-spacing:-2.629440px;}
.ws41{word-spacing:-2.450160px;}
.ws2c{word-spacing:-2.270880px;}
.ws7c{word-spacing:-2.151360px;}
.ws2d{word-spacing:-1.912320px;}
.ws57{word-spacing:-1.553760px;}
.ws3d{word-spacing:-1.434240px;}
.ws47{word-spacing:-1.195200px;}
.ws46{word-spacing:-1.015920px;}
.ws42{word-spacing:-0.836640px;}
.ws7d{word-spacing:-0.717120px;}
.ws3c{word-spacing:-0.478080px;}
.ws6{word-spacing:-0.395280px;}
.ws44{word-spacing:-0.298800px;}
.ws18{word-spacing:-0.192960px;}
.ws7{word-spacing:-0.179280px;}
.ws2{word-spacing:-0.144720px;}
.ws43{word-spacing:-0.119520px;}
.ws17{word-spacing:-0.096480px;}
.ws4{word-spacing:-0.095760px;}
.ws4c{word-spacing:-0.059760px;}
.ws15{word-spacing:-0.048240px;}
.ws3{word-spacing:0.000000px;}
.ws19{word-spacing:0.059760px;}
.ws13{word-spacing:0.072000px;}
.ws67{word-spacing:0.119520px;}
.ws14{word-spacing:0.144720px;}
.ws12{word-spacing:0.179280px;}
.ws8{word-spacing:0.239040px;}
.ws16{word-spacing:0.241200px;}
.ws20{word-spacing:0.298800px;}
.ws3f{word-spacing:0.358560px;}
.ws5{word-spacing:0.395280px;}
.ws21{word-spacing:0.418320px;}
.ws5a{word-spacing:0.478080px;}
.ws45{word-spacing:0.537840px;}
.ws29{word-spacing:0.717120px;}
.ws4a{word-spacing:0.776880px;}
.ws32{word-spacing:0.956160px;}
.ws50{word-spacing:1.135440px;}
.ws33{word-spacing:1.254960px;}
.ws4f{word-spacing:1.314720px;}
.ws1e{word-spacing:1.434240px;}
.ws1d{word-spacing:1.673280px;}
.ws53{word-spacing:1.852560px;}
.ws52{word-spacing:1.972080px;}
.ws22{word-spacing:2.031840px;}
.ws3a{word-spacing:2.270880px;}
.ws30{word-spacing:2.390400px;}
.ws23{word-spacing:2.569680px;}
.ws35{word-spacing:3.107520px;}
.ws39{word-spacing:3.286800px;}
.ws6d{word-spacing:3.406320px;}
.ws49{word-spacing:3.824640px;}
.ws63{word-spacing:4.003920px;}
.ws71{word-spacing:4.541760px;}
.ws60{word-spacing:4.721040px;}
.ws31{word-spacing:5.019840px;}
.ws1f{word-spacing:5.258880px;}
.ws40{word-spacing:5.438160px;}
.ws3b{word-spacing:5.976000px;}
.ws76{word-spacing:6.334560px;}
.ws34{word-spacing:6.454080px;}
.ws3e{word-spacing:6.693120px;}
.ws58{word-spacing:7.410240px;}
.ws4b{word-spacing:7.768800px;}
.ws4d{word-spacing:8.127360px;}
.ws70{word-spacing:8.605440px;}
.ws48{word-spacing:8.844480px;}
.ws2e{word-spacing:9.621360px;}
.ws27{word-spacing:10.338480px;}
.ws28{word-spacing:10.517760px;}
.ws55{word-spacing:10.697040px;}
.ws2f{word-spacing:11.055600px;}
.ws59{word-spacing:11.234880px;}
.ws54{word-spacing:11.414160px;}
.ws7b{word-spacing:11.533680px;}
.ws66{word-spacing:11.772720px;}
.ws65{word-spacing:12.489840px;}
.ws69{word-spacing:12.669120px;}
.ws56{word-spacing:13.565520px;}
.ws25{word-spacing:13.924080px;}
.ws24{word-spacing:14.103360px;}
.ws5b{word-spacing:14.820480px;}
.ws73{word-spacing:14.999760px;}
.ws7f{word-spacing:15.059520px;}
.ws7e{word-spacing:15.119280px;}
.ws72{word-spacing:15.358320px;}
.ws74{word-spacing:16.792560px;}
.ws5f{word-spacing:17.688960px;}
.ws51{word-spacing:18.943920px;}
.ws62{word-spacing:19.123200px;}
.ws79{word-spacing:22.529520px;}
.ws75{word-spacing:23.246640px;}
.ws7a{word-spacing:25.457760px;}
.ws6e{word-spacing:26.892000px;}
.ws36{word-spacing:28.087200px;}
.ws77{word-spacing:29.222640px;}
.ws68{word-spacing:29.521440px;}
.ws82{word-spacing:29.760480px;}
.ws81{word-spacing:33.704640px;}
.ws80{word-spacing:34.063200px;}
.ws5e{word-spacing:42.728400px;}
.ws5d{word-spacing:60.297840px;}
.ws61{word-spacing:72.966960px;}
.ws5c{word-spacing:99.619920px;}
.ws64{word-spacing:146.591280px;}
._15{margin-left:-2.968848px;}
._0{margin-left:-1.292832px;}
._2{width:1.321488px;}
._17{width:2.341800px;}
._13{width:3.663072px;}
._14{width:8.079840px;}
._7{width:126.093600px;}
._3{width:317.448000px;}
._5{width:577.019088px;}
._4{width:850.504320px;}
._16{width:920.756880px;}
._6{width:951.003360px;}
._1{width:1264.949280px;}
._11{width:1639.341936px;}
._b{width:1727.562816px;}
._c{width:1795.408272px;}
._10{width:1851.822576px;}
._d{width:1959.178752px;}
._12{width:1998.691344px;}
._a{width:2012.650272px;}
._e{width:2016.102816px;}
._f{width:2041.135488px;}
._8{width:2078.027712px;}
._9{width:2170.177632px;}
.fc7{color:rgb(68,114,196);}
.fc6{color:rgb(255,0,0);}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(17,85,204);}
.fc3{color:rgb(0,123,192);}
.fc2{color:rgb(237,125,49);}
.fc1{color:rgb(126,126,126);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs1{font-size:59.760000px;}
.fs7{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:95.760000px;}
.fs3{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.yd0{bottom:3.960000px;}
.ycf{bottom:22.320000px;}
.y15c{bottom:31.140000px;}
.yb3{bottom:31.320000px;}
.yc0{bottom:40.140000px;}
.yc5{bottom:40.320000px;}
.yd5{bottom:40.500000px;}
.yce{bottom:40.680000px;}
.yb2{bottom:49.500000px;}
.y164{bottom:49.680000px;}
.y21{bottom:57.060000px;}
.yda{bottom:58.860000px;}
.ycd{bottom:59.040000px;}
.y4{bottom:59.758740px;}
.yb9{bottom:76.860000px;}
.y3{bottom:78.119460px;}
.y20{bottom:83.700000px;}
.y152{bottom:86.220000px;}
.yb8{bottom:95.220000px;}
.y188{bottom:104.220000px;}
.y2{bottom:104.760000px;}
.y1f{bottom:108.000000px;}
.y1{bottom:128.340000px;}
.y5e{bottom:138.238740px;}
.y5d{bottom:156.600000px;}
.y10d{bottom:171.000000px;}
.ye5{bottom:174.060000px;}
.y87{bottom:174.777480px;}
.y5c{bottom:174.960000px;}
.y169{bottom:176.936220px;}
.ye7{bottom:186.831900px;}
.yac{bottom:191.160000px;}
.y5b{bottom:193.123980px;}
.y86{bottom:193.138740px;}
.ye6{bottom:196.020000px;}
.y10c{bottom:198.360000px;}
.ye8{bottom:205.193160px;}
.y18d{bottom:209.520000px;}
.y5a{bottom:211.485240px;}
.y85{bottom:211.500000px;}
.y168{bottom:217.978740px;}
.yab{bottom:218.520000px;}
.y10b{bottom:225.540000px;}
.ye1{bottom:229.320000px;}
.y59{bottom:229.846500px;}
.y84{bottom:229.858020px;}
.y177{bottom:233.640000px;}
.y167{bottom:236.340000px;}
.yaa{bottom:236.880000px;}
.ye3{bottom:242.638740px;}
.y18c{bottom:246.600000px;}
.y83{bottom:248.040000px;}
.y58{bottom:248.207760px;}
.y10a{bottom:252.900000px;}
.ye4{bottom:260.820720px;}
.ye2{bottom:261.000000px;}
.ya9{bottom:264.240000px;}
.y18b{bottom:264.960000px;}
.y57{bottom:266.389740px;}
.y82{bottom:266.395500px;}
.y145{bottom:268.020000px;}
.y163{bottom:269.460000px;}
.y109{bottom:271.260000px;}
.y166{bottom:282.420000px;}
.y56{bottom:284.751000px;}
.y81{bottom:284.756760px;}
.ydd{bottom:285.120000px;}
.y108{bottom:289.620000px;}
.y18a{bottom:292.140000px;}
.ye0{bottom:298.258740px;}
.ya8{bottom:300.420000px;}
.y165{bottom:300.780000px;}
.y80{bottom:302.938740px;}
.y55{bottom:303.112260px;}
.yde{bottom:307.260000px;}
.y107{bottom:307.800000px;}
.ydf{bottom:316.620000px;}
.ya7{bottom:318.780000px;}
.y15f{bottom:318.960000px;}
.y189{bottom:319.500000px;}
.y12d{bottom:319.860000px;}
.y54{bottom:321.294240px;}
.y7f{bottom:321.300000px;}
.y106{bottom:335.160000px;}
.ya6{bottom:337.136760px;}
.y162{bottom:337.317480px;}
.y15e{bottom:337.320000px;}
.y187{bottom:337.860000px;}
.y12c{bottom:338.220000px;}
.y53{bottom:339.655500px;}
.y7e{bottom:339.658740px;}
.yd9{bottom:340.740000px;}
.y1b{bottom:341.464860px;}
.ya5{bottom:355.498020px;}
.y161{bottom:355.678740px;}
.y12b{bottom:356.400000px;}
.y52{bottom:358.016760px;}
.y7d{bottom:358.020000px;}
.y105{bottom:362.520000px;}
.y186{bottom:365.065560px;}
.y1a{bottom:368.820000px;}
.ydc{bottom:372.238740px;}
.ya4{bottom:373.680000px;}
.y160{bottom:374.040000px;}
.y12a{bottom:374.760000px;}
.y7c{bottom:376.200000px;}
.y51{bottom:376.378020px;}
.y104{bottom:380.880000px;}
.y185{bottom:383.426820px;}
.ydb{bottom:390.600000px;}
.ya3{bottom:392.040000px;}
.y129{bottom:393.120000px;}
.y7b{bottom:394.558740px;}
.y50{bottom:394.560000px;}
.y15b{bottom:398.160000px;}
.y19{bottom:405.904860px;}
.y103{bottom:408.060000px;}
.ya2{bottom:410.400000px;}
.y184{bottom:410.781960px;}
.y15d{bottom:410.940000px;}
.y128{bottom:411.480000px;}
.y4f{bottom:412.918740px;}
.y7a{bottom:412.920000px;}
.yd4{bottom:414.720000px;}
.y18{bottom:414.898740px;}
.yd8{bottom:427.858740px;}
.ya1{bottom:428.576220px;}
.y183{bottom:429.143220px;}
.y127{bottom:429.660000px;}
.y79{bottom:431.278020px;}
.y4e{bottom:431.280000px;}
.y17{bottom:433.260000px;}
.y102{bottom:435.420000px;}
.yd6{bottom:437.040000px;}
.y158{bottom:438.480000px;}
.yd7{bottom:446.220000px;}
.ya0{bottom:446.937480px;}
.y15a{bottom:447.657480px;}
.y4d{bottom:449.457480px;}
.y78{bottom:449.460000px;}
.y101{bottom:453.780000px;}
.y182{bottom:456.319080px;}
.y157{bottom:456.840000px;}
.y126{bottom:457.020000px;}
.y178{bottom:459.900000px;}
.y9f{bottom:465.298740px;}
.y159{bottom:466.018740px;}
.y4c{bottom:467.818740px;}
.y16{bottom:470.340000px;}
.y100{bottom:472.140000px;}
.y181{bottom:474.680340px;}
.y9e{bottom:483.660000px;}
.y125{bottom:484.380000px;}
.y4b{bottom:486.180000px;}
.yff{bottom:490.320000px;}
.y9d{bottom:501.840000px;}
.yd2{bottom:502.018740px;}
.y180{bottom:502.035480px;}
.y124{bottom:502.560000px;}
.y77{bottom:504.358740px;}
.y4a{bottom:504.532260px;}
.y15{bottom:507.254580px;}
.y151{bottom:508.320000px;}
.yfe{bottom:517.680000px;}
.yd3{bottom:520.200720px;}
.yd1{bottom:520.380000px;}
.y17f{bottom:520.396740px;}
.y123{bottom:520.920000px;}
.y156{bottom:521.276220px;}
.y49{bottom:522.714240px;}
.y76{bottom:522.720000px;}
.y14{bottom:534.609720px;}
.y122{bottom:539.280000px;}
.y155{bottom:539.637480px;}
.y9c{bottom:539.640000px;}
.y48{bottom:541.075500px;}
.y75{bottom:541.080000px;}
.yc9{bottom:544.320000px;}
.yfd{bottom:544.860000px;}
.y17e{bottom:547.572600px;}
.ycb{bottom:557.286120px;}
.y121{bottom:557.640000px;}
.y154{bottom:557.998740px;}
.y9b{bottom:558.000000px;}
.y47{bottom:559.436760px;}
.y74{bottom:559.440000px;}
.y13{bottom:561.964860px;}
.y150{bottom:562.680000px;}
.yca{bottom:566.280000px;}
.y13f{bottom:571.500000px;}
.yfc{bottom:572.220000px;}
.y17d{bottom:574.927740px;}
.ycc{bottom:575.647380px;}
.y120{bottom:575.820000px;}
.y9a{bottom:576.180000px;}
.y153{bottom:576.360000px;}
.y73{bottom:577.617480px;}
.y46{bottom:577.798020px;}
.y12{bottom:589.320000px;}
.y13e{bottom:589.860000px;}
.y11f{bottom:594.180000px;}
.y99{bottom:594.540000px;}
.y72{bottom:595.978740px;}
.y45{bottom:595.980000px;}
.yfb{bottom:599.580000px;}
.yc4{bottom:599.760000px;}
.y17c{bottom:602.103600px;}
.y13d{bottom:608.220000px;}
.y144{bottom:609.660000px;}
.y11e{bottom:612.540000px;}
.yc7{bottom:612.726120px;}
.y98{bottom:612.898740px;}
.y44{bottom:614.336760px;}
.y71{bottom:614.340000px;}
.y17b{bottom:620.464860px;}
.y11{bottom:621.360000px;}
.yc6{bottom:621.720000px;}
.y14f{bottom:622.641600px;}
.y13c{bottom:626.400000px;}
.yfa{bottom:626.940000px;}
.yc8{bottom:631.087380px;}
.y97{bottom:631.260000px;}
.y43{bottom:632.698020px;}
.y70{bottom:632.700000px;}
.y13b{bottom:644.760000px;}
.y17a{bottom:647.820000px;}
.y11d{bottom:648.720000px;}
.y96{bottom:649.440000px;}
.y14e{bottom:649.996740px;}
.y6f{bottom:650.878740px;}
.y42{bottom:650.880000px;}
.y31{bottom:654.666120px;}
.ybf{bottom:655.200000px;}
.yf9{bottom:659.880000px;}
.y13a{bottom:663.120000px;}
.yc2{bottom:667.971900px;}
.y41{bottom:669.240000px;}
.y10{bottom:670.690260px;}
.y30{bottom:672.848100px;}
.y179{bottom:675.180000px;}
.y11c{bottom:676.080000px;}
.yc1{bottom:677.160000px;}
.y14d{bottom:677.172600px;}
.y139{bottom:681.480000px;}
.yc3{bottom:686.333160px;}
.yf8{bottom:687.240000px;}
.y40{bottom:687.600000px;}
.y176{bottom:693.360000px;}
.y11b{bottom:694.440000px;}
.y2f{bottom:698.769000px;}
.y138{bottom:699.660000px;}
.y14c{bottom:704.527740px;}
.y143{bottom:704.700000px;}
.y6e{bottom:705.777480px;}
.y95{bottom:705.780000px;}
.y3f{bottom:705.956760px;}
.yb7{bottom:710.460000px;}
.yf{bottom:711.008820px;}
.y11a{bottom:712.800000px;}
.yf7{bottom:714.600000px;}
.y174{bottom:717.660000px;}
.y137{bottom:718.020000px;}
.y14b{bottom:722.889000px;}
.ybc{bottom:723.420000px;}
.y3e{bottom:724.138740px;}
.y94{bottom:724.140000px;}
.y2e{bottom:726.124140px;}
.y175{bottom:730.440000px;}
.y119{bottom:730.980000px;}
.y142{bottom:732.060000px;}
.yf6{bottom:732.960000px;}
.y3d{bottom:742.500000px;}
.y136{bottom:745.200000px;}
.y173{bottom:748.800000px;}
.y118{bottom:749.340000px;}
.y14a{bottom:750.244140px;}
.ybb{bottom:750.778740px;}
.yf5{bottom:751.140000px;}
.y2d{bottom:753.323580px;}
.y141{bottom:759.240000px;}
.ye{bottom:760.320000px;}
.y93{bottom:760.855500px;}
.y3c{bottom:760.860000px;}
.y135{bottom:763.560000px;}
.yba{bottom:769.140000px;}
.y171{bottom:772.920000px;}
.y117{bottom:776.700000px;}
.y149{bottom:777.420000px;}
.yf4{bottom:778.500000px;}
.y6d{bottom:779.036220px;}
.y92{bottom:779.037480px;}
.y2c{bottom:780.678720px;}
.y134{bottom:781.920000px;}
.y172{bottom:785.880000px;}
.y140{bottom:786.600000px;}
.y3b{bottom:797.220000px;}
.y6c{bottom:797.397480px;}
.y91{bottom:797.398740px;}
.y133{bottom:800.280000px;}
.y116{bottom:804.060000px;}
.y170{bottom:804.240000px;}
.y148{bottom:804.780000px;}
.yf3{bottom:805.860000px;}
.y2b{bottom:808.033860px;}
.yd{bottom:813.210120px;}
.ybe{bottom:814.673520px;}
.y3a{bottom:815.400000px;}
.y6b{bottom:815.758740px;}
.y90{bottom:815.760000px;}
.y132{bottom:818.640000px;}
.y115{bottom:822.240000px;}
.y147{bottom:832.140000px;}
.ybd{bottom:833.034780px;}
.yb6{bottom:833.040000px;}
.y8f{bottom:834.115500px;}
.y6a{bottom:834.120000px;}
.y2a{bottom:835.209720px;}
.y114{bottom:840.600000px;}
.y16f{bottom:841.136220px;}
.yc{bottom:842.560560px;}
.yf2{bottom:851.400000px;}
.y39{bottom:851.760000px;}
.y8e{bottom:852.297480px;}
.y69{bottom:852.300000px;}
.yb1{bottom:857.160000px;}
.y146{bottom:859.320000px;}
.y16e{bottom:859.497480px;}
.y29{bottom:862.564860px;}
.y113{bottom:867.960000px;}
.yf1{bottom:869.760000px;}
.yb4{bottom:870.120000px;}
.y8d{bottom:870.658740px;}
.y68{bottom:870.660000px;}
.y16d{bottom:877.858740px;}
.yb{bottom:886.849560px;}
.y38{bottom:888.120000px;}
.y67{bottom:889.020000px;}
.y28{bottom:889.924860px;}
.y112{bottom:896.220000px;}
.y37{bottom:906.300000px;}
.yf0{bottom:906.480000px;}
.y66{bottom:907.197480px;}
.y8c{bottom:907.198740px;}
.yb5{bottom:915.658740px;}
.ya{bottom:916.200000px;}
.y27{bottom:917.284140px;}
.y131{bottom:924.840000px;}
.y65{bottom:925.558740px;}
.y8b{bottom:925.560000px;}
.y16c{bottom:933.300000px;}
.yef{bottom:933.664860px;}
.yb0{bottom:934.020000px;}
.y111{bottom:935.100000px;}
.y36{bottom:942.660000px;}
.y64{bottom:943.920000px;}
.y26{bottom:944.478720px;}
.y110{bottom:953.460000px;}
.y9{bottom:957.968640px;}
.yee{bottom:961.020000px;}
.y8a{bottom:962.276760px;}
.y63{bottom:962.278020px;}
.y130{bottom:966.060000px;}
.y16b{bottom:970.200000px;}
.yaf{bottom:971.100000px;}
.y10f{bottom:971.820000px;}
.y25{bottom:971.833860px;}
.y35{bottom:979.016760px;}
.y89{bottom:980.458740px;}
.y62{bottom:980.460000px;}
.yae{bottom:989.280000px;}
.y8{bottom:991.269900px;}
.ye9{bottom:994.140000px;}
.y34{bottom:997.378020px;}
.y61{bottom:998.820000px;}
.y10e{bottom:999.180000px;}
.y24{bottom:999.189000px;}
.y12f{bottom:1007.280000px;}
.y33{bottom:1015.560000px;}
.yeb{bottom:1016.458020px;}
.y60{bottom:1017.178740px;}
.y88{bottom:1017.180000px;}
.yad{bottom:1017.540000px;}
.y7{bottom:1024.571160px;}
.yed{bottom:1025.638740px;}
.y12e{bottom:1025.640000px;}
.y23{bottom:1026.544140px;}
.yea{bottom:1034.640000px;}
.y16a{bottom:1035.538020px;}
.y5f{bottom:1035.540000px;}
.yec{bottom:1044.000000px;}
.y6{bottom:1051.747020px;}
.y32{bottom:1052.460000px;}
.y22{bottom:1053.720000px;}
.y5{bottom:1079.640000px;}
.y1e{bottom:1081.080000px;}
.y1d{bottom:1120.140000px;}
.y1c{bottom:1195.380000px;}
.h2{height:39.783867px;}
.h25{height:40.909922px;}
.h4{height:49.284492px;}
.h3{height:49.286652px;}
.hd{height:49.289532px;}
.he{height:49.292412px;}
.hb{height:49.294572px;}
.h9{height:49.297452px;}
.hf{height:49.299612px;}
.h10{height:49.302492px;}
.h14{height:49.305372px;}
.h17{height:49.311852px;}
.ha{height:49.315452px;}
.hc{height:49.348572px;}
.h11{height:50.004492px;}
.h15{height:54.540000px;}
.h8{height:54.628594px;}
.h18{height:54.720000px;}
.h23{height:54.721500px;}
.h1c{height:54.898500px;}
.h1b{height:54.900000px;}
.h7{height:59.378906px;}
.h1d{height:68.004492px;}
.h1a{height:73.260000px;}
.h5{height:78.973945px;}
.h16{height:85.977132px;}
.h1e{height:86.004492px;}
.h19{height:86.754012px;}
.h12{height:100.260000px;}
.h20{height:100.621500px;}
.h6{height:108.663398px;}
.h21{height:109.440000px;}
.h22{height:127.800000px;}
.h13{height:145.980000px;}
.h1f{height:282.420000px;}
.h24{height:483.118500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:184.680000px;}
.w4{width:424.980000px;}
.w3{width:435.780000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:7.740000px;}
.x2e{left:34.740000px;}
.x1{left:127.620000px;}
.x17{left:138.600000px;}
.x1d{left:143.100000px;}
.x1f{left:144.180000px;}
.x20{left:145.260000px;}
.x14{left:146.340000px;}
.xc{left:152.460000px;}
.x13{left:154.620000px;}
.x28{left:157.500000px;}
.x12{left:160.560000px;}
.x29{left:173.520000px;}
.x1e{left:177.660000px;}
.x1b{left:180.720000px;}
.xb{left:192.060000px;}
.x2a{left:193.320000px;}
.x1c{left:197.640000px;}
.x23{left:201.060000px;}
.x22{left:202.140000px;}
.x26{left:204.480000px;}
.x9{left:207.354420px;}
.x19{left:208.620000px;}
.x27{left:214.560000px;}
.x2d{left:215.820000px;}
.x2b{left:223.549560px;}
.x4{left:234.360000px;}
.x1a{left:235.620000px;}
.x6{left:241.206840px;}
.x21{left:244.980000px;}
.x2f{left:250.560000px;}
.xa{left:283.676400px;}
.x24{left:318.780000px;}
.x25{left:326.520000px;}
.x15{left:331.740000px;}
.x30{left:344.160000px;}
.x7{left:427.675500px;}
.xd{left:429.847200px;}
.x16{left:444.060000px;}
.x8{left:446.400000px;}
.x10{left:452.700000px;}
.x5{left:457.025940px;}
.x3{left:467.815680px;}
.x2c{left:649.234980px;}
.xe{left:660.789720px;}
.x2{left:675.900000px;}
.xf{left:696.959460px;}
.x11{left:765.360000px;}
@media print{
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.640000pt;}
.v1{vertical-align:32.615680pt;}
.ls2b{letter-spacing:-0.690560pt;}
.ls2a{letter-spacing:-0.478080pt;}
.ls22{letter-spacing:-0.353280pt;}
.ls14{letter-spacing:-0.318720pt;}
.ls39{letter-spacing:-0.265600pt;}
.ls5{letter-spacing:-0.255360pt;}
.ls6{letter-spacing:-0.234240pt;}
.ls12{letter-spacing:-0.214400pt;}
.ls1b{letter-spacing:-0.212480pt;}
.ls15{letter-spacing:-0.159360pt;}
.ls16{letter-spacing:-0.106240pt;}
.ls18{letter-spacing:-0.096000pt;}
.lsa{letter-spacing:-0.053120pt;}
.ls42{letter-spacing:-0.050560pt;}
.ls13{letter-spacing:-0.042880pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.042880pt;}
.ls17{letter-spacing:0.048000pt;}
.ls28{letter-spacing:0.053120pt;}
.lsd{letter-spacing:0.056960pt;}
.lsc{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.085120pt;}
.ls19{letter-spacing:0.085760pt;}
.ls29{letter-spacing:0.106240pt;}
.ls7{letter-spacing:0.117120pt;}
.ls9{letter-spacing:0.159360pt;}
.ls1a{letter-spacing:0.171520pt;}
.ls11{letter-spacing:0.192000pt;}
.ls1c{letter-spacing:0.212480pt;}
.ls23{letter-spacing:0.265600pt;}
.ls43{letter-spacing:0.303360pt;}
.ls8{letter-spacing:0.318720pt;}
.ls50{letter-spacing:0.424960pt;}
.lsb{letter-spacing:0.549120pt;}
.ls49{letter-spacing:0.584320pt;}
.ls40{letter-spacing:0.690560pt;}
.ls1e{letter-spacing:0.796800pt;}
.ls2c{letter-spacing:1.434240pt;}
.ls20{letter-spacing:2.071680pt;}
.ls21{letter-spacing:2.709120pt;}
.ls27{letter-spacing:3.346560pt;}
.ls3d{letter-spacing:3.771520pt;}
.ls2d{letter-spacing:4.736000pt;}
.ls24{letter-spacing:5.258880pt;}
.ls26{letter-spacing:7.808640pt;}
.ls25{letter-spacing:8.499200pt;}
.ls2e{letter-spacing:9.774080pt;}
.ls2f{letter-spacing:10.411520pt;}
.ls48{letter-spacing:13.598720pt;}
.ls4a{letter-spacing:27.463040pt;}
.ls3c{letter-spacing:41.539840pt;}
.ls3e{letter-spacing:45.568000pt;}
.ls38{letter-spacing:46.851840pt;}
.ls3f{letter-spacing:47.967360pt;}
.ls3b{letter-spacing:49.242240pt;}
.ls3a{letter-spacing:50.191360pt;}
.ls44{letter-spacing:54.341760pt;}
.ls1d{letter-spacing:69.419520pt;}
.ls46{letter-spacing:70.571520pt;}
.ls34{letter-spacing:71.180800pt;}
.ls1f{letter-spacing:73.571200pt;}
.lse{letter-spacing:85.257600pt;}
.ls36{letter-spacing:95.509760pt;}
.ls32{letter-spacing:96.784640pt;}
.ls35{letter-spacing:98.059520pt;}
.ls1{letter-spacing:144.799360pt;}
.ls4b{letter-spacing:149.251200pt;}
.ls47{letter-spacing:193.427200pt;}
.ls37{letter-spacing:205.574400pt;}
.ls31{letter-spacing:216.452480pt;}
.ls4d{letter-spacing:231.815680pt;}
.ls4f{letter-spacing:231.852800pt;}
.ls45{letter-spacing:272.160640pt;}
.ls0{letter-spacing:288.784000pt;}
.ls30{letter-spacing:374.529920pt;}
.ls33{letter-spacing:385.434880pt;}
.ls10{letter-spacing:636.961920pt;}
.ls41{letter-spacing:756.003840pt;}
.ls4e{letter-spacing:1100.327680pt;}
.ls4c{letter-spacing:1272.488320pt;}
.lsf{letter-spacing:1761.459200pt;}
.ws0{word-spacing:-18.981760pt;}
.ws6b{word-spacing:-14.464000pt;}
.ws1a{word-spacing:-13.306880pt;}
.ws1b{word-spacing:-12.953600pt;}
.ws6f{word-spacing:-12.589440pt;}
.ws78{word-spacing:-12.430080pt;}
.ws4e{word-spacing:-12.270720pt;}
.ws11{word-spacing:-12.217600pt;}
.ws1c{word-spacing:-12.164480pt;}
.ws38{word-spacing:-12.111360pt;}
.ws37{word-spacing:-12.058240pt;}
.ws9{word-spacing:-12.005120pt;}
.ws1{word-spacing:-11.952000pt;}
.wsc{word-spacing:-11.898880pt;}
.wsb{word-spacing:-11.845760pt;}
.ws10{word-spacing:-11.792640pt;}
.ws6c{word-spacing:-11.729920pt;}
.wsa{word-spacing:-11.686400pt;}
.ws6a{word-spacing:-11.376000pt;}
.wsd{word-spacing:-10.896000pt;}
.wse{word-spacing:-10.752000pt;}
.wsf{word-spacing:-9.862400pt;}
.ws2b{word-spacing:-3.293440pt;}
.ws2a{word-spacing:-2.974720pt;}
.ws26{word-spacing:-2.337280pt;}
.ws41{word-spacing:-2.177920pt;}
.ws2c{word-spacing:-2.018560pt;}
.ws7c{word-spacing:-1.912320pt;}
.ws2d{word-spacing:-1.699840pt;}
.ws57{word-spacing:-1.381120pt;}
.ws3d{word-spacing:-1.274880pt;}
.ws47{word-spacing:-1.062400pt;}
.ws46{word-spacing:-0.903040pt;}
.ws42{word-spacing:-0.743680pt;}
.ws7d{word-spacing:-0.637440pt;}
.ws3c{word-spacing:-0.424960pt;}
.ws6{word-spacing:-0.351360pt;}
.ws44{word-spacing:-0.265600pt;}
.ws18{word-spacing:-0.171520pt;}
.ws7{word-spacing:-0.159360pt;}
.ws2{word-spacing:-0.128640pt;}
.ws43{word-spacing:-0.106240pt;}
.ws17{word-spacing:-0.085760pt;}
.ws4{word-spacing:-0.085120pt;}
.ws4c{word-spacing:-0.053120pt;}
.ws15{word-spacing:-0.042880pt;}
.ws3{word-spacing:0.000000pt;}
.ws19{word-spacing:0.053120pt;}
.ws13{word-spacing:0.064000pt;}
.ws67{word-spacing:0.106240pt;}
.ws14{word-spacing:0.128640pt;}
.ws12{word-spacing:0.159360pt;}
.ws8{word-spacing:0.212480pt;}
.ws16{word-spacing:0.214400pt;}
.ws20{word-spacing:0.265600pt;}
.ws3f{word-spacing:0.318720pt;}
.ws5{word-spacing:0.351360pt;}
.ws21{word-spacing:0.371840pt;}
.ws5a{word-spacing:0.424960pt;}
.ws45{word-spacing:0.478080pt;}
.ws29{word-spacing:0.637440pt;}
.ws4a{word-spacing:0.690560pt;}
.ws32{word-spacing:0.849920pt;}
.ws50{word-spacing:1.009280pt;}
.ws33{word-spacing:1.115520pt;}
.ws4f{word-spacing:1.168640pt;}
.ws1e{word-spacing:1.274880pt;}
.ws1d{word-spacing:1.487360pt;}
.ws53{word-spacing:1.646720pt;}
.ws52{word-spacing:1.752960pt;}
.ws22{word-spacing:1.806080pt;}
.ws3a{word-spacing:2.018560pt;}
.ws30{word-spacing:2.124800pt;}
.ws23{word-spacing:2.284160pt;}
.ws35{word-spacing:2.762240pt;}
.ws39{word-spacing:2.921600pt;}
.ws6d{word-spacing:3.027840pt;}
.ws49{word-spacing:3.399680pt;}
.ws63{word-spacing:3.559040pt;}
.ws71{word-spacing:4.037120pt;}
.ws60{word-spacing:4.196480pt;}
.ws31{word-spacing:4.462080pt;}
.ws1f{word-spacing:4.674560pt;}
.ws40{word-spacing:4.833920pt;}
.ws3b{word-spacing:5.312000pt;}
.ws76{word-spacing:5.630720pt;}
.ws34{word-spacing:5.736960pt;}
.ws3e{word-spacing:5.949440pt;}
.ws58{word-spacing:6.586880pt;}
.ws4b{word-spacing:6.905600pt;}
.ws4d{word-spacing:7.224320pt;}
.ws70{word-spacing:7.649280pt;}
.ws48{word-spacing:7.861760pt;}
.ws2e{word-spacing:8.552320pt;}
.ws27{word-spacing:9.189760pt;}
.ws28{word-spacing:9.349120pt;}
.ws55{word-spacing:9.508480pt;}
.ws2f{word-spacing:9.827200pt;}
.ws59{word-spacing:9.986560pt;}
.ws54{word-spacing:10.145920pt;}
.ws7b{word-spacing:10.252160pt;}
.ws66{word-spacing:10.464640pt;}
.ws65{word-spacing:11.102080pt;}
.ws69{word-spacing:11.261440pt;}
.ws56{word-spacing:12.058240pt;}
.ws25{word-spacing:12.376960pt;}
.ws24{word-spacing:12.536320pt;}
.ws5b{word-spacing:13.173760pt;}
.ws73{word-spacing:13.333120pt;}
.ws7f{word-spacing:13.386240pt;}
.ws7e{word-spacing:13.439360pt;}
.ws72{word-spacing:13.651840pt;}
.ws74{word-spacing:14.926720pt;}
.ws5f{word-spacing:15.723520pt;}
.ws51{word-spacing:16.839040pt;}
.ws62{word-spacing:16.998400pt;}
.ws79{word-spacing:20.026240pt;}
.ws75{word-spacing:20.663680pt;}
.ws7a{word-spacing:22.629120pt;}
.ws6e{word-spacing:23.904000pt;}
.ws36{word-spacing:24.966400pt;}
.ws77{word-spacing:25.975680pt;}
.ws68{word-spacing:26.241280pt;}
.ws82{word-spacing:26.453760pt;}
.ws81{word-spacing:29.959680pt;}
.ws80{word-spacing:30.278400pt;}
.ws5e{word-spacing:37.980800pt;}
.ws5d{word-spacing:53.598080pt;}
.ws61{word-spacing:64.859520pt;}
.ws5c{word-spacing:88.551040pt;}
.ws64{word-spacing:130.303360pt;}
._15{margin-left:-2.638976pt;}
._0{margin-left:-1.149184pt;}
._2{width:1.174656pt;}
._17{width:2.081600pt;}
._13{width:3.256064pt;}
._14{width:7.182080pt;}
._7{width:112.083200pt;}
._3{width:282.176000pt;}
._5{width:512.905856pt;}
._4{width:756.003840pt;}
._16{width:818.450560pt;}
._6{width:845.336320pt;}
._1{width:1124.399360pt;}
._11{width:1457.192832pt;}
._b{width:1535.611392pt;}
._c{width:1595.918464pt;}
._10{width:1646.064512pt;}
._d{width:1741.492224pt;}
._12{width:1776.614528pt;}
._a{width:1789.022464pt;}
._e{width:1792.091392pt;}
._f{width:1814.342656pt;}
._8{width:1847.135744pt;}
._9{width:1929.046784pt;}
.fs6{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs1{font-size:53.120000pt;}
.fs7{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:85.120000pt;}
.fs3{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.yd0{bottom:3.520000pt;}
.ycf{bottom:19.840000pt;}
.y15c{bottom:27.680000pt;}
.yb3{bottom:27.840000pt;}
.yc0{bottom:35.680000pt;}
.yc5{bottom:35.840000pt;}
.yd5{bottom:36.000000pt;}
.yce{bottom:36.160000pt;}
.yb2{bottom:44.000000pt;}
.y164{bottom:44.160000pt;}
.y21{bottom:50.720000pt;}
.yda{bottom:52.320000pt;}
.ycd{bottom:52.480000pt;}
.y4{bottom:53.118880pt;}
.yb9{bottom:68.320000pt;}
.y3{bottom:69.439520pt;}
.y20{bottom:74.400000pt;}
.y152{bottom:76.640000pt;}
.yb8{bottom:84.640000pt;}
.y188{bottom:92.640000pt;}
.y2{bottom:93.120000pt;}
.y1f{bottom:96.000000pt;}
.y1{bottom:114.080000pt;}
.y5e{bottom:122.878880pt;}
.y5d{bottom:139.200000pt;}
.y10d{bottom:152.000000pt;}
.ye5{bottom:154.720000pt;}
.y87{bottom:155.357760pt;}
.y5c{bottom:155.520000pt;}
.y169{bottom:157.276640pt;}
.ye7{bottom:166.072800pt;}
.yac{bottom:169.920000pt;}
.y5b{bottom:171.665760pt;}
.y86{bottom:171.678880pt;}
.ye6{bottom:174.240000pt;}
.y10c{bottom:176.320000pt;}
.ye8{bottom:182.393920pt;}
.y18d{bottom:186.240000pt;}
.y5a{bottom:187.986880pt;}
.y85{bottom:188.000000pt;}
.y168{bottom:193.758880pt;}
.yab{bottom:194.240000pt;}
.y10b{bottom:200.480000pt;}
.ye1{bottom:203.840000pt;}
.y59{bottom:204.308000pt;}
.y84{bottom:204.318240pt;}
.y177{bottom:207.680000pt;}
.y167{bottom:210.080000pt;}
.yaa{bottom:210.560000pt;}
.ye3{bottom:215.678880pt;}
.y18c{bottom:219.200000pt;}
.y83{bottom:220.480000pt;}
.y58{bottom:220.629120pt;}
.y10a{bottom:224.800000pt;}
.ye4{bottom:231.840640pt;}
.ye2{bottom:232.000000pt;}
.ya9{bottom:234.880000pt;}
.y18b{bottom:235.520000pt;}
.y57{bottom:236.790880pt;}
.y82{bottom:236.796000pt;}
.y145{bottom:238.240000pt;}
.y163{bottom:239.520000pt;}
.y109{bottom:241.120000pt;}
.y166{bottom:251.040000pt;}
.y56{bottom:253.112000pt;}
.y81{bottom:253.117120pt;}
.ydd{bottom:253.440000pt;}
.y108{bottom:257.440000pt;}
.y18a{bottom:259.680000pt;}
.ye0{bottom:265.118880pt;}
.ya8{bottom:267.040000pt;}
.y165{bottom:267.360000pt;}
.y80{bottom:269.278880pt;}
.y55{bottom:269.433120pt;}
.yde{bottom:273.120000pt;}
.y107{bottom:273.600000pt;}
.ydf{bottom:281.440000pt;}
.ya7{bottom:283.360000pt;}
.y15f{bottom:283.520000pt;}
.y189{bottom:284.000000pt;}
.y12d{bottom:284.320000pt;}
.y54{bottom:285.594880pt;}
.y7f{bottom:285.600000pt;}
.y106{bottom:297.920000pt;}
.ya6{bottom:299.677120pt;}
.y162{bottom:299.837760pt;}
.y15e{bottom:299.840000pt;}
.y187{bottom:300.320000pt;}
.y12c{bottom:300.640000pt;}
.y53{bottom:301.916000pt;}
.y7e{bottom:301.918880pt;}
.yd9{bottom:302.880000pt;}
.y1b{bottom:303.524320pt;}
.ya5{bottom:315.998240pt;}
.y161{bottom:316.158880pt;}
.y12b{bottom:316.800000pt;}
.y52{bottom:318.237120pt;}
.y7d{bottom:318.240000pt;}
.y105{bottom:322.240000pt;}
.y186{bottom:324.502720pt;}
.y1a{bottom:327.840000pt;}
.ydc{bottom:330.878880pt;}
.ya4{bottom:332.160000pt;}
.y160{bottom:332.480000pt;}
.y12a{bottom:333.120000pt;}
.y7c{bottom:334.400000pt;}
.y51{bottom:334.558240pt;}
.y104{bottom:338.560000pt;}
.y185{bottom:340.823840pt;}
.ydb{bottom:347.200000pt;}
.ya3{bottom:348.480000pt;}
.y129{bottom:349.440000pt;}
.y7b{bottom:350.718880pt;}
.y50{bottom:350.720000pt;}
.y15b{bottom:353.920000pt;}
.y19{bottom:360.804320pt;}
.y103{bottom:362.720000pt;}
.ya2{bottom:364.800000pt;}
.y184{bottom:365.139520pt;}
.y15d{bottom:365.280000pt;}
.y128{bottom:365.760000pt;}
.y4f{bottom:367.038880pt;}
.y7a{bottom:367.040000pt;}
.yd4{bottom:368.640000pt;}
.y18{bottom:368.798880pt;}
.yd8{bottom:380.318880pt;}
.ya1{bottom:380.956640pt;}
.y183{bottom:381.460640pt;}
.y127{bottom:381.920000pt;}
.y79{bottom:383.358240pt;}
.y4e{bottom:383.360000pt;}
.y17{bottom:385.120000pt;}
.y102{bottom:387.040000pt;}
.yd6{bottom:388.480000pt;}
.y158{bottom:389.760000pt;}
.yd7{bottom:396.640000pt;}
.ya0{bottom:397.277760pt;}
.y15a{bottom:397.917760pt;}
.y4d{bottom:399.517760pt;}
.y78{bottom:399.520000pt;}
.y101{bottom:403.360000pt;}
.y182{bottom:405.616960pt;}
.y157{bottom:406.080000pt;}
.y126{bottom:406.240000pt;}
.y178{bottom:408.800000pt;}
.y9f{bottom:413.598880pt;}
.y159{bottom:414.238880pt;}
.y4c{bottom:415.838880pt;}
.y16{bottom:418.080000pt;}
.y100{bottom:419.680000pt;}
.y181{bottom:421.938080pt;}
.y9e{bottom:429.920000pt;}
.y125{bottom:430.560000pt;}
.y4b{bottom:432.160000pt;}
.yff{bottom:435.840000pt;}
.y9d{bottom:446.080000pt;}
.yd2{bottom:446.238880pt;}
.y180{bottom:446.253760pt;}
.y124{bottom:446.720000pt;}
.y77{bottom:448.318880pt;}
.y4a{bottom:448.473120pt;}
.y15{bottom:450.892960pt;}
.y151{bottom:451.840000pt;}
.yfe{bottom:460.160000pt;}
.yd3{bottom:462.400640pt;}
.yd1{bottom:462.560000pt;}
.y17f{bottom:462.574880pt;}
.y123{bottom:463.040000pt;}
.y156{bottom:463.356640pt;}
.y49{bottom:464.634880pt;}
.y76{bottom:464.640000pt;}
.y14{bottom:475.208640pt;}
.y122{bottom:479.360000pt;}
.y155{bottom:479.677760pt;}
.y9c{bottom:479.680000pt;}
.y48{bottom:480.956000pt;}
.y75{bottom:480.960000pt;}
.yc9{bottom:483.840000pt;}
.yfd{bottom:484.320000pt;}
.y17e{bottom:486.731200pt;}
.ycb{bottom:495.365440pt;}
.y121{bottom:495.680000pt;}
.y154{bottom:495.998880pt;}
.y9b{bottom:496.000000pt;}
.y47{bottom:497.277120pt;}
.y74{bottom:497.280000pt;}
.y13{bottom:499.524320pt;}
.y150{bottom:500.160000pt;}
.yca{bottom:503.360000pt;}
.y13f{bottom:508.000000pt;}
.yfc{bottom:508.640000pt;}
.y17d{bottom:511.046880pt;}
.ycc{bottom:511.686560pt;}
.y120{bottom:511.840000pt;}
.y9a{bottom:512.160000pt;}
.y153{bottom:512.320000pt;}
.y73{bottom:513.437760pt;}
.y46{bottom:513.598240pt;}
.y12{bottom:523.840000pt;}
.y13e{bottom:524.320000pt;}
.y11f{bottom:528.160000pt;}
.y99{bottom:528.480000pt;}
.y72{bottom:529.758880pt;}
.y45{bottom:529.760000pt;}
.yfb{bottom:532.960000pt;}
.yc4{bottom:533.120000pt;}
.y17c{bottom:535.203200pt;}
.y13d{bottom:540.640000pt;}
.y144{bottom:541.920000pt;}
.y11e{bottom:544.480000pt;}
.yc7{bottom:544.645440pt;}
.y98{bottom:544.798880pt;}
.y44{bottom:546.077120pt;}
.y71{bottom:546.080000pt;}
.y17b{bottom:551.524320pt;}
.y11{bottom:552.320000pt;}
.yc6{bottom:552.640000pt;}
.y14f{bottom:553.459200pt;}
.y13c{bottom:556.800000pt;}
.yfa{bottom:557.280000pt;}
.yc8{bottom:560.966560pt;}
.y97{bottom:561.120000pt;}
.y43{bottom:562.398240pt;}
.y70{bottom:562.400000pt;}
.y13b{bottom:573.120000pt;}
.y17a{bottom:575.840000pt;}
.y11d{bottom:576.640000pt;}
.y96{bottom:577.280000pt;}
.y14e{bottom:577.774880pt;}
.y6f{bottom:578.558880pt;}
.y42{bottom:578.560000pt;}
.y31{bottom:581.925440pt;}
.ybf{bottom:582.400000pt;}
.yf9{bottom:586.560000pt;}
.y13a{bottom:589.440000pt;}
.yc2{bottom:593.752800pt;}
.y41{bottom:594.880000pt;}
.y10{bottom:596.169120pt;}
.y30{bottom:598.087200pt;}
.y179{bottom:600.160000pt;}
.y11c{bottom:600.960000pt;}
.yc1{bottom:601.920000pt;}
.y14d{bottom:601.931200pt;}
.y139{bottom:605.760000pt;}
.yc3{bottom:610.073920pt;}
.yf8{bottom:610.880000pt;}
.y40{bottom:611.200000pt;}
.y176{bottom:616.320000pt;}
.y11b{bottom:617.280000pt;}
.y2f{bottom:621.128000pt;}
.y138{bottom:621.920000pt;}
.y14c{bottom:626.246880pt;}
.y143{bottom:626.400000pt;}
.y6e{bottom:627.357760pt;}
.y95{bottom:627.360000pt;}
.y3f{bottom:627.517120pt;}
.yb7{bottom:631.520000pt;}
.yf{bottom:632.007840pt;}
.y11a{bottom:633.600000pt;}
.yf7{bottom:635.200000pt;}
.y174{bottom:637.920000pt;}
.y137{bottom:638.240000pt;}
.y14b{bottom:642.568000pt;}
.ybc{bottom:643.040000pt;}
.y3e{bottom:643.678880pt;}
.y94{bottom:643.680000pt;}
.y2e{bottom:645.443680pt;}
.y175{bottom:649.280000pt;}
.y119{bottom:649.760000pt;}
.y142{bottom:650.720000pt;}
.yf6{bottom:651.520000pt;}
.y3d{bottom:660.000000pt;}
.y136{bottom:662.400000pt;}
.y173{bottom:665.600000pt;}
.y118{bottom:666.080000pt;}
.y14a{bottom:666.883680pt;}
.ybb{bottom:667.358880pt;}
.yf5{bottom:667.680000pt;}
.y2d{bottom:669.620960pt;}
.y141{bottom:674.880000pt;}
.ye{bottom:675.840000pt;}
.y93{bottom:676.316000pt;}
.y3c{bottom:676.320000pt;}
.y135{bottom:678.720000pt;}
.yba{bottom:683.680000pt;}
.y171{bottom:687.040000pt;}
.y117{bottom:690.400000pt;}
.y149{bottom:691.040000pt;}
.yf4{bottom:692.000000pt;}
.y6d{bottom:692.476640pt;}
.y92{bottom:692.477760pt;}
.y2c{bottom:693.936640pt;}
.y134{bottom:695.040000pt;}
.y172{bottom:698.560000pt;}
.y140{bottom:699.200000pt;}
.y3b{bottom:708.640000pt;}
.y6c{bottom:708.797760pt;}
.y91{bottom:708.798880pt;}
.y133{bottom:711.360000pt;}
.y116{bottom:714.720000pt;}
.y170{bottom:714.880000pt;}
.y148{bottom:715.360000pt;}
.yf3{bottom:716.320000pt;}
.y2b{bottom:718.252320pt;}
.yd{bottom:722.853440pt;}
.ybe{bottom:724.154240pt;}
.y3a{bottom:724.800000pt;}
.y6b{bottom:725.118880pt;}
.y90{bottom:725.120000pt;}
.y132{bottom:727.680000pt;}
.y115{bottom:730.880000pt;}
.y147{bottom:739.680000pt;}
.ybd{bottom:740.475360pt;}
.yb6{bottom:740.480000pt;}
.y8f{bottom:741.436000pt;}
.y6a{bottom:741.440000pt;}
.y2a{bottom:742.408640pt;}
.y114{bottom:747.200000pt;}
.y16f{bottom:747.676640pt;}
.yc{bottom:748.942720pt;}
.yf2{bottom:756.800000pt;}
.y39{bottom:757.120000pt;}
.y8e{bottom:757.597760pt;}
.y69{bottom:757.600000pt;}
.yb1{bottom:761.920000pt;}
.y146{bottom:763.840000pt;}
.y16e{bottom:763.997760pt;}
.y29{bottom:766.724320pt;}
.y113{bottom:771.520000pt;}
.yf1{bottom:773.120000pt;}
.yb4{bottom:773.440000pt;}
.y8d{bottom:773.918880pt;}
.y68{bottom:773.920000pt;}
.y16d{bottom:780.318880pt;}
.yb{bottom:788.310720pt;}
.y38{bottom:789.440000pt;}
.y67{bottom:790.240000pt;}
.y28{bottom:791.044320pt;}
.y112{bottom:796.640000pt;}
.y37{bottom:805.600000pt;}
.yf0{bottom:805.760000pt;}
.y66{bottom:806.397760pt;}
.y8c{bottom:806.398880pt;}
.yb5{bottom:813.918880pt;}
.ya{bottom:814.400000pt;}
.y27{bottom:815.363680pt;}
.y131{bottom:822.080000pt;}
.y65{bottom:822.718880pt;}
.y8b{bottom:822.720000pt;}
.y16c{bottom:829.600000pt;}
.yef{bottom:829.924320pt;}
.yb0{bottom:830.240000pt;}
.y111{bottom:831.200000pt;}
.y36{bottom:837.920000pt;}
.y64{bottom:839.040000pt;}
.y26{bottom:839.536640pt;}
.y110{bottom:847.520000pt;}
.y9{bottom:851.527680pt;}
.yee{bottom:854.240000pt;}
.y8a{bottom:855.357120pt;}
.y63{bottom:855.358240pt;}
.y130{bottom:858.720000pt;}
.y16b{bottom:862.400000pt;}
.yaf{bottom:863.200000pt;}
.y10f{bottom:863.840000pt;}
.y25{bottom:863.852320pt;}
.y35{bottom:870.237120pt;}
.y89{bottom:871.518880pt;}
.y62{bottom:871.520000pt;}
.yae{bottom:879.360000pt;}
.y8{bottom:881.128800pt;}
.ye9{bottom:883.680000pt;}
.y34{bottom:886.558240pt;}
.y61{bottom:887.840000pt;}
.y10e{bottom:888.160000pt;}
.y24{bottom:888.168000pt;}
.y12f{bottom:895.360000pt;}
.y33{bottom:902.720000pt;}
.yeb{bottom:903.518240pt;}
.y60{bottom:904.158880pt;}
.y88{bottom:904.160000pt;}
.yad{bottom:904.480000pt;}
.y7{bottom:910.729920pt;}
.yed{bottom:911.678880pt;}
.y12e{bottom:911.680000pt;}
.y23{bottom:912.483680pt;}
.yea{bottom:919.680000pt;}
.y16a{bottom:920.478240pt;}
.y5f{bottom:920.480000pt;}
.yec{bottom:928.000000pt;}
.y6{bottom:934.886240pt;}
.y32{bottom:935.520000pt;}
.y22{bottom:936.640000pt;}
.y5{bottom:959.680000pt;}
.y1e{bottom:960.960000pt;}
.y1d{bottom:995.680000pt;}
.y1c{bottom:1062.560000pt;}
.h2{height:35.363437pt;}
.h25{height:36.364375pt;}
.h4{height:43.808438pt;}
.h3{height:43.810358pt;}
.hd{height:43.812918pt;}
.he{height:43.815477pt;}
.hb{height:43.817398pt;}
.h9{height:43.819958pt;}
.hf{height:43.821877pt;}
.h10{height:43.824438pt;}
.h14{height:43.826997pt;}
.h17{height:43.832758pt;}
.ha{height:43.835958pt;}
.hc{height:43.865397pt;}
.h11{height:44.448438pt;}
.h15{height:48.480000pt;}
.h8{height:48.558750pt;}
.h18{height:48.640000pt;}
.h23{height:48.641333pt;}
.h1c{height:48.798667pt;}
.h1b{height:48.800000pt;}
.h7{height:52.781250pt;}
.h1d{height:60.448438pt;}
.h1a{height:65.120000pt;}
.h5{height:70.199062pt;}
.h16{height:76.424118pt;}
.h1e{height:76.448437pt;}
.h19{height:77.114678pt;}
.h12{height:89.120000pt;}
.h20{height:89.441333pt;}
.h6{height:96.589687pt;}
.h21{height:97.280000pt;}
.h22{height:113.600000pt;}
.h13{height:129.760000pt;}
.h1f{height:251.040000pt;}
.h24{height:429.438667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:164.160000pt;}
.w4{width:377.760000pt;}
.w3{width:387.360000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:6.880000pt;}
.x2e{left:30.880000pt;}
.x1{left:113.440000pt;}
.x17{left:123.200000pt;}
.x1d{left:127.200000pt;}
.x1f{left:128.160000pt;}
.x20{left:129.120000pt;}
.x14{left:130.080000pt;}
.xc{left:135.520000pt;}
.x13{left:137.440000pt;}
.x28{left:140.000000pt;}
.x12{left:142.720000pt;}
.x29{left:154.240000pt;}
.x1e{left:157.920000pt;}
.x1b{left:160.640000pt;}
.xb{left:170.720000pt;}
.x2a{left:171.840000pt;}
.x1c{left:175.680000pt;}
.x23{left:178.720000pt;}
.x22{left:179.680000pt;}
.x26{left:181.760000pt;}
.x9{left:184.315040pt;}
.x19{left:185.440000pt;}
.x27{left:190.720000pt;}
.x2d{left:191.840000pt;}
.x2b{left:198.710720pt;}
.x4{left:208.320000pt;}
.x1a{left:209.440000pt;}
.x6{left:214.406080pt;}
.x21{left:217.760000pt;}
.x2f{left:222.720000pt;}
.xa{left:252.156800pt;}
.x24{left:283.360000pt;}
.x25{left:290.240000pt;}
.x15{left:294.880000pt;}
.x30{left:305.920000pt;}
.x7{left:380.156000pt;}
.xd{left:382.086400pt;}
.x16{left:394.720000pt;}
.x8{left:396.800000pt;}
.x10{left:402.400000pt;}
.x5{left:406.245280pt;}
.x3{left:415.836160pt;}
.x2c{left:577.097760pt;}
.xe{left:587.368640pt;}
.x2{left:600.800000pt;}
.xf{left:619.519520pt;}
.x11{left:680.320000pt;}
}




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