
    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_ba3ed6a576bccf1d3604f45e.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2b42a01d20bdf3e930a65f13.woff')format("woff");}.ff2{font-family:ff2;line-height:0.933594;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_50a643b2e3b9ca44249c4e6d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.786133;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_cf9ca829687d2c63c1e83a86.woff')format("woff");}.ff4{font-family:ff4;line-height:0.946777;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_582e96f82957b737efef0230.woff')format("woff");}.ff5{font-family:ff5;line-height:1.061035;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff6{font-family:ff6;line-height:1.003906;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_b4feb020e884746ba36338c3.woff')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_6db2e4a484e23f7223e6873d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.933594;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_29179e3e8c96aca1603f8107.woff')format("woff");}.ff9{font-family:ff9;line-height:0.830078;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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;}
.ls8{letter-spacing:-0.612000px;}
.lsb{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.008640px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.017280px;}
.ls9{letter-spacing:0.018000px;}
.ls4{letter-spacing:0.023040px;}
.ls1{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.360000px;}
.ls6{letter-spacing:25.308000px;}
.ls0{letter-spacing:28.206720px;}
.lsc{letter-spacing:52.668000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-30.456000px;}
.wsb{word-spacing:-19.457280px;}
.ws1{word-spacing:-19.440000px;}
.ws2{word-spacing:-19.431360px;}
.ws5{word-spacing:-16.560000px;}
.ws0{word-spacing:-14.595840px;}
.ws9{word-spacing:-13.860000px;}
.wsa{word-spacing:-13.518000px;}
.ws4{word-spacing:-13.500000px;}
.ws7{word-spacing:-13.284000px;}
.wsc{word-spacing:-13.140000px;}
.ws8{word-spacing:-12.888000px;}
.ws6{word-spacing:0.000000px;}
._1b{margin-left:-3.328560px;}
._7{margin-left:-2.125440px;}
._1{margin-left:-1.109520px;}
._0{width:1.465680px;}
._3{width:2.754000px;}
._5{width:4.590000px;}
._4{width:5.616000px;}
._15{width:6.900720px;}
._6{width:8.640000px;}
._f{width:9.720000px;}
._d{width:11.502000px;}
._16{width:13.087440px;}
._1a{width:14.688000px;}
._8{width:15.984000px;}
._c{width:17.874000px;}
._10{width:19.170000px;}
._18{width:20.337840px;}
._14{width:21.492000px;}
._e{width:23.490000px;}
._27{width:24.562320px;}
._26{width:25.877760px;}
._13{width:27.054000px;}
._1c{width:28.217520px;}
._12{width:29.430000px;}
._11{width:30.564000px;}
._17{width:32.130000px;}
._20{width:33.588000px;}
._22{width:34.722000px;}
._24{width:36.002640px;}
._23{width:37.391760px;}
._19{width:38.729760px;}
._b{width:39.906000px;}
._1d{width:41.057280px;}
._1e{width:42.379200px;}
._29{width:43.665360px;}
._21{width:44.874000px;}
._2c{width:46.926000px;}
._2b{width:48.114000px;}
._2a{width:50.112000px;}
._2d{width:55.728000px;}
._25{width:57.780000px;}
._1f{width:62.748000px;}
._a{width:63.936000px;}
._9{width:65.124000px;}
._28{width:85.104000px;}
._2e{width:99.414000px;}
._30{width:103.680000px;}
._2f{width:104.922000px;}
._2{width:2903.467200px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(0,176,240);}
.fc3{color:rgb(0,176,80);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:48.240000px;}
.fs1{font-size:51.120000px;}
.fs3{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs4{font-size:77.760000px;}
.fs6{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.600000px;}
.y21{bottom:3.780000px;}
.y3a{bottom:4.350000px;}
.ya7{bottom:5.220000px;}
.y171{bottom:5.400000px;}
.y2{bottom:5.580000px;}
.y4{bottom:6.480000px;}
.y11a{bottom:6.660000px;}
.y40{bottom:7.170000px;}
.ye1{bottom:8.100000px;}
.yd6{bottom:8.280000px;}
.y2a{bottom:9.720000px;}
.y2d{bottom:13.680000px;}
.y28{bottom:14.220000px;}
.y8{bottom:22.500000px;}
.ya6{bottom:23.040000px;}
.y173{bottom:23.085000px;}
.y16e{bottom:23.220000px;}
.y1b7{bottom:23.265000px;}
.y39{bottom:24.150000px;}
.y116{bottom:24.480000px;}
.y160{bottom:24.510000px;}
.y151{bottom:24.660000px;}
.y161{bottom:24.690000px;}
.yd5{bottom:26.100000px;}
.y26{bottom:27.180000px;}
.ye0{bottom:28.980000px;}
.yda{bottom:29.160000px;}
.yae{bottom:40.860000px;}
.yab{bottom:40.905000px;}
.y7{bottom:41.040000px;}
.y1b6{bottom:41.085000px;}
.y2c{bottom:41.940000px;}
.y154{bottom:42.300000px;}
.y158{bottom:42.345000px;}
.y150{bottom:42.480000px;}
.y15f{bottom:42.510000px;}
.y159{bottom:42.525000px;}
.ydc{bottom:49.860000px;}
.yd9{bottom:50.040000px;}
.y25{bottom:51.480000px;}
.ydf{bottom:52.920000px;}
.y6{bottom:56.520000px;}
.yb2{bottom:58.680000px;}
.yaa{bottom:58.725000px;}
.yad{bottom:58.860000px;}
.y1b5{bottom:58.905000px;}
.y14e{bottom:60.120000px;}
.y15e{bottom:60.150000px;}
.y14f{bottom:60.300000px;}
.y157{bottom:60.345000px;}
.yd8{bottom:70.740000px;}
.yde{bottom:70.770000px;}
.y36{bottom:72.750000px;}
.y1c6{bottom:76.545000px;}
.yb0{bottom:76.680000px;}
.y1bf{bottom:76.710000px;}
.ya9{bottom:76.725000px;}
.y15c{bottom:77.940000px;}
.y14d{bottom:77.970000px;}
.y153{bottom:78.120000px;}
.y156{bottom:78.165000px;}
.y148{bottom:80.460000px;}
.y24f{bottom:83.340000px;}
.y7b{bottom:84.060000px;}
.y1d{bottom:87.120000px;}
.ycb{bottom:87.660000px;}
.y1ed{bottom:90.000000px;}
.y169{bottom:90.900000px;}
.y1af{bottom:91.080000px;}
.y35{bottom:92.595000px;}
.y192{bottom:92.880000px;}
.y114{bottom:93.960000px;}
.y1ba{bottom:94.500000px;}
.y1be{bottom:94.530000px;}
.y1c5{bottom:94.545000px;}
.y1b4{bottom:94.725000px;}
.y15b{bottom:95.760000px;}
.y147{bottom:98.280000px;}
.ya2{bottom:99.900000px;}
.y24e{bottom:101.340000px;}
.y7a{bottom:101.880000px;}
.y1f{bottom:104.940000px;}
.yca{bottom:105.480000px;}
.y1ec{bottom:107.820000px;}
.y1ae{bottom:108.900000px;}
.y21d{bottom:109.800000px;}
.y113{bottom:111.780000px;}
.y1b9{bottom:112.320000px;}
.y1c4{bottom:112.365000px;}
.y1bd{bottom:112.530000px;}
.y1b3{bottom:112.545000px;}
.y34{bottom:112.575000px;}
.y1bb{bottom:113.040000px;}
.y1c{bottom:113.940000px;}
.ydd{bottom:115.740000px;}
.y163{bottom:115.920000px;}
.y146{bottom:116.100000px;}
.ya1{bottom:117.720000px;}
.y24d{bottom:119.160000px;}
.y79{bottom:119.700000px;}
.y1e{bottom:122.760000px;}
.yc9{bottom:123.300000px;}
.y1eb{bottom:125.640000px;}
.y1ad{bottom:126.720000px;}
.y21c{bottom:127.620000px;}
.y1c2{bottom:130.140000px;}
.y1bc{bottom:130.350000px;}
.y1b{bottom:131.760000px;}
.y33{bottom:132.375000px;}
.y162{bottom:133.740000px;}
.y145{bottom:133.920000px;}
.ya0{bottom:135.540000px;}
.y24c{bottom:136.980000px;}
.y78{bottom:137.520000px;}
.y112{bottom:138.600000px;}
.yc8{bottom:141.120000px;}
.y1ea{bottom:143.640000px;}
.y1ac{bottom:144.540000px;}
.y23{bottom:145.080000px;}
.y21b{bottom:145.620000px;}
.y1a{bottom:149.580000px;}
.y32{bottom:152.175000px;}
.y9f{bottom:153.540000px;}
.y24b{bottom:154.800000px;}
.y77{bottom:155.520000px;}
.y144{bottom:160.740000px;}
.y1e9{bottom:161.460000px;}
.y1ab{bottom:162.540000px;}
.y15d{bottom:163.080000px;}
.y21a{bottom:163.440000px;}
.y111{bottom:165.420000px;}
.y19{bottom:167.400000px;}
.yc7{bottom:168.120000px;}
.y9e{bottom:171.360000px;}
.y31{bottom:171.975000px;}
.y24a{bottom:172.620000px;}
.y76{bottom:173.340000px;}
.y143{bottom:178.770000px;}
.y1e8{bottom:179.310000px;}
.y1aa{bottom:180.390000px;}
.y219{bottom:181.290000px;}
.y18{bottom:185.430000px;}
.yc6{bottom:185.970000px;}
.y9d{bottom:189.210000px;}
.y249{bottom:190.650000px;}
.y191{bottom:191.190000px;}
.y30{bottom:191.775000px;}
.y110{bottom:192.450000px;}
.y142{bottom:196.590000px;}
.y1e7{bottom:197.130000px;}
.y1a9{bottom:198.210000px;}
.y218{bottom:199.110000px;}
.y75{bottom:200.190000px;}
.y17{bottom:203.250000px;}
.yc5{bottom:203.790000px;}
.y9c{bottom:207.030000px;}
.y248{bottom:208.470000px;}
.y190{bottom:209.010000px;}
.y10f{bottom:210.270000px;}
.y2f{bottom:211.755000px;}
.y141{bottom:214.410000px;}
.y1a8{bottom:216.030000px;}
.y217{bottom:216.930000px;}
.ydb{bottom:217.290000px;}
.y74{bottom:218.010000px;}
.y16{bottom:221.070000px;}
.yc4{bottom:221.610000px;}
.y1e6{bottom:223.950000px;}
.y9b{bottom:224.850000px;}
.y247{bottom:226.290000px;}
.y18f{bottom:226.830000px;}
.y10e{bottom:228.090000px;}
.y140{bottom:232.230000px;}
.y1a7{bottom:233.850000px;}
.y73{bottom:235.830000px;}
.y15{bottom:238.890000px;}
.yc3{bottom:239.430000px;}
.y1e5{bottom:241.950000px;}
.y9a{bottom:242.670000px;}
.y216{bottom:243.750000px;}
.y246{bottom:244.110000px;}
.y18e{bottom:244.650000px;}
.y10d{bottom:245.910000px;}
.y13f{bottom:250.050000px;}
.y1a6{bottom:251.670000px;}
.y15a{bottom:252.750000px;}
.y72{bottom:253.830000px;}
.y14{bottom:256.710000px;}
.yc2{bottom:257.250000px;}
.y1e4{bottom:259.770000px;}
.y168{bottom:260.670000px;}
.y215{bottom:261.750000px;}
.y245{bottom:261.930000px;}
.y18d{bottom:262.650000px;}
.y10c{bottom:263.730000px;}
.y13e{bottom:268.050000px;}
.y99{bottom:269.670000px;}
.y1b8{bottom:271.110000px;}
.y71{bottom:271.650000px;}
.y13{bottom:274.530000px;}
.yc1{bottom:275.250000px;}
.y1e3{bottom:277.590000px;}
.y1a5{bottom:278.670000px;}
.y214{bottom:279.570000px;}
.y244{bottom:279.750000px;}
.y18c{bottom:280.470000px;}
.y10b{bottom:281.550000px;}
.y13d{bottom:285.870000px;}
.y98{bottom:287.490000px;}
.y70{bottom:289.470000px;}
.yc0{bottom:293.070000px;}
.y12{bottom:294.870000px;}
.y1e2{bottom:295.410000px;}
.y1a4{bottom:296.490000px;}
.y213{bottom:297.390000px;}
.y243{bottom:297.750000px;}
.y10a{bottom:299.550000px;}
.y97{bottom:305.310000px;}
.y6f{bottom:307.290000px;}
.ybf{bottom:310.890000px;}
.y13c{bottom:312.690000px;}
.y1e1{bottom:313.230000px;}
.y1a3{bottom:314.310000px;}
.y212{bottom:315.210000px;}
.y242{bottom:315.570000px;}
.y109{bottom:317.370000px;}
.yd7{bottom:318.810000px;}
.y96{bottom:323.130000px;}
.y6e{bottom:325.110000px;}
.ybe{bottom:328.710000px;}
.y11{bottom:330.150000px;}
.y13b{bottom:330.510000px;}
.y1a2{bottom:332.130000px;}
.y211{bottom:333.030000px;}
.y241{bottom:333.390000px;}
.y108{bottom:335.190000px;}
.y1e0{bottom:340.050000px;}
.y95{bottom:340.950000px;}
.y18b{bottom:342.930000px;}
.ybd{bottom:346.530000px;}
.y13a{bottom:348.330000px;}
.y2e{bottom:348.480000px;}
.y1a1{bottom:349.950000px;}
.y210{bottom:350.850000px;}
.y240{bottom:351.210000px;}
.y6d{bottom:351.930000px;}
.y1df{bottom:358.050000px;}
.y94{bottom:358.950000px;}
.y18a{bottom:360.930000px;}
.y107{bottom:362.010000px;}
.y139{bottom:366.150000px;}
.y1a0{bottom:367.950000px;}
.y20f{bottom:368.850000px;}
.y23f{bottom:369.030000px;}
.y6c{bottom:369.930000px;}
.y38{bottom:372.630000px;}
.ybc{bottom:373.530000px;}
.y1de{bottom:375.870000px;}
.y93{bottom:376.770000px;}
.y155{bottom:377.850000px;}
.y189{bottom:378.750000px;}
.y106{bottom:379.830000px;}
.y138{bottom:384.150000px;}
.y19f{bottom:385.770000px;}
.y20e{bottom:386.670000px;}
.y23e{bottom:386.850000px;}
.y6b{bottom:387.750000px;}
.ybb{bottom:391.350000px;}
.y1dd{bottom:393.690000px;}
.y92{bottom:394.590000px;}
.y188{bottom:396.570000px;}
.y105{bottom:397.830000px;}
.y37{bottom:401.430000px;}
.y137{bottom:401.970000px;}
.y19e{bottom:403.590000px;}
.y23d{bottom:404.850000px;}
.y6a{bottom:405.570000px;}
.yba{bottom:409.170000px;}
.y1b2{bottom:411.150000px;}
.y1dc{bottom:411.510000px;}
.y167{bottom:412.410000px;}
.y20d{bottom:413.490000px;}
.y187{bottom:414.390000px;}
.y104{bottom:415.650000px;}
.y136{bottom:419.835000px;}
.yd4{bottom:420.375000px;}
.y91{bottom:421.455000px;}
.y23c{bottom:422.715000px;}
.y69{bottom:423.435000px;}
.yb9{bottom:427.035000px;}
.y1db{bottom:429.375000px;}
.y20c{bottom:431.355000px;}
.y186{bottom:432.255000px;}
.y103{bottom:433.515000px;}
.y135{bottom:437.655000px;}
.y90{bottom:439.275000px;}
.y23b{bottom:440.535000px;}
.y68{bottom:441.255000px;}
.yb8{bottom:444.855000px;}
.y1da{bottom:447.195000px;}
.y19d{bottom:448.275000px;}
.y20b{bottom:449.175000px;}
.y185{bottom:450.075000px;}
.y102{bottom:451.335000px;}
.y8f{bottom:457.095000px;}
.y23a{bottom:458.355000px;}
.y67{bottom:459.075000px;}
.yb7{bottom:462.675000px;}
.y134{bottom:464.475000px;}
.y19c{bottom:466.095000px;}
.y20a{bottom:467.175000px;}
.y184{bottom:468.075000px;}
.y101{bottom:469.155000px;}
.y1d9{bottom:474.195000px;}
.y8e{bottom:475.095000px;}
.y239{bottom:476.175000px;}
.y66{bottom:477.075000px;}
.yb6{bottom:480.675000px;}
.y133{bottom:482.475000px;}
.y19b{bottom:484.095000px;}
.y209{bottom:484.995000px;}
.y152{bottom:485.355000px;}
.y100{bottom:486.975000px;}
.y1d8{bottom:492.015000px;}
.y8d{bottom:492.915000px;}
.y238{bottom:494.175000px;}
.y65{bottom:494.895000px;}
.yb5{bottom:498.495000px;}
.y132{bottom:500.295000px;}
.yd3{bottom:501.915000px;}
.y208{bottom:502.815000px;}
.yff{bottom:504.975000px;}
.y1d7{bottom:509.835000px;}
.y8c{bottom:510.735000px;}
.y237{bottom:511.995000px;}
.y183{bottom:512.715000px;}
.yb4{bottom:516.315000px;}
.y131{bottom:518.115000px;}
.yd2{bottom:519.735000px;}
.y207{bottom:520.635000px;}
.y64{bottom:521.715000px;}
.y1d6{bottom:527.655000px;}
.y8b{bottom:528.555000px;}
.y268{bottom:528.735000px;}
.y236{bottom:529.815000px;}
.y182{bottom:530.535000px;}
.yfe{bottom:531.795000px;}
.y130{bottom:535.935000px;}
.yb3{bottom:536.475000px;}
.yd1{bottom:537.555000px;}
.y206{bottom:538.455000px;}
.y63{bottom:539.535000px;}
.y1d5{bottom:545.475000px;}
.y8a{bottom:546.375000px;}
.y235{bottom:547.635000px;}
.y181{bottom:548.355000px;}
.yfd{bottom:549.615000px;}
.y1b1{bottom:551.415000px;}
.y12f{bottom:553.755000px;}
.yd0{bottom:555.375000px;}
.y267{bottom:555.555000px;}
.y62{bottom:557.355000px;}
.y1d4{bottom:563.475000px;}
.y89{bottom:564.375000px;}
.y205{bottom:565.275000px;}
.y234{bottom:565.455000px;}
.y180{bottom:566.355000px;}
.yfc{bottom:567.435000px;}
.yb1{bottom:571.395000px;}
.y12e{bottom:571.575000px;}
.ycf{bottom:573.375000px;}
.y61{bottom:575.355000px;}
.y1d3{bottom:581.295000px;}
.y166{bottom:582.195000px;}
.y266{bottom:582.375000px;}
.y204{bottom:583.275000px;}
.y17f{bottom:584.175000px;}
.yfb{bottom:585.255000px;}
.y12d{bottom:589.575000px;}
.y88{bottom:591.195000px;}
.y14c{bottom:592.815000px;}
.y60{bottom:593.175000px;}
.y10{bottom:595.875000px;}
.y1d2{bottom:599.115000px;}
.y1b0{bottom:600.015000px;}
.y265{bottom:600.375000px;}
.y203{bottom:601.095000px;}
.y233{bottom:601.275000px;}
.y17e{bottom:601.995000px;}
.yfa{bottom:603.255000px;}
.y12c{bottom:607.395000px;}
.y87{bottom:609.015000px;}
.y5f{bottom:610.995000px;}
.y1d1{bottom:616.935000px;}
.y264{bottom:618.195000px;}
.y202{bottom:618.915000px;}
.y232{bottom:619.095000px;}
.y17d{bottom:619.815000px;}
.yf9{bottom:621.075000px;}
.y12b{bottom:625.215000px;}
.y86{bottom:626.835000px;}
.y5e{bottom:628.815000px;}
.yf{bottom:634.935000px;}
.y263{bottom:636.015000px;}
.y201{bottom:636.735000px;}
.y231{bottom:636.915000px;}
.y17c{bottom:637.635000px;}
.yf8{bottom:638.895000px;}
.y12a{bottom:643.035000px;}
.y1d0{bottom:643.755000px;}
.y85{bottom:644.655000px;}
.y5d{bottom:646.635000px;}
.y19a{bottom:653.655000px;}
.ye{bottom:653.835000px;}
.y200{bottom:654.555000px;}
.y230{bottom:654.735000px;}
.y17b{bottom:655.455000px;}
.y2b{bottom:659.805000px;}
.y1cf{bottom:661.605000px;}
.y84{bottom:662.505000px;}
.y5c{bottom:664.485000px;}
.yf7{bottom:665.745000px;}
.y129{bottom:669.885000px;}
.y199{bottom:671.505000px;}
.y262{bottom:671.685000px;}
.y1ff{bottom:672.585000px;}
.y17a{bottom:673.485000px;}
.yaf{bottom:675.825000px;}
.y1ce{bottom:679.605000px;}
.y83{bottom:680.505000px;}
.y5b{bottom:682.485000px;}
.yf6{bottom:683.565000px;}
.y128{bottom:687.885000px;}
.y198{bottom:689.505000px;}
.y1fe{bottom:690.405000px;}
.y22f{bottom:690.585000px;}
.y179{bottom:693.645000px;}
.y1cd{bottom:697.425000px;}
.y82{bottom:698.325000px;}
.y5a{bottom:700.305000px;}
.yf5{bottom:701.385000px;}
.y127{bottom:705.705000px;}
.y197{bottom:707.325000px;}
.y261{bottom:707.505000px;}
.y1fd{bottom:708.225000px;}
.y22e{bottom:708.405000px;}
.y1cc{bottom:715.245000px;}
.y81{bottom:716.145000px;}
.yf4{bottom:719.385000px;}
.y59{bottom:720.465000px;}
.y126{bottom:723.525000px;}
.y196{bottom:725.145000px;}
.y260{bottom:725.325000px;}
.y178{bottom:726.045000px;}
.y22d{bottom:726.225000px;}
.yd{bottom:733.065000px;}
.y80{bottom:733.965000px;}
.yf3{bottom:737.205000px;}
.y29{bottom:739.005000px;}
.y125{bottom:741.345000px;}
.yce{bottom:742.965000px;}
.y25f{bottom:743.145000px;}
.y177{bottom:743.865000px;}
.y22c{bottom:744.045000px;}
.y58{bottom:746.205000px;}
.y1cb{bottom:750.885000px;}
.y14b{bottom:751.785000px;}
.y1fc{bottom:752.865000px;}
.yf2{bottom:755.025000px;}
.y124{bottom:759.165000px;}
.y7f{bottom:760.785000px;}
.y25e{bottom:760.965000px;}
.y176{bottom:761.685000px;}
.y22b{bottom:761.865000px;}
.y1ca{bottom:768.885000px;}
.y14a{bottom:769.785000px;}
.y1fb{bottom:770.685000px;}
.yf1{bottom:772.845000px;}
.yc{bottom:776.265000px;}
.y123{bottom:776.985000px;}
.y57{bottom:778.785000px;}
.y175{bottom:779.685000px;}
.yac{bottom:780.225000px;}
.y27{bottom:782.205000px;}
.y1c9{bottom:786.705000px;}
.y1fa{bottom:788.685000px;}
.yf0{bottom:790.665000px;}
.y122{bottom:794.985000px;}
.y56{bottom:796.605000px;}
.y25d{bottom:796.785000px;}
.y22a{bottom:797.685000px;}
.y1f9{bottom:806.505000px;}
.y174{bottom:808.845000px;}
.y121{bottom:812.805000px;}
.y1c8{bottom:813.525000px;}
.y55{bottom:814.425000px;}
.y25c{bottom:814.605000px;}
.y229{bottom:815.505000px;}
.yef{bottom:817.665000px;}
.y1f8{bottom:824.325000px;}
.y120{bottom:830.625000px;}
.y1c7{bottom:831.345000px;}
.y54{bottom:832.245000px;}
.y25b{bottom:832.425000px;}
.y228{bottom:833.325000px;}
.y24{bottom:834.765000px;}
.yee{bottom:835.485000px;}
.y1f7{bottom:842.145000px;}
.y11f{bottom:848.445000px;}
.y53{bottom:850.065000px;}
.y25a{bottom:850.245000px;}
.y227{bottom:851.145000px;}
.yed{bottom:853.305000px;}
.y195{bottom:859.065000px;}
.y1f6{bottom:859.965000px;}
.y1c3{bottom:860.685000px;}
.ya8{bottom:866.805000px;}
.y52{bottom:867.885000px;}
.y259{bottom:868.065000px;}
.y226{bottom:868.965000px;}
.yec{bottom:871.125000px;}
.y11e{bottom:875.265000px;}
.y194{bottom:876.885000px;}
.y172{bottom:877.605000px;}
.y1f5{bottom:877.965000px;}
.y51{bottom:885.885000px;}
.y225{bottom:886.965000px;}
.yeb{bottom:888.945000px;}
.y11d{bottom:893.265000px;}
.y193{bottom:894.885000px;}
.y50{bottom:903.750000px;}
.y258{bottom:903.930000px;}
.y1f4{bottom:904.830000px;}
.yea{bottom:906.810000px;}
.y11c{bottom:911.130000px;}
.ycd{bottom:912.750000px;}
.y4f{bottom:921.570000px;}
.y257{bottom:921.750000px;}
.y1f3{bottom:922.650000px;}
.ye9{bottom:924.810000px;}
.y170{bottom:928.410000px;}
.ycc{bottom:930.570000px;}
.yb{bottom:934.350000px;}
.y149{bottom:939.390000px;}
.y256{bottom:939.570000px;}
.y11b{bottom:940.290000px;}
.y1f2{bottom:940.470000px;}
.y22{bottom:941.190000px;}
.ye8{bottom:942.630000px;}
.y4e{bottom:948.390000px;}
.y3f{bottom:955.800000px;}
.y165{bottom:957.210000px;}
.y255{bottom:957.390000px;}
.y1f1{bottom:958.290000px;}
.ye7{bottom:960.450000px;}
.y4d{bottom:966.210000px;}
.ya5{bottom:971.250000px;}
.y254{bottom:975.210000px;}
.y1f0{bottom:976.110000px;}
.ye6{bottom:978.270000px;}
.y16f{bottom:979.350000px;}
.y4c{bottom:984.210000px;}
.y3e{bottom:989.250000px;}
.y253{bottom:993.210000px;}
.y119{bottom:994.110000px;}
.ye5{bottom:996.090000px;}
.y1c1{bottom:1000.770000px;}
.y4b{bottom:1002.030000px;}
.y252{bottom:1011.030000px;}
.y1ef{bottom:1011.930000px;}
.y16d{bottom:1012.290000px;}
.y3d{bottom:1015.530000px;}
.ye4{bottom:1016.430000px;}
.y4a{bottom:1019.850000px;}
.y251{bottom:1028.850000px;}
.y224{bottom:1029.750000px;}
.y1ee{bottom:1032.090000px;}
.y49{bottom:1037.670000px;}
.y3c{bottom:1041.810000px;}
.y250{bottom:1046.670000px;}
.y223{bottom:1047.570000px;}
.y118{bottom:1048.110000px;}
.ye3{bottom:1051.170000px;}
.y48{bottom:1055.490000px;}
.y16c{bottom:1063.230000px;}
.ya4{bottom:1064.490000px;}
.y222{bottom:1065.390000px;}
.y3b{bottom:1068.270000px;}
.y47{bottom:1073.310000px;}
.ya3{bottom:1082.310000px;}
.y221{bottom:1083.390000px;}
.y7e{bottom:1091.310000px;}
.y16b{bottom:1096.170000px;}
.y46{bottom:1100.310000px;}
.y220{bottom:1101.210000px;}
.y117{bottom:1101.930000px;}
.ya{bottom:1107.510000px;}
.y7d{bottom:1109.130000px;}
.y45{bottom:1118.130000px;}
.y21f{bottom:1119.030000px;}
.y7c{bottom:1126.950000px;}
.y44{bottom:1135.950000px;}
.y21e{bottom:1139.190000px;}
.y164{bottom:1144.800000px;}
.ye2{bottom:1152.720000px;}
.y43{bottom:1153.800000px;}
.y115{bottom:1155.780000px;}
.y1c0{bottom:1158.840000px;}
.y16a{bottom:1162.620000px;}
.y20{bottom:1171.440000px;}
.y42{bottom:1171.620000px;}
.y41{bottom:1189.440000px;}
.y1{bottom:1195.380000px;}
.y5{bottom:1215.000000px;}
.y3{bottom:1224.000000px;}
.h2{height:17.640000px;}
.h2b{height:17.820000px;}
.hd{height:20.700000px;}
.h4{height:21.960000px;}
.h14{height:31.500000px;}
.h3{height:34.036523px;}
.h1e{height:35.640000px;}
.h2d{height:35.676000px;}
.h2c{height:35.820000px;}
.h5{height:36.068555px;}
.h8{height:38.100586px;}
.h25{height:38.700000px;}
.hb{height:38.759766px;}
.h1d{height:39.313477px;}
.h7{height:39.471680px;}
.h12{height:40.500000px;}
.h22{height:41.760000px;}
.h18{height:42.164648px;}
.h19{height:42.894141px;}
.h17{height:43.681992px;}
.h1a{height:46.736719px;}
.h6{height:47.545312px;}
.h13{height:47.998125px;}
.h2e{height:53.640000px;}
.ha{height:53.709961px;}
.h1c{height:54.864844px;}
.h9{height:55.825312px;}
.hc{height:56.611406px;}
.h11{height:59.436914px;}
.he{height:65.554453px;}
.h15{height:67.500000px;}
.h20{height:71.460000px;}
.h2a{height:74.376000px;}
.h23{height:86.400000px;}
.h24{height:86.436000px;}
.h21{height:89.280000px;}
.h1f{height:89.316000px;}
.h26{height:92.196000px;}
.h27{height:92.340000px;}
.h28{height:92.376000px;}
.h10{height:93.816000px;}
.h29{height:109.980000px;}
.h30{height:124.920000px;}
.h33{height:124.956000px;}
.h2f{height:125.136000px;}
.h1b{height:132.480000px;}
.h32{height:142.776000px;}
.h31{height:142.956000px;}
.hf{height:160.560000px;}
.h16{height:234.900000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w15{width:77.940000px;}
.w10{width:82.980000px;}
.w11{width:83.160000px;}
.w19{width:85.140000px;}
.w2{width:85.320000px;}
.w14{width:87.696000px;}
.w1b{width:88.020000px;}
.w1a{width:90.756000px;}
.w13{width:91.620000px;}
.w12{width:91.656000px;}
.w1f{width:92.196000px;}
.w1c{width:92.376000px;}
.wb{width:93.096000px;}
.w17{width:97.020000px;}
.w18{width:108.396000px;}
.w16{width:110.016000px;}
.wd{width:119.700000px;}
.we{width:124.416000px;}
.w20{width:133.200000px;}
.w1e{width:133.380000px;}
.w1d{width:143.676000px;}
.wc{width:157.890000px;}
.wf{width:163.470000px;}
.w3{width:470.160000px;}
.wa{width:500.940000px;}
.w5{width:719.100000px;}
.w9{width:768.240000px;}
.w6{width:783.510000px;}
.w7{width:784.410000px;}
.w8{width:784.590000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.440000px;}
.x22{left:7.560000px;}
.x3e{left:9.720000px;}
.xe{left:10.800000px;}
.xf{left:11.880000px;}
.x2e{left:13.140000px;}
.x3c{left:14.400000px;}
.x1d{left:15.840000px;}
.x35{left:16.920000px;}
.x33{left:18.720000px;}
.x2c{left:20.010000px;}
.x24{left:21.090000px;}
.x41{left:23.400000px;}
.x30{left:24.480000px;}
.x21{left:26.820000px;}
.x3b{left:27.900000px;}
.x39{left:29.160000px;}
.x38{left:30.600000px;}
.x34{left:32.220000px;}
.x32{left:33.300000px;}
.x27{left:34.740000px;}
.x1f{left:35.994000px;}
.x28{left:37.980000px;}
.x23{left:45.390000px;}
.x42{left:47.334000px;}
.x5{left:53.999987px;}
.x1c{left:55.080000px;}
.x13{left:61.200000px;}
.x14{left:71.999987px;}
.xb{left:80.999987px;}
.xd{left:86.040000px;}
.x1{left:100.116000px;}
.x1a{left:108.035987px;}
.x15{left:109.650000px;}
.x36{left:141.876000px;}
.x1e{left:148.356000px;}
.x6{left:161.669987px;}
.x3d{left:162.750000px;}
.x19{left:170.895000px;}
.xa{left:174.089987px;}
.x29{left:179.490000px;}
.x10{left:199.290000px;}
.x37{left:219.990000px;}
.x3f{left:248.070000px;}
.x12{left:272.595000px;}
.x16{left:279.569987px;}
.x18{left:288.074987px;}
.x43{left:292.035000px;}
.x20{left:306.435000px;}
.x3a{left:330.195000px;}
.x40{left:339.015000px;}
.x2a{left:343.155000px;}
.x7{left:357.014987px;}
.x17{left:358.634987px;}
.x11{left:362.235000px;}
.x3{left:367.920000px;}
.x4{left:454.110000px;}
.xc{left:465.914987px;}
.x44{left:467.715000px;}
.x2b{left:468.975000px;}
.x1b{left:492.944987px;}
.x46{left:519.944987px;}
.x2d{left:560.805000px;}
.x25{left:591.405000px;}
.x2f{left:652.605000px;}
.x45{left:703.950000px;}
.x31{left:744.450000px;}
.x26{left:755.070000px;}
.x8{left:837.149987px;}
.x9{left:839.309987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.544000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.007680pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.015360pt;}
.ls9{letter-spacing:0.016000pt;}
.ls4{letter-spacing:0.020480pt;}
.ls1{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls6{letter-spacing:22.496000pt;}
.ls0{letter-spacing:25.072640pt;}
.lsc{letter-spacing:46.816000pt;}
.ws3{word-spacing:-27.072000pt;}
.wsb{word-spacing:-17.295360pt;}
.ws1{word-spacing:-17.280000pt;}
.ws2{word-spacing:-17.272320pt;}
.ws5{word-spacing:-14.720000pt;}
.ws0{word-spacing:-12.974080pt;}
.ws9{word-spacing:-12.320000pt;}
.wsa{word-spacing:-12.016000pt;}
.ws4{word-spacing:-12.000000pt;}
.ws7{word-spacing:-11.808000pt;}
.wsc{word-spacing:-11.680000pt;}
.ws8{word-spacing:-11.456000pt;}
.ws6{word-spacing:0.000000pt;}
._1b{margin-left:-2.958720pt;}
._7{margin-left:-1.889280pt;}
._1{margin-left:-0.986240pt;}
._0{width:1.302827pt;}
._3{width:2.448000pt;}
._5{width:4.080000pt;}
._4{width:4.992000pt;}
._15{width:6.133973pt;}
._6{width:7.680000pt;}
._f{width:8.640000pt;}
._d{width:10.224000pt;}
._16{width:11.633280pt;}
._1a{width:13.056000pt;}
._8{width:14.208000pt;}
._c{width:15.888000pt;}
._10{width:17.040000pt;}
._18{width:18.078080pt;}
._14{width:19.104000pt;}
._e{width:20.880000pt;}
._27{width:21.833173pt;}
._26{width:23.002453pt;}
._13{width:24.048000pt;}
._1c{width:25.082240pt;}
._12{width:26.160000pt;}
._11{width:27.168000pt;}
._17{width:28.560000pt;}
._20{width:29.856000pt;}
._22{width:30.864000pt;}
._24{width:32.002347pt;}
._23{width:33.237120pt;}
._19{width:34.426453pt;}
._b{width:35.472000pt;}
._1d{width:36.495360pt;}
._1e{width:37.670400pt;}
._29{width:38.813653pt;}
._21{width:39.888000pt;}
._2c{width:41.712000pt;}
._2b{width:42.768000pt;}
._2a{width:44.544000pt;}
._2d{width:49.536000pt;}
._25{width:51.360000pt;}
._1f{width:55.776000pt;}
._a{width:56.832000pt;}
._9{width:57.888000pt;}
._28{width:75.648000pt;}
._2e{width:88.368000pt;}
._30{width:92.160000pt;}
._2f{width:93.264000pt;}
._2{width:2580.859733pt;}
.fs0{font-size:42.880000pt;}
.fs1{font-size:45.440000pt;}
.fs3{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs4{font-size:69.120000pt;}
.fs6{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:3.200000pt;}
.y21{bottom:3.360000pt;}
.y3a{bottom:3.866667pt;}
.ya7{bottom:4.640000pt;}
.y171{bottom:4.800000pt;}
.y2{bottom:4.960000pt;}
.y4{bottom:5.760000pt;}
.y11a{bottom:5.920000pt;}
.y40{bottom:6.373333pt;}
.ye1{bottom:7.200000pt;}
.yd6{bottom:7.360000pt;}
.y2a{bottom:8.640000pt;}
.y2d{bottom:12.160000pt;}
.y28{bottom:12.640000pt;}
.y8{bottom:20.000000pt;}
.ya6{bottom:20.480000pt;}
.y173{bottom:20.520000pt;}
.y16e{bottom:20.640000pt;}
.y1b7{bottom:20.680000pt;}
.y39{bottom:21.466667pt;}
.y116{bottom:21.760000pt;}
.y160{bottom:21.786667pt;}
.y151{bottom:21.920000pt;}
.y161{bottom:21.946667pt;}
.yd5{bottom:23.200000pt;}
.y26{bottom:24.160000pt;}
.ye0{bottom:25.760000pt;}
.yda{bottom:25.920000pt;}
.yae{bottom:36.320000pt;}
.yab{bottom:36.360000pt;}
.y7{bottom:36.480000pt;}
.y1b6{bottom:36.520000pt;}
.y2c{bottom:37.280000pt;}
.y154{bottom:37.600000pt;}
.y158{bottom:37.640000pt;}
.y150{bottom:37.760000pt;}
.y15f{bottom:37.786667pt;}
.y159{bottom:37.800000pt;}
.ydc{bottom:44.320000pt;}
.yd9{bottom:44.480000pt;}
.y25{bottom:45.760000pt;}
.ydf{bottom:47.040000pt;}
.y6{bottom:50.240000pt;}
.yb2{bottom:52.160000pt;}
.yaa{bottom:52.200000pt;}
.yad{bottom:52.320000pt;}
.y1b5{bottom:52.360000pt;}
.y14e{bottom:53.440000pt;}
.y15e{bottom:53.466667pt;}
.y14f{bottom:53.600000pt;}
.y157{bottom:53.640000pt;}
.yd8{bottom:62.880000pt;}
.yde{bottom:62.906667pt;}
.y36{bottom:64.666667pt;}
.y1c6{bottom:68.040000pt;}
.yb0{bottom:68.160000pt;}
.y1bf{bottom:68.186667pt;}
.ya9{bottom:68.200000pt;}
.y15c{bottom:69.280000pt;}
.y14d{bottom:69.306667pt;}
.y153{bottom:69.440000pt;}
.y156{bottom:69.480000pt;}
.y148{bottom:71.520000pt;}
.y24f{bottom:74.080000pt;}
.y7b{bottom:74.720000pt;}
.y1d{bottom:77.440000pt;}
.ycb{bottom:77.920000pt;}
.y1ed{bottom:80.000000pt;}
.y169{bottom:80.800000pt;}
.y1af{bottom:80.960000pt;}
.y35{bottom:82.306667pt;}
.y192{bottom:82.560000pt;}
.y114{bottom:83.520000pt;}
.y1ba{bottom:84.000000pt;}
.y1be{bottom:84.026667pt;}
.y1c5{bottom:84.040000pt;}
.y1b4{bottom:84.200000pt;}
.y15b{bottom:85.120000pt;}
.y147{bottom:87.360000pt;}
.ya2{bottom:88.800000pt;}
.y24e{bottom:90.080000pt;}
.y7a{bottom:90.560000pt;}
.y1f{bottom:93.280000pt;}
.yca{bottom:93.760000pt;}
.y1ec{bottom:95.840000pt;}
.y1ae{bottom:96.800000pt;}
.y21d{bottom:97.600000pt;}
.y113{bottom:99.360000pt;}
.y1b9{bottom:99.840000pt;}
.y1c4{bottom:99.880000pt;}
.y1bd{bottom:100.026667pt;}
.y1b3{bottom:100.040000pt;}
.y34{bottom:100.066667pt;}
.y1bb{bottom:100.480000pt;}
.y1c{bottom:101.280000pt;}
.ydd{bottom:102.880000pt;}
.y163{bottom:103.040000pt;}
.y146{bottom:103.200000pt;}
.ya1{bottom:104.640000pt;}
.y24d{bottom:105.920000pt;}
.y79{bottom:106.400000pt;}
.y1e{bottom:109.120000pt;}
.yc9{bottom:109.600000pt;}
.y1eb{bottom:111.680000pt;}
.y1ad{bottom:112.640000pt;}
.y21c{bottom:113.440000pt;}
.y1c2{bottom:115.680000pt;}
.y1bc{bottom:115.866667pt;}
.y1b{bottom:117.120000pt;}
.y33{bottom:117.666667pt;}
.y162{bottom:118.880000pt;}
.y145{bottom:119.040000pt;}
.ya0{bottom:120.480000pt;}
.y24c{bottom:121.760000pt;}
.y78{bottom:122.240000pt;}
.y112{bottom:123.200000pt;}
.yc8{bottom:125.440000pt;}
.y1ea{bottom:127.680000pt;}
.y1ac{bottom:128.480000pt;}
.y23{bottom:128.960000pt;}
.y21b{bottom:129.440000pt;}
.y1a{bottom:132.960000pt;}
.y32{bottom:135.266667pt;}
.y9f{bottom:136.480000pt;}
.y24b{bottom:137.600000pt;}
.y77{bottom:138.240000pt;}
.y144{bottom:142.880000pt;}
.y1e9{bottom:143.520000pt;}
.y1ab{bottom:144.480000pt;}
.y15d{bottom:144.960000pt;}
.y21a{bottom:145.280000pt;}
.y111{bottom:147.040000pt;}
.y19{bottom:148.800000pt;}
.yc7{bottom:149.440000pt;}
.y9e{bottom:152.320000pt;}
.y31{bottom:152.866667pt;}
.y24a{bottom:153.440000pt;}
.y76{bottom:154.080000pt;}
.y143{bottom:158.906667pt;}
.y1e8{bottom:159.386667pt;}
.y1aa{bottom:160.346667pt;}
.y219{bottom:161.146667pt;}
.y18{bottom:164.826667pt;}
.yc6{bottom:165.306667pt;}
.y9d{bottom:168.186667pt;}
.y249{bottom:169.466667pt;}
.y191{bottom:169.946667pt;}
.y30{bottom:170.466667pt;}
.y110{bottom:171.066667pt;}
.y142{bottom:174.746667pt;}
.y1e7{bottom:175.226667pt;}
.y1a9{bottom:176.186667pt;}
.y218{bottom:176.986667pt;}
.y75{bottom:177.946667pt;}
.y17{bottom:180.666667pt;}
.yc5{bottom:181.146667pt;}
.y9c{bottom:184.026667pt;}
.y248{bottom:185.306667pt;}
.y190{bottom:185.786667pt;}
.y10f{bottom:186.906667pt;}
.y2f{bottom:188.226667pt;}
.y141{bottom:190.586667pt;}
.y1a8{bottom:192.026667pt;}
.y217{bottom:192.826667pt;}
.ydb{bottom:193.146667pt;}
.y74{bottom:193.786667pt;}
.y16{bottom:196.506667pt;}
.yc4{bottom:196.986667pt;}
.y1e6{bottom:199.066667pt;}
.y9b{bottom:199.866667pt;}
.y247{bottom:201.146667pt;}
.y18f{bottom:201.626667pt;}
.y10e{bottom:202.746667pt;}
.y140{bottom:206.426667pt;}
.y1a7{bottom:207.866667pt;}
.y73{bottom:209.626667pt;}
.y15{bottom:212.346667pt;}
.yc3{bottom:212.826667pt;}
.y1e5{bottom:215.066667pt;}
.y9a{bottom:215.706667pt;}
.y216{bottom:216.666667pt;}
.y246{bottom:216.986667pt;}
.y18e{bottom:217.466667pt;}
.y10d{bottom:218.586667pt;}
.y13f{bottom:222.266667pt;}
.y1a6{bottom:223.706667pt;}
.y15a{bottom:224.666667pt;}
.y72{bottom:225.626667pt;}
.y14{bottom:228.186667pt;}
.yc2{bottom:228.666667pt;}
.y1e4{bottom:230.906667pt;}
.y168{bottom:231.706667pt;}
.y215{bottom:232.666667pt;}
.y245{bottom:232.826667pt;}
.y18d{bottom:233.466667pt;}
.y10c{bottom:234.426667pt;}
.y13e{bottom:238.266667pt;}
.y99{bottom:239.706667pt;}
.y1b8{bottom:240.986667pt;}
.y71{bottom:241.466667pt;}
.y13{bottom:244.026667pt;}
.yc1{bottom:244.666667pt;}
.y1e3{bottom:246.746667pt;}
.y1a5{bottom:247.706667pt;}
.y214{bottom:248.506667pt;}
.y244{bottom:248.666667pt;}
.y18c{bottom:249.306667pt;}
.y10b{bottom:250.266667pt;}
.y13d{bottom:254.106667pt;}
.y98{bottom:255.546667pt;}
.y70{bottom:257.306667pt;}
.yc0{bottom:260.506667pt;}
.y12{bottom:262.106667pt;}
.y1e2{bottom:262.586667pt;}
.y1a4{bottom:263.546667pt;}
.y213{bottom:264.346667pt;}
.y243{bottom:264.666667pt;}
.y10a{bottom:266.266667pt;}
.y97{bottom:271.386667pt;}
.y6f{bottom:273.146667pt;}
.ybf{bottom:276.346667pt;}
.y13c{bottom:277.946667pt;}
.y1e1{bottom:278.426667pt;}
.y1a3{bottom:279.386667pt;}
.y212{bottom:280.186667pt;}
.y242{bottom:280.506667pt;}
.y109{bottom:282.106667pt;}
.yd7{bottom:283.386667pt;}
.y96{bottom:287.226667pt;}
.y6e{bottom:288.986667pt;}
.ybe{bottom:292.186667pt;}
.y11{bottom:293.466667pt;}
.y13b{bottom:293.786667pt;}
.y1a2{bottom:295.226667pt;}
.y211{bottom:296.026667pt;}
.y241{bottom:296.346667pt;}
.y108{bottom:297.946667pt;}
.y1e0{bottom:302.266667pt;}
.y95{bottom:303.066667pt;}
.y18b{bottom:304.826667pt;}
.ybd{bottom:308.026667pt;}
.y13a{bottom:309.626667pt;}
.y2e{bottom:309.760000pt;}
.y1a1{bottom:311.066667pt;}
.y210{bottom:311.866667pt;}
.y240{bottom:312.186667pt;}
.y6d{bottom:312.826667pt;}
.y1df{bottom:318.266667pt;}
.y94{bottom:319.066667pt;}
.y18a{bottom:320.826667pt;}
.y107{bottom:321.786667pt;}
.y139{bottom:325.466667pt;}
.y1a0{bottom:327.066667pt;}
.y20f{bottom:327.866667pt;}
.y23f{bottom:328.026667pt;}
.y6c{bottom:328.826667pt;}
.y38{bottom:331.226667pt;}
.ybc{bottom:332.026667pt;}
.y1de{bottom:334.106667pt;}
.y93{bottom:334.906667pt;}
.y155{bottom:335.866667pt;}
.y189{bottom:336.666667pt;}
.y106{bottom:337.626667pt;}
.y138{bottom:341.466667pt;}
.y19f{bottom:342.906667pt;}
.y20e{bottom:343.706667pt;}
.y23e{bottom:343.866667pt;}
.y6b{bottom:344.666667pt;}
.ybb{bottom:347.866667pt;}
.y1dd{bottom:349.946667pt;}
.y92{bottom:350.746667pt;}
.y188{bottom:352.506667pt;}
.y105{bottom:353.626667pt;}
.y37{bottom:356.826667pt;}
.y137{bottom:357.306667pt;}
.y19e{bottom:358.746667pt;}
.y23d{bottom:359.866667pt;}
.y6a{bottom:360.506667pt;}
.yba{bottom:363.706667pt;}
.y1b2{bottom:365.466667pt;}
.y1dc{bottom:365.786667pt;}
.y167{bottom:366.586667pt;}
.y20d{bottom:367.546667pt;}
.y187{bottom:368.346667pt;}
.y104{bottom:369.466667pt;}
.y136{bottom:373.186667pt;}
.yd4{bottom:373.666667pt;}
.y91{bottom:374.626667pt;}
.y23c{bottom:375.746667pt;}
.y69{bottom:376.386667pt;}
.yb9{bottom:379.586667pt;}
.y1db{bottom:381.666667pt;}
.y20c{bottom:383.426667pt;}
.y186{bottom:384.226667pt;}
.y103{bottom:385.346667pt;}
.y135{bottom:389.026667pt;}
.y90{bottom:390.466667pt;}
.y23b{bottom:391.586667pt;}
.y68{bottom:392.226667pt;}
.yb8{bottom:395.426667pt;}
.y1da{bottom:397.506667pt;}
.y19d{bottom:398.466667pt;}
.y20b{bottom:399.266667pt;}
.y185{bottom:400.066667pt;}
.y102{bottom:401.186667pt;}
.y8f{bottom:406.306667pt;}
.y23a{bottom:407.426667pt;}
.y67{bottom:408.066667pt;}
.yb7{bottom:411.266667pt;}
.y134{bottom:412.866667pt;}
.y19c{bottom:414.306667pt;}
.y20a{bottom:415.266667pt;}
.y184{bottom:416.066667pt;}
.y101{bottom:417.026667pt;}
.y1d9{bottom:421.506667pt;}
.y8e{bottom:422.306667pt;}
.y239{bottom:423.266667pt;}
.y66{bottom:424.066667pt;}
.yb6{bottom:427.266667pt;}
.y133{bottom:428.866667pt;}
.y19b{bottom:430.306667pt;}
.y209{bottom:431.106667pt;}
.y152{bottom:431.426667pt;}
.y100{bottom:432.866667pt;}
.y1d8{bottom:437.346667pt;}
.y8d{bottom:438.146667pt;}
.y238{bottom:439.266667pt;}
.y65{bottom:439.906667pt;}
.yb5{bottom:443.106667pt;}
.y132{bottom:444.706667pt;}
.yd3{bottom:446.146667pt;}
.y208{bottom:446.946667pt;}
.yff{bottom:448.866667pt;}
.y1d7{bottom:453.186667pt;}
.y8c{bottom:453.986667pt;}
.y237{bottom:455.106667pt;}
.y183{bottom:455.746667pt;}
.yb4{bottom:458.946667pt;}
.y131{bottom:460.546667pt;}
.yd2{bottom:461.986667pt;}
.y207{bottom:462.786667pt;}
.y64{bottom:463.746667pt;}
.y1d6{bottom:469.026667pt;}
.y8b{bottom:469.826667pt;}
.y268{bottom:469.986667pt;}
.y236{bottom:470.946667pt;}
.y182{bottom:471.586667pt;}
.yfe{bottom:472.706667pt;}
.y130{bottom:476.386667pt;}
.yb3{bottom:476.866667pt;}
.yd1{bottom:477.826667pt;}
.y206{bottom:478.626667pt;}
.y63{bottom:479.586667pt;}
.y1d5{bottom:484.866667pt;}
.y8a{bottom:485.666667pt;}
.y235{bottom:486.786667pt;}
.y181{bottom:487.426667pt;}
.yfd{bottom:488.546667pt;}
.y1b1{bottom:490.146667pt;}
.y12f{bottom:492.226667pt;}
.yd0{bottom:493.666667pt;}
.y267{bottom:493.826667pt;}
.y62{bottom:495.426667pt;}
.y1d4{bottom:500.866667pt;}
.y89{bottom:501.666667pt;}
.y205{bottom:502.466667pt;}
.y234{bottom:502.626667pt;}
.y180{bottom:503.426667pt;}
.yfc{bottom:504.386667pt;}
.yb1{bottom:507.906667pt;}
.y12e{bottom:508.066667pt;}
.ycf{bottom:509.666667pt;}
.y61{bottom:511.426667pt;}
.y1d3{bottom:516.706667pt;}
.y166{bottom:517.506667pt;}
.y266{bottom:517.666667pt;}
.y204{bottom:518.466667pt;}
.y17f{bottom:519.266667pt;}
.yfb{bottom:520.226667pt;}
.y12d{bottom:524.066667pt;}
.y88{bottom:525.506667pt;}
.y14c{bottom:526.946667pt;}
.y60{bottom:527.266667pt;}
.y10{bottom:529.666667pt;}
.y1d2{bottom:532.546667pt;}
.y1b0{bottom:533.346667pt;}
.y265{bottom:533.666667pt;}
.y203{bottom:534.306667pt;}
.y233{bottom:534.466667pt;}
.y17e{bottom:535.106667pt;}
.yfa{bottom:536.226667pt;}
.y12c{bottom:539.906667pt;}
.y87{bottom:541.346667pt;}
.y5f{bottom:543.106667pt;}
.y1d1{bottom:548.386667pt;}
.y264{bottom:549.506667pt;}
.y202{bottom:550.146667pt;}
.y232{bottom:550.306667pt;}
.y17d{bottom:550.946667pt;}
.yf9{bottom:552.066667pt;}
.y12b{bottom:555.746667pt;}
.y86{bottom:557.186667pt;}
.y5e{bottom:558.946667pt;}
.yf{bottom:564.386667pt;}
.y263{bottom:565.346667pt;}
.y201{bottom:565.986667pt;}
.y231{bottom:566.146667pt;}
.y17c{bottom:566.786667pt;}
.yf8{bottom:567.906667pt;}
.y12a{bottom:571.586667pt;}
.y1d0{bottom:572.226667pt;}
.y85{bottom:573.026667pt;}
.y5d{bottom:574.786667pt;}
.y19a{bottom:581.026667pt;}
.ye{bottom:581.186667pt;}
.y200{bottom:581.826667pt;}
.y230{bottom:581.986667pt;}
.y17b{bottom:582.626667pt;}
.y2b{bottom:586.493333pt;}
.y1cf{bottom:588.093333pt;}
.y84{bottom:588.893333pt;}
.y5c{bottom:590.653333pt;}
.yf7{bottom:591.773333pt;}
.y129{bottom:595.453333pt;}
.y199{bottom:596.893333pt;}
.y262{bottom:597.053333pt;}
.y1ff{bottom:597.853333pt;}
.y17a{bottom:598.653333pt;}
.yaf{bottom:600.733333pt;}
.y1ce{bottom:604.093333pt;}
.y83{bottom:604.893333pt;}
.y5b{bottom:606.653333pt;}
.yf6{bottom:607.613333pt;}
.y128{bottom:611.453333pt;}
.y198{bottom:612.893333pt;}
.y1fe{bottom:613.693333pt;}
.y22f{bottom:613.853333pt;}
.y179{bottom:616.573333pt;}
.y1cd{bottom:619.933333pt;}
.y82{bottom:620.733333pt;}
.y5a{bottom:622.493333pt;}
.yf5{bottom:623.453333pt;}
.y127{bottom:627.293333pt;}
.y197{bottom:628.733333pt;}
.y261{bottom:628.893333pt;}
.y1fd{bottom:629.533333pt;}
.y22e{bottom:629.693333pt;}
.y1cc{bottom:635.773333pt;}
.y81{bottom:636.573333pt;}
.yf4{bottom:639.453333pt;}
.y59{bottom:640.413333pt;}
.y126{bottom:643.133333pt;}
.y196{bottom:644.573333pt;}
.y260{bottom:644.733333pt;}
.y178{bottom:645.373333pt;}
.y22d{bottom:645.533333pt;}
.yd{bottom:651.613333pt;}
.y80{bottom:652.413333pt;}
.yf3{bottom:655.293333pt;}
.y29{bottom:656.893333pt;}
.y125{bottom:658.973333pt;}
.yce{bottom:660.413333pt;}
.y25f{bottom:660.573333pt;}
.y177{bottom:661.213333pt;}
.y22c{bottom:661.373333pt;}
.y58{bottom:663.293333pt;}
.y1cb{bottom:667.453333pt;}
.y14b{bottom:668.253333pt;}
.y1fc{bottom:669.213333pt;}
.yf2{bottom:671.133333pt;}
.y124{bottom:674.813333pt;}
.y7f{bottom:676.253333pt;}
.y25e{bottom:676.413333pt;}
.y176{bottom:677.053333pt;}
.y22b{bottom:677.213333pt;}
.y1ca{bottom:683.453333pt;}
.y14a{bottom:684.253333pt;}
.y1fb{bottom:685.053333pt;}
.yf1{bottom:686.973333pt;}
.yc{bottom:690.013333pt;}
.y123{bottom:690.653333pt;}
.y57{bottom:692.253333pt;}
.y175{bottom:693.053333pt;}
.yac{bottom:693.533333pt;}
.y27{bottom:695.293333pt;}
.y1c9{bottom:699.293333pt;}
.y1fa{bottom:701.053333pt;}
.yf0{bottom:702.813333pt;}
.y122{bottom:706.653333pt;}
.y56{bottom:708.093333pt;}
.y25d{bottom:708.253333pt;}
.y22a{bottom:709.053333pt;}
.y1f9{bottom:716.893333pt;}
.y174{bottom:718.973333pt;}
.y121{bottom:722.493333pt;}
.y1c8{bottom:723.133333pt;}
.y55{bottom:723.933333pt;}
.y25c{bottom:724.093333pt;}
.y229{bottom:724.893333pt;}
.yef{bottom:726.813333pt;}
.y1f8{bottom:732.733333pt;}
.y120{bottom:738.333333pt;}
.y1c7{bottom:738.973333pt;}
.y54{bottom:739.773333pt;}
.y25b{bottom:739.933333pt;}
.y228{bottom:740.733333pt;}
.y24{bottom:742.013333pt;}
.yee{bottom:742.653333pt;}
.y1f7{bottom:748.573333pt;}
.y11f{bottom:754.173333pt;}
.y53{bottom:755.613333pt;}
.y25a{bottom:755.773333pt;}
.y227{bottom:756.573333pt;}
.yed{bottom:758.493333pt;}
.y195{bottom:763.613333pt;}
.y1f6{bottom:764.413333pt;}
.y1c3{bottom:765.053333pt;}
.ya8{bottom:770.493333pt;}
.y52{bottom:771.453333pt;}
.y259{bottom:771.613333pt;}
.y226{bottom:772.413333pt;}
.yec{bottom:774.333333pt;}
.y11e{bottom:778.013333pt;}
.y194{bottom:779.453333pt;}
.y172{bottom:780.093333pt;}
.y1f5{bottom:780.413333pt;}
.y51{bottom:787.453333pt;}
.y225{bottom:788.413333pt;}
.yeb{bottom:790.173333pt;}
.y11d{bottom:794.013333pt;}
.y193{bottom:795.453333pt;}
.y50{bottom:803.333333pt;}
.y258{bottom:803.493333pt;}
.y1f4{bottom:804.293333pt;}
.yea{bottom:806.053333pt;}
.y11c{bottom:809.893333pt;}
.ycd{bottom:811.333333pt;}
.y4f{bottom:819.173333pt;}
.y257{bottom:819.333333pt;}
.y1f3{bottom:820.133333pt;}
.ye9{bottom:822.053333pt;}
.y170{bottom:825.253333pt;}
.ycc{bottom:827.173333pt;}
.yb{bottom:830.533333pt;}
.y149{bottom:835.013333pt;}
.y256{bottom:835.173333pt;}
.y11b{bottom:835.813333pt;}
.y1f2{bottom:835.973333pt;}
.y22{bottom:836.613333pt;}
.ye8{bottom:837.893333pt;}
.y4e{bottom:843.013333pt;}
.y3f{bottom:849.600000pt;}
.y165{bottom:850.853333pt;}
.y255{bottom:851.013333pt;}
.y1f1{bottom:851.813333pt;}
.ye7{bottom:853.733333pt;}
.y4d{bottom:858.853333pt;}
.ya5{bottom:863.333333pt;}
.y254{bottom:866.853333pt;}
.y1f0{bottom:867.653333pt;}
.ye6{bottom:869.573333pt;}
.y16f{bottom:870.533333pt;}
.y4c{bottom:874.853333pt;}
.y3e{bottom:879.333333pt;}
.y253{bottom:882.853333pt;}
.y119{bottom:883.653333pt;}
.ye5{bottom:885.413333pt;}
.y1c1{bottom:889.573333pt;}
.y4b{bottom:890.693333pt;}
.y252{bottom:898.693333pt;}
.y1ef{bottom:899.493333pt;}
.y16d{bottom:899.813333pt;}
.y3d{bottom:902.693333pt;}
.ye4{bottom:903.493333pt;}
.y4a{bottom:906.533333pt;}
.y251{bottom:914.533333pt;}
.y224{bottom:915.333333pt;}
.y1ee{bottom:917.413333pt;}
.y49{bottom:922.373333pt;}
.y3c{bottom:926.053333pt;}
.y250{bottom:930.373333pt;}
.y223{bottom:931.173333pt;}
.y118{bottom:931.653333pt;}
.ye3{bottom:934.373333pt;}
.y48{bottom:938.213333pt;}
.y16c{bottom:945.093333pt;}
.ya4{bottom:946.213333pt;}
.y222{bottom:947.013333pt;}
.y3b{bottom:949.573333pt;}
.y47{bottom:954.053333pt;}
.ya3{bottom:962.053333pt;}
.y221{bottom:963.013333pt;}
.y7e{bottom:970.053333pt;}
.y16b{bottom:974.373333pt;}
.y46{bottom:978.053333pt;}
.y220{bottom:978.853333pt;}
.y117{bottom:979.493333pt;}
.ya{bottom:984.453333pt;}
.y7d{bottom:985.893333pt;}
.y45{bottom:993.893333pt;}
.y21f{bottom:994.693333pt;}
.y7c{bottom:1001.733333pt;}
.y44{bottom:1009.733333pt;}
.y21e{bottom:1012.613333pt;}
.y164{bottom:1017.600000pt;}
.ye2{bottom:1024.640000pt;}
.y43{bottom:1025.600000pt;}
.y115{bottom:1027.360000pt;}
.y1c0{bottom:1030.080000pt;}
.y16a{bottom:1033.440000pt;}
.y20{bottom:1041.280000pt;}
.y42{bottom:1041.440000pt;}
.y41{bottom:1057.280000pt;}
.y1{bottom:1062.560000pt;}
.y5{bottom:1080.000000pt;}
.y3{bottom:1088.000000pt;}
.h2{height:15.680000pt;}
.h2b{height:15.840000pt;}
.hd{height:18.400000pt;}
.h4{height:19.520000pt;}
.h14{height:28.000000pt;}
.h3{height:30.254687pt;}
.h1e{height:31.680000pt;}
.h2d{height:31.712000pt;}
.h2c{height:31.840000pt;}
.h5{height:32.060937pt;}
.h8{height:33.867188pt;}
.h25{height:34.400000pt;}
.hb{height:34.453125pt;}
.h1d{height:34.945312pt;}
.h7{height:35.085938pt;}
.h12{height:36.000000pt;}
.h22{height:37.120000pt;}
.h18{height:37.479688pt;}
.h19{height:38.128125pt;}
.h17{height:38.828437pt;}
.h1a{height:41.543750pt;}
.h6{height:42.262500pt;}
.h13{height:42.665000pt;}
.h2e{height:47.680000pt;}
.ha{height:47.742188pt;}
.h1c{height:48.768750pt;}
.h9{height:49.622500pt;}
.hc{height:50.321250pt;}
.h11{height:52.832812pt;}
.he{height:58.270625pt;}
.h15{height:60.000000pt;}
.h20{height:63.520000pt;}
.h2a{height:66.112000pt;}
.h23{height:76.800000pt;}
.h24{height:76.832000pt;}
.h21{height:79.360000pt;}
.h1f{height:79.392000pt;}
.h26{height:81.952000pt;}
.h27{height:82.080000pt;}
.h28{height:82.112000pt;}
.h10{height:83.392000pt;}
.h29{height:97.760000pt;}
.h30{height:111.040000pt;}
.h33{height:111.072000pt;}
.h2f{height:111.232000pt;}
.h1b{height:117.760000pt;}
.h32{height:126.912000pt;}
.h31{height:127.072000pt;}
.hf{height:142.720000pt;}
.h16{height:208.800000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w15{width:69.280000pt;}
.w10{width:73.760000pt;}
.w11{width:73.920000pt;}
.w19{width:75.680000pt;}
.w2{width:75.840000pt;}
.w14{width:77.952000pt;}
.w1b{width:78.240000pt;}
.w1a{width:80.672000pt;}
.w13{width:81.440000pt;}
.w12{width:81.472000pt;}
.w1f{width:81.952000pt;}
.w1c{width:82.112000pt;}
.wb{width:82.752000pt;}
.w17{width:86.240000pt;}
.w18{width:96.352000pt;}
.w16{width:97.792000pt;}
.wd{width:106.400000pt;}
.we{width:110.592000pt;}
.w20{width:118.400000pt;}
.w1e{width:118.560000pt;}
.w1d{width:127.712000pt;}
.wc{width:140.346667pt;}
.wf{width:145.306667pt;}
.w3{width:417.920000pt;}
.wa{width:445.280000pt;}
.w5{width:639.200000pt;}
.w9{width:682.880000pt;}
.w6{width:696.453333pt;}
.w7{width:697.253333pt;}
.w8{width:697.413333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.280000pt;}
.x22{left:6.720000pt;}
.x3e{left:8.640000pt;}
.xe{left:9.600000pt;}
.xf{left:10.560000pt;}
.x2e{left:11.680000pt;}
.x3c{left:12.800000pt;}
.x1d{left:14.080000pt;}
.x35{left:15.040000pt;}
.x33{left:16.640000pt;}
.x2c{left:17.786667pt;}
.x24{left:18.746667pt;}
.x41{left:20.800000pt;}
.x30{left:21.760000pt;}
.x21{left:23.840000pt;}
.x3b{left:24.800000pt;}
.x39{left:25.920000pt;}
.x38{left:27.200000pt;}
.x34{left:28.640000pt;}
.x32{left:29.600000pt;}
.x27{left:30.880000pt;}
.x1f{left:31.994667pt;}
.x28{left:33.760000pt;}
.x23{left:40.346667pt;}
.x42{left:42.074667pt;}
.x5{left:47.999988pt;}
.x1c{left:48.960000pt;}
.x13{left:54.400000pt;}
.x14{left:63.999988pt;}
.xb{left:71.999988pt;}
.xd{left:76.480000pt;}
.x1{left:88.992000pt;}
.x1a{left:96.031988pt;}
.x15{left:97.466667pt;}
.x36{left:126.112000pt;}
.x1e{left:131.872000pt;}
.x6{left:143.706655pt;}
.x3d{left:144.666667pt;}
.x19{left:151.906667pt;}
.xa{left:154.746655pt;}
.x29{left:159.546667pt;}
.x10{left:177.146667pt;}
.x37{left:195.546667pt;}
.x3f{left:220.506667pt;}
.x12{left:242.306667pt;}
.x16{left:248.506655pt;}
.x18{left:256.066655pt;}
.x43{left:259.586667pt;}
.x20{left:272.386667pt;}
.x3a{left:293.506667pt;}
.x40{left:301.346667pt;}
.x2a{left:305.026667pt;}
.x7{left:317.346655pt;}
.x17{left:318.786655pt;}
.x11{left:321.986667pt;}
.x3{left:327.040000pt;}
.x4{left:403.653333pt;}
.xc{left:414.146655pt;}
.x44{left:415.746667pt;}
.x2b{left:416.866667pt;}
.x1b{left:438.173322pt;}
.x46{left:462.173322pt;}
.x2d{left:498.493333pt;}
.x25{left:525.693333pt;}
.x2f{left:580.093333pt;}
.x45{left:625.733333pt;}
.x31{left:661.733333pt;}
.x26{left:671.173333pt;}
.x8{left:744.133322pt;}
.x9{left:746.053322pt;}
}




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