
    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_e85435df9f79350eb854c0d6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_cd890b882beb0f4931a4ef2f.woff2')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_10bc4f82652dbfa0346b451d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_633968d8f2821076f7cf7a22.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.677734;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_5e5ef7130c35c8190cc66d9a.woff2')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_e7188c56aa2d95221b4d7fc8.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d958cc99057463b7c625bda7.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0e2e003bc86d15b1eca09b72.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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;}
.v2{vertical-align:36.000000px;}
.v1{vertical-align:37.440000px;}
.ls1e{letter-spacing:-0.397440px;}
.ls15{letter-spacing:-0.358560px;}
.ls29{letter-spacing:-0.298800px;}
.ls4{letter-spacing:-0.287280px;}
.ls12{letter-spacing:-0.241200px;}
.ls18{letter-spacing:-0.239040px;}
.ls16{letter-spacing:-0.179280px;}
.ls5{letter-spacing:-0.131760px;}
.ls17{letter-spacing:-0.119520px;}
.ls9{letter-spacing:-0.059760px;}
.ls13{letter-spacing:-0.048240px;}
.ls2{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.048240px;}
.lsb{letter-spacing:0.054000px;}
.ls20{letter-spacing:0.059760px;}
.ls35{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.095760px;}
.ls1f{letter-spacing:0.119520px;}
.ls3b{letter-spacing:0.174240px;}
.ls8{letter-spacing:0.179280px;}
.ls33{letter-spacing:0.187920px;}
.ls11{letter-spacing:0.216000px;}
.ls19{letter-spacing:0.239040px;}
.ls1d{letter-spacing:0.264960px;}
.ls7{letter-spacing:0.298800px;}
.ls6{letter-spacing:0.358560px;}
.ls3d{letter-spacing:0.478080px;}
.ls27{letter-spacing:0.537840px;}
.lsa{letter-spacing:0.617760px;}
.ls36{letter-spacing:0.657360px;}
.ls2b{letter-spacing:0.776880px;}
.ls22{letter-spacing:0.896400px;}
.ls21{letter-spacing:1.649376px;}
.ls1c{letter-spacing:2.330640px;}
.ls23{letter-spacing:3.047760px;}
.ls24{letter-spacing:3.764880px;}
.ls26{letter-spacing:6.633360px;}
.ls25{letter-spacing:7.350480px;}
.ls2a{letter-spacing:11.712960px;}
.ls28{letter-spacing:15.298560px;}
.ls3a{letter-spacing:41.234400px;}
.ls31{letter-spacing:46.732320px;}
.ls32{letter-spacing:55.397520px;}
.ls2f{letter-spacing:85.851360px;}
.lse{letter-spacing:95.914800px;}
.ls1a{letter-spacing:111.216960px;}
.ls1b{letter-spacing:113.006160px;}
.ls39{letter-spacing:113.185440px;}
.ls2d{letter-spacing:117.509040px;}
.lsc{letter-spacing:179.739000px;}
.ls30{letter-spacing:273.796560px;}
.ls2e{letter-spacing:307.614240px;}
.ls1{letter-spacing:317.666880px;}
.ls0{letter-spacing:324.882000px;}
.ls2c{letter-spacing:494.066160px;}
.ls10{letter-spacing:797.915520px;}
.ls34{letter-spacing:850.504320px;}
.ls37{letter-spacing:883.587600px;}
.ls38{letter-spacing:990.909360px;}
.ls3c{letter-spacing:1657.008000px;}
.lsd{letter-spacing:1956.431520px;}
.lsf{letter-spacing:1970.124480px;}
.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;}
.ws18{word-spacing:-15.235200px;}
.ws19{word-spacing:-14.572800px;}
.ws81{word-spacing:-14.163120px;}
.ws34{word-spacing:-14.043600px;}
.ws8a{word-spacing:-13.983840px;}
.ws35{word-spacing:-13.804560px;}
.wse{word-spacing:-13.744800px;}
.ws5b{word-spacing:-13.685040px;}
.ws1b{word-spacing:-13.625280px;}
.ws1c{word-spacing:-13.565520px;}
.ws1a{word-spacing:-13.505760px;}
.ws1{word-spacing:-13.446000px;}
.wsc{word-spacing:-13.386240px;}
.wsb{word-spacing:-13.326480px;}
.wsd{word-spacing:-13.266720px;}
.wsa{word-spacing:-13.147200px;}
.ws9{word-spacing:-10.950480px;}
.ws4d{word-spacing:-2.988000px;}
.ws4e{word-spacing:-2.748960px;}
.ws4f{word-spacing:-2.629440px;}
.ws63{word-spacing:-2.270880px;}
.ws25{word-spacing:-1.912320px;}
.ws6d{word-spacing:-1.613520px;}
.ws32{word-spacing:-1.553760px;}
.ws26{word-spacing:-1.195200px;}
.ws6a{word-spacing:-1.015920px;}
.ws16{word-spacing:-0.756000px;}
.ws89{word-spacing:-0.478080px;}
.ws1f{word-spacing:-0.298800px;}
.ws5{word-spacing:-0.179280px;}
.ws4{word-spacing:-0.131760px;}
.ws7{word-spacing:-0.119520px;}
.ws14{word-spacing:-0.096480px;}
.ws3{word-spacing:-0.095760px;}
.ws8b{word-spacing:-0.059760px;}
.ws12{word-spacing:-0.048240px;}
.ws2{word-spacing:0.000000px;}
.ws15{word-spacing:0.054000px;}
.ws17{word-spacing:0.059760px;}
.ws10{word-spacing:0.072000px;}
.ws7f{word-spacing:0.119520px;}
.ws11{word-spacing:0.144720px;}
.ws6{word-spacing:0.179280px;}
.ws8{word-spacing:0.239040px;}
.ws13{word-spacing:0.241200px;}
.wsf{word-spacing:0.288000px;}
.ws73{word-spacing:0.298800px;}
.ws6c{word-spacing:0.358560px;}
.ws20{word-spacing:0.418320px;}
.ws64{word-spacing:0.478080px;}
.ws6e{word-spacing:0.537840px;}
.ws3c{word-spacing:0.597600px;}
.ws4c{word-spacing:0.717120px;}
.ws33{word-spacing:0.896400px;}
.ws3d{word-spacing:0.956160px;}
.ws5f{word-spacing:1.135440px;}
.ws23{word-spacing:1.314720px;}
.ws36{word-spacing:1.434240px;}
.ws1d{word-spacing:1.673280px;}
.ws24{word-spacing:1.852560px;}
.ws21{word-spacing:2.031840px;}
.ws61{word-spacing:2.151360px;}
.ws6f{word-spacing:2.330640px;}
.ws60{word-spacing:2.390400px;}
.ws22{word-spacing:2.569680px;}
.ws39{word-spacing:2.748960px;}
.ws51{word-spacing:2.868480px;}
.ws3a{word-spacing:3.107520px;}
.ws50{word-spacing:3.286800px;}
.ws3e{word-spacing:3.466080px;}
.ws43{word-spacing:3.585600px;}
.ws3f{word-spacing:3.824640px;}
.ws46{word-spacing:4.003920px;}
.ws48{word-spacing:4.541760px;}
.ws70{word-spacing:4.721040px;}
.ws47{word-spacing:5.976000px;}
.ws55{word-spacing:6.334560px;}
.ws53{word-spacing:6.454080px;}
.ws54{word-spacing:6.752880px;}
.ws4a{word-spacing:7.051680px;}
.ws52{word-spacing:7.410240px;}
.ws49{word-spacing:7.709040px;}
.ws5a{word-spacing:8.127360px;}
.ws82{word-spacing:8.605440px;}
.ws5d{word-spacing:9.262800px;}
.ws42{word-spacing:9.382320px;}
.ws40{word-spacing:9.621360px;}
.ws41{word-spacing:9.681120px;}
.ws88{word-spacing:9.800640px;}
.ws2c{word-spacing:9.920160px;}
.ws3b{word-spacing:10.099440px;}
.ws2d{word-spacing:10.338480px;}
.ws84{word-spacing:10.517760px;}
.ws2e{word-spacing:10.637280px;}
.ws38{word-spacing:10.697040px;}
.ws67{word-spacing:11.055600px;}
.ws65{word-spacing:11.234880px;}
.ws66{word-spacing:11.354400px;}
.ws31{word-spacing:12.131280px;}
.ws59{word-spacing:12.250800px;}
.ws5e{word-spacing:12.489840px;}
.ws4b{word-spacing:12.848400px;}
.ws62{word-spacing:13.206960px;}
.ws69{word-spacing:13.565520px;}
.ws68{word-spacing:13.924080px;}
.ws37{word-spacing:14.641200px;}
.ws2a{word-spacing:14.940000px;}
.ws27{word-spacing:14.999760px;}
.ws2b{word-spacing:15.358320px;}
.ws28{word-spacing:15.657120px;}
.ws29{word-spacing:16.075440px;}
.ws5c{word-spacing:16.434000px;}
.ws83{word-spacing:16.792560px;}
.ws2f{word-spacing:17.091360px;}
.ws6b{word-spacing:17.151120px;}
.ws30{word-spacing:17.270640px;}
.ws45{word-spacing:19.302480px;}
.ws44{word-spacing:19.661040px;}
.ws58{word-spacing:20.856240px;}
.ws57{word-spacing:21.095280px;}
.ws56{word-spacing:21.394080px;}
.ws1e{word-spacing:21.453840px;}
.ws7e{word-spacing:21.812400px;}
.ws7d{word-spacing:22.529520px;}
.ws85{word-spacing:23.067360px;}
.ws86{word-spacing:23.246640px;}
.ws7a{word-spacing:25.816320px;}
.ws87{word-spacing:26.174880px;}
.ws80{word-spacing:26.892000px;}
.ws79{word-spacing:30.477600px;}
.ws72{word-spacing:30.955680px;}
.ws76{word-spacing:37.290240px;}
.ws77{word-spacing:42.728400px;}
.ws7c{word-spacing:45.238320px;}
.ws7b{word-spacing:53.903520px;}
.ws78{word-spacing:76.911120px;}
.ws71{word-spacing:90.596160px;}
.ws74{word-spacing:201.092400px;}
.ws75{word-spacing:238.322880px;}
._10{margin-left:-10.475496px;}
._1{margin-left:-1.290816px;}
._0{width:1.321488px;}
._13{width:15.047568px;}
._12{width:16.338384px;}
._11{width:22.043520px;}
._14{width:111.505392px;}
._6{width:126.093600px;}
._b{width:170.863776px;}
._15{width:240.407712px;}
._a{width:337.825296px;}
._3{width:425.304288px;}
._2{width:850.504320px;}
._16{width:944.539200px;}
._5{width:968.996880px;}
._4{width:1264.949280px;}
._f{width:1639.341936px;}
._e{width:1851.822576px;}
._9{width:2012.650272px;}
._c{width:2016.102816px;}
._d{width:2041.135488px;}
._7{width:2078.027712px;}
._8{width:2170.177632px;}
.fc8{color:transparent;}
.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);}
.fs4{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs7{font-size:63.360000px;}
.fs6{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.fs2{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.yc7{bottom:3.960000px;}
.y181{bottom:22.140000px;}
.yc6{bottom:22.320000px;}
.y11e{bottom:28.620000px;}
.y17d{bottom:34.380000px;}
.yad{bottom:39.960000px;}
.yb2{bottom:40.140000px;}
.ybf{bottom:40.320000px;}
.ydb{bottom:40.680000px;}
.y173{bottom:52.560000px;}
.y20{bottom:57.060000px;}
.yac{bottom:58.320000px;}
.yb1{bottom:58.500000px;}
.y2{bottom:59.758740px;}
.y179{bottom:64.620000px;}
.y156{bottom:67.860000px;}
.yb4{bottom:76.500000px;}
.ycc{bottom:76.680000px;}
.ybd{bottom:76.860000px;}
.y1{bottom:78.120000px;}
.y1f{bottom:83.698560px;}
.y155{bottom:86.220000px;}
.yc1{bottom:94.860000px;}
.y1e{bottom:98.460000px;}
.y1d{bottom:122.040000px;}
.y16a{bottom:125.820000px;}
.y14b{bottom:132.300000px;}
.y91{bottom:151.367400px;}
.yda{bottom:164.340000px;}
.y193{bottom:169.380000px;}
.y160{bottom:171.540000px;}
.ydd{bottom:177.660000px;}
.yfc{bottom:184.870080px;}
.y77{bottom:185.400000px;}
.y51{bottom:185.580000px;}
.y90{bottom:187.731360px;}
.y15f{bottom:189.900000px;}
.y183{bottom:193.500000px;}
.ydc{bottom:196.020000px;}
.y76{bottom:203.760000px;}
.y15a{bottom:208.080000px;}
.y15e{bottom:208.255500px;}
.y192{bottom:209.500740px;}
.yfb{bottom:212.225220px;}
.yd5{bottom:220.140000px;}
.y50{bottom:221.913900px;}
.y75{bottom:222.120000px;}
.y8f{bottom:224.095320px;}
.y15d{bottom:226.437480px;}
.y159{bottom:226.440000px;}
.y191{bottom:227.682720px;}
.yfa{bottom:230.586480px;}
.y4f{bottom:240.095880px;}
.y74{bottom:240.480000px;}
.yd6{bottom:242.100000px;}
.y15c{bottom:244.798740px;}
.y190{bottom:246.043980px;}
.yd8{bottom:251.098740px;}
.yf9{bottom:257.762340px;}
.y4e{bottom:258.457140px;}
.yd7{bottom:260.100000px;}
.y8e{bottom:260.280000px;}
.yd4{bottom:260.460000px;}
.y15b{bottom:263.160000px;}
.y18f{bottom:264.405240px;}
.y13e{bottom:268.200000px;}
.yd9{bottom:269.280720px;}
.y184{bottom:272.340000px;}
.yf8{bottom:276.123600px;}
.y73{bottom:276.840000px;}
.y18e{bottom:282.587220px;}
.y154{bottom:287.280000px;}
.yd1{bottom:293.400000px;}
.y4d{bottom:294.821100px;}
.y8d{bottom:296.640000px;}
.y158{bottom:300.060000px;}
.y18d{bottom:300.948480px;}
.yf7{bottom:303.478740px;}
.y72{bottom:313.020000px;}
.y4c{bottom:313.182360px;}
.y8c{bottom:315.000000px;}
.yd2{bottom:315.360000px;}
.y157{bottom:318.420000px;}
.y18c{bottom:319.309740px;}
.yf6{bottom:321.840000px;}
.y4b{bottom:331.364340px;}
.y71{bottom:331.380000px;}
.yd3{bottom:333.360000px;}
.yd0{bottom:333.720000px;}
.y151{bottom:336.780000px;}
.y18b{bottom:337.491720px;}
.y4a{bottom:349.725600px;}
.y70{bottom:349.740000px;}
.y8b{bottom:351.180000px;}
.y114{bottom:351.720000px;}
.y150{bottom:355.140000px;}
.y18a{bottom:355.852980px;}
.yf5{bottom:358.020000px;}
.yca{bottom:366.840000px;}
.y49{bottom:368.086860px;}
.y6f{bottom:368.100000px;}
.y113{bottom:370.080000px;}
.y153{bottom:373.498020px;}
.y189{bottom:374.214240px;}
.yf4{bottom:376.380000px;}
.y48{bottom:386.268840px;}
.y6e{bottom:386.280000px;}
.y8a{bottom:387.540000px;}
.ycb{bottom:388.800000px;}
.y152{bottom:391.680000px;}
.y188{bottom:392.575500px;}
.yf3{bottom:394.740000px;}
.y112{bottom:397.260000px;}
.y47{bottom:404.630100px;}
.y6d{bottom:404.640000px;}
.y89{bottom:405.900000px;}
.y187{bottom:410.757480px;}
.y14a{bottom:415.800000px;}
.yce{bottom:416.158740px;}
.y6c{bottom:423.000000px;}
.y88{bottom:424.260000px;}
.y111{bottom:424.620000px;}
.ycd{bottom:425.160000px;}
.yc9{bottom:425.520000px;}
.y138{bottom:428.760000px;}
.y186{bottom:429.118740px;}
.yf2{bottom:430.920000px;}
.ycf{bottom:434.340720px;}
.y46{bottom:440.994060px;}
.y6b{bottom:441.180000px;}
.y87{bottom:442.440000px;}
.y137{bottom:447.120000px;}
.y185{bottom:447.480000px;}
.y110{bottom:451.980000px;}
.y182{bottom:456.660000px;}
.yf1{bottom:458.280000px;}
.yc5{bottom:458.460000px;}
.y45{bottom:459.355320px;}
.y6a{bottom:459.540000px;}
.y86{bottom:460.800000px;}
.y136{bottom:465.480000px;}
.yc8{bottom:471.780000px;}
.y14f{bottom:474.836220px;}
.y149{bottom:474.840000px;}
.y69{bottom:477.900000px;}
.y10f{bottom:479.340000px;}
.y180{bottom:480.780000px;}
.y135{bottom:483.660000px;}
.yf0{bottom:485.660520px;}
.y14e{bottom:493.197480px;}
.y148{bottom:493.200000px;}
.y17f{bottom:493.740000px;}
.y16{bottom:494.640000px;}
.y44{bottom:495.540000px;}
.ybc{bottom:495.900000px;}
.y68{bottom:496.260000px;}
.y85{bottom:497.160000px;}
.y134{bottom:502.020000px;}
.y10e{bottom:506.520000px;}
.y14d{bottom:511.558740px;}
.yef{bottom:513.015660px;}
.y67{bottom:514.440000px;}
.y84{bottom:515.520000px;}
.yc0{bottom:517.860000px;}
.y133{bottom:520.380000px;}
.y13{bottom:522.720000px;}
.y15{bottom:522.724860px;}
.y14c{bottom:529.920000px;}
.y14{bottom:531.718740px;}
.y43{bottom:531.900000px;}
.y83{bottom:533.700000px;}
.y10d{bottom:533.880000px;}
.y17e{bottom:534.060000px;}
.y132{bottom:538.740000px;}
.yee{bottom:540.191520px;}
.y17c{bottom:543.060000px;}
.y12{bottom:550.080000px;}
.y42{bottom:550.260000px;}
.y66{bottom:550.800000px;}
.y82{bottom:552.060000px;}
.ybe{bottom:554.400000px;}
.y131{bottom:556.920000px;}
.ya5{bottom:559.800000px;}
.y10c{bottom:561.240000px;}
.y13d{bottom:563.220000px;}
.yc3{bottom:563.398740px;}
.y178{bottom:567.360000px;}
.yed{bottom:567.546660px;}
.y41{bottom:568.610820px;}
.y65{bottom:569.160000px;}
.y81{bottom:570.420000px;}
.yc2{bottom:572.400000px;}
.y130{bottom:575.280000px;}
.y147{bottom:576.201600px;}
.yc4{bottom:581.760000px;}
.y17b{bottom:583.380000px;}
.y11{bottom:587.160000px;}
.y64{bottom:587.520000px;}
.y10b{bottom:588.600000px;}
.yec{bottom:600.489360px;}
.y17a{bottom:601.560000px;}
.y12f{bottom:602.640000px;}
.y30{bottom:603.007380px;}
.y146{bottom:603.556740px;}
.y40{bottom:604.795500px;}
.ya4{bottom:605.520000px;}
.y63{bottom:605.700000px;}
.yba{bottom:605.880000px;}
.y80{bottom:606.600000px;}
.y10a{bottom:615.780000px;}
.y12e{bottom:621.000000px;}
.y177{bottom:622.800000px;}
.y3f{bottom:623.156760px;}
.y62{bottom:624.060000px;}
.y10{bottom:624.249000px;}
.y7f{bottom:624.960000px;}
.yb9{bottom:627.840000px;}
.y2f{bottom:628.749000px;}
.y145{bottom:630.732600px;}
.ya3{bottom:632.700000px;}
.yeb{bottom:633.611340px;}
.y12d{bottom:639.180000px;}
.y3e{bottom:641.518020px;}
.y61{bottom:642.420000px;}
.y109{bottom:643.140000px;}
.y7e{bottom:643.320000px;}
.ybb{bottom:645.840000px;}
.yb8{bottom:646.200000px;}
.y172{bottom:646.920000px;}
.yf{bottom:651.424860px;}
.yea{bottom:651.972600px;}
.y2e{bottom:655.924860px;}
.y12c{bottom:657.540000px;}
.y144{bottom:658.087740px;}
.y13c{bottom:658.260000px;}
.y3d{bottom:659.700000px;}
.y7d{bottom:661.680000px;}
.y175{bottom:663.118020px;}
.y176{bottom:663.124860px;}
.ya2{bottom:669.060000px;}
.y108{bottom:670.500000px;}
.y12b{bottom:675.900000px;}
.y143{bottom:676.449000px;}
.y60{bottom:678.600000px;}
.ye{bottom:678.780000px;}
.yb0{bottom:679.320000px;}
.ye9{bottom:679.327740px;}
.y174{bottom:681.300000px;}
.y2d{bottom:683.284860px;}
.y13b{bottom:685.620000px;}
.ya1{bottom:687.420000px;}
.y171{bottom:690.480000px;}
.y12a{bottom:694.080000px;}
.y3c{bottom:696.060000px;}
.y5f{bottom:696.960000px;}
.y107{bottom:697.680000px;}
.ye8{bottom:697.689000px;}
.y7c{bottom:697.860000px;}
.yb3{bottom:701.100000px;}
.y142{bottom:703.804140px;}
.ya0{bottom:705.597480px;}
.y2c{bottom:710.658720px;}
.yd{bottom:711.000000px;}
.y129{bottom:712.440000px;}
.y13a{bottom:712.800000px;}
.y169{bottom:714.600000px;}
.y5e{bottom:715.320000px;}
.y9f{bottom:723.958740px;}
.ye7{bottom:724.864860px;}
.y106{bottom:725.040000px;}
.yb6{bottom:728.458740px;}
.y170{bottom:730.792260px;}
.y128{bottom:730.800000px;}
.y141{bottom:730.980000px;}
.y3b{bottom:732.420000px;}
.y5d{bottom:733.680000px;}
.y7b{bottom:734.220000px;}
.yb5{bottom:737.460000px;}
.y2b{bottom:737.834580px;}
.y139{bottom:740.160000px;}
.y9e{bottom:742.320000px;}
.yb7{bottom:746.820000px;}
.y16f{bottom:748.974240px;}
.y127{bottom:749.160000px;}
.y3a{bottom:750.780000px;}
.y5c{bottom:751.860000px;}
.ye6{bottom:752.220000px;}
.y105{bottom:752.400000px;}
.y140{bottom:758.340000px;}
.yc{bottom:760.320000px;}
.y9d{bottom:760.680000px;}
.y2a{bottom:765.189720px;}
.y16e{bottom:767.156220px;}
.y126{bottom:767.340000px;}
.y5b{bottom:770.220000px;}
.y7a{bottom:770.580000px;}
.yab{bottom:770.940000px;}
.y9c{bottom:778.855500px;}
.ye5{bottom:779.580000px;}
.y104{bottom:779.760000px;}
.y16d{bottom:785.517480px;}
.y125{bottom:785.700000px;}
.y39{bottom:786.960000px;}
.y79{bottom:788.760000px;}
.yae{bottom:792.540000px;}
.y29{bottom:792.544860px;}
.yaa{bottom:792.900000px;}
.y9b{bottom:797.216760px;}
.ye4{bottom:797.769570px;}
.y103{bottom:797.940000px;}
.y16c{bottom:803.878740px;}
.y124{bottom:804.060000px;}
.y5a{bottom:806.580000px;}
.ya9{bottom:811.260000px;}
.y13f{bottom:813.060000px;}
.yb{bottom:813.210120px;}
.y9a{bottom:815.578020px;}
.y28{bottom:819.900000px;}
.yaf{bottom:820.260000px;}
.y16b{bottom:822.240000px;}
.y123{bottom:822.420000px;}
.y38{bottom:823.320000px;}
.y59{bottom:824.760000px;}
.y78{bottom:825.120000px;}
.ye3{bottom:825.124710px;}
.y102{bottom:825.300000px;}
.y168{bottom:831.420000px;}
.y99{bottom:833.760000px;}
.y37{bottom:841.680000px;}
.ya{bottom:842.560560px;}
.y58{bottom:843.120000px;}
.y27{bottom:846.724500px;}
.y122{bottom:847.260000px;}
.ye2{bottom:852.479850px;}
.y101{bottom:852.660000px;}
.y167{bottom:855.540000px;}
.ya8{bottom:857.160000px;}
.y121{bottom:860.040000px;}
.y98{bottom:861.120000px;}
.y57{bottom:861.479850px;}
.y166{bottom:868.498740px;}
.y117{bottom:870.840000px;}
.y26{bottom:872.280000px;}
.ya7{bottom:875.520000px;}
.y36{bottom:877.860000px;}
.y120{bottom:878.400000px;}
.y56{bottom:879.840000px;}
.y100{bottom:880.020000px;}
.y9{bottom:886.849560px;}
.y165{bottom:886.860000px;}
.y97{bottom:888.480000px;}
.ye1{bottom:898.020000px;}
.y25{bottom:898.038720px;}
.y11d{bottom:903.240000px;}
.ya6{bottom:903.600000px;}
.y96{bottom:906.840000px;}
.yff{bottom:907.200000px;}
.y11f{bottom:914.040000px;}
.y35{bottom:914.220000px;}
.y55{bottom:916.020000px;}
.y8{bottom:916.200000px;}
.y11c{bottom:919.620000px;}
.y164{bottom:923.940000px;}
.y95{bottom:925.020000px;}
.y116{bottom:925.380000px;}
.ye0{bottom:925.389000px;}
.y24{bottom:925.393860px;}
.y34{bottom:932.580000px;}
.yfe{bottom:934.560000px;}
.y162{bottom:934.736040px;}
.y163{bottom:942.120000px;}
.y94{bottom:943.380000px;}
.y11a{bottom:948.060000px;}
.y33{bottom:950.940000px;}
.y54{bottom:952.380000px;}
.y115{bottom:952.740000px;}
.ydf{bottom:952.744140px;}
.y23{bottom:952.749000px;}
.y7{bottom:957.966480px;}
.y119{bottom:960.840000px;}
.y93{bottom:961.740000px;}
.yfd{bottom:961.920000px;}
.y32{bottom:969.120000px;}
.y11b{bottom:970.020000px;}
.y53{bottom:970.740000px;}
.y161{bottom:971.100000px;}
.y118{bottom:979.200000px;}
.yde{bottom:979.920000px;}
.y92{bottom:980.100000px;}
.y22{bottom:980.104140px;}
.y52{bottom:989.100000px;}
.y6{bottom:991.267740px;}
.y31{bottom:1006.020000px;}
.y21{bottom:1007.280000px;}
.y5{bottom:1024.569000px;}
.y1c{bottom:1034.640000px;}
.y4{bottom:1051.744860px;}
.y1b{bottom:1072.620000px;}
.y3{bottom:1079.637840px;}
.y1a{bottom:1103.580000px;}
.y19{bottom:1134.540000px;}
.y18{bottom:1164.603600px;}
.y17{bottom:1195.380000px;}
.h7{height:34.625391px;}
.h28{height:36.361500px;}
.h15{height:36.720000px;}
.h8{height:39.783867px;}
.hd{height:40.909922px;}
.h1b{height:42.229687px;}
.h2{height:42.894141px;}
.hf{height:42.904221px;}
.h1e{height:42.909261px;}
.he{height:42.912141px;}
.hb{height:42.930861px;}
.h1a{height:43.200000px;}
.h9{height:44.534180px;}
.h1f{height:47.553233px;}
.h26{height:48.600000px;}
.h3{height:49.284492px;}
.hc{height:49.388892px;}
.h21{height:50.004492px;}
.h19{height:54.540000px;}
.ha{height:54.628594px;}
.h22{height:54.721500px;}
.h18{height:55.080000px;}
.h6{height:59.378906px;}
.h24{height:66.960000px;}
.h17{height:72.540000px;}
.h10{height:72.718500px;}
.h13{height:72.720000px;}
.h25{height:78.840000px;}
.h27{height:78.894141px;}
.h4{height:78.973945px;}
.h12{height:80.334141px;}
.h11{height:90.900000px;}
.h16{height:90.901500px;}
.h5{height:108.663398px;}
.h14{height:109.261500px;}
.h20{height:127.800000px;}
.h23{height:140.220000px;}
.h1d{height:146.700000px;}
.h1c{height:282.420000px;}
.h29{height:286.560000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:105.480000px;}
.w2{width:143.460000px;}
.w3{width:202.860000px;}
.w5{width:435.060000px;}
.w4{width:435.780000px;}
.w7{width:488.340000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x29{left:5.220000px;}
.x25{left:6.300000px;}
.x1a{left:7.740000px;}
.x3c{left:16.560000px;}
.x1d{left:68.220000px;}
.x1f{left:114.300000px;}
.x1e{left:116.460000px;}
.x1b{left:120.420000px;}
.x2{left:127.616220px;}
.x38{left:128.880000px;}
.x3a{left:140.580000px;}
.x27{left:143.100000px;}
.x2a{left:144.180000px;}
.x2b{left:145.440000px;}
.x2c{left:147.060000px;}
.xc{left:148.860000px;}
.xa{left:152.100000px;}
.x12{left:153.720000px;}
.x32{left:157.500000px;}
.x13{left:160.001820px;}
.x36{left:162.360000px;}
.x14{left:168.840000px;}
.x15{left:170.100000px;}
.x33{left:173.520000px;}
.x28{left:177.660000px;}
.x22{left:181.608480px;}
.xb{left:188.280000px;}
.x35{left:193.320000px;}
.x23{left:197.640000px;}
.x2f{left:201.240000px;}
.x2e{left:202.320000px;}
.x31{left:204.660000px;}
.x20{left:208.624680px;}
.x16{left:214.028100px;}
.x5{left:234.360000px;}
.x21{left:235.620000px;}
.x2d{left:245.160000px;}
.x7{left:252.362880px;}
.x24{left:318.780000px;}
.x19{left:324.000000px;}
.x26{left:325.080000px;}
.x30{left:326.520000px;}
.x17{left:331.740000px;}
.x34{left:355.140000px;}
.xd{left:356.940000px;}
.x8{left:427.675500px;}
.xe{left:429.847200px;}
.x9{left:446.400000px;}
.x6{left:457.025940px;}
.x4{left:467.814960px;}
.x18{left:475.920000px;}
.x11{left:574.744320px;}
.x1c{left:615.414780px;}
.xf{left:660.789720px;}
.x3b{left:669.960000px;}
.x3{left:675.899280px;}
.x3d{left:686.520000px;}
.x3f{left:690.300000px;}
.x39{left:692.100000px;}
.x10{left:696.959460px;}
.x37{left:706.500000px;}
.x3e{left:722.689740px;}
.x1{left:765.360000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:32.000000pt;}
.v1{vertical-align:33.280000pt;}
.ls1e{letter-spacing:-0.353280pt;}
.ls15{letter-spacing:-0.318720pt;}
.ls29{letter-spacing:-0.265600pt;}
.ls4{letter-spacing:-0.255360pt;}
.ls12{letter-spacing:-0.214400pt;}
.ls18{letter-spacing:-0.212480pt;}
.ls16{letter-spacing:-0.159360pt;}
.ls5{letter-spacing:-0.117120pt;}
.ls17{letter-spacing:-0.106240pt;}
.ls9{letter-spacing:-0.053120pt;}
.ls13{letter-spacing:-0.042880pt;}
.ls2{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.042880pt;}
.lsb{letter-spacing:0.048000pt;}
.ls20{letter-spacing:0.053120pt;}
.ls35{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.085120pt;}
.ls1f{letter-spacing:0.106240pt;}
.ls3b{letter-spacing:0.154880pt;}
.ls8{letter-spacing:0.159360pt;}
.ls33{letter-spacing:0.167040pt;}
.ls11{letter-spacing:0.192000pt;}
.ls19{letter-spacing:0.212480pt;}
.ls1d{letter-spacing:0.235520pt;}
.ls7{letter-spacing:0.265600pt;}
.ls6{letter-spacing:0.318720pt;}
.ls3d{letter-spacing:0.424960pt;}
.ls27{letter-spacing:0.478080pt;}
.lsa{letter-spacing:0.549120pt;}
.ls36{letter-spacing:0.584320pt;}
.ls2b{letter-spacing:0.690560pt;}
.ls22{letter-spacing:0.796800pt;}
.ls21{letter-spacing:1.466112pt;}
.ls1c{letter-spacing:2.071680pt;}
.ls23{letter-spacing:2.709120pt;}
.ls24{letter-spacing:3.346560pt;}
.ls26{letter-spacing:5.896320pt;}
.ls25{letter-spacing:6.533760pt;}
.ls2a{letter-spacing:10.411520pt;}
.ls28{letter-spacing:13.598720pt;}
.ls3a{letter-spacing:36.652800pt;}
.ls31{letter-spacing:41.539840pt;}
.ls32{letter-spacing:49.242240pt;}
.ls2f{letter-spacing:76.312320pt;}
.lse{letter-spacing:85.257600pt;}
.ls1a{letter-spacing:98.859520pt;}
.ls1b{letter-spacing:100.449920pt;}
.ls39{letter-spacing:100.609280pt;}
.ls2d{letter-spacing:104.452480pt;}
.lsc{letter-spacing:159.768000pt;}
.ls30{letter-spacing:243.374720pt;}
.ls2e{letter-spacing:273.434880pt;}
.ls1{letter-spacing:282.370560pt;}
.ls0{letter-spacing:288.784000pt;}
.ls2c{letter-spacing:439.169920pt;}
.ls10{letter-spacing:709.258240pt;}
.ls34{letter-spacing:756.003840pt;}
.ls37{letter-spacing:785.411200pt;}
.ls38{letter-spacing:880.808320pt;}
.ls3c{letter-spacing:1472.896000pt;}
.lsd{letter-spacing:1739.050240pt;}
.lsf{letter-spacing:1751.221760pt;}
.ws0{word-spacing:-18.981760pt;}
.ws18{word-spacing:-13.542400pt;}
.ws19{word-spacing:-12.953600pt;}
.ws81{word-spacing:-12.589440pt;}
.ws34{word-spacing:-12.483200pt;}
.ws8a{word-spacing:-12.430080pt;}
.ws35{word-spacing:-12.270720pt;}
.wse{word-spacing:-12.217600pt;}
.ws5b{word-spacing:-12.164480pt;}
.ws1b{word-spacing:-12.111360pt;}
.ws1c{word-spacing:-12.058240pt;}
.ws1a{word-spacing:-12.005120pt;}
.ws1{word-spacing:-11.952000pt;}
.wsc{word-spacing:-11.898880pt;}
.wsb{word-spacing:-11.845760pt;}
.wsd{word-spacing:-11.792640pt;}
.wsa{word-spacing:-11.686400pt;}
.ws9{word-spacing:-9.733760pt;}
.ws4d{word-spacing:-2.656000pt;}
.ws4e{word-spacing:-2.443520pt;}
.ws4f{word-spacing:-2.337280pt;}
.ws63{word-spacing:-2.018560pt;}
.ws25{word-spacing:-1.699840pt;}
.ws6d{word-spacing:-1.434240pt;}
.ws32{word-spacing:-1.381120pt;}
.ws26{word-spacing:-1.062400pt;}
.ws6a{word-spacing:-0.903040pt;}
.ws16{word-spacing:-0.672000pt;}
.ws89{word-spacing:-0.424960pt;}
.ws1f{word-spacing:-0.265600pt;}
.ws5{word-spacing:-0.159360pt;}
.ws4{word-spacing:-0.117120pt;}
.ws7{word-spacing:-0.106240pt;}
.ws14{word-spacing:-0.085760pt;}
.ws3{word-spacing:-0.085120pt;}
.ws8b{word-spacing:-0.053120pt;}
.ws12{word-spacing:-0.042880pt;}
.ws2{word-spacing:0.000000pt;}
.ws15{word-spacing:0.048000pt;}
.ws17{word-spacing:0.053120pt;}
.ws10{word-spacing:0.064000pt;}
.ws7f{word-spacing:0.106240pt;}
.ws11{word-spacing:0.128640pt;}
.ws6{word-spacing:0.159360pt;}
.ws8{word-spacing:0.212480pt;}
.ws13{word-spacing:0.214400pt;}
.wsf{word-spacing:0.256000pt;}
.ws73{word-spacing:0.265600pt;}
.ws6c{word-spacing:0.318720pt;}
.ws20{word-spacing:0.371840pt;}
.ws64{word-spacing:0.424960pt;}
.ws6e{word-spacing:0.478080pt;}
.ws3c{word-spacing:0.531200pt;}
.ws4c{word-spacing:0.637440pt;}
.ws33{word-spacing:0.796800pt;}
.ws3d{word-spacing:0.849920pt;}
.ws5f{word-spacing:1.009280pt;}
.ws23{word-spacing:1.168640pt;}
.ws36{word-spacing:1.274880pt;}
.ws1d{word-spacing:1.487360pt;}
.ws24{word-spacing:1.646720pt;}
.ws21{word-spacing:1.806080pt;}
.ws61{word-spacing:1.912320pt;}
.ws6f{word-spacing:2.071680pt;}
.ws60{word-spacing:2.124800pt;}
.ws22{word-spacing:2.284160pt;}
.ws39{word-spacing:2.443520pt;}
.ws51{word-spacing:2.549760pt;}
.ws3a{word-spacing:2.762240pt;}
.ws50{word-spacing:2.921600pt;}
.ws3e{word-spacing:3.080960pt;}
.ws43{word-spacing:3.187200pt;}
.ws3f{word-spacing:3.399680pt;}
.ws46{word-spacing:3.559040pt;}
.ws48{word-spacing:4.037120pt;}
.ws70{word-spacing:4.196480pt;}
.ws47{word-spacing:5.312000pt;}
.ws55{word-spacing:5.630720pt;}
.ws53{word-spacing:5.736960pt;}
.ws54{word-spacing:6.002560pt;}
.ws4a{word-spacing:6.268160pt;}
.ws52{word-spacing:6.586880pt;}
.ws49{word-spacing:6.852480pt;}
.ws5a{word-spacing:7.224320pt;}
.ws82{word-spacing:7.649280pt;}
.ws5d{word-spacing:8.233600pt;}
.ws42{word-spacing:8.339840pt;}
.ws40{word-spacing:8.552320pt;}
.ws41{word-spacing:8.605440pt;}
.ws88{word-spacing:8.711680pt;}
.ws2c{word-spacing:8.817920pt;}
.ws3b{word-spacing:8.977280pt;}
.ws2d{word-spacing:9.189760pt;}
.ws84{word-spacing:9.349120pt;}
.ws2e{word-spacing:9.455360pt;}
.ws38{word-spacing:9.508480pt;}
.ws67{word-spacing:9.827200pt;}
.ws65{word-spacing:9.986560pt;}
.ws66{word-spacing:10.092800pt;}
.ws31{word-spacing:10.783360pt;}
.ws59{word-spacing:10.889600pt;}
.ws5e{word-spacing:11.102080pt;}
.ws4b{word-spacing:11.420800pt;}
.ws62{word-spacing:11.739520pt;}
.ws69{word-spacing:12.058240pt;}
.ws68{word-spacing:12.376960pt;}
.ws37{word-spacing:13.014400pt;}
.ws2a{word-spacing:13.280000pt;}
.ws27{word-spacing:13.333120pt;}
.ws2b{word-spacing:13.651840pt;}
.ws28{word-spacing:13.917440pt;}
.ws29{word-spacing:14.289280pt;}
.ws5c{word-spacing:14.608000pt;}
.ws83{word-spacing:14.926720pt;}
.ws2f{word-spacing:15.192320pt;}
.ws6b{word-spacing:15.245440pt;}
.ws30{word-spacing:15.351680pt;}
.ws45{word-spacing:17.157760pt;}
.ws44{word-spacing:17.476480pt;}
.ws58{word-spacing:18.538880pt;}
.ws57{word-spacing:18.751360pt;}
.ws56{word-spacing:19.016960pt;}
.ws1e{word-spacing:19.070080pt;}
.ws7e{word-spacing:19.388800pt;}
.ws7d{word-spacing:20.026240pt;}
.ws85{word-spacing:20.504320pt;}
.ws86{word-spacing:20.663680pt;}
.ws7a{word-spacing:22.947840pt;}
.ws87{word-spacing:23.266560pt;}
.ws80{word-spacing:23.904000pt;}
.ws79{word-spacing:27.091200pt;}
.ws72{word-spacing:27.516160pt;}
.ws76{word-spacing:33.146880pt;}
.ws77{word-spacing:37.980800pt;}
.ws7c{word-spacing:40.211840pt;}
.ws7b{word-spacing:47.914240pt;}
.ws78{word-spacing:68.365440pt;}
.ws71{word-spacing:80.529920pt;}
.ws74{word-spacing:178.748800pt;}
.ws75{word-spacing:211.842560pt;}
._10{margin-left:-9.311552pt;}
._1{margin-left:-1.147392pt;}
._0{width:1.174656pt;}
._13{width:13.375616pt;}
._12{width:14.523008pt;}
._11{width:19.594240pt;}
._14{width:99.115904pt;}
._6{width:112.083200pt;}
._b{width:151.878912pt;}
._15{width:213.695744pt;}
._a{width:300.289152pt;}
._3{width:378.048256pt;}
._2{width:756.003840pt;}
._16{width:839.590400pt;}
._5{width:861.330560pt;}
._4{width:1124.399360pt;}
._f{width:1457.192832pt;}
._e{width:1646.064512pt;}
._9{width:1789.022464pt;}
._c{width:1792.091392pt;}
._d{width:1814.342656pt;}
._7{width:1847.135744pt;}
._8{width:1929.046784pt;}
.fs4{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs7{font-size:56.320000pt;}
.fs6{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.fs2{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.yc7{bottom:3.520000pt;}
.y181{bottom:19.680000pt;}
.yc6{bottom:19.840000pt;}
.y11e{bottom:25.440000pt;}
.y17d{bottom:30.560000pt;}
.yad{bottom:35.520000pt;}
.yb2{bottom:35.680000pt;}
.ybf{bottom:35.840000pt;}
.ydb{bottom:36.160000pt;}
.y173{bottom:46.720000pt;}
.y20{bottom:50.720000pt;}
.yac{bottom:51.840000pt;}
.yb1{bottom:52.000000pt;}
.y2{bottom:53.118880pt;}
.y179{bottom:57.440000pt;}
.y156{bottom:60.320000pt;}
.yb4{bottom:68.000000pt;}
.ycc{bottom:68.160000pt;}
.ybd{bottom:68.320000pt;}
.y1{bottom:69.440000pt;}
.y1f{bottom:74.398720pt;}
.y155{bottom:76.640000pt;}
.yc1{bottom:84.320000pt;}
.y1e{bottom:87.520000pt;}
.y1d{bottom:108.480000pt;}
.y16a{bottom:111.840000pt;}
.y14b{bottom:117.600000pt;}
.y91{bottom:134.548800pt;}
.yda{bottom:146.080000pt;}
.y193{bottom:150.560000pt;}
.y160{bottom:152.480000pt;}
.ydd{bottom:157.920000pt;}
.yfc{bottom:164.328960pt;}
.y77{bottom:164.800000pt;}
.y51{bottom:164.960000pt;}
.y90{bottom:166.872320pt;}
.y15f{bottom:168.800000pt;}
.y183{bottom:172.000000pt;}
.ydc{bottom:174.240000pt;}
.y76{bottom:181.120000pt;}
.y15a{bottom:184.960000pt;}
.y15e{bottom:185.116000pt;}
.y192{bottom:186.222880pt;}
.yfb{bottom:188.644640pt;}
.yd5{bottom:195.680000pt;}
.y50{bottom:197.256800pt;}
.y75{bottom:197.440000pt;}
.y8f{bottom:199.195840pt;}
.y15d{bottom:201.277760pt;}
.y159{bottom:201.280000pt;}
.y191{bottom:202.384640pt;}
.yfa{bottom:204.965760pt;}
.y4f{bottom:213.418560pt;}
.y74{bottom:213.760000pt;}
.yd6{bottom:215.200000pt;}
.y15c{bottom:217.598880pt;}
.y190{bottom:218.705760pt;}
.yd8{bottom:223.198880pt;}
.yf9{bottom:229.122080pt;}
.y4e{bottom:229.739680pt;}
.yd7{bottom:231.200000pt;}
.y8e{bottom:231.360000pt;}
.yd4{bottom:231.520000pt;}
.y15b{bottom:233.920000pt;}
.y18f{bottom:235.026880pt;}
.y13e{bottom:238.400000pt;}
.yd9{bottom:239.360640pt;}
.y184{bottom:242.080000pt;}
.yf8{bottom:245.443200pt;}
.y73{bottom:246.080000pt;}
.y18e{bottom:251.188640pt;}
.y154{bottom:255.360000pt;}
.yd1{bottom:260.800000pt;}
.y4d{bottom:262.063200pt;}
.y8d{bottom:263.680000pt;}
.y158{bottom:266.720000pt;}
.y18d{bottom:267.509760pt;}
.yf7{bottom:269.758880pt;}
.y72{bottom:278.240000pt;}
.y4c{bottom:278.384320pt;}
.y8c{bottom:280.000000pt;}
.yd2{bottom:280.320000pt;}
.y157{bottom:283.040000pt;}
.y18c{bottom:283.830880pt;}
.yf6{bottom:286.080000pt;}
.y4b{bottom:294.546080pt;}
.y71{bottom:294.560000pt;}
.yd3{bottom:296.320000pt;}
.yd0{bottom:296.640000pt;}
.y151{bottom:299.360000pt;}
.y18b{bottom:299.992640pt;}
.y4a{bottom:310.867200pt;}
.y70{bottom:310.880000pt;}
.y8b{bottom:312.160000pt;}
.y114{bottom:312.640000pt;}
.y150{bottom:315.680000pt;}
.y18a{bottom:316.313760pt;}
.yf5{bottom:318.240000pt;}
.yca{bottom:326.080000pt;}
.y49{bottom:327.188320pt;}
.y6f{bottom:327.200000pt;}
.y113{bottom:328.960000pt;}
.y153{bottom:331.998240pt;}
.y189{bottom:332.634880pt;}
.yf4{bottom:334.560000pt;}
.y48{bottom:343.350080pt;}
.y6e{bottom:343.360000pt;}
.y8a{bottom:344.480000pt;}
.ycb{bottom:345.600000pt;}
.y152{bottom:348.160000pt;}
.y188{bottom:348.956000pt;}
.yf3{bottom:350.880000pt;}
.y112{bottom:353.120000pt;}
.y47{bottom:359.671200pt;}
.y6d{bottom:359.680000pt;}
.y89{bottom:360.800000pt;}
.y187{bottom:365.117760pt;}
.y14a{bottom:369.600000pt;}
.yce{bottom:369.918880pt;}
.y6c{bottom:376.000000pt;}
.y88{bottom:377.120000pt;}
.y111{bottom:377.440000pt;}
.ycd{bottom:377.920000pt;}
.yc9{bottom:378.240000pt;}
.y138{bottom:381.120000pt;}
.y186{bottom:381.438880pt;}
.yf2{bottom:383.040000pt;}
.ycf{bottom:386.080640pt;}
.y46{bottom:391.994720pt;}
.y6b{bottom:392.160000pt;}
.y87{bottom:393.280000pt;}
.y137{bottom:397.440000pt;}
.y185{bottom:397.760000pt;}
.y110{bottom:401.760000pt;}
.y182{bottom:405.920000pt;}
.yf1{bottom:407.360000pt;}
.yc5{bottom:407.520000pt;}
.y45{bottom:408.315840pt;}
.y6a{bottom:408.480000pt;}
.y86{bottom:409.600000pt;}
.y136{bottom:413.760000pt;}
.yc8{bottom:419.360000pt;}
.y14f{bottom:422.076640pt;}
.y149{bottom:422.080000pt;}
.y69{bottom:424.800000pt;}
.y10f{bottom:426.080000pt;}
.y180{bottom:427.360000pt;}
.y135{bottom:429.920000pt;}
.yf0{bottom:431.698240pt;}
.y14e{bottom:438.397760pt;}
.y148{bottom:438.400000pt;}
.y17f{bottom:438.880000pt;}
.y16{bottom:439.680000pt;}
.y44{bottom:440.480000pt;}
.ybc{bottom:440.800000pt;}
.y68{bottom:441.120000pt;}
.y85{bottom:441.920000pt;}
.y134{bottom:446.240000pt;}
.y10e{bottom:450.240000pt;}
.y14d{bottom:454.718880pt;}
.yef{bottom:456.013920pt;}
.y67{bottom:457.280000pt;}
.y84{bottom:458.240000pt;}
.yc0{bottom:460.320000pt;}
.y133{bottom:462.560000pt;}
.y13{bottom:464.640000pt;}
.y15{bottom:464.644320pt;}
.y14c{bottom:471.040000pt;}
.y14{bottom:472.638880pt;}
.y43{bottom:472.800000pt;}
.y83{bottom:474.400000pt;}
.y10d{bottom:474.560000pt;}
.y17e{bottom:474.720000pt;}
.y132{bottom:478.880000pt;}
.yee{bottom:480.170240pt;}
.y17c{bottom:482.720000pt;}
.y12{bottom:488.960000pt;}
.y42{bottom:489.120000pt;}
.y66{bottom:489.600000pt;}
.y82{bottom:490.720000pt;}
.ybe{bottom:492.800000pt;}
.y131{bottom:495.040000pt;}
.ya5{bottom:497.600000pt;}
.y10c{bottom:498.880000pt;}
.y13d{bottom:500.640000pt;}
.yc3{bottom:500.798880pt;}
.y178{bottom:504.320000pt;}
.yed{bottom:504.485920pt;}
.y41{bottom:505.431840pt;}
.y65{bottom:505.920000pt;}
.y81{bottom:507.040000pt;}
.yc2{bottom:508.800000pt;}
.y130{bottom:511.360000pt;}
.y147{bottom:512.179200pt;}
.yc4{bottom:517.120000pt;}
.y17b{bottom:518.560000pt;}
.y11{bottom:521.920000pt;}
.y64{bottom:522.240000pt;}
.y10b{bottom:523.200000pt;}
.yec{bottom:533.768320pt;}
.y17a{bottom:534.720000pt;}
.y12f{bottom:535.680000pt;}
.y30{bottom:536.006560pt;}
.y146{bottom:536.494880pt;}
.y40{bottom:537.596000pt;}
.ya4{bottom:538.240000pt;}
.y63{bottom:538.400000pt;}
.yba{bottom:538.560000pt;}
.y80{bottom:539.200000pt;}
.y10a{bottom:547.360000pt;}
.y12e{bottom:552.000000pt;}
.y177{bottom:553.600000pt;}
.y3f{bottom:553.917120pt;}
.y62{bottom:554.720000pt;}
.y10{bottom:554.888000pt;}
.y7f{bottom:555.520000pt;}
.yb9{bottom:558.080000pt;}
.y2f{bottom:558.888000pt;}
.y145{bottom:560.651200pt;}
.ya3{bottom:562.400000pt;}
.yeb{bottom:563.210080pt;}
.y12d{bottom:568.160000pt;}
.y3e{bottom:570.238240pt;}
.y61{bottom:571.040000pt;}
.y109{bottom:571.680000pt;}
.y7e{bottom:571.840000pt;}
.ybb{bottom:574.080000pt;}
.yb8{bottom:574.400000pt;}
.y172{bottom:575.040000pt;}
.yf{bottom:579.044320pt;}
.yea{bottom:579.531200pt;}
.y2e{bottom:583.044320pt;}
.y12c{bottom:584.480000pt;}
.y144{bottom:584.966880pt;}
.y13c{bottom:585.120000pt;}
.y3d{bottom:586.400000pt;}
.y7d{bottom:588.160000pt;}
.y175{bottom:589.438240pt;}
.y176{bottom:589.444320pt;}
.ya2{bottom:594.720000pt;}
.y108{bottom:596.000000pt;}
.y12b{bottom:600.800000pt;}
.y143{bottom:601.288000pt;}
.y60{bottom:603.200000pt;}
.ye{bottom:603.360000pt;}
.yb0{bottom:603.840000pt;}
.ye9{bottom:603.846880pt;}
.y174{bottom:605.600000pt;}
.y2d{bottom:607.364320pt;}
.y13b{bottom:609.440000pt;}
.ya1{bottom:611.040000pt;}
.y171{bottom:613.760000pt;}
.y12a{bottom:616.960000pt;}
.y3c{bottom:618.720000pt;}
.y5f{bottom:619.520000pt;}
.y107{bottom:620.160000pt;}
.ye8{bottom:620.168000pt;}
.y7c{bottom:620.320000pt;}
.yb3{bottom:623.200000pt;}
.y142{bottom:625.603680pt;}
.ya0{bottom:627.197760pt;}
.y2c{bottom:631.696640pt;}
.yd{bottom:632.000000pt;}
.y129{bottom:633.280000pt;}
.y13a{bottom:633.600000pt;}
.y169{bottom:635.200000pt;}
.y5e{bottom:635.840000pt;}
.y9f{bottom:643.518880pt;}
.ye7{bottom:644.324320pt;}
.y106{bottom:644.480000pt;}
.yb6{bottom:647.518880pt;}
.y170{bottom:649.593120pt;}
.y128{bottom:649.600000pt;}
.y141{bottom:649.760000pt;}
.y3b{bottom:651.040000pt;}
.y5d{bottom:652.160000pt;}
.y7b{bottom:652.640000pt;}
.yb5{bottom:655.520000pt;}
.y2b{bottom:655.852960pt;}
.y139{bottom:657.920000pt;}
.y9e{bottom:659.840000pt;}
.yb7{bottom:663.840000pt;}
.y16f{bottom:665.754880pt;}
.y127{bottom:665.920000pt;}
.y3a{bottom:667.360000pt;}
.y5c{bottom:668.320000pt;}
.ye6{bottom:668.640000pt;}
.y105{bottom:668.800000pt;}
.y140{bottom:674.080000pt;}
.yc{bottom:675.840000pt;}
.y9d{bottom:676.160000pt;}
.y2a{bottom:680.168640pt;}
.y16e{bottom:681.916640pt;}
.y126{bottom:682.080000pt;}
.y5b{bottom:684.640000pt;}
.y7a{bottom:684.960000pt;}
.yab{bottom:685.280000pt;}
.y9c{bottom:692.316000pt;}
.ye5{bottom:692.960000pt;}
.y104{bottom:693.120000pt;}
.y16d{bottom:698.237760pt;}
.y125{bottom:698.400000pt;}
.y39{bottom:699.520000pt;}
.y79{bottom:701.120000pt;}
.yae{bottom:704.480000pt;}
.y29{bottom:704.484320pt;}
.yaa{bottom:704.800000pt;}
.y9b{bottom:708.637120pt;}
.ye4{bottom:709.128507pt;}
.y103{bottom:709.280000pt;}
.y16c{bottom:714.558880pt;}
.y124{bottom:714.720000pt;}
.y5a{bottom:716.960000pt;}
.ya9{bottom:721.120000pt;}
.y13f{bottom:722.720000pt;}
.yb{bottom:722.853440pt;}
.y9a{bottom:724.958240pt;}
.y28{bottom:728.800000pt;}
.yaf{bottom:729.120000pt;}
.y16b{bottom:730.880000pt;}
.y123{bottom:731.040000pt;}
.y38{bottom:731.840000pt;}
.y59{bottom:733.120000pt;}
.y78{bottom:733.440000pt;}
.ye3{bottom:733.444187pt;}
.y102{bottom:733.600000pt;}
.y168{bottom:739.040000pt;}
.y99{bottom:741.120000pt;}
.y37{bottom:748.160000pt;}
.ya{bottom:748.942720pt;}
.y58{bottom:749.440000pt;}
.y27{bottom:752.644000pt;}
.y122{bottom:753.120000pt;}
.ye2{bottom:757.759867pt;}
.y101{bottom:757.920000pt;}
.y167{bottom:760.480000pt;}
.ya8{bottom:761.920000pt;}
.y121{bottom:764.480000pt;}
.y98{bottom:765.440000pt;}
.y57{bottom:765.759867pt;}
.y166{bottom:771.998880pt;}
.y117{bottom:774.080000pt;}
.y26{bottom:775.360000pt;}
.ya7{bottom:778.240000pt;}
.y36{bottom:780.320000pt;}
.y120{bottom:780.800000pt;}
.y56{bottom:782.080000pt;}
.y100{bottom:782.240000pt;}
.y9{bottom:788.310720pt;}
.y165{bottom:788.320000pt;}
.y97{bottom:789.760000pt;}
.ye1{bottom:798.240000pt;}
.y25{bottom:798.256640pt;}
.y11d{bottom:802.880000pt;}
.ya6{bottom:803.200000pt;}
.y96{bottom:806.080000pt;}
.yff{bottom:806.400000pt;}
.y11f{bottom:812.480000pt;}
.y35{bottom:812.640000pt;}
.y55{bottom:814.240000pt;}
.y8{bottom:814.400000pt;}
.y11c{bottom:817.440000pt;}
.y164{bottom:821.280000pt;}
.y95{bottom:822.240000pt;}
.y116{bottom:822.560000pt;}
.ye0{bottom:822.568000pt;}
.y24{bottom:822.572320pt;}
.y34{bottom:828.960000pt;}
.yfe{bottom:830.720000pt;}
.y162{bottom:830.876480pt;}
.y163{bottom:837.440000pt;}
.y94{bottom:838.560000pt;}
.y11a{bottom:842.720000pt;}
.y33{bottom:845.280000pt;}
.y54{bottom:846.560000pt;}
.y115{bottom:846.880000pt;}
.ydf{bottom:846.883680pt;}
.y23{bottom:846.888000pt;}
.y7{bottom:851.525760pt;}
.y119{bottom:854.080000pt;}
.y93{bottom:854.880000pt;}
.yfd{bottom:855.040000pt;}
.y32{bottom:861.440000pt;}
.y11b{bottom:862.240000pt;}
.y53{bottom:862.880000pt;}
.y161{bottom:863.200000pt;}
.y118{bottom:870.400000pt;}
.yde{bottom:871.040000pt;}
.y92{bottom:871.200000pt;}
.y22{bottom:871.203680pt;}
.y52{bottom:879.200000pt;}
.y6{bottom:881.126880pt;}
.y31{bottom:894.240000pt;}
.y21{bottom:895.360000pt;}
.y5{bottom:910.728000pt;}
.y1c{bottom:919.680000pt;}
.y4{bottom:934.884320pt;}
.y1b{bottom:953.440000pt;}
.y3{bottom:959.678080pt;}
.y1a{bottom:980.960000pt;}
.y19{bottom:1008.480000pt;}
.y18{bottom:1035.203200pt;}
.y17{bottom:1062.560000pt;}
.h7{height:30.778125pt;}
.h28{height:32.321333pt;}
.h15{height:32.640000pt;}
.h8{height:35.363437pt;}
.hd{height:36.364375pt;}
.h1b{height:37.537500pt;}
.h2{height:38.128125pt;}
.hf{height:38.137085pt;}
.h1e{height:38.141565pt;}
.he{height:38.144125pt;}
.hb{height:38.160765pt;}
.h1a{height:38.400000pt;}
.h9{height:39.585938pt;}
.h1f{height:42.269540pt;}
.h26{height:43.200000pt;}
.h3{height:43.808438pt;}
.hc{height:43.901237pt;}
.h21{height:44.448437pt;}
.h19{height:48.480000pt;}
.ha{height:48.558750pt;}
.h22{height:48.641333pt;}
.h18{height:48.960000pt;}
.h6{height:52.781250pt;}
.h24{height:59.520000pt;}
.h17{height:64.480000pt;}
.h10{height:64.638667pt;}
.h13{height:64.640000pt;}
.h25{height:70.080000pt;}
.h27{height:70.128125pt;}
.h4{height:70.199062pt;}
.h12{height:71.408125pt;}
.h11{height:80.800000pt;}
.h16{height:80.801333pt;}
.h5{height:96.589687pt;}
.h14{height:97.121333pt;}
.h20{height:113.600000pt;}
.h23{height:124.640000pt;}
.h1d{height:130.400000pt;}
.h1c{height:251.040000pt;}
.h29{height:254.720000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:93.760000pt;}
.w2{width:127.520000pt;}
.w3{width:180.320000pt;}
.w5{width:386.720000pt;}
.w4{width:387.360000pt;}
.w7{width:434.080000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x29{left:4.640000pt;}
.x25{left:5.600000pt;}
.x1a{left:6.880000pt;}
.x3c{left:14.720000pt;}
.x1d{left:60.640000pt;}
.x1f{left:101.600000pt;}
.x1e{left:103.520000pt;}
.x1b{left:107.040000pt;}
.x2{left:113.436640pt;}
.x38{left:114.560000pt;}
.x3a{left:124.960000pt;}
.x27{left:127.200000pt;}
.x2a{left:128.160000pt;}
.x2b{left:129.280000pt;}
.x2c{left:130.720000pt;}
.xc{left:132.320000pt;}
.xa{left:135.200000pt;}
.x12{left:136.640000pt;}
.x32{left:140.000000pt;}
.x13{left:142.223840pt;}
.x36{left:144.320000pt;}
.x14{left:150.080000pt;}
.x15{left:151.200000pt;}
.x33{left:154.240000pt;}
.x28{left:157.920000pt;}
.x22{left:161.429760pt;}
.xb{left:167.360000pt;}
.x35{left:171.840000pt;}
.x23{left:175.680000pt;}
.x2f{left:178.880000pt;}
.x2e{left:179.840000pt;}
.x31{left:181.920000pt;}
.x20{left:185.444160pt;}
.x16{left:190.247200pt;}
.x5{left:208.320000pt;}
.x21{left:209.440000pt;}
.x2d{left:217.920000pt;}
.x7{left:224.322560pt;}
.x24{left:283.360000pt;}
.x19{left:288.000000pt;}
.x26{left:288.960000pt;}
.x30{left:290.240000pt;}
.x17{left:294.880000pt;}
.x34{left:315.680000pt;}
.xd{left:317.280000pt;}
.x8{left:380.156000pt;}
.xe{left:382.086400pt;}
.x9{left:396.800000pt;}
.x6{left:406.245280pt;}
.x4{left:415.835520pt;}
.x18{left:423.040000pt;}
.x11{left:510.883840pt;}
.x1c{left:547.035360pt;}
.xf{left:587.368640pt;}
.x3b{left:595.520000pt;}
.x3{left:600.799360pt;}
.x3d{left:610.240000pt;}
.x3f{left:613.600000pt;}
.x39{left:615.200000pt;}
.x10{left:619.519520pt;}
.x37{left:628.000000pt;}
.x3e{left:642.390880pt;}
.x1{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; }
  