
    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_f63d8d995e187b7132a3b771.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_7b925826454054beb93a4340.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_6558dee88e6a3312a3aea497.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_359d01edf130577d36b3965b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.035156;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_65108269fc262fcb6575499c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.120605;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_bf3463cbe96186acc7cbe70f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_805edce9fa1c77faace59696.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_db5fdaa8931d3d04d36d2466.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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:ff9;src:url('chunks/assets/font_f6d6caa0251543746ad22d72.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.172852;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:ffa;src:url('chunks/assets/font_753297e92a6f6a2341ebab3f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.035156;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v5{vertical-align:-27.360000px;}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:5.760000px;}
.v1{vertical-align:23.760000px;}
.v4{vertical-align:27.360000px;}
.ls13{letter-spacing:-0.792000px;}
.ls11{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.504000px;}
.ls12{letter-spacing:-0.432000px;}
.ls7{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.259800px;}
.ls1d{letter-spacing:-0.216000px;}
.ls17{letter-spacing:-0.172200px;}
.lsa{letter-spacing:-0.144000px;}
.ls14{letter-spacing:-0.058320px;}
.ls6{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.025200px;}
.ls18{letter-spacing:0.064200px;}
.lse{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.152640px;}
.ls1{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.216000px;}
.ls1c{letter-spacing:0.269400px;}
.ls16{letter-spacing:0.274800px;}
.ls2{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.ls1e{letter-spacing:0.432000px;}
.lsf{letter-spacing:0.460200px;}
.ls1b{letter-spacing:0.576000px;}
.lsb{letter-spacing:0.720000px;}
.ls19{letter-spacing:3.600000px;}
.ls5{letter-spacing:11.520000px;}
.ls3{letter-spacing:12.420000px;}
.ls1a{letter-spacing:20.880000px;}
.lsc{letter-spacing:49.140000px;}
.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:-54.000000px;}
.ws15{word-spacing:-18.432000px;}
.ws4{word-spacing:-18.288000px;}
.ws6{word-spacing:-18.216000px;}
.ws5{word-spacing:-18.144000px;}
.wsb{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.856000px;}
.ws14{word-spacing:-17.784000px;}
.ws9{word-spacing:-17.712000px;}
.ws10{word-spacing:-17.568000px;}
.wsa{word-spacing:-17.496000px;}
.wsf{word-spacing:-17.280000px;}
.ws11{word-spacing:-17.208000px;}
.wse{word-spacing:-15.400200px;}
.wsd{word-spacing:-15.300000px;}
.wsc{word-spacing:-14.940000px;}
.ws12{word-spacing:-13.505760px;}
.ws3{word-spacing:-12.420000px;}
.ws13{word-spacing:-12.329400px;}
.ws2{word-spacing:-12.060000px;}
.ws8{word-spacing:0.000000px;}
._8{margin-left:-4.638000px;}
._6{margin-left:-3.408000px;}
._7{margin-left:-2.244000px;}
._0{margin-left:-1.242000px;}
._1{width:1.404000px;}
._4{width:2.592000px;}
._5{width:4.104000px;}
._1a{width:5.760000px;}
._28{width:6.834000px;}
._11{width:7.854000px;}
._b{width:9.288000px;}
._c{width:10.560000px;}
._e{width:11.664000px;}
._d{width:12.828000px;}
._3a{width:13.884000px;}
._9{width:14.904000px;}
._a{width:16.439280px;}
._1b{width:19.440000px;}
._f{width:21.168000px;}
._10{width:23.052000px;}
._18{width:24.768000px;}
._30{width:26.088000px;}
._1c{width:27.144000px;}
._20{width:28.296000px;}
._23{width:29.376000px;}
._24{width:31.116000px;}
._12{width:32.184000px;}
._13{width:33.192000px;}
._2a{width:34.236000px;}
._14{width:35.640000px;}
._39{width:36.792000px;}
._1f{width:37.800000px;}
._27{width:38.952000px;}
._17{width:40.176000px;}
._15{width:41.616000px;}
._16{width:42.888000px;}
._2e{width:44.064000px;}
._2f{width:45.408000px;}
._22{width:47.334000px;}
._19{width:48.456000px;}
._41{width:49.458000px;}
._2c{width:51.168000px;}
._2d{width:52.776000px;}
._45{width:53.784000px;}
._3d{width:54.936000px;}
._3f{width:57.294000px;}
._3e{width:58.698000px;}
._3b{width:61.056000px;}
._25{width:62.712000px;}
._26{width:63.756000px;}
._21{width:65.664000px;}
._56{width:67.680000px;}
._37{width:71.280000px;}
._47{width:72.288000px;}
._44{width:74.304000px;}
._34{width:76.176000px;}
._36{width:77.904000px;}
._33{width:82.800000px;}
._2b{width:83.808000px;}
._38{width:93.000000px;}
._29{width:94.482000px;}
._32{width:95.844000px;}
._31{width:101.520000px;}
._42{width:102.816000px;}
._43{width:104.256000px;}
._46{width:105.516000px;}
._3c{width:110.322000px;}
._52{width:126.306000px;}
._55{width:129.528000px;}
._35{width:136.872000px;}
._4e{width:138.888000px;}
._4f{width:153.648000px;}
._53{width:157.896000px;}
._50{width:190.224000px;}
._51{width:191.844000px;}
._40{width:198.120000px;}
._1d{width:206.784000px;}
._1e{width:207.840000px;}
._3{width:332.940000px;}
._54{width:380.898000px;}
._4a{width:638.646480px;}
._4c{width:675.066480px;}
._4d{width:686.166480px;}
._4b{width:693.666480px;}
._48{width:700.746480px;}
._2{width:710.076000px;}
._49{width:727.506480px;}
.fc6{color:transparent;}
.fc4{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,192);}
.fc3{color:rgb(0,111,192);}
.fc1{color:rgb(0,0,255);}
.fc5{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y17d{bottom:0.165000px;}
.y173{bottom:1.770000px;}
.y1ad{bottom:1.995000px;}
.yc4{bottom:3.810000px;}
.yec{bottom:4.485000px;}
.yf2{bottom:4.491000px;}
.ye4{bottom:4.500000px;}
.y13d{bottom:6.012000px;}
.y15c{bottom:6.120000px;}
.yce{bottom:6.300000px;}
.yc8{bottom:6.840000px;}
.yc9{bottom:7.020000px;}
.yfd{bottom:7.380000px;}
.yf8{bottom:7.560000px;}
.y193{bottom:9.030000px;}
.y1a3{bottom:10.590000px;}
.ycb{bottom:13.140000px;}
.yc6{bottom:19.620000px;}
.yc3{bottom:21.090000px;}
.y168{bottom:21.270000px;}
.y12b{bottom:22.890000px;}
.yee{bottom:25.005000px;}
.yeb{bottom:25.185000px;}
.yf1{bottom:25.191000px;}
.ye3{bottom:25.200000px;}
.yf4{bottom:25.230000px;}
.y136{bottom:25.524000px;}
.y153{bottom:25.635000px;}
.ye7{bottom:28.440000px;}
.y18c{bottom:28.545000px;}
.yf6{bottom:30.060000px;}
.y19d{bottom:30.090000px;}
.y124{bottom:42.405000px;}
.ye6{bottom:49.140000px;}
.y169{bottom:51.045000px;}
.y3{bottom:58.536000px;}
.y19b{bottom:71.460000px;}
.y154{bottom:71.715000px;}
.y134{bottom:72.285000px;}
.y1ab{bottom:73.155000px;}
.y18d{bottom:75.210000px;}
.y2{bottom:78.696000px;}
.y19e{bottom:80.310000px;}
.y16a{bottom:80.850000px;}
.y137{bottom:85.605000px;}
.y146{bottom:86.835000px;}
.y17b{bottom:89.670000px;}
.y166{bottom:90.975000px;}
.y125{bottom:91.905000px;}
.y19a{bottom:98.565000px;}
.y133{bottom:99.435000px;}
.y1aa{bottom:100.260000px;}
.y16b{bottom:110.670000px;}
.y145{bottom:113.940000px;}
.y18a{bottom:113.976000px;}
.y17a{bottom:114.195000px;}
.y122{bottom:114.336000px;}
.y5b{bottom:114.876000px;}
.y11d{bottom:115.056000px;}
.y135{bottom:115.200000px;}
.y155{bottom:117.795000px;}
.y165{bottom:118.080000px;}
.yf0{bottom:119.385000px;}
.y18e{bottom:121.830000px;}
.y1f3{bottom:124.776000px;}
.y199{bottom:125.715000px;}
.y132{bottom:126.540000px;}
.y83{bottom:126.576000px;}
.y1a9{bottom:127.410000px;}
.yba{bottom:129.636000px;}
.y19f{bottom:130.530000px;}
.y189{bottom:134.676000px;}
.yc1{bottom:135.576000px;}
.y30{bottom:135.756000px;}
.y5a{bottom:138.636000px;}
.y179{bottom:138.750000px;}
.y11c{bottom:138.816000px;}
.y16c{bottom:140.475000px;}
.y144{bottom:141.090000px;}
.y126{bottom:141.450000px;}
.y151{bottom:144.216000px;}
.y164{bottom:145.230000px;}
.y138{bottom:145.695000px;}
.y82{bottom:150.510000px;}
.y198{bottom:152.820000px;}
.yb9{bottom:153.390000px;}
.y131{bottom:153.690000px;}
.y1a8{bottom:154.515000px;}
.y188{bottom:155.370000px;}
.y2f{bottom:159.510000px;}
.y59{bottom:162.390000px;}
.yef{bottom:162.405000px;}
.y11b{bottom:162.750000px;}
.y178{bottom:163.260000px;}
.y1d4{bottom:163.470000px;}
.y156{bottom:163.875000px;}
.y1f2{bottom:164.010000px;}
.y150{bottom:164.910000px;}
.y143{bottom:168.225000px;}
.yc0{bottom:168.330000px;}
.y18f{bottom:168.480000px;}
.y16d{bottom:170.280000px;}
.y163{bottom:172.335000px;}
.y81{bottom:174.270000px;}
.yb8{bottom:177.150000px;}
.y197{bottom:179.970000px;}
.y1a0{bottom:180.750000px;}
.y130{bottom:180.795000px;}
.y1a7{bottom:181.650000px;}
.y2e{bottom:183.450000px;}
.y1d3{bottom:184.170000px;}
.y1f1{bottom:184.710000px;}
.y15d{bottom:185.865000px;}
.y58{bottom:186.150000px;}
.y11a{bottom:186.510000px;}
.y177{bottom:187.815000px;}
.y187{bottom:188.490000px;}
.y127{bottom:190.950000px;}
.y14f{bottom:193.170000px;}
.y167{bottom:194.940000px;}
.y142{bottom:195.330000px;}
.y80{bottom:198.030000px;}
.y162{bottom:199.470000px;}
.y16e{bottom:200.085000px;}
.ybf{bottom:200.910000px;}
.yb7{bottom:201.090000px;}
.y17c{bottom:202.365000px;}
.yed{bottom:203.805000px;}
.y1d2{bottom:204.870000px;}
.y99{bottom:205.230000px;}
.y1f0{bottom:205.410000px;}
.y139{bottom:205.815000px;}
.y196{bottom:207.075000px;}
.y2d{bottom:207.210000px;}
.y12f{bottom:207.930000px;}
.y1a6{bottom:208.770000px;}
.y186{bottom:209.190000px;}
.y157{bottom:209.910000px;}
.y57{bottom:210.090000px;}
.y119{bottom:210.270000px;}
.y176{bottom:212.325000px;}
.y190{bottom:215.130000px;}
.y7f{bottom:221.790000px;}
.y141{bottom:222.480000px;}
.yb6{bottom:224.850000px;}
.y1d1{bottom:225.570000px;}
.y1ef{bottom:226.110000px;}
.y161{bottom:226.590000px;}
.y16f{bottom:229.890000px;}
.y2c{bottom:230.970000px;}
.y98{bottom:233.670000px;}
.y56{bottom:233.850000px;}
.y118{bottom:234.030000px;}
.y195{bottom:234.210000px;}
.y12e{bottom:235.080000px;}
.y1a5{bottom:235.905000px;}
.y175{bottom:236.880000px;}
.y128{bottom:240.480000px;}
.y185{bottom:241.770000px;}
.yea{bottom:245.025000px;}
.y7e{bottom:245.550000px;}
.y1ee{bottom:246.810000px;}
.yb5{bottom:248.610000px;}
.y140{bottom:249.585000px;}
.y160{bottom:253.725000px;}
.y2b{bottom:254.730000px;}
.y158{bottom:255.990000px;}
.y55{bottom:257.610000px;}
.y117{bottom:257.970000px;}
.y1d0{bottom:258.330000px;}
.y170{bottom:259.710000px;}
.y194{bottom:261.330000px;}
.y174{bottom:261.390000px;}
.y191{bottom:261.750000px;}
.y12d{bottom:262.185000px;}
.y1a4{bottom:263.010000px;}
.y13a{bottom:265.890000px;}
.y1ed{bottom:267.510000px;}
.y7d{bottom:269.490000px;}
.y184{bottom:270.210000px;}
.y19c{bottom:271.800000px;}
.yb4{bottom:272.370000px;}
.y13f{bottom:276.735000px;}
.y2a{bottom:278.715000px;}
.y1cf{bottom:279.075000px;}
.y15f{bottom:280.830000px;}
.y1a1{bottom:281.190000px;}
.y54{bottom:281.415000px;}
.y116{bottom:281.775000px;}
.y1ac{bottom:282.660000px;}
.ye9{bottom:286.455000px;}
.y1ec{bottom:288.255000px;}
.y12c{bottom:289.335000px;}
.y171{bottom:289.470000px;}
.y129{bottom:289.980000px;}
.y7c{bottom:293.295000px;}
.yb3{bottom:296.355000px;}
.y1ce{bottom:299.775000px;}
.y159{bottom:302.070000px;}
.y29{bottom:302.475000px;}
.y13e{bottom:303.840000px;}
.y53{bottom:305.355000px;}
.y115{bottom:305.535000px;}
.y15e{bottom:307.980000px;}
.y192{bottom:308.415000px;}
.y7b{bottom:317.055000px;}
.y172{bottom:319.290000px;}
.yb2{bottom:320.115000px;}
.y1cd{bottom:320.475000px;}
.y1eb{bottom:322.635000px;}
.y28{bottom:322.995000px;}
.y13b{bottom:325.980000px;}
.y52{bottom:329.115000px;}
.y114{bottom:329.295000px;}
.ye5{bottom:329.475000px;}
.y1a2{bottom:331.410000px;}
.y12a{bottom:339.480000px;}
.y7a{bottom:340.815000px;}
.y1cc{bottom:341.175000px;}
.yb1{bottom:343.875000px;}
.y1ea{bottom:344.775000px;}
.y15a{bottom:348.150000px;}
.y51{bottom:352.875000px;}
.y113{bottom:353.235000px;}
.y27{bottom:355.935000px;}
.y79{bottom:364.755000px;}
.y1e9{bottom:367.095000px;}
.yb0{bottom:367.635000px;}
.ye8{bottom:372.315000px;}
.y1cb{bottom:373.755000px;}
.y26{bottom:376.635000px;}
.y112{bottom:376.995000px;}
.y13c{bottom:386.100000px;}
.y78{bottom:388.515000px;}
.y1e8{bottom:389.415000px;}
.yaf{bottom:391.575000px;}
.y15b{bottom:394.230000px;}
.y1ca{bottom:394.455000px;}
.ye2{bottom:396.255000px;}
.y25{bottom:397.335000px;}
.y50{bottom:400.575000px;}
.y111{bottom:400.755000px;}
.y1e7{bottom:411.735000px;}
.y77{bottom:412.275000px;}
.y1c9{bottom:415.155000px;}
.yae{bottom:415.335000px;}
.y24{bottom:418.035000px;}
.y4f{bottom:424.335000px;}
.y110{bottom:424.515000px;}
.y1c8{bottom:435.855000px;}
.y76{bottom:436.035000px;}
.y23{bottom:438.735000px;}
.yad{bottom:439.095000px;}
.ye1{bottom:442.155000px;}
.y1e6{bottom:444.675000px;}
.y4e{bottom:448.095000px;}
.y10f{bottom:448.455000px;}
.y1c7{bottom:456.555000px;}
.y22{bottom:459.435000px;}
.y75{bottom:459.975000px;}
.yac{bottom:462.855000px;}
.y1e5{bottom:465.375000px;}
.y4d{bottom:471.855000px;}
.y10e{bottom:472.215000px;}
.y1c6{bottom:477.255000px;}
.y21{bottom:480.135000px;}
.y74{bottom:483.735000px;}
.y1e4{bottom:486.075000px;}
.ye0{bottom:486.615000px;}
.yab{bottom:486.795000px;}
.y4c{bottom:495.795000px;}
.y10d{bottom:495.975000px;}
.y1c5{bottom:497.955000px;}
.y20{bottom:500.835000px;}
.y73{bottom:507.495000px;}
.ydf{bottom:510.375000px;}
.yaa{bottom:510.555000px;}
.y1e3{bottom:518.655000px;}
.y4b{bottom:519.555000px;}
.y10c{bottom:519.735000px;}
.y1f{bottom:521.535000px;}
.y1c4{bottom:530.715000px;}
.y72{bottom:531.255000px;}
.ya9{bottom:533.955000px;}
.yde{bottom:534.135000px;}
.ybd{bottom:534.315000px;}
.y1e2{bottom:539.355000px;}
.y1e{bottom:542.235000px;}
.y4a{bottom:543.315000px;}
.y10b{bottom:543.495000px;}
.y14e{bottom:544.935000px;}
.y1c3{bottom:551.415000px;}
.y71{bottom:555.195000px;}
.ya8{bottom:557.745000px;}
.ydd{bottom:557.925000px;}
.ybc{bottom:558.105000px;}
.y1e1{bottom:560.085000px;}
.y1d{bottom:562.965000px;}
.y121{bottom:563.865000px;}
.y49{bottom:567.105000px;}
.y10a{bottom:567.465000px;}
.y1c2{bottom:572.145000px;}
.y14d{bottom:577.545000px;}
.y70{bottom:578.985000px;}
.y1e0{bottom:580.785000px;}
.ya7{bottom:581.865000px;}
.y1c{bottom:583.665000px;}
.y120{bottom:584.565000px;}
.y48{bottom:591.045000px;}
.y109{bottom:591.225000px;}
.y1c1{bottom:592.845000px;}
.y1df{bottom:601.485000px;}
.y6f{bottom:602.745000px;}
.y1b{bottom:604.365000px;}
.ydc{bottom:605.625000px;}
.ya6{bottom:605.805000px;}
.y14c{bottom:610.305000px;}
.y11f{bottom:612.825000px;}
.y1c0{bottom:613.545000px;}
.y123{bottom:613.800000px;}
.y47{bottom:614.805000px;}
.y108{bottom:614.985000px;}
.y1de{bottom:622.185000px;}
.y1a{bottom:625.065000px;}
.y6e{bottom:626.505000px;}
.ydb{bottom:629.385000px;}
.ya5{bottom:629.565000px;}
.y14b{bottom:631.005000px;}
.y183{bottom:633.165000px;}
.y1bf{bottom:634.245000px;}
.y97{bottom:638.205000px;}
.y46{bottom:638.565000px;}
.y107{bottom:638.745000px;}
.y19{bottom:645.765000px;}
.y6d{bottom:650.445000px;}
.yda{bottom:653.145000px;}
.ya4{bottom:653.325000px;}
.y1dd{bottom:654.945000px;}
.y14a{bottom:659.445000px;}
.y152{bottom:661.140000px;}
.y45{bottom:662.325000px;}
.y106{bottom:662.685000px;}
.y182{bottom:665.745000px;}
.y18{bottom:666.465000px;}
.y1be{bottom:666.825000px;}
.y6c{bottom:674.205000px;}
.y1dc{bottom:675.645000px;}
.ya3{bottom:677.085000px;}
.y44{bottom:686.085000px;}
.y105{bottom:686.445000px;}
.y17{bottom:687.165000px;}
.y1bd{bottom:687.525000px;}
.y1db{bottom:696.345000px;}
.y96{bottom:697.785000px;}
.y6b{bottom:697.965000px;}
.y181{bottom:698.505000px;}
.yd9{bottom:700.845000px;}
.ya2{bottom:701.025000px;}
.y16{bottom:707.865000px;}
.y1bc{bottom:708.225000px;}
.y43{bottom:710.025000px;}
.y104{bottom:710.205000px;}
.y1da{bottom:717.045000px;}
.y95{bottom:721.545000px;}
.y6a{bottom:721.725000px;}
.yd8{bottom:724.605000px;}
.ya1{bottom:724.785000px;}
.y15{bottom:728.565000px;}
.y1bb{bottom:728.925000px;}
.y180{bottom:731.265000px;}
.y42{bottom:733.785000px;}
.y103{bottom:733.965000px;}
.y1d9{bottom:737.745000px;}
.y94{bottom:745.305000px;}
.y69{bottom:745.665000px;}
.yd7{bottom:748.365000px;}
.ya0{bottom:748.545000px;}
.y14{bottom:748.905000px;}
.y1ba{bottom:749.625000px;}
.y17f{bottom:751.965000px;}
.y41{bottom:757.545000px;}
.y102{bottom:757.905000px;}
.y1d8{bottom:758.445000px;}
.y93{bottom:769.245000px;}
.y68{bottom:769.425000px;}
.yd6{bottom:772.125000px;}
.y9f{bottom:772.305000px;}
.y17e{bottom:780.225000px;}
.y18b{bottom:780.660000px;}
.y40{bottom:781.305000px;}
.y101{bottom:781.665000px;}
.y1b9{bottom:782.385000px;}
.y13{bottom:789.585000px;}
.y1d7{bottom:791.025000px;}
.y92{bottom:793.005000px;}
.y67{bottom:793.185000px;}
.yd5{bottom:796.065000px;}
.y9e{bottom:796.245000px;}
.y1b8{bottom:803.085000px;}
.y3f{bottom:805.245000px;}
.y100{bottom:805.425000px;}
.y12{bottom:809.925000px;}
.y1d6{bottom:811.725000px;}
.y91{bottom:816.765000px;}
.y66{bottom:816.945000px;}
.y9d{bottom:819.645000px;}
.yd4{bottom:819.825000px;}
.ybb{bottom:820.005000px;}
.y1b7{bottom:823.785000px;}
.y3e{bottom:829.005000px;}
.y1d5{bottom:832.425000px;}
.yff{bottom:836.565000px;}
.y11{bottom:836.745000px;}
.y90{bottom:840.570000px;}
.y65{bottom:840.750000px;}
.y9c{bottom:840.930000px;}
.yd3{bottom:843.630000px;}
.y1b6{bottom:844.530000px;}
.y3d{bottom:852.810000px;}
.y10{bottom:853.170000px;}
.yfe{bottom:857.490000px;}
.y8f{bottom:864.510000px;}
.y64{bottom:864.690000px;}
.y1b5{bottom:865.230000px;}
.yd2{bottom:867.390000px;}
.y9b{bottom:873.690000px;}
.y3c{bottom:876.570000px;}
.yf{bottom:881.430000px;}
.y1b4{bottom:885.930000px;}
.y8e{bottom:888.270000px;}
.y63{bottom:888.450000px;}
.yd1{bottom:891.330000px;}
.ye{bottom:897.810000px;}
.y3b{bottom:900.510000px;}
.y9a{bottom:901.950000px;}
.y1b3{bottom:906.630000px;}
.y8d{bottom:912.030000px;}
.y62{bottom:912.210000px;}
.yfc{bottom:916.530000px;}
.y3a{bottom:924.270000px;}
.yd{bottom:926.070000px;}
.y1b2{bottom:927.330000px;}
.yd0{bottom:928.410000px;}
.y8c{bottom:935.790000px;}
.y61{bottom:935.970000px;}
.yfb{bottom:940.110000px;}
.yc{bottom:942.090000px;}
.y39{bottom:948.030000px;}
.ycf{bottom:951.630000px;}
.y8b{bottom:959.730000px;}
.y60{bottom:959.910000px;}
.yb{bottom:964.410000px;}
.y38{bottom:971.790000px;}
.ycd{bottom:974.130000px;}
.yfa{bottom:981.510000px;}
.y8a{bottom:983.490000px;}
.y5f{bottom:983.670000px;}
.ya{bottom:985.650000px;}
.y11e{bottom:988.530000px;}
.y37{bottom:995.730000px;}
.y1b1{bottom:995.910000px;}
.ycc{bottom:996.630000px;}
.y9{bottom:1006.350000px;}
.y89{bottom:1007.250000px;}
.y5e{bottom:1007.430000px;}
.ybe{bottom:1019.130000px;}
.y36{bottom:1019.490000px;}
.yf9{bottom:1022.910000px;}
.y8{bottom:1026.690000px;}
.y5d{bottom:1031.190000px;}
.yca{bottom:1032.630000px;}
.y88{bottom:1042.890000px;}
.y35{bottom:1043.250000px;}
.y7{bottom:1047.390000px;}
.y85{bottom:1055.130000px;}
.yf5{bottom:1065.750000px;}
.y34{bottom:1067.010000px;}
.y5c{bottom:1067.190000px;}
.yc5{bottom:1070.070000px;}
.y87{bottom:1078.710000px;}
.y1b0{bottom:1078.890000px;}
.y6{bottom:1081.590000px;}
.y149{bottom:1085.190000px;}
.yf7{bottom:1089.510000px;}
.y33{bottom:1090.950000px;}
.y84{bottom:1091.130000px;}
.yc7{bottom:1095.270000px;}
.y1af{bottom:1102.650000px;}
.yf3{bottom:1113.450000px;}
.y5{bottom:1113.630000px;}
.y32{bottom:1114.710000px;}
.y86{bottom:1114.890000px;}
.y148{bottom:1117.950000px;}
.yc2{bottom:1120.290000px;}
.y4{bottom:1134.000000px;}
.y1ae{bottom:1138.320000px;}
.y31{bottom:1138.500000px;}
.y147{bottom:1138.680000px;}
.y1{bottom:1196.280000px;}
.h21{height:12.960000px;}
.h25{height:17.460000px;}
.h12{height:22.485000px;}
.h10{height:23.565000px;}
.h1a{height:23.745000px;}
.hc{height:34.590000px;}
.h11{height:35.985000px;}
.h16{height:41.205000px;}
.h13{height:41.385000px;}
.h17{height:41.391000px;}
.h15{height:41.421000px;}
.h18{height:41.430000px;}
.h19{height:46.245000px;}
.h9{height:48.616875px;}
.he{height:48.765000px;}
.hb{height:50.273438px;}
.h22{height:53.709961px;}
.h2{height:55.291992px;}
.hf{height:58.651172px;}
.h1c{height:59.439023px;}
.hd{height:60.226875px;}
.h1f{height:61.189805px;}
.h6{height:65.010937px;}
.h14{height:65.325000px;}
.h3{height:65.884219px;}
.h5{height:66.757500px;}
.h8{height:70.664062px;}
.h7{height:72.562500px;}
.ha{height:74.704922px;}
.h4{height:90.703125px;}
.h20{height:333.540000px;}
.h23{height:341.460000px;}
.h24{height:344.880000px;}
.h1b{height:370.440000px;}
.h1d{height:399.600000px;}
.h1e{height:407.700000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w13{width:39.405000px;}
.w18{width:43.365000px;}
.w11{width:74.331000px;}
.w8{width:76.845000px;}
.wb{width:76.896000px;}
.wc{width:77.025000px;}
.w9{width:77.061000px;}
.wf{width:84.405000px;}
.we{width:84.621000px;}
.w16{width:89.640000px;}
.w19{width:89.661000px;}
.w3{width:89.811000px;}
.w15{width:89.820000px;}
.w14{width:89.841000px;}
.w17{width:89.856000px;}
.wd{width:91.785000px;}
.wa{width:91.980000px;}
.w1a{width:96.105000px;}
.w1e{width:131.062500px;}
.w4{width:153.915000px;}
.w21{width:166.515000px;}
.w6{width:168.825000px;}
.w5{width:168.870000px;}
.w7{width:169.035000px;}
.w12{width:627.750000px;}
.w10{width:702.090000px;}
.w1b{width:704.340000px;}
.w1c{width:706.320000px;}
.w1d{width:714.060000px;}
.w1f{width:718.740000px;}
.w20{width:739.800000px;}
.w2{width:750.510000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:8.091000px;}
.x3d{left:10.830000px;}
.x33{left:19.872000px;}
.x3a{left:26.208000px;}
.x32{left:27.504000px;}
.x2f{left:30.096000px;}
.x1d{left:31.170000px;}
.x1a{left:37.980000px;}
.x38{left:48.270000px;}
.x40{left:50.865000px;}
.x22{left:57.585000px;}
.x43{left:61.170000px;}
.x23{left:65.190000px;}
.x18{left:67.665000px;}
.x1{left:108.036000px;}
.x9{left:111.816000px;}
.x7{left:121.356000px;}
.xd{left:126.396000px;}
.x6{left:128.376000px;}
.xb{left:133.956000px;}
.x34{left:139.890000px;}
.x30{left:146.730000px;}
.x41{left:156.750000px;}
.x3{left:162.570000px;}
.x37{left:165.780000px;}
.x44{left:168.405000px;}
.x2d{left:174.630000px;}
.x24{left:182.385000px;}
.x25{left:189.210000px;}
.x17{left:197.865000px;}
.xa{left:209.190000px;}
.x26{left:221.805000px;}
.xf{left:223.050000px;}
.x4{left:225.570000px;}
.x11{left:230.250000px;}
.x39{left:252.435000px;}
.x1e{left:274.725000px;}
.x10{left:290.550000px;}
.x8{left:292.890000px;}
.x3c{left:296.145000px;}
.x27{left:311.655000px;}
.xe{left:329.835000px;}
.x19{left:351.795000px;}
.x28{left:401.475000px;}
.xc{left:419.475000px;}
.x2{left:434.055000px;}
.x1f{left:443.775000px;}
.x5{left:446.475000px;}
.x13{left:450.075000px;}
.x12{left:473.475000px;}
.x29{left:491.115000px;}
.x1b{left:520.680000px;}
.x15{left:527.505000px;}
.x2a{left:580.980000px;}
.x20{left:597.720000px;}
.x2b{left:624.360000px;}
.x14{left:637.485000px;}
.x3b{left:657.795000px;}
.x31{left:662.220000px;}
.x35{left:664.095000px;}
.x42{left:676.620000px;}
.x1c{left:689.520000px;}
.x45{left:697.605000px;}
.x2c{left:714.030000px;}
.x21{left:774.150000px;}
.x2e{left:814.650000px;}
.x36{left:823.650000px;}
.x3e{left:828.150000px;}
.x3f{left:848.310000px;}
@media print{
.v5{vertical-align:-24.320000pt;}
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:5.120000pt;}
.v1{vertical-align:21.120000pt;}
.v4{vertical-align:24.320000pt;}
.ls13{letter-spacing:-0.704000pt;}
.ls11{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.448000pt;}
.ls12{letter-spacing:-0.384000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.230933pt;}
.ls1d{letter-spacing:-0.192000pt;}
.ls17{letter-spacing:-0.153067pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls14{letter-spacing:-0.051840pt;}
.ls6{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.022400pt;}
.ls18{letter-spacing:0.057067pt;}
.lse{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.135680pt;}
.ls1{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.192000pt;}
.ls1c{letter-spacing:0.239467pt;}
.ls16{letter-spacing:0.244267pt;}
.ls2{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:0.384000pt;}
.lsf{letter-spacing:0.409067pt;}
.ls1b{letter-spacing:0.512000pt;}
.lsb{letter-spacing:0.640000pt;}
.ls19{letter-spacing:3.200000pt;}
.ls5{letter-spacing:10.240000pt;}
.ls3{letter-spacing:11.040000pt;}
.ls1a{letter-spacing:18.560000pt;}
.lsc{letter-spacing:43.680000pt;}
.ws0{word-spacing:-48.000000pt;}
.ws15{word-spacing:-16.384000pt;}
.ws4{word-spacing:-16.256000pt;}
.ws6{word-spacing:-16.192000pt;}
.ws5{word-spacing:-16.128000pt;}
.wsb{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws14{word-spacing:-15.808000pt;}
.ws9{word-spacing:-15.744000pt;}
.ws10{word-spacing:-15.616000pt;}
.wsa{word-spacing:-15.552000pt;}
.wsf{word-spacing:-15.360000pt;}
.ws11{word-spacing:-15.296000pt;}
.wse{word-spacing:-13.689067pt;}
.wsd{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.280000pt;}
.ws12{word-spacing:-12.005120pt;}
.ws3{word-spacing:-11.040000pt;}
.ws13{word-spacing:-10.959467pt;}
.ws2{word-spacing:-10.720000pt;}
.ws8{word-spacing:0.000000pt;}
._8{margin-left:-4.122667pt;}
._6{margin-left:-3.029333pt;}
._7{margin-left:-1.994667pt;}
._0{margin-left:-1.104000pt;}
._1{width:1.248000pt;}
._4{width:2.304000pt;}
._5{width:3.648000pt;}
._1a{width:5.120000pt;}
._28{width:6.074667pt;}
._11{width:6.981333pt;}
._b{width:8.256000pt;}
._c{width:9.386667pt;}
._e{width:10.368000pt;}
._d{width:11.402667pt;}
._3a{width:12.341333pt;}
._9{width:13.248000pt;}
._a{width:14.612693pt;}
._1b{width:17.280000pt;}
._f{width:18.816000pt;}
._10{width:20.490667pt;}
._18{width:22.016000pt;}
._30{width:23.189333pt;}
._1c{width:24.128000pt;}
._20{width:25.152000pt;}
._23{width:26.112000pt;}
._24{width:27.658667pt;}
._12{width:28.608000pt;}
._13{width:29.504000pt;}
._2a{width:30.432000pt;}
._14{width:31.680000pt;}
._39{width:32.704000pt;}
._1f{width:33.600000pt;}
._27{width:34.624000pt;}
._17{width:35.712000pt;}
._15{width:36.992000pt;}
._16{width:38.122667pt;}
._2e{width:39.168000pt;}
._2f{width:40.362667pt;}
._22{width:42.074667pt;}
._19{width:43.072000pt;}
._41{width:43.962667pt;}
._2c{width:45.482667pt;}
._2d{width:46.912000pt;}
._45{width:47.808000pt;}
._3d{width:48.832000pt;}
._3f{width:50.928000pt;}
._3e{width:52.176000pt;}
._3b{width:54.272000pt;}
._25{width:55.744000pt;}
._26{width:56.672000pt;}
._21{width:58.368000pt;}
._56{width:60.160000pt;}
._37{width:63.360000pt;}
._47{width:64.256000pt;}
._44{width:66.048000pt;}
._34{width:67.712000pt;}
._36{width:69.248000pt;}
._33{width:73.600000pt;}
._2b{width:74.496000pt;}
._38{width:82.666667pt;}
._29{width:83.984000pt;}
._32{width:85.194667pt;}
._31{width:90.240000pt;}
._42{width:91.392000pt;}
._43{width:92.672000pt;}
._46{width:93.792000pt;}
._3c{width:98.064000pt;}
._52{width:112.272000pt;}
._55{width:115.136000pt;}
._35{width:121.664000pt;}
._4e{width:123.456000pt;}
._4f{width:136.576000pt;}
._53{width:140.352000pt;}
._50{width:169.088000pt;}
._51{width:170.528000pt;}
._40{width:176.106667pt;}
._1d{width:183.808000pt;}
._1e{width:184.746667pt;}
._3{width:295.946667pt;}
._54{width:338.576000pt;}
._4a{width:567.685760pt;}
._4c{width:600.059093pt;}
._4d{width:609.925760pt;}
._4b{width:616.592427pt;}
._48{width:622.885760pt;}
._2{width:631.178667pt;}
._49{width:646.672427pt;}
.fs4{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y17d{bottom:0.146667pt;}
.y173{bottom:1.573333pt;}
.y1ad{bottom:1.773333pt;}
.yc4{bottom:3.386667pt;}
.yec{bottom:3.986667pt;}
.yf2{bottom:3.992000pt;}
.ye4{bottom:4.000000pt;}
.y13d{bottom:5.344000pt;}
.y15c{bottom:5.440000pt;}
.yce{bottom:5.600000pt;}
.yc8{bottom:6.080000pt;}
.yc9{bottom:6.240000pt;}
.yfd{bottom:6.560000pt;}
.yf8{bottom:6.720000pt;}
.y193{bottom:8.026667pt;}
.y1a3{bottom:9.413333pt;}
.ycb{bottom:11.680000pt;}
.yc6{bottom:17.440000pt;}
.yc3{bottom:18.746667pt;}
.y168{bottom:18.906667pt;}
.y12b{bottom:20.346667pt;}
.yee{bottom:22.226667pt;}
.yeb{bottom:22.386667pt;}
.yf1{bottom:22.392000pt;}
.ye3{bottom:22.400000pt;}
.yf4{bottom:22.426667pt;}
.y136{bottom:22.688000pt;}
.y153{bottom:22.786667pt;}
.ye7{bottom:25.280000pt;}
.y18c{bottom:25.373333pt;}
.yf6{bottom:26.720000pt;}
.y19d{bottom:26.746667pt;}
.y124{bottom:37.693333pt;}
.ye6{bottom:43.680000pt;}
.y169{bottom:45.373333pt;}
.y3{bottom:52.032000pt;}
.y19b{bottom:63.520000pt;}
.y154{bottom:63.746667pt;}
.y134{bottom:64.253333pt;}
.y1ab{bottom:65.026667pt;}
.y18d{bottom:66.853333pt;}
.y2{bottom:69.952000pt;}
.y19e{bottom:71.386667pt;}
.y16a{bottom:71.866667pt;}
.y137{bottom:76.093333pt;}
.y146{bottom:77.186667pt;}
.y17b{bottom:79.706667pt;}
.y166{bottom:80.866667pt;}
.y125{bottom:81.693333pt;}
.y19a{bottom:87.613333pt;}
.y133{bottom:88.386667pt;}
.y1aa{bottom:89.120000pt;}
.y16b{bottom:98.373333pt;}
.y145{bottom:101.280000pt;}
.y18a{bottom:101.312000pt;}
.y17a{bottom:101.506667pt;}
.y122{bottom:101.632000pt;}
.y5b{bottom:102.112000pt;}
.y11d{bottom:102.272000pt;}
.y135{bottom:102.400000pt;}
.y155{bottom:104.706667pt;}
.y165{bottom:104.960000pt;}
.yf0{bottom:106.120000pt;}
.y18e{bottom:108.293333pt;}
.y1f3{bottom:110.912000pt;}
.y199{bottom:111.746667pt;}
.y132{bottom:112.480000pt;}
.y83{bottom:112.512000pt;}
.y1a9{bottom:113.253333pt;}
.yba{bottom:115.232000pt;}
.y19f{bottom:116.026667pt;}
.y189{bottom:119.712000pt;}
.yc1{bottom:120.512000pt;}
.y30{bottom:120.672000pt;}
.y5a{bottom:123.232000pt;}
.y179{bottom:123.333333pt;}
.y11c{bottom:123.392000pt;}
.y16c{bottom:124.866667pt;}
.y144{bottom:125.413333pt;}
.y126{bottom:125.733333pt;}
.y151{bottom:128.192000pt;}
.y164{bottom:129.093333pt;}
.y138{bottom:129.506667pt;}
.y82{bottom:133.786667pt;}
.y198{bottom:135.840000pt;}
.yb9{bottom:136.346667pt;}
.y131{bottom:136.613333pt;}
.y1a8{bottom:137.346667pt;}
.y188{bottom:138.106667pt;}
.y2f{bottom:141.786667pt;}
.y59{bottom:144.346667pt;}
.yef{bottom:144.360000pt;}
.y11b{bottom:144.666667pt;}
.y178{bottom:145.120000pt;}
.y1d4{bottom:145.306667pt;}
.y156{bottom:145.666667pt;}
.y1f2{bottom:145.786667pt;}
.y150{bottom:146.586667pt;}
.y143{bottom:149.533333pt;}
.yc0{bottom:149.626667pt;}
.y18f{bottom:149.760000pt;}
.y16d{bottom:151.360000pt;}
.y163{bottom:153.186667pt;}
.y81{bottom:154.906667pt;}
.yb8{bottom:157.466667pt;}
.y197{bottom:159.973333pt;}
.y1a0{bottom:160.666667pt;}
.y130{bottom:160.706667pt;}
.y1a7{bottom:161.466667pt;}
.y2e{bottom:163.066667pt;}
.y1d3{bottom:163.706667pt;}
.y1f1{bottom:164.186667pt;}
.y15d{bottom:165.213333pt;}
.y58{bottom:165.466667pt;}
.y11a{bottom:165.786667pt;}
.y177{bottom:166.946667pt;}
.y187{bottom:167.546667pt;}
.y127{bottom:169.733333pt;}
.y14f{bottom:171.706667pt;}
.y167{bottom:173.280000pt;}
.y142{bottom:173.626667pt;}
.y80{bottom:176.026667pt;}
.y162{bottom:177.306667pt;}
.y16e{bottom:177.853333pt;}
.ybf{bottom:178.586667pt;}
.yb7{bottom:178.746667pt;}
.y17c{bottom:179.880000pt;}
.yed{bottom:181.160000pt;}
.y1d2{bottom:182.106667pt;}
.y99{bottom:182.426667pt;}
.y1f0{bottom:182.586667pt;}
.y139{bottom:182.946667pt;}
.y196{bottom:184.066667pt;}
.y2d{bottom:184.186667pt;}
.y12f{bottom:184.826667pt;}
.y1a6{bottom:185.573333pt;}
.y186{bottom:185.946667pt;}
.y157{bottom:186.586667pt;}
.y57{bottom:186.746667pt;}
.y119{bottom:186.906667pt;}
.y176{bottom:188.733333pt;}
.y190{bottom:191.226667pt;}
.y7f{bottom:197.146667pt;}
.y141{bottom:197.760000pt;}
.yb6{bottom:199.866667pt;}
.y1d1{bottom:200.506667pt;}
.y1ef{bottom:200.986667pt;}
.y161{bottom:201.413333pt;}
.y16f{bottom:204.346667pt;}
.y2c{bottom:205.306667pt;}
.y98{bottom:207.706667pt;}
.y56{bottom:207.866667pt;}
.y118{bottom:208.026667pt;}
.y195{bottom:208.186667pt;}
.y12e{bottom:208.960000pt;}
.y1a5{bottom:209.693333pt;}
.y175{bottom:210.560000pt;}
.y128{bottom:213.760000pt;}
.y185{bottom:214.906667pt;}
.yea{bottom:217.800000pt;}
.y7e{bottom:218.266667pt;}
.y1ee{bottom:219.386667pt;}
.yb5{bottom:220.986667pt;}
.y140{bottom:221.853333pt;}
.y160{bottom:225.533333pt;}
.y2b{bottom:226.426667pt;}
.y158{bottom:227.546667pt;}
.y55{bottom:228.986667pt;}
.y117{bottom:229.306667pt;}
.y1d0{bottom:229.626667pt;}
.y170{bottom:230.853333pt;}
.y194{bottom:232.293333pt;}
.y174{bottom:232.346667pt;}
.y191{bottom:232.666667pt;}
.y12d{bottom:233.053333pt;}
.y1a4{bottom:233.786667pt;}
.y13a{bottom:236.346667pt;}
.y1ed{bottom:237.786667pt;}
.y7d{bottom:239.546667pt;}
.y184{bottom:240.186667pt;}
.y19c{bottom:241.600000pt;}
.yb4{bottom:242.106667pt;}
.y13f{bottom:245.986667pt;}
.y2a{bottom:247.746667pt;}
.y1cf{bottom:248.066667pt;}
.y15f{bottom:249.626667pt;}
.y1a1{bottom:249.946667pt;}
.y54{bottom:250.146667pt;}
.y116{bottom:250.466667pt;}
.y1ac{bottom:251.253333pt;}
.ye9{bottom:254.626667pt;}
.y1ec{bottom:256.226667pt;}
.y12c{bottom:257.186667pt;}
.y171{bottom:257.306667pt;}
.y129{bottom:257.760000pt;}
.y7c{bottom:260.706667pt;}
.yb3{bottom:263.426667pt;}
.y1ce{bottom:266.466667pt;}
.y159{bottom:268.506667pt;}
.y29{bottom:268.866667pt;}
.y13e{bottom:270.080000pt;}
.y53{bottom:271.426667pt;}
.y115{bottom:271.586667pt;}
.y15e{bottom:273.760000pt;}
.y192{bottom:274.146667pt;}
.y7b{bottom:281.826667pt;}
.y172{bottom:283.813333pt;}
.yb2{bottom:284.546667pt;}
.y1cd{bottom:284.866667pt;}
.y1eb{bottom:286.786667pt;}
.y28{bottom:287.106667pt;}
.y13b{bottom:289.760000pt;}
.y52{bottom:292.546667pt;}
.y114{bottom:292.706667pt;}
.ye5{bottom:292.866667pt;}
.y1a2{bottom:294.586667pt;}
.y12a{bottom:301.760000pt;}
.y7a{bottom:302.946667pt;}
.y1cc{bottom:303.266667pt;}
.yb1{bottom:305.666667pt;}
.y1ea{bottom:306.466667pt;}
.y15a{bottom:309.466667pt;}
.y51{bottom:313.666667pt;}
.y113{bottom:313.986667pt;}
.y27{bottom:316.386667pt;}
.y79{bottom:324.226667pt;}
.y1e9{bottom:326.306667pt;}
.yb0{bottom:326.786667pt;}
.ye8{bottom:330.946667pt;}
.y1cb{bottom:332.226667pt;}
.y26{bottom:334.786667pt;}
.y112{bottom:335.106667pt;}
.y13c{bottom:343.200000pt;}
.y78{bottom:345.346667pt;}
.y1e8{bottom:346.146667pt;}
.yaf{bottom:348.066667pt;}
.y15b{bottom:350.426667pt;}
.y1ca{bottom:350.626667pt;}
.ye2{bottom:352.226667pt;}
.y25{bottom:353.186667pt;}
.y50{bottom:356.066667pt;}
.y111{bottom:356.226667pt;}
.y1e7{bottom:365.986667pt;}
.y77{bottom:366.466667pt;}
.y1c9{bottom:369.026667pt;}
.yae{bottom:369.186667pt;}
.y24{bottom:371.586667pt;}
.y4f{bottom:377.186667pt;}
.y110{bottom:377.346667pt;}
.y1c8{bottom:387.426667pt;}
.y76{bottom:387.586667pt;}
.y23{bottom:389.986667pt;}
.yad{bottom:390.306667pt;}
.ye1{bottom:393.026667pt;}
.y1e6{bottom:395.266667pt;}
.y4e{bottom:398.306667pt;}
.y10f{bottom:398.626667pt;}
.y1c7{bottom:405.826667pt;}
.y22{bottom:408.386667pt;}
.y75{bottom:408.866667pt;}
.yac{bottom:411.426667pt;}
.y1e5{bottom:413.666667pt;}
.y4d{bottom:419.426667pt;}
.y10e{bottom:419.746667pt;}
.y1c6{bottom:424.226667pt;}
.y21{bottom:426.786667pt;}
.y74{bottom:429.986667pt;}
.y1e4{bottom:432.066667pt;}
.ye0{bottom:432.546667pt;}
.yab{bottom:432.706667pt;}
.y4c{bottom:440.706667pt;}
.y10d{bottom:440.866667pt;}
.y1c5{bottom:442.626667pt;}
.y20{bottom:445.186667pt;}
.y73{bottom:451.106667pt;}
.ydf{bottom:453.666667pt;}
.yaa{bottom:453.826667pt;}
.y1e3{bottom:461.026667pt;}
.y4b{bottom:461.826667pt;}
.y10c{bottom:461.986667pt;}
.y1f{bottom:463.586667pt;}
.y1c4{bottom:471.746667pt;}
.y72{bottom:472.226667pt;}
.ya9{bottom:474.626667pt;}
.yde{bottom:474.786667pt;}
.ybd{bottom:474.946667pt;}
.y1e2{bottom:479.426667pt;}
.y1e{bottom:481.986667pt;}
.y4a{bottom:482.946667pt;}
.y10b{bottom:483.106667pt;}
.y14e{bottom:484.386667pt;}
.y1c3{bottom:490.146667pt;}
.y71{bottom:493.506667pt;}
.ya8{bottom:495.773333pt;}
.ydd{bottom:495.933333pt;}
.ybc{bottom:496.093333pt;}
.y1e1{bottom:497.853333pt;}
.y1d{bottom:500.413333pt;}
.y121{bottom:501.213333pt;}
.y49{bottom:504.093333pt;}
.y10a{bottom:504.413333pt;}
.y1c2{bottom:508.573333pt;}
.y14d{bottom:513.373333pt;}
.y70{bottom:514.653333pt;}
.y1e0{bottom:516.253333pt;}
.ya7{bottom:517.213333pt;}
.y1c{bottom:518.813333pt;}
.y120{bottom:519.613333pt;}
.y48{bottom:525.373333pt;}
.y109{bottom:525.533333pt;}
.y1c1{bottom:526.973333pt;}
.y1df{bottom:534.653333pt;}
.y6f{bottom:535.773333pt;}
.y1b{bottom:537.213333pt;}
.ydc{bottom:538.333333pt;}
.ya6{bottom:538.493333pt;}
.y14c{bottom:542.493333pt;}
.y11f{bottom:544.733333pt;}
.y1c0{bottom:545.373333pt;}
.y123{bottom:545.600000pt;}
.y47{bottom:546.493333pt;}
.y108{bottom:546.653333pt;}
.y1de{bottom:553.053333pt;}
.y1a{bottom:555.613333pt;}
.y6e{bottom:556.893333pt;}
.ydb{bottom:559.453333pt;}
.ya5{bottom:559.613333pt;}
.y14b{bottom:560.893333pt;}
.y183{bottom:562.813333pt;}
.y1bf{bottom:563.773333pt;}
.y97{bottom:567.293333pt;}
.y46{bottom:567.613333pt;}
.y107{bottom:567.773333pt;}
.y19{bottom:574.013333pt;}
.y6d{bottom:578.173333pt;}
.yda{bottom:580.573333pt;}
.ya4{bottom:580.733333pt;}
.y1dd{bottom:582.173333pt;}
.y14a{bottom:586.173333pt;}
.y152{bottom:587.680000pt;}
.y45{bottom:588.733333pt;}
.y106{bottom:589.053333pt;}
.y182{bottom:591.773333pt;}
.y18{bottom:592.413333pt;}
.y1be{bottom:592.733333pt;}
.y6c{bottom:599.293333pt;}
.y1dc{bottom:600.573333pt;}
.ya3{bottom:601.853333pt;}
.y44{bottom:609.853333pt;}
.y105{bottom:610.173333pt;}
.y17{bottom:610.813333pt;}
.y1bd{bottom:611.133333pt;}
.y1db{bottom:618.973333pt;}
.y96{bottom:620.253333pt;}
.y6b{bottom:620.413333pt;}
.y181{bottom:620.893333pt;}
.yd9{bottom:622.973333pt;}
.ya2{bottom:623.133333pt;}
.y16{bottom:629.213333pt;}
.y1bc{bottom:629.533333pt;}
.y43{bottom:631.133333pt;}
.y104{bottom:631.293333pt;}
.y1da{bottom:637.373333pt;}
.y95{bottom:641.373333pt;}
.y6a{bottom:641.533333pt;}
.yd8{bottom:644.093333pt;}
.ya1{bottom:644.253333pt;}
.y15{bottom:647.613333pt;}
.y1bb{bottom:647.933333pt;}
.y180{bottom:650.013333pt;}
.y42{bottom:652.253333pt;}
.y103{bottom:652.413333pt;}
.y1d9{bottom:655.773333pt;}
.y94{bottom:662.493333pt;}
.y69{bottom:662.813333pt;}
.yd7{bottom:665.213333pt;}
.ya0{bottom:665.373333pt;}
.y14{bottom:665.693333pt;}
.y1ba{bottom:666.333333pt;}
.y17f{bottom:668.413333pt;}
.y41{bottom:673.373333pt;}
.y102{bottom:673.693333pt;}
.y1d8{bottom:674.173333pt;}
.y93{bottom:683.773333pt;}
.y68{bottom:683.933333pt;}
.yd6{bottom:686.333333pt;}
.y9f{bottom:686.493333pt;}
.y17e{bottom:693.533333pt;}
.y18b{bottom:693.920000pt;}
.y40{bottom:694.493333pt;}
.y101{bottom:694.813333pt;}
.y1b9{bottom:695.453333pt;}
.y13{bottom:701.853333pt;}
.y1d7{bottom:703.133333pt;}
.y92{bottom:704.893333pt;}
.y67{bottom:705.053333pt;}
.yd5{bottom:707.613333pt;}
.y9e{bottom:707.773333pt;}
.y1b8{bottom:713.853333pt;}
.y3f{bottom:715.773333pt;}
.y100{bottom:715.933333pt;}
.y12{bottom:719.933333pt;}
.y1d6{bottom:721.533333pt;}
.y91{bottom:726.013333pt;}
.y66{bottom:726.173333pt;}
.y9d{bottom:728.573333pt;}
.yd4{bottom:728.733333pt;}
.ybb{bottom:728.893333pt;}
.y1b7{bottom:732.253333pt;}
.y3e{bottom:736.893333pt;}
.y1d5{bottom:739.933333pt;}
.yff{bottom:743.613333pt;}
.y11{bottom:743.773333pt;}
.y90{bottom:747.173333pt;}
.y65{bottom:747.333333pt;}
.y9c{bottom:747.493333pt;}
.yd3{bottom:749.893333pt;}
.y1b6{bottom:750.693333pt;}
.y3d{bottom:758.053333pt;}
.y10{bottom:758.373333pt;}
.yfe{bottom:762.213333pt;}
.y8f{bottom:768.453333pt;}
.y64{bottom:768.613333pt;}
.y1b5{bottom:769.093333pt;}
.yd2{bottom:771.013333pt;}
.y9b{bottom:776.613333pt;}
.y3c{bottom:779.173333pt;}
.yf{bottom:783.493333pt;}
.y1b4{bottom:787.493333pt;}
.y8e{bottom:789.573333pt;}
.y63{bottom:789.733333pt;}
.yd1{bottom:792.293333pt;}
.ye{bottom:798.053333pt;}
.y3b{bottom:800.453333pt;}
.y9a{bottom:801.733333pt;}
.y1b3{bottom:805.893333pt;}
.y8d{bottom:810.693333pt;}
.y62{bottom:810.853333pt;}
.yfc{bottom:814.693333pt;}
.y3a{bottom:821.573333pt;}
.yd{bottom:823.173333pt;}
.y1b2{bottom:824.293333pt;}
.yd0{bottom:825.253333pt;}
.y8c{bottom:831.813333pt;}
.y61{bottom:831.973333pt;}
.yfb{bottom:835.653333pt;}
.yc{bottom:837.413333pt;}
.y39{bottom:842.693333pt;}
.ycf{bottom:845.893333pt;}
.y8b{bottom:853.093333pt;}
.y60{bottom:853.253333pt;}
.yb{bottom:857.253333pt;}
.y38{bottom:863.813333pt;}
.ycd{bottom:865.893333pt;}
.yfa{bottom:872.453333pt;}
.y8a{bottom:874.213333pt;}
.y5f{bottom:874.373333pt;}
.ya{bottom:876.133333pt;}
.y11e{bottom:878.693333pt;}
.y37{bottom:885.093333pt;}
.y1b1{bottom:885.253333pt;}
.ycc{bottom:885.893333pt;}
.y9{bottom:894.533333pt;}
.y89{bottom:895.333333pt;}
.y5e{bottom:895.493333pt;}
.ybe{bottom:905.893333pt;}
.y36{bottom:906.213333pt;}
.yf9{bottom:909.253333pt;}
.y8{bottom:912.613333pt;}
.y5d{bottom:916.613333pt;}
.yca{bottom:917.893333pt;}
.y88{bottom:927.013333pt;}
.y35{bottom:927.333333pt;}
.y7{bottom:931.013333pt;}
.y85{bottom:937.893333pt;}
.yf5{bottom:947.333333pt;}
.y34{bottom:948.453333pt;}
.y5c{bottom:948.613333pt;}
.yc5{bottom:951.173333pt;}
.y87{bottom:958.853333pt;}
.y1b0{bottom:959.013333pt;}
.y6{bottom:961.413333pt;}
.y149{bottom:964.613333pt;}
.yf7{bottom:968.453333pt;}
.y33{bottom:969.733333pt;}
.y84{bottom:969.893333pt;}
.yc7{bottom:973.573333pt;}
.y1af{bottom:980.133333pt;}
.yf3{bottom:989.733333pt;}
.y5{bottom:989.893333pt;}
.y32{bottom:990.853333pt;}
.y86{bottom:991.013333pt;}
.y148{bottom:993.733333pt;}
.yc2{bottom:995.813333pt;}
.y4{bottom:1008.000000pt;}
.y1ae{bottom:1011.840000pt;}
.y31{bottom:1012.000000pt;}
.y147{bottom:1012.160000pt;}
.y1{bottom:1063.360000pt;}
.h21{height:11.520000pt;}
.h25{height:15.520000pt;}
.h12{height:19.986667pt;}
.h10{height:20.946667pt;}
.h1a{height:21.106667pt;}
.hc{height:30.746667pt;}
.h11{height:31.986667pt;}
.h16{height:36.626667pt;}
.h13{height:36.786667pt;}
.h17{height:36.792000pt;}
.h15{height:36.818667pt;}
.h18{height:36.826667pt;}
.h19{height:41.106667pt;}
.h9{height:43.215000pt;}
.he{height:43.346667pt;}
.hb{height:44.687500pt;}
.h22{height:47.742188pt;}
.h2{height:49.148438pt;}
.hf{height:52.134375pt;}
.h1c{height:52.834688pt;}
.hd{height:53.535000pt;}
.h1f{height:54.390938pt;}
.h6{height:57.787500pt;}
.h14{height:58.066667pt;}
.h3{height:58.563750pt;}
.h5{height:59.340000pt;}
.h8{height:62.812500pt;}
.h7{height:64.500000pt;}
.ha{height:66.404375pt;}
.h4{height:80.625000pt;}
.h20{height:296.480000pt;}
.h23{height:303.520000pt;}
.h24{height:306.560000pt;}
.h1b{height:329.280000pt;}
.h1d{height:355.200000pt;}
.h1e{height:362.400000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w13{width:35.026667pt;}
.w18{width:38.546667pt;}
.w11{width:66.072000pt;}
.w8{width:68.306667pt;}
.wb{width:68.352000pt;}
.wc{width:68.466667pt;}
.w9{width:68.498667pt;}
.wf{width:75.026667pt;}
.we{width:75.218667pt;}
.w16{width:79.680000pt;}
.w19{width:79.698667pt;}
.w3{width:79.832000pt;}
.w15{width:79.840000pt;}
.w14{width:79.858667pt;}
.w17{width:79.872000pt;}
.wd{width:81.586667pt;}
.wa{width:81.760000pt;}
.w1a{width:85.426667pt;}
.w1e{width:116.500000pt;}
.w4{width:136.813333pt;}
.w21{width:148.013333pt;}
.w6{width:150.066667pt;}
.w5{width:150.106667pt;}
.w7{width:150.253333pt;}
.w12{width:558.000000pt;}
.w10{width:624.080000pt;}
.w1b{width:626.080000pt;}
.w1c{width:627.840000pt;}
.w1d{width:634.720000pt;}
.w1f{width:638.880000pt;}
.w20{width:657.600000pt;}
.w2{width:667.120000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:7.192000pt;}
.x3d{left:9.626667pt;}
.x33{left:17.664000pt;}
.x3a{left:23.296000pt;}
.x32{left:24.448000pt;}
.x2f{left:26.752000pt;}
.x1d{left:27.706667pt;}
.x1a{left:33.760000pt;}
.x38{left:42.906667pt;}
.x40{left:45.213333pt;}
.x22{left:51.186667pt;}
.x43{left:54.373333pt;}
.x23{left:57.946667pt;}
.x18{left:60.146667pt;}
.x1{left:96.032000pt;}
.x9{left:99.392000pt;}
.x7{left:107.872000pt;}
.xd{left:112.352000pt;}
.x6{left:114.112000pt;}
.xb{left:119.072000pt;}
.x34{left:124.346667pt;}
.x30{left:130.426667pt;}
.x41{left:139.333333pt;}
.x3{left:144.506667pt;}
.x37{left:147.360000pt;}
.x44{left:149.693333pt;}
.x2d{left:155.226667pt;}
.x24{left:162.120000pt;}
.x25{left:168.186667pt;}
.x17{left:175.880000pt;}
.xa{left:185.946667pt;}
.x26{left:197.160000pt;}
.xf{left:198.266667pt;}
.x4{left:200.506667pt;}
.x11{left:204.666667pt;}
.x39{left:224.386667pt;}
.x1e{left:244.200000pt;}
.x10{left:258.266667pt;}
.x8{left:260.346667pt;}
.x3c{left:263.240000pt;}
.x27{left:277.026667pt;}
.xe{left:293.186667pt;}
.x19{left:312.706667pt;}
.x28{left:356.866667pt;}
.xc{left:372.866667pt;}
.x2{left:385.826667pt;}
.x1f{left:394.466667pt;}
.x5{left:396.866667pt;}
.x13{left:400.066667pt;}
.x12{left:420.866667pt;}
.x29{left:436.546667pt;}
.x1b{left:462.826667pt;}
.x15{left:468.893333pt;}
.x2a{left:516.426667pt;}
.x20{left:531.306667pt;}
.x2b{left:554.986667pt;}
.x14{left:566.653333pt;}
.x3b{left:584.706667pt;}
.x31{left:588.640000pt;}
.x35{left:590.306667pt;}
.x42{left:601.440000pt;}
.x1c{left:612.906667pt;}
.x45{left:620.093333pt;}
.x2c{left:634.693333pt;}
.x21{left:688.133333pt;}
.x2e{left:724.133333pt;}
.x36{left:732.133333pt;}
.x3e{left:736.133333pt;}
.x3f{left:754.053333pt;}
}




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