
    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_506779b3c5b5d78a8da3f7d2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.207031;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_f91d5dc7f5da8dd70963fe92.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.207031;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_e7854767eb7959c63585e8d0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.221191;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_f96e973834efe3090162c66b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.220215;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_66b9eb0364e06c75a2d7dc3c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.691406;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_642f232ee86f707980062ea7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_84ed9fb86d6a82c3bee95bfe.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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_f6cf61e65df64d9801ab086d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.207031;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_b7c35c288a72ed971780dbd2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.221191;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:ffb;src:url('chunks/assets/font_ad56f8592789dd1fa35ba643.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.220215;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;}
.ls1b{letter-spacing:-0.296400px;}
.ls8{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.216000px;}
.ls15{letter-spacing:-0.152400px;}
.lsa{letter-spacing:-0.144000px;}
.lsf{letter-spacing:-0.134400px;}
.ls1e{letter-spacing:-0.120000px;}
.ls7{letter-spacing:-0.072000px;}
.ls24{letter-spacing:-0.010080px;}
.ls1a{letter-spacing:-0.002880px;}
.ls0{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.076200px;}
.ls5{letter-spacing:0.216000px;}
.ls9{letter-spacing:0.288000px;}
.ls23{letter-spacing:0.315120px;}
.ls1d{letter-spacing:0.396000px;}
.ls1c{letter-spacing:0.432000px;}
.ls1f{letter-spacing:0.864000px;}
.ls14{letter-spacing:2.724480px;}
.ls6{letter-spacing:8.789760px;}
.ls17{letter-spacing:10.104480px;}
.ls22{letter-spacing:14.544000px;}
.ls21{letter-spacing:15.264000px;}
.ls20{letter-spacing:15.984000px;}
.lsb{letter-spacing:22.176000px;}
.ls4{letter-spacing:26.789760px;}
.ls1{letter-spacing:36.149760px;}
.ls12{letter-spacing:37.286400px;}
.ls19{letter-spacing:53.400000px;}
.lsd{letter-spacing:54.144000px;}
.ls3{letter-spacing:54.149760px;}
.ls13{letter-spacing:54.864000px;}
.ls18{letter-spacing:59.345280px;}
.lse{letter-spacing:63.306720px;}
.ls2{letter-spacing:77.909760px;}
.ls11{letter-spacing:79.790400px;}
.lsc{letter-spacing:649.416000px;}
.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;}
}
.ws9{word-spacing:-72.000000px;}
.wsd{word-spacing:-66.240000px;}
.wse{word-spacing:-66.237120px;}
.wsa{word-spacing:-59.760000px;}
.ws11{word-spacing:-28.800000px;}
.ws7{word-spacing:-28.675680px;}
.ws5{word-spacing:-25.632000px;}
.ws6{word-spacing:-25.560000px;}
.ws4{word-spacing:-25.344000px;}
.ws10{word-spacing:-25.200000px;}
.ws8{word-spacing:-25.128000px;}
.ws2{word-spacing:-25.056000px;}
.ws3{word-spacing:-24.624000px;}
.ws1{word-spacing:-24.552000px;}
.wsc{word-spacing:-24.408000px;}
.wsb{word-spacing:-24.336000px;}
.wsf{word-spacing:-22.357680px;}
.ws0{word-spacing:0.000000px;}
._e{margin-left:-23.604000px;}
._d{margin-left:-21.300000px;}
._c{margin-left:-20.289840px;}
._9{margin-left:-19.104000px;}
._b{margin-left:-14.817840px;}
._6{margin-left:-12.369840px;}
._a{margin-left:-9.021840px;}
._8{margin-left:-7.080000px;}
._14{margin-left:-5.915280px;}
._7{margin-left:-4.164000px;}
._f{margin-left:-3.156000px;}
._0{margin-left:-1.224720px;}
._1{width:1.006560px;}
._2{width:2.035920px;}
._22{width:3.542904px;}
._17{width:4.608000px;}
._18{width:5.616720px;}
._1c{width:6.947280px;}
._1f{width:7.973760px;}
._10{width:9.648000px;}
._19{width:11.568000px;}
._21{width:12.865440px;}
._16{width:14.039280px;}
._15{width:15.408720px;}
._27{width:16.728000px;}
._24{width:17.760000px;}
._25{width:19.032000px;}
._29{width:20.496000px;}
._12{width:22.032000px;}
._13{width:23.844000px;}
._1b{width:27.432000px;}
._1a{width:28.800000px;}
._2c{width:30.158880px;}
._11{width:31.608000px;}
._20{width:33.192000px;}
._23{width:34.488000px;}
._1d{width:35.568000px;}
._1e{width:36.577440px;}
._26{width:37.653120px;}
._28{width:40.320000px;}
._2b{width:41.736000px;}
._37{width:46.296000px;}
._38{width:47.305440px;}
._39{width:48.804000px;}
._2d{width:56.448000px;}
._2e{width:57.913440px;}
._32{width:59.760000px;}
._33{width:80.256000px;}
._30{width:93.590640px;}
._31{width:101.160000px;}
._2f{width:113.592000px;}
._35{width:369.516720px;}
._36{width:510.612720px;}
._3a{width:551.908320px;}
._34{width:567.948720px;}
._4{width:704.196000px;}
._3{width:813.432000px;}
._2a{width:838.812000px;}
._5{width:1353.036000px;}
.fc9{color:transparent;}
.fca{color:rgb(0,0,102);}
.fc7{color:rgb(46,116,181);}
.fc8{color:rgb(0,0,0);}
.fc6{color:rgb(255,255,255);}
.fcb{color:rgb(0,0,255);}
.fc5{color:rgb(31,56,100);}
.fc3{color:rgb(0,0,153);}
.fc4{color:rgb(47,85,151);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(204,51,0);}
.fc0{color:rgb(0,32,96);}
.fsa{font-size:59.760000px;}
.fs7{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs9{font-size:84.240000px;}
.fs6{font-size:95.760000px;}
.fs5{font-size:108.000000px;}
.fs3{font-size:120.240000px;}
.fs8{font-size:131.760000px;}
.fs2{font-size:144.000000px;}
.fs4{font-size:167.760000px;}
.fs1{font-size:408.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:0.180000px;}
.y10e{bottom:6.465000px;}
.ye1{bottom:6.480000px;}
.y170{bottom:6.645000px;}
.ya5{bottom:6.660000px;}
.y17{bottom:9.711000px;}
.y13{bottom:9.720000px;}
.y111{bottom:10.425000px;}
.y70{bottom:10.431000px;}
.ycf{bottom:10.440000px;}
.y17c{bottom:10.455000px;}
.y16f{bottom:10.470000px;}
.yd0{bottom:11.160000px;}
.y103{bottom:12.240000px;}
.ya4{bottom:14.580000px;}
.y1bd{bottom:19.440000px;}
.y5{bottom:21.276000px;}
.y17d{bottom:28.080000px;}
.y81{bottom:28.440000px;}
.y6f{bottom:38.865000px;}
.yce{bottom:38.880000px;}
.y15{bottom:39.456000px;}
.ya3{bottom:43.020000px;}
.y16{bottom:46.125000px;}
.y82{bottom:49.320000px;}
.y14b{bottom:54.000000px;}
.y80{bottom:56.880000px;}
.y17b{bottom:56.895000px;}
.y110{bottom:56.910000px;}
.y3{bottom:59.040000px;}
.y1b7{bottom:59.070000px;}
.y71{bottom:62.265000px;}
.y6e{bottom:67.305000px;}
.ycd{bottom:67.320000px;}
.y14a{bottom:82.440000px;}
.y7f{bottom:85.320000px;}
.y17a{bottom:85.335000px;}
.y10f{bottom:85.350000px;}
.y1b6{bottom:87.510000px;}
.y16d{bottom:95.745000px;}
.y1cf{bottom:113.436000px;}
.y6d{bottom:113.745000px;}
.y179{bottom:113.775000px;}
.y147{bottom:114.696000px;}
.y1ef{bottom:120.636000px;}
.y139{bottom:122.616000px;}
.y151{bottom:122.796000px;}
.y171{bottom:123.696000px;}
.y1c5{bottom:126.576000px;}
.y69{bottom:128.205000px;}
.y94{bottom:130.176000px;}
.y4a{bottom:132.696000px;}
.yff{bottom:133.956000px;}
.y19f{bottom:134.316000px;}
.y11{bottom:135.216000px;}
.yb4{bottom:135.396000px;}
.y30{bottom:140.616000px;}
.y1eb{bottom:141.516000px;}
.y6c{bottom:142.185000px;}
.y10a{bottom:149.076000px;}
.y18f{bottom:149.976000px;}
.y206{bottom:150.690000px;}
.y85{bottom:150.870000px;}
.y138{bottom:151.050000px;}
.y93{bottom:153.930000px;}
.y1d8{bottom:155.370000px;}
.ye5{bottom:157.530000px;}
.y16c{bottom:159.705000px;}
.y64{bottom:160.050000px;}
.y177{bottom:160.200000px;}
.y49{bottom:161.130000px;}
.y146{bottom:161.310000px;}
.yed{bottom:161.670000px;}
.y19e{bottom:162.750000px;}
.y1b9{bottom:166.530000px;}
.y150{bottom:169.230000px;}
.yd8{bottom:169.950000px;}
.yb9{bottom:170.490000px;}
.y6b{bottom:170.670000px;}
.y2f{bottom:173.190000px;}
.y18e{bottom:174.630000px;}
.ybe{bottom:176.250000px;}
.yfb{bottom:177.870000px;}
.yc8{bottom:179.130000px;}
.y84{bottom:179.310000px;}
.y137{bottom:179.490000px;}
.y163{bottom:181.110000px;}
.yb3{bottom:181.830000px;}
.y63{bottom:188.490000px;}
.y176{bottom:188.640000px;}
.y48{bottom:189.570000px;}
.yec{bottom:190.110000px;}
.y19d{bottom:191.190000px;}
.yad{bottom:191.370000px;}
.y109{bottom:191.550000px;}
.y11a{bottom:192.810000px;}
.yd7{bottom:194.610000px;}
.y1b8{bottom:194.970000px;}
.y113{bottom:195.330000px;}
.y10{bottom:197.130000px;}
.y92{bottom:197.490000px;}
.y118{bottom:198.030000px;}
.y187{bottom:198.750000px;}
.y6a{bottom:199.110000px;}
.y181{bottom:200.370000px;}
.ybd{bottom:200.910000px;}
.y1ea{bottom:203.790000px;}
.ye4{bottom:203.970000px;}
.y2e{bottom:205.950000px;}
.yfa{bottom:206.310000px;}
.y162{bottom:206.850000px;}
.yc7{bottom:207.570000px;}
.yd4{bottom:207.750000px;}
.y136{bottom:207.930000px;}
.y1d7{bottom:208.830000px;}
.yb8{bottom:213.150000px;}
.y1dd{bottom:216.390000px;}
.y175{bottom:217.080000px;}
.y119{bottom:217.470000px;}
.yeb{bottom:218.550000px;}
.y19c{bottom:219.450000px;}
.y205{bottom:220.710000px;}
.y112{bottom:223.770000px;}
.yb2{bottom:224.490000px;}
.y91{bottom:225.930000px;}
.y117{bottom:226.470000px;}
.y47{bottom:227.010000px;}
.y180{bottom:228.810000px;}
.y12d{bottom:229.350000px;}
.y14f{bottom:229.890000px;}
.yf4{bottom:230.070000px;}
.y1e9{bottom:232.230000px;}
.ye3{bottom:232.410000px;}
.yf9{bottom:234.750000px;}
.y62{bottom:234.930000px;}
.yd3{bottom:236.190000px;}
.y135{bottom:236.370000px;}
.yac{bottom:237.810000px;}
.y2d{bottom:238.530000px;}
.y83{bottom:239.970000px;}
.y1aa{bottom:240.150000px;}
.y1fc{bottom:245.550000px;}
.y204{bottom:246.090000px;}
.yea{bottom:246.990000px;}
.y1b5{bottom:248.985000px;}
.yf{bottom:251.130000px;}
.y1cb{bottom:251.670000px;}
.yc6{bottom:254.010000px;}
.y46{bottom:255.450000px;}
.y17f{bottom:257.250000px;}
.y12c{bottom:257.790000px;}
.yf3{bottom:258.510000px;}
.y186{bottom:259.410000px;}
.y10d{bottom:259.785000px;}
.y1e8{bottom:260.670000px;}
.ye2{bottom:260.850000px;}
.yd2{bottom:264.630000px;}
.y134{bottom:264.810000px;}
.y19b{bottom:265.890000px;}
.yab{bottom:266.250000px;}
.y1d6{bottom:269.490000px;}
.y90{bottom:270.570000px;}
.y61{bottom:272.370000px;}
.y116{bottom:272.910000px;}
.y1dc{bottom:273.990000px;}
.ya9{bottom:275.970000px;}
.y1ca{bottom:280.110000px;}
.y16e{bottom:281.025000px;}
.yf8{bottom:281.190000px;}
.y2c{bottom:281.775000px;}
.yc5{bottom:282.495000px;}
.y45{bottom:283.935000px;}
.y203{bottom:286.095000px;}
.yd1{bottom:293.115000px;}
.y133{bottom:293.295000px;}
.y8f{bottom:294.195000px;}
.y19a{bottom:294.375000px;}
.ye0{bottom:296.895000px;}
.y60{bottom:300.855000px;}
.y115{bottom:301.395000px;}
.y1db{bottom:302.475000px;}
.y17e{bottom:303.735000px;}
.y1e7{bottom:307.155000px;}
.ye9{bottom:307.695000px;}
.ye{bottom:308.055000px;}
.yf7{bottom:309.675000px;}
.yc4{bottom:310.935000px;}
.y12b{bottom:311.475000px;}
.y44{bottom:312.375000px;}
.ya8{bottom:313.455000px;}
.y16b{bottom:316.155000px;}
.yf2{bottom:319.035000px;}
.y15f{bottom:321.735000px;}
.y199{bottom:322.815000px;}
.y2b{bottom:324.975000px;}
.yaa{bottom:326.955000px;}
.ycc{bottom:329.115000px;}
.y1da{bottom:330.915000px;}
.y18d{bottom:331.275000px;}
.y202{bottom:336.675000px;}
.y8e{bottom:337.755000px;}
.yf6{bottom:338.115000px;}
.y5f{bottom:338.295000px;}
.yc3{bottom:339.375000px;}
.y178{bottom:339.720000px;}
.y132{bottom:339.735000px;}
.y1c9{bottom:344.595000px;}
.y43{bottom:349.815000px;}
.y15e{bottom:350.175000px;}
.ya7{bottom:350.895000px;}
.y1fb{bottom:352.695000px;}
.yd{bottom:359.895000px;}
.y114{bottom:361.875000px;}
.y1e6{bottom:362.595000px;}
.y12a{bottom:364.035000px;}
.y8d{bottom:366.195000px;}
.y5e{bottom:366.735000px;}
.y2a{bottom:367.995000px;}
.y131{bottom:368.175000px;}
.y68{bottom:369.795000px;}
.y198{bottom:371.235000px;}
.y201{bottom:374.115000px;}
.y18c{bottom:377.715000px;}
.y42{bottom:378.255000px;}
.y1b4{bottom:382.935000px;}
.ya6{bottom:388.335000px;}
.y1d9{bottom:391.575000px;}
.y129{bottom:392.475000px;}
.y1a9{bottom:395.535000px;}
.y130{bottom:396.615000px;}
.y7e{bottom:398.415000px;}
.yf5{bottom:398.595000px;}
.yc2{bottom:400.035000px;}
.y29{bottom:400.755000px;}
.y10c{bottom:403.995000px;}
.y5d{bottom:404.175000px;}
.y1c8{bottom:405.255000px;}
.y15d{bottom:405.615000px;}
.y18b{bottom:406.155000px;}
.y1e5{bottom:409.035000px;}
.ydf{bottom:411.015000px;}
.y1b3{bottom:411.375000px;}
.y8c{bottom:412.635000px;}
.y1fa{bottom:413.175000px;}
.yf1{bottom:420.195000px;}
.y128{bottom:420.915000px;}
.y1a8{bottom:423.975000px;}
.ya2{bottom:424.335000px;}
.y41{bottom:424.695000px;}
.y12f{bottom:425.055000px;}
.yb1{bottom:431.175000px;}
.y5c{bottom:432.615000px;}
.y28{bottom:433.335000px;}
.y200{bottom:434.595000px;}
.y1e4{bottom:437.475000px;}
.y197{bottom:438.555000px;}
.y1b2{bottom:439.815000px;}
.y8b{bottom:441.075000px;}
.ybc{bottom:443.235000px;}
.y1ce{bottom:446.475000px;}
.y10b{bottom:446.655000px;}
.yf0{bottom:448.635000px;}
.y1a7{bottom:452.415000px;}
.y18a{bottom:452.595000px;}
.y40{bottom:453.135000px;}
.y15c{bottom:457.275000px;}
.yb0{bottom:459.615000px;}
.y108{bottom:462.495000px;}
.ycb{bottom:462.855000px;}
.y1e3{bottom:465.915000px;}
.y27{bottom:466.095000px;}
.y5b{bottom:470.055000px;}
.ybb{bottom:471.675000px;}
.y1cd{bottom:474.915000px;}
.y127{bottom:476.355000px;}
.yef{bottom:477.075000px;}
.yde{bottom:478.335000px;}
.y1ff{bottom:479.055000px;}
.y189{bottom:481.035000px;}
.y3f{bottom:481.575000px;}
.y67{bottom:484.095000px;}
.y8a{bottom:487.515000px;}
.y1b1{bottom:488.055000px;}
.yc{bottom:490.035000px;}
.y107{bottom:490.935000px;}
.y185{bottom:493.815000px;}
.y12e{bottom:494.535000px;}
.y26{bottom:498.675000px;}
.y126{bottom:504.795000px;}
.y5a{bottom:507.495000px;}
.y66{bottom:512.535000px;}
.y1a6{bottom:513.075000px;}
.ya1{bottom:513.795000px;}
.y1e2{bottom:514.155000px;}
.yb7{bottom:518.835000px;}
.yaf{bottom:520.275000px;}
.ydd{bottom:520.995000px;}
.y1f9{bottom:525.135000px;}
.y1fe{bottom:525.495000px;}
.y3e{bottom:528.015000px;}
.yfe{bottom:529.095000px;}
.yca{bottom:530.175000px;}
.yba{bottom:532.335000px;}
.y125{bottom:533.235000px;}
.y1cc{bottom:535.575000px;}
.yee{bottom:537.735000px;}
.y7d{bottom:539.175000px;}
.y188{bottom:541.515000px;}
.y25{bottom:541.875000px;}
.y89{bottom:542.955000px;}
.y59{bottom:544.935000px;}
.yb6{bottom:547.275000px;}
.y106{bottom:551.595000px;}
.y1f8{bottom:553.575000px;}
.y1b0{bottom:555.375000px;}
.yfd{bottom:557.355000px;}
.yb{bottom:559.335000px;}
.ya0{bottom:562.035000px;}
.y1ee{bottom:563.115000px;}
.y65{bottom:564.195000px;}
.ye8{bottom:571.065000px;}
.y88{bottom:571.425000px;}
.yc9{bottom:572.685000px;}
.y161{bottom:574.485000px;}
.y1e1{bottom:581.505000px;}
.y58{bottom:582.405000px;}
.y3d{bottom:583.485000px;}
.y1af{bottom:583.845000px;}
.y24{bottom:585.105000px;}
.y124{bottom:588.705000px;}
.y15b{bottom:591.405000px;}
.y1ed{bottom:591.585000px;}
.y7c{bottom:594.645000px;}
.y1d5{bottom:597.165000px;}
.ye7{bottom:599.505000px;}
.y1c4{bottom:605.085000px;}
.y1fd{bottom:606.345000px;}
.yb5{bottom:607.785000px;}
.y1e0{bottom:609.945000px;}
.y57{bottom:610.845000px;}
.y1ae{bottom:612.285000px;}
.y1f7{bottom:614.265000px;}
.y174{bottom:617.865000px;}
.y15a{bottom:619.845000px;}
.y7b{bottom:623.085000px;}
.ya{bottom:625.785000px;}
.y9f{bottom:627.585000px;}
.yfc{bottom:627.945000px;}
.y23{bottom:628.305000px;}
.y3c{bottom:631.905000px;}
.y87{bottom:632.085000px;}
.y1c3{bottom:633.525000px;}
.y1ec{bottom:634.245000px;}
.y1df{bottom:638.385000px;}
.y56{bottom:639.285000px;}
.y123{bottom:645.945000px;}
.y159{bottom:648.285000px;}
.y9e{bottom:651.165000px;}
.y7a{bottom:651.525000px;}
.ye6{bottom:660.165000px;}
.y1d4{bottom:661.605000px;}
.y1c2{bottom:661.965000px;}
.y173{bottom:667.185000px;}
.y22{bottom:671.325000px;}
.y160{bottom:672.405000px;}
.y1ad{bottom:672.945000px;}
.y1a5{bottom:674.205000px;}
.y122{bottom:679.245000px;}
.y79{bottom:679.965000px;}
.y1de{bottom:681.045000px;}
.y55{bottom:685.725000px;}
.y1c1{bottom:690.405000px;}
.y145{bottom:691.485000px;}
.y9d{bottom:692.925000px;}
.y9{bottom:694.725000px;}
.y3b{bottom:695.265000px;}
.y158{bottom:703.725000px;}
.y54{bottom:714.165000px;}
.y21{bottom:714.525000px;}
.y9c{bottom:716.685000px;}
.y1d3{bottom:717.585000px;}
.y1c0{bottom:718.845000px;}
.y144{bottom:719.925000px;}
.y78{bottom:722.445000px;}
.y172{bottom:727.665000px;}
.y1a4{bottom:734.685000px;}
.y121{bottom:737.565000px;}
.y53{bottom:742.605000px;}
.y20{bottom:747.105000px;}
.y157{bottom:759.165000px;}
.y9b{bottom:759.345000px;}
.y3a{bottom:762.045000px;}
.y1bf{bottom:765.285000px;}
.y120{bottom:766.005000px;}
.y143{bottom:766.365000px;}
.y1f6{bottom:773.205000px;}
.y1f{bottom:779.865000px;}
.y8{bottom:783.825000px;}
.y196{bottom:788.505000px;}
.y52{bottom:789.045000px;}
.y39{bottom:790.485000px;}
.y11f{bottom:794.445000px;}
.y1f5{bottom:801.645000px;}
.y9a{bottom:802.365000px;}
.y142{bottom:803.805000px;}
.y1be{bottom:811.725000px;}
.y1e{bottom:812.445000px;}
.y14e{bottom:814.065000px;}
.y156{bottom:814.605000px;}
.y16a{bottom:814.785000px;}
.y195{bottom:816.945000px;}
.y51{bottom:817.485000px;}
.y38{bottom:818.925000px;}
.y99{bottom:826.125000px;}
.y141{bottom:841.245000px;}
.y105{bottom:841.605000px;}
.y14d{bottom:842.505000px;}
.y155{bottom:843.045000px;}
.y169{bottom:843.225000px;}
.y37{bottom:847.410000px;}
.y11e{bottom:849.930000px;}
.y1d{bottom:855.690000px;}
.y1f4{bottom:857.130000px;}
.y194{bottom:863.430000px;}
.y50{bottom:863.970000px;}
.y1bb{bottom:865.770000px;}
.y98{bottom:869.730000px;}
.y104{bottom:870.090000px;}
.y77{bottom:870.630000px;}
.y168{bottom:871.710000px;}
.y36{bottom:875.850000px;}
.y1d2{bottom:876.570000px;}
.y7{bottom:878.370000px;}
.y140{bottom:878.730000px;}
.y1f3{bottom:885.570000px;}
.y1c{bottom:888.270000px;}
.y14c{bottom:888.990000px;}
.y154{bottom:898.530000px;}
.y76{bottom:899.070000px;}
.y35{bottom:904.290000px;}
.y102{bottom:906.090000px;}
.y11d{bottom:906.810000px;}
.y167{bottom:907.710000px;}
.y184{bottom:909.690000px;}
.y1f2{bottom:914.010000px;}
.y97{bottom:914.190000px;}
.y193{bottom:915.090000px;}
.y13f{bottom:916.170000px;}
.y4f{bottom:919.410000px;}
.y1b{bottom:921.030000px;}
.y149{bottom:924.990000px;}
.y75{bottom:927.510000px;}
.y1d1{bottom:928.230000px;}
.y96{bottom:937.950000px;}
.y183{bottom:938.130000px;}
.y1c7{bottom:939.930000px;}
.y1f1{bottom:942.450000px;}
.y1a3{bottom:947.670000px;}
.y34{bottom:950.730000px;}
.y13e{bottom:953.610000px;}
.y153{bottom:953.970000px;}
.y74{bottom:955.950000px;}
.y11c{bottom:962.250000px;}
.y1a{bottom:964.050000px;}
.y4e{bottom:965.850000px;}
.y1c6{bottom:968.370000px;}
.y1a2{bottom:976.110000px;}
.ydc{bottom:977.370000px;}
.yc1{bottom:977.550000px;}
.y33{bottom:979.170000px;}
.y95{bottom:981.510000px;}
.y152{bottom:982.410000px;}
.y11b{bottom:990.690000px;}
.y13d{bottom:991.050000px;}
.y4d{bottom:994.290000px;}
.y1f0{bottom:997.890000px;}
.y182{bottom:998.790000px;}
.y73{bottom:1002.390000px;}
.y1bc{bottom:1004.370000px;}
.y1a1{bottom:1004.550000px;}
.ydb{bottom:1005.810000px;}
.yc0{bottom:1005.990000px;}
.y19{bottom:1007.610000px;}
.y192{bottom:1011.030000px;}
.yd6{bottom:1015.170000px;}
.y1ac{bottom:1018.590000px;}
.y101{bottom:1019.850000px;}
.y166{bottom:1021.470000px;}
.y13c{bottom:1028.490000px;}
.y4c{bottom:1031.730000px;}
.yda{bottom:1034.250000px;}
.ybf{bottom:1034.430000px;}
.y32{bottom:1036.050000px;}
.y191{bottom:1039.470000px;}
.yd5{bottom:1043.610000px;}
.y1ab{bottom:1047.030000px;}
.y165{bottom:1049.910000px;}
.y72{bottom:1059.630000px;}
.y4b{bottom:1060.170000px;}
.yd9{bottom:1062.690000px;}
.y1a0{bottom:1065.210000px;}
.y13b{bottom:1065.930000px;}
.y100{bottom:1068.090000px;}
.y18{bottom:1068.630000px;}
.y1d0{bottom:1082.670000px;}
.y31{bottom:1084.470000px;}
.yae{bottom:1084.650000px;}
.y190{bottom:1085.910000px;}
.y86{bottom:1088.070000px;}
.y1ba{bottom:1089.690000px;}
.y6{bottom:1095.810000px;}
.y164{bottom:1096.350000px;}
.y148{bottom:1097.250000px;}
.y13a{bottom:1103.370000px;}
.y4{bottom:1117.950000px;}
.y14{bottom:1126.410000px;}
.y1{bottom:1135.980000px;}
.y12{bottom:1150.560000px;}
.h22{height:28.461000px;}
.hc{height:32.220000px;}
.h16{height:59.789180px;}
.h17{height:60.577031px;}
.hd{height:67.145625px;}
.h18{height:68.084282px;}
.h3{height:72.035156px;}
.h10{height:72.984375px;}
.h13{height:74.004654px;}
.h27{height:74.865000px;}
.h12{height:74.953125px;}
.h19{height:79.005000px;}
.ha{height:80.460000px;}
.h1b{height:83.865000px;}
.h1f{height:84.281133px;}
.h1e{height:85.391719px;}
.h11{height:87.695156px;}
.h2{height:95.040000px;}
.hb{height:95.806758px;}
.hf{height:97.069219px;}
.h1a{height:103.305000px;}
.h9{height:108.052734px;}
.h8{height:120.298711px;}
.h15{height:121.305000px;}
.h6{height:121.883906px;}
.h25{height:123.501000px;}
.he{height:133.561406px;}
.h1c{height:133.761000px;}
.h1d{height:133.762500px;}
.h28{height:138.585000px;}
.h5{height:144.070312px;}
.h21{height:149.781000px;}
.h20{height:161.805000px;}
.h7{height:167.841914px;}
.h26{height:213.465000px;}
.h14{height:235.095000px;}
.h23{height:253.110000px;}
.h24{height:253.125000px;}
.h4{height:408.439336px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:47.340000px;}
.w3{width:64.245000px;}
.w11{width:144.021000px;}
.wf{width:146.181000px;}
.wd{width:156.795000px;}
.w5{width:195.135000px;}
.w19{width:197.115000px;}
.wb{width:201.975000px;}
.w12{width:209.541000px;}
.w1c{width:231.495000px;}
.w20{width:255.075000px;}
.w1e{width:273.255000px;}
.w9{width:297.735000px;}
.w17{width:316.335000px;}
.w15{width:326.595000px;}
.w14{width:361.461000px;}
.w16{width:371.721000px;}
.w7{width:412.080000px;}
.w8{width:412.095000px;}
.w1d{width:414.780000px;}
.w1f{width:446.646000px;}
.w1a{width:467.880000px;}
.w1b{width:467.895000px;}
.w18{width:470.406000px;}
.w13{width:479.220000px;}
.w10{width:520.986000px;}
.wc{width:531.246000px;}
.wa{width:539.700000px;}
.we{width:541.866000px;}
.w4{width:599.865000px;}
.w2{width:730.755000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x27{left:8.091000px;}
.x2e{left:9.375000px;}
.x5f{left:10.605000px;}
.x13{left:15.135000px;}
.x1d{left:29.331000px;}
.x4{left:32.040000px;}
.x1{left:53.100000px;}
.x26{left:95.805000px;}
.x22{left:96.870000px;}
.x20{left:98.325000px;}
.x17{left:100.836000px;}
.x5{left:106.416000px;}
.x42{left:117.045000px;}
.x29{left:122.790000px;}
.x16{left:127.656000px;}
.x2a{left:133.236000px;}
.x34{left:138.090000px;}
.x1b{left:143.316000px;}
.x36{left:148.710000px;}
.x54{left:154.110000px;}
.x15{left:159.510000px;}
.x25{left:170.310000px;}
.x10{left:173.730000px;}
.xb{left:176.430000px;}
.x19{left:180.390000px;}
.x4d{left:189.030000px;}
.x1a{left:207.210000px;}
.x14{left:211.530000px;}
.x8{left:225.030000px;}
.x5c{left:238.890000px;}
.xa{left:261.210000px;}
.x11{left:268.410000px;}
.x44{left:283.935000px;}
.x1f{left:305.310000px;}
.x3f{left:315.975000px;}
.x9{left:326.415000px;}
.x4a{left:363.135000px;}
.x18{left:388.335000px;}
.x7{left:450.795000px;}
.x5d{left:464.820000px;}
.x49{left:467.535000px;}
.x43{left:478.515000px;}
.x1e{left:518.520000px;}
.x5b{left:521.220000px;}
.x68{left:529.665000px;}
.x6{left:531.825000px;}
.x38{left:541.365000px;}
.x57{left:544.425000px;}
.x5e{left:553.080000px;}
.x4f{left:563.700000px;}
.x50{left:564.765000px;}
.xe{left:567.285000px;}
.x61{left:580.245000px;}
.x55{left:586.545000px;}
.xd{left:591.405000px;}
.x46{left:592.665000px;}
.x4c{left:598.080000px;}
.xc{left:600.405000px;}
.x2d{left:613.365000px;}
.x3c{left:616.800000px;}
.x28{left:627.060000px;}
.x21{left:638.040000px;}
.xf{left:652.980000px;}
.x59{left:655.665000px;}
.x67{left:659.265000px;}
.x52{left:666.105000px;}
.x2c{left:674.025000px;}
.x5a{left:680.685000px;}
.x58{left:688.245000px;}
.x2f{left:689.325000px;}
.x53{left:695.490000px;}
.x56{left:703.950000px;}
.x63{left:710.790000px;}
.x66{left:714.210000px;}
.x4b{left:716.370000px;}
.x2{left:722.490000px;}
.x64{left:725.910000px;}
.x51{left:736.890000px;}
.x65{left:744.450000px;}
.x39{left:746.430000px;}
.x40{left:756.330000px;}
.x12{left:758.475000px;}
.x47{left:763.890000px;}
.x2b{left:765.870000px;}
.x4e{left:771.990000px;}
.x69{left:773.610000px;}
.x3e{left:776.670000px;}
.x24{left:777.930000px;}
.x23{left:781.530000px;}
.x3{left:783.870000px;}
.x37{left:785.310000px;}
.x33{left:788.910000px;}
.x32{left:789.990000px;}
.x35{left:793.950000px;}
.x30{left:795.210000px;}
.x3a{left:799.530000px;}
.x45{left:805.650000px;}
.x3d{left:808.530000px;}
.x31{left:813.570000px;}
.x1c{left:816.450000px;}
.x60{left:819.690000px;}
.x41{left:836.070000px;}
.x48{left:838.410000px;}
.x62{left:849.030000px;}
.x3b{left:855.690000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1b{letter-spacing:-0.263467pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls15{letter-spacing:-0.135467pt;}
.lsa{letter-spacing:-0.128000pt;}
.lsf{letter-spacing:-0.119467pt;}
.ls1e{letter-spacing:-0.106667pt;}
.ls7{letter-spacing:-0.064000pt;}
.ls24{letter-spacing:-0.008960pt;}
.ls1a{letter-spacing:-0.002560pt;}
.ls0{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.067733pt;}
.ls5{letter-spacing:0.192000pt;}
.ls9{letter-spacing:0.256000pt;}
.ls23{letter-spacing:0.280107pt;}
.ls1d{letter-spacing:0.352000pt;}
.ls1c{letter-spacing:0.384000pt;}
.ls1f{letter-spacing:0.768000pt;}
.ls14{letter-spacing:2.421760pt;}
.ls6{letter-spacing:7.813120pt;}
.ls17{letter-spacing:8.981760pt;}
.ls22{letter-spacing:12.928000pt;}
.ls21{letter-spacing:13.568000pt;}
.ls20{letter-spacing:14.208000pt;}
.lsb{letter-spacing:19.712000pt;}
.ls4{letter-spacing:23.813120pt;}
.ls1{letter-spacing:32.133120pt;}
.ls12{letter-spacing:33.143467pt;}
.ls19{letter-spacing:47.466667pt;}
.lsd{letter-spacing:48.128000pt;}
.ls3{letter-spacing:48.133120pt;}
.ls13{letter-spacing:48.768000pt;}
.ls18{letter-spacing:52.751360pt;}
.lse{letter-spacing:56.272640pt;}
.ls2{letter-spacing:69.253120pt;}
.ls11{letter-spacing:70.924800pt;}
.lsc{letter-spacing:577.258667pt;}
.ws9{word-spacing:-64.000000pt;}
.wsd{word-spacing:-58.880000pt;}
.wse{word-spacing:-58.877440pt;}
.wsa{word-spacing:-53.120000pt;}
.ws11{word-spacing:-25.600000pt;}
.ws7{word-spacing:-25.489493pt;}
.ws5{word-spacing:-22.784000pt;}
.ws6{word-spacing:-22.720000pt;}
.ws4{word-spacing:-22.528000pt;}
.ws10{word-spacing:-22.400000pt;}
.ws8{word-spacing:-22.336000pt;}
.ws2{word-spacing:-22.272000pt;}
.ws3{word-spacing:-21.888000pt;}
.ws1{word-spacing:-21.824000pt;}
.wsc{word-spacing:-21.696000pt;}
.wsb{word-spacing:-21.632000pt;}
.wsf{word-spacing:-19.873493pt;}
.ws0{word-spacing:0.000000pt;}
._e{margin-left:-20.981333pt;}
._d{margin-left:-18.933333pt;}
._c{margin-left:-18.035413pt;}
._9{margin-left:-16.981333pt;}
._b{margin-left:-13.171413pt;}
._6{margin-left:-10.995413pt;}
._a{margin-left:-8.019413pt;}
._8{margin-left:-6.293333pt;}
._14{margin-left:-5.258027pt;}
._7{margin-left:-3.701333pt;}
._f{margin-left:-2.805333pt;}
._0{margin-left:-1.088640pt;}
._1{width:0.894720pt;}
._2{width:1.809707pt;}
._22{width:3.149248pt;}
._17{width:4.096000pt;}
._18{width:4.992640pt;}
._1c{width:6.175360pt;}
._1f{width:7.087787pt;}
._10{width:8.576000pt;}
._19{width:10.282667pt;}
._21{width:11.435947pt;}
._16{width:12.479360pt;}
._15{width:13.696640pt;}
._27{width:14.869333pt;}
._24{width:15.786667pt;}
._25{width:16.917333pt;}
._29{width:18.218667pt;}
._12{width:19.584000pt;}
._13{width:21.194667pt;}
._1b{width:24.384000pt;}
._1a{width:25.600000pt;}
._2c{width:26.807893pt;}
._11{width:28.096000pt;}
._20{width:29.504000pt;}
._23{width:30.656000pt;}
._1d{width:31.616000pt;}
._1e{width:32.513280pt;}
._26{width:33.469440pt;}
._28{width:35.840000pt;}
._2b{width:37.098667pt;}
._37{width:41.152000pt;}
._38{width:42.049280pt;}
._39{width:43.381333pt;}
._2d{width:50.176000pt;}
._2e{width:51.478613pt;}
._32{width:53.120000pt;}
._33{width:71.338667pt;}
._30{width:83.191680pt;}
._31{width:89.920000pt;}
._2f{width:100.970667pt;}
._35{width:328.459307pt;}
._36{width:453.877973pt;}
._3a{width:490.585173pt;}
._34{width:504.843307pt;}
._4{width:625.952000pt;}
._3{width:723.050667pt;}
._2a{width:745.610667pt;}
._5{width:1202.698667pt;}
.fsa{font-size:53.120000pt;}
.fs7{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs9{font-size:74.880000pt;}
.fs6{font-size:85.120000pt;}
.fs5{font-size:96.000000pt;}
.fs3{font-size:106.880000pt;}
.fs8{font-size:117.120000pt;}
.fs2{font-size:128.000000pt;}
.fs4{font-size:149.120000pt;}
.fs1{font-size:362.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:0.160000pt;}
.y10e{bottom:5.746667pt;}
.ye1{bottom:5.760000pt;}
.y170{bottom:5.906667pt;}
.ya5{bottom:5.920000pt;}
.y17{bottom:8.632000pt;}
.y13{bottom:8.640000pt;}
.y111{bottom:9.266667pt;}
.y70{bottom:9.272000pt;}
.ycf{bottom:9.280000pt;}
.y17c{bottom:9.293333pt;}
.y16f{bottom:9.306667pt;}
.yd0{bottom:9.920000pt;}
.y103{bottom:10.880000pt;}
.ya4{bottom:12.960000pt;}
.y1bd{bottom:17.280000pt;}
.y5{bottom:18.912000pt;}
.y17d{bottom:24.960000pt;}
.y81{bottom:25.280000pt;}
.y6f{bottom:34.546667pt;}
.yce{bottom:34.560000pt;}
.y15{bottom:35.072000pt;}
.ya3{bottom:38.240000pt;}
.y16{bottom:41.000000pt;}
.y82{bottom:43.840000pt;}
.y14b{bottom:48.000000pt;}
.y80{bottom:50.560000pt;}
.y17b{bottom:50.573333pt;}
.y110{bottom:50.586667pt;}
.y3{bottom:52.480000pt;}
.y1b7{bottom:52.506667pt;}
.y71{bottom:55.346667pt;}
.y6e{bottom:59.826667pt;}
.ycd{bottom:59.840000pt;}
.y14a{bottom:73.280000pt;}
.y7f{bottom:75.840000pt;}
.y17a{bottom:75.853333pt;}
.y10f{bottom:75.866667pt;}
.y1b6{bottom:77.786667pt;}
.y16d{bottom:85.106667pt;}
.y1cf{bottom:100.832000pt;}
.y6d{bottom:101.106667pt;}
.y179{bottom:101.133333pt;}
.y147{bottom:101.952000pt;}
.y1ef{bottom:107.232000pt;}
.y139{bottom:108.992000pt;}
.y151{bottom:109.152000pt;}
.y171{bottom:109.952000pt;}
.y1c5{bottom:112.512000pt;}
.y69{bottom:113.960000pt;}
.y94{bottom:115.712000pt;}
.y4a{bottom:117.952000pt;}
.yff{bottom:119.072000pt;}
.y19f{bottom:119.392000pt;}
.y11{bottom:120.192000pt;}
.yb4{bottom:120.352000pt;}
.y30{bottom:124.992000pt;}
.y1eb{bottom:125.792000pt;}
.y6c{bottom:126.386667pt;}
.y10a{bottom:132.512000pt;}
.y18f{bottom:133.312000pt;}
.y206{bottom:133.946667pt;}
.y85{bottom:134.106667pt;}
.y138{bottom:134.266667pt;}
.y93{bottom:136.826667pt;}
.y1d8{bottom:138.106667pt;}
.ye5{bottom:140.026667pt;}
.y16c{bottom:141.960000pt;}
.y64{bottom:142.266667pt;}
.y177{bottom:142.400000pt;}
.y49{bottom:143.226667pt;}
.y146{bottom:143.386667pt;}
.yed{bottom:143.706667pt;}
.y19e{bottom:144.666667pt;}
.y1b9{bottom:148.026667pt;}
.y150{bottom:150.426667pt;}
.yd8{bottom:151.066667pt;}
.yb9{bottom:151.546667pt;}
.y6b{bottom:151.706667pt;}
.y2f{bottom:153.946667pt;}
.y18e{bottom:155.226667pt;}
.ybe{bottom:156.666667pt;}
.yfb{bottom:158.106667pt;}
.yc8{bottom:159.226667pt;}
.y84{bottom:159.386667pt;}
.y137{bottom:159.546667pt;}
.y163{bottom:160.986667pt;}
.yb3{bottom:161.626667pt;}
.y63{bottom:167.546667pt;}
.y176{bottom:167.680000pt;}
.y48{bottom:168.506667pt;}
.yec{bottom:168.986667pt;}
.y19d{bottom:169.946667pt;}
.yad{bottom:170.106667pt;}
.y109{bottom:170.266667pt;}
.y11a{bottom:171.386667pt;}
.yd7{bottom:172.986667pt;}
.y1b8{bottom:173.306667pt;}
.y113{bottom:173.626667pt;}
.y10{bottom:175.226667pt;}
.y92{bottom:175.546667pt;}
.y118{bottom:176.026667pt;}
.y187{bottom:176.666667pt;}
.y6a{bottom:176.986667pt;}
.y181{bottom:178.106667pt;}
.ybd{bottom:178.586667pt;}
.y1ea{bottom:181.146667pt;}
.ye4{bottom:181.306667pt;}
.y2e{bottom:183.066667pt;}
.yfa{bottom:183.386667pt;}
.y162{bottom:183.866667pt;}
.yc7{bottom:184.506667pt;}
.yd4{bottom:184.666667pt;}
.y136{bottom:184.826667pt;}
.y1d7{bottom:185.626667pt;}
.yb8{bottom:189.466667pt;}
.y1dd{bottom:192.346667pt;}
.y175{bottom:192.960000pt;}
.y119{bottom:193.306667pt;}
.yeb{bottom:194.266667pt;}
.y19c{bottom:195.066667pt;}
.y205{bottom:196.186667pt;}
.y112{bottom:198.906667pt;}
.yb2{bottom:199.546667pt;}
.y91{bottom:200.826667pt;}
.y117{bottom:201.306667pt;}
.y47{bottom:201.786667pt;}
.y180{bottom:203.386667pt;}
.y12d{bottom:203.866667pt;}
.y14f{bottom:204.346667pt;}
.yf4{bottom:204.506667pt;}
.y1e9{bottom:206.426667pt;}
.ye3{bottom:206.586667pt;}
.yf9{bottom:208.666667pt;}
.y62{bottom:208.826667pt;}
.yd3{bottom:209.946667pt;}
.y135{bottom:210.106667pt;}
.yac{bottom:211.386667pt;}
.y2d{bottom:212.026667pt;}
.y83{bottom:213.306667pt;}
.y1aa{bottom:213.466667pt;}
.y1fc{bottom:218.266667pt;}
.y204{bottom:218.746667pt;}
.yea{bottom:219.546667pt;}
.y1b5{bottom:221.320000pt;}
.yf{bottom:223.226667pt;}
.y1cb{bottom:223.706667pt;}
.yc6{bottom:225.786667pt;}
.y46{bottom:227.066667pt;}
.y17f{bottom:228.666667pt;}
.y12c{bottom:229.146667pt;}
.yf3{bottom:229.786667pt;}
.y186{bottom:230.586667pt;}
.y10d{bottom:230.920000pt;}
.y1e8{bottom:231.706667pt;}
.ye2{bottom:231.866667pt;}
.yd2{bottom:235.226667pt;}
.y134{bottom:235.386667pt;}
.y19b{bottom:236.346667pt;}
.yab{bottom:236.666667pt;}
.y1d6{bottom:239.546667pt;}
.y90{bottom:240.506667pt;}
.y61{bottom:242.106667pt;}
.y116{bottom:242.586667pt;}
.y1dc{bottom:243.546667pt;}
.ya9{bottom:245.306667pt;}
.y1ca{bottom:248.986667pt;}
.y16e{bottom:249.800000pt;}
.yf8{bottom:249.946667pt;}
.y2c{bottom:250.466667pt;}
.yc5{bottom:251.106667pt;}
.y45{bottom:252.386667pt;}
.y203{bottom:254.306667pt;}
.yd1{bottom:260.546667pt;}
.y133{bottom:260.706667pt;}
.y8f{bottom:261.506667pt;}
.y19a{bottom:261.666667pt;}
.ye0{bottom:263.906667pt;}
.y60{bottom:267.426667pt;}
.y115{bottom:267.906667pt;}
.y1db{bottom:268.866667pt;}
.y17e{bottom:269.986667pt;}
.y1e7{bottom:273.026667pt;}
.ye9{bottom:273.506667pt;}
.ye{bottom:273.826667pt;}
.yf7{bottom:275.266667pt;}
.yc4{bottom:276.386667pt;}
.y12b{bottom:276.866667pt;}
.y44{bottom:277.666667pt;}
.ya8{bottom:278.626667pt;}
.y16b{bottom:281.026667pt;}
.yf2{bottom:283.586667pt;}
.y15f{bottom:285.986667pt;}
.y199{bottom:286.946667pt;}
.y2b{bottom:288.866667pt;}
.yaa{bottom:290.626667pt;}
.ycc{bottom:292.546667pt;}
.y1da{bottom:294.146667pt;}
.y18d{bottom:294.466667pt;}
.y202{bottom:299.266667pt;}
.y8e{bottom:300.226667pt;}
.yf6{bottom:300.546667pt;}
.y5f{bottom:300.706667pt;}
.yc3{bottom:301.666667pt;}
.y178{bottom:301.973333pt;}
.y132{bottom:301.986667pt;}
.y1c9{bottom:306.306667pt;}
.y43{bottom:310.946667pt;}
.y15e{bottom:311.266667pt;}
.ya7{bottom:311.906667pt;}
.y1fb{bottom:313.506667pt;}
.yd{bottom:319.906667pt;}
.y114{bottom:321.666667pt;}
.y1e6{bottom:322.306667pt;}
.y12a{bottom:323.586667pt;}
.y8d{bottom:325.506667pt;}
.y5e{bottom:325.986667pt;}
.y2a{bottom:327.106667pt;}
.y131{bottom:327.266667pt;}
.y68{bottom:328.706667pt;}
.y198{bottom:329.986667pt;}
.y201{bottom:332.546667pt;}
.y18c{bottom:335.746667pt;}
.y42{bottom:336.226667pt;}
.y1b4{bottom:340.386667pt;}
.ya6{bottom:345.186667pt;}
.y1d9{bottom:348.066667pt;}
.y129{bottom:348.866667pt;}
.y1a9{bottom:351.586667pt;}
.y130{bottom:352.546667pt;}
.y7e{bottom:354.146667pt;}
.yf5{bottom:354.306667pt;}
.yc2{bottom:355.586667pt;}
.y29{bottom:356.226667pt;}
.y10c{bottom:359.106667pt;}
.y5d{bottom:359.266667pt;}
.y1c8{bottom:360.226667pt;}
.y15d{bottom:360.546667pt;}
.y18b{bottom:361.026667pt;}
.y1e5{bottom:363.586667pt;}
.ydf{bottom:365.346667pt;}
.y1b3{bottom:365.666667pt;}
.y8c{bottom:366.786667pt;}
.y1fa{bottom:367.266667pt;}
.yf1{bottom:373.506667pt;}
.y128{bottom:374.146667pt;}
.y1a8{bottom:376.866667pt;}
.ya2{bottom:377.186667pt;}
.y41{bottom:377.506667pt;}
.y12f{bottom:377.826667pt;}
.yb1{bottom:383.266667pt;}
.y5c{bottom:384.546667pt;}
.y28{bottom:385.186667pt;}
.y200{bottom:386.306667pt;}
.y1e4{bottom:388.866667pt;}
.y197{bottom:389.826667pt;}
.y1b2{bottom:390.946667pt;}
.y8b{bottom:392.066667pt;}
.ybc{bottom:393.986667pt;}
.y1ce{bottom:396.866667pt;}
.y10b{bottom:397.026667pt;}
.yf0{bottom:398.786667pt;}
.y1a7{bottom:402.146667pt;}
.y18a{bottom:402.306667pt;}
.y40{bottom:402.786667pt;}
.y15c{bottom:406.466667pt;}
.yb0{bottom:408.546667pt;}
.y108{bottom:411.106667pt;}
.ycb{bottom:411.426667pt;}
.y1e3{bottom:414.146667pt;}
.y27{bottom:414.306667pt;}
.y5b{bottom:417.826667pt;}
.ybb{bottom:419.266667pt;}
.y1cd{bottom:422.146667pt;}
.y127{bottom:423.426667pt;}
.yef{bottom:424.066667pt;}
.yde{bottom:425.186667pt;}
.y1ff{bottom:425.826667pt;}
.y189{bottom:427.586667pt;}
.y3f{bottom:428.066667pt;}
.y67{bottom:430.306667pt;}
.y8a{bottom:433.346667pt;}
.y1b1{bottom:433.826667pt;}
.yc{bottom:435.586667pt;}
.y107{bottom:436.386667pt;}
.y185{bottom:438.946667pt;}
.y12e{bottom:439.586667pt;}
.y26{bottom:443.266667pt;}
.y126{bottom:448.706667pt;}
.y5a{bottom:451.106667pt;}
.y66{bottom:455.586667pt;}
.y1a6{bottom:456.066667pt;}
.ya1{bottom:456.706667pt;}
.y1e2{bottom:457.026667pt;}
.yb7{bottom:461.186667pt;}
.yaf{bottom:462.466667pt;}
.ydd{bottom:463.106667pt;}
.y1f9{bottom:466.786667pt;}
.y1fe{bottom:467.106667pt;}
.y3e{bottom:469.346667pt;}
.yfe{bottom:470.306667pt;}
.yca{bottom:471.266667pt;}
.yba{bottom:473.186667pt;}
.y125{bottom:473.986667pt;}
.y1cc{bottom:476.066667pt;}
.yee{bottom:477.986667pt;}
.y7d{bottom:479.266667pt;}
.y188{bottom:481.346667pt;}
.y25{bottom:481.666667pt;}
.y89{bottom:482.626667pt;}
.y59{bottom:484.386667pt;}
.yb6{bottom:486.466667pt;}
.y106{bottom:490.306667pt;}
.y1f8{bottom:492.066667pt;}
.y1b0{bottom:493.666667pt;}
.yfd{bottom:495.426667pt;}
.yb{bottom:497.186667pt;}
.ya0{bottom:499.586667pt;}
.y1ee{bottom:500.546667pt;}
.y65{bottom:501.506667pt;}
.ye8{bottom:507.613333pt;}
.y88{bottom:507.933333pt;}
.yc9{bottom:509.053333pt;}
.y161{bottom:510.653333pt;}
.y1e1{bottom:516.893333pt;}
.y58{bottom:517.693333pt;}
.y3d{bottom:518.653333pt;}
.y1af{bottom:518.973333pt;}
.y24{bottom:520.093333pt;}
.y124{bottom:523.293333pt;}
.y15b{bottom:525.693333pt;}
.y1ed{bottom:525.853333pt;}
.y7c{bottom:528.573333pt;}
.y1d5{bottom:530.813333pt;}
.ye7{bottom:532.893333pt;}
.y1c4{bottom:537.853333pt;}
.y1fd{bottom:538.973333pt;}
.yb5{bottom:540.253333pt;}
.y1e0{bottom:542.173333pt;}
.y57{bottom:542.973333pt;}
.y1ae{bottom:544.253333pt;}
.y1f7{bottom:546.013333pt;}
.y174{bottom:549.213333pt;}
.y15a{bottom:550.973333pt;}
.y7b{bottom:553.853333pt;}
.ya{bottom:556.253333pt;}
.y9f{bottom:557.853333pt;}
.yfc{bottom:558.173333pt;}
.y23{bottom:558.493333pt;}
.y3c{bottom:561.693333pt;}
.y87{bottom:561.853333pt;}
.y1c3{bottom:563.133333pt;}
.y1ec{bottom:563.773333pt;}
.y1df{bottom:567.453333pt;}
.y56{bottom:568.253333pt;}
.y123{bottom:574.173333pt;}
.y159{bottom:576.253333pt;}
.y9e{bottom:578.813333pt;}
.y7a{bottom:579.133333pt;}
.ye6{bottom:586.813333pt;}
.y1d4{bottom:588.093333pt;}
.y1c2{bottom:588.413333pt;}
.y173{bottom:593.053333pt;}
.y22{bottom:596.733333pt;}
.y160{bottom:597.693333pt;}
.y1ad{bottom:598.173333pt;}
.y1a5{bottom:599.293333pt;}
.y122{bottom:603.773333pt;}
.y79{bottom:604.413333pt;}
.y1de{bottom:605.373333pt;}
.y55{bottom:609.533333pt;}
.y1c1{bottom:613.693333pt;}
.y145{bottom:614.653333pt;}
.y9d{bottom:615.933333pt;}
.y9{bottom:617.533333pt;}
.y3b{bottom:618.013333pt;}
.y158{bottom:625.533333pt;}
.y54{bottom:634.813333pt;}
.y21{bottom:635.133333pt;}
.y9c{bottom:637.053333pt;}
.y1d3{bottom:637.853333pt;}
.y1c0{bottom:638.973333pt;}
.y144{bottom:639.933333pt;}
.y78{bottom:642.173333pt;}
.y172{bottom:646.813333pt;}
.y1a4{bottom:653.053333pt;}
.y121{bottom:655.613333pt;}
.y53{bottom:660.093333pt;}
.y20{bottom:664.093333pt;}
.y157{bottom:674.813333pt;}
.y9b{bottom:674.973333pt;}
.y3a{bottom:677.373333pt;}
.y1bf{bottom:680.253333pt;}
.y120{bottom:680.893333pt;}
.y143{bottom:681.213333pt;}
.y1f6{bottom:687.293333pt;}
.y1f{bottom:693.213333pt;}
.y8{bottom:696.733333pt;}
.y196{bottom:700.893333pt;}
.y52{bottom:701.373333pt;}
.y39{bottom:702.653333pt;}
.y11f{bottom:706.173333pt;}
.y1f5{bottom:712.573333pt;}
.y9a{bottom:713.213333pt;}
.y142{bottom:714.493333pt;}
.y1be{bottom:721.533333pt;}
.y1e{bottom:722.173333pt;}
.y14e{bottom:723.613333pt;}
.y156{bottom:724.093333pt;}
.y16a{bottom:724.253333pt;}
.y195{bottom:726.173333pt;}
.y51{bottom:726.653333pt;}
.y38{bottom:727.933333pt;}
.y99{bottom:734.333333pt;}
.y141{bottom:747.773333pt;}
.y105{bottom:748.093333pt;}
.y14d{bottom:748.893333pt;}
.y155{bottom:749.373333pt;}
.y169{bottom:749.533333pt;}
.y37{bottom:753.253333pt;}
.y11e{bottom:755.493333pt;}
.y1d{bottom:760.613333pt;}
.y1f4{bottom:761.893333pt;}
.y194{bottom:767.493333pt;}
.y50{bottom:767.973333pt;}
.y1bb{bottom:769.573333pt;}
.y98{bottom:773.093333pt;}
.y104{bottom:773.413333pt;}
.y77{bottom:773.893333pt;}
.y168{bottom:774.853333pt;}
.y36{bottom:778.533333pt;}
.y1d2{bottom:779.173333pt;}
.y7{bottom:780.773333pt;}
.y140{bottom:781.093333pt;}
.y1f3{bottom:787.173333pt;}
.y1c{bottom:789.573333pt;}
.y14c{bottom:790.213333pt;}
.y154{bottom:798.693333pt;}
.y76{bottom:799.173333pt;}
.y35{bottom:803.813333pt;}
.y102{bottom:805.413333pt;}
.y11d{bottom:806.053333pt;}
.y167{bottom:806.853333pt;}
.y184{bottom:808.613333pt;}
.y1f2{bottom:812.453333pt;}
.y97{bottom:812.613333pt;}
.y193{bottom:813.413333pt;}
.y13f{bottom:814.373333pt;}
.y4f{bottom:817.253333pt;}
.y1b{bottom:818.693333pt;}
.y149{bottom:822.213333pt;}
.y75{bottom:824.453333pt;}
.y1d1{bottom:825.093333pt;}
.y96{bottom:833.733333pt;}
.y183{bottom:833.893333pt;}
.y1c7{bottom:835.493333pt;}
.y1f1{bottom:837.733333pt;}
.y1a3{bottom:842.373333pt;}
.y34{bottom:845.093333pt;}
.y13e{bottom:847.653333pt;}
.y153{bottom:847.973333pt;}
.y74{bottom:849.733333pt;}
.y11c{bottom:855.333333pt;}
.y1a{bottom:856.933333pt;}
.y4e{bottom:858.533333pt;}
.y1c6{bottom:860.773333pt;}
.y1a2{bottom:867.653333pt;}
.ydc{bottom:868.773333pt;}
.yc1{bottom:868.933333pt;}
.y33{bottom:870.373333pt;}
.y95{bottom:872.453333pt;}
.y152{bottom:873.253333pt;}
.y11b{bottom:880.613333pt;}
.y13d{bottom:880.933333pt;}
.y4d{bottom:883.813333pt;}
.y1f0{bottom:887.013333pt;}
.y182{bottom:887.813333pt;}
.y73{bottom:891.013333pt;}
.y1bc{bottom:892.773333pt;}
.y1a1{bottom:892.933333pt;}
.ydb{bottom:894.053333pt;}
.yc0{bottom:894.213333pt;}
.y19{bottom:895.653333pt;}
.y192{bottom:898.693333pt;}
.yd6{bottom:902.373333pt;}
.y1ac{bottom:905.413333pt;}
.y101{bottom:906.533333pt;}
.y166{bottom:907.973333pt;}
.y13c{bottom:914.213333pt;}
.y4c{bottom:917.093333pt;}
.yda{bottom:919.333333pt;}
.ybf{bottom:919.493333pt;}
.y32{bottom:920.933333pt;}
.y191{bottom:923.973333pt;}
.yd5{bottom:927.653333pt;}
.y1ab{bottom:930.693333pt;}
.y165{bottom:933.253333pt;}
.y72{bottom:941.893333pt;}
.y4b{bottom:942.373333pt;}
.yd9{bottom:944.613333pt;}
.y1a0{bottom:946.853333pt;}
.y13b{bottom:947.493333pt;}
.y100{bottom:949.413333pt;}
.y18{bottom:949.893333pt;}
.y1d0{bottom:962.373333pt;}
.y31{bottom:963.973333pt;}
.yae{bottom:964.133333pt;}
.y190{bottom:965.253333pt;}
.y86{bottom:967.173333pt;}
.y1ba{bottom:968.613333pt;}
.y6{bottom:974.053333pt;}
.y164{bottom:974.533333pt;}
.y148{bottom:975.333333pt;}
.y13a{bottom:980.773333pt;}
.y4{bottom:993.733333pt;}
.y14{bottom:1001.253333pt;}
.y1{bottom:1009.760000pt;}
.y12{bottom:1022.720000pt;}
.h22{height:25.298667pt;}
.hc{height:28.640000pt;}
.h16{height:53.145938pt;}
.h17{height:53.846250pt;}
.hd{height:59.685000pt;}
.h18{height:60.519362pt;}
.h3{height:64.031250pt;}
.h10{height:64.875000pt;}
.h13{height:65.781915pt;}
.h27{height:66.546667pt;}
.h12{height:66.625000pt;}
.h19{height:70.226667pt;}
.ha{height:71.520000pt;}
.h1b{height:74.546667pt;}
.h1f{height:74.916562pt;}
.h1e{height:75.903750pt;}
.h11{height:77.951250pt;}
.h2{height:84.480000pt;}
.hb{height:85.161563pt;}
.hf{height:86.283750pt;}
.h1a{height:91.826667pt;}
.h9{height:96.046875pt;}
.h8{height:106.932187pt;}
.h15{height:107.826667pt;}
.h6{height:108.341250pt;}
.h25{height:109.778667pt;}
.he{height:118.721250pt;}
.h1c{height:118.898667pt;}
.h1d{height:118.900000pt;}
.h28{height:123.186667pt;}
.h5{height:128.062500pt;}
.h21{height:133.138667pt;}
.h20{height:143.826667pt;}
.h7{height:149.192812pt;}
.h26{height:189.746667pt;}
.h14{height:208.973333pt;}
.h23{height:224.986667pt;}
.h24{height:225.000000pt;}
.h4{height:363.057187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:42.080000pt;}
.w3{width:57.106667pt;}
.w11{width:128.018667pt;}
.wf{width:129.938667pt;}
.wd{width:139.373333pt;}
.w5{width:173.453333pt;}
.w19{width:175.213333pt;}
.wb{width:179.533333pt;}
.w12{width:186.258667pt;}
.w1c{width:205.773333pt;}
.w20{width:226.733333pt;}
.w1e{width:242.893333pt;}
.w9{width:264.653333pt;}
.w17{width:281.186667pt;}
.w15{width:290.306667pt;}
.w14{width:321.298667pt;}
.w16{width:330.418667pt;}
.w7{width:366.293333pt;}
.w8{width:366.306667pt;}
.w1d{width:368.693333pt;}
.w1f{width:397.018667pt;}
.w1a{width:415.893333pt;}
.w1b{width:415.906667pt;}
.w18{width:418.138667pt;}
.w13{width:425.973333pt;}
.w10{width:463.098667pt;}
.wc{width:472.218667pt;}
.wa{width:479.733333pt;}
.we{width:481.658667pt;}
.w4{width:533.213333pt;}
.w2{width:649.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x27{left:7.192000pt;}
.x2e{left:8.333333pt;}
.x5f{left:9.426667pt;}
.x13{left:13.453333pt;}
.x1d{left:26.072000pt;}
.x4{left:28.480000pt;}
.x1{left:47.200000pt;}
.x26{left:85.160000pt;}
.x22{left:86.106667pt;}
.x20{left:87.400000pt;}
.x17{left:89.632000pt;}
.x5{left:94.592000pt;}
.x42{left:104.040000pt;}
.x29{left:109.146667pt;}
.x16{left:113.472000pt;}
.x2a{left:118.432000pt;}
.x34{left:122.746667pt;}
.x1b{left:127.392000pt;}
.x36{left:132.186667pt;}
.x54{left:136.986667pt;}
.x15{left:141.786667pt;}
.x25{left:151.386667pt;}
.x10{left:154.426667pt;}
.xb{left:156.826667pt;}
.x19{left:160.346667pt;}
.x4d{left:168.026667pt;}
.x1a{left:184.186667pt;}
.x14{left:188.026667pt;}
.x8{left:200.026667pt;}
.x5c{left:212.346667pt;}
.xa{left:232.186667pt;}
.x11{left:238.586667pt;}
.x44{left:252.386667pt;}
.x1f{left:271.386667pt;}
.x3f{left:280.866667pt;}
.x9{left:290.146667pt;}
.x4a{left:322.786667pt;}
.x18{left:345.186667pt;}
.x7{left:400.706667pt;}
.x5d{left:413.173333pt;}
.x49{left:415.586667pt;}
.x43{left:425.346667pt;}
.x1e{left:460.906667pt;}
.x5b{left:463.306667pt;}
.x68{left:470.813333pt;}
.x6{left:472.733333pt;}
.x38{left:481.213333pt;}
.x57{left:483.933333pt;}
.x5e{left:491.626667pt;}
.x4f{left:501.066667pt;}
.x50{left:502.013333pt;}
.xe{left:504.253333pt;}
.x61{left:515.773333pt;}
.x55{left:521.373333pt;}
.xd{left:525.693333pt;}
.x46{left:526.813333pt;}
.x4c{left:531.626667pt;}
.xc{left:533.693333pt;}
.x2d{left:545.213333pt;}
.x3c{left:548.266667pt;}
.x28{left:557.386667pt;}
.x21{left:567.146667pt;}
.xf{left:580.426667pt;}
.x59{left:582.813333pt;}
.x67{left:586.013333pt;}
.x52{left:592.093333pt;}
.x2c{left:599.133333pt;}
.x5a{left:605.053333pt;}
.x58{left:611.773333pt;}
.x2f{left:612.733333pt;}
.x53{left:618.213333pt;}
.x56{left:625.733333pt;}
.x63{left:631.813333pt;}
.x66{left:634.853333pt;}
.x4b{left:636.773333pt;}
.x2{left:642.213333pt;}
.x64{left:645.253333pt;}
.x51{left:655.013333pt;}
.x65{left:661.733333pt;}
.x39{left:663.493333pt;}
.x40{left:672.293333pt;}
.x12{left:674.200000pt;}
.x47{left:679.013333pt;}
.x2b{left:680.773333pt;}
.x4e{left:686.213333pt;}
.x69{left:687.653333pt;}
.x3e{left:690.373333pt;}
.x24{left:691.493333pt;}
.x23{left:694.693333pt;}
.x3{left:696.773333pt;}
.x37{left:698.053333pt;}
.x33{left:701.253333pt;}
.x32{left:702.213333pt;}
.x35{left:705.733333pt;}
.x30{left:706.853333pt;}
.x3a{left:710.693333pt;}
.x45{left:716.133333pt;}
.x3d{left:718.693333pt;}
.x31{left:723.173333pt;}
.x1c{left:725.733333pt;}
.x60{left:728.613333pt;}
.x41{left:743.173333pt;}
.x48{left:745.253333pt;}
.x62{left:754.693333pt;}
.x3b{left:760.613333pt;}
}




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