
    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_8459933f1aa51d8635472726.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_22dd10c19b0ca9539ecf0f05.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_a65a9c4c8d468b5717c2d469.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_547c9d5371f73dfd6a38cf87.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_2417c6c483dcfdb1f95377df.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_74dcaad83a2be52df7c7028c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_8b1bdc00550969ef0f5db7b8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.106934;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_4e3416132b7dd651efafc4f3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_d347a5d7bb6567c3482b8862.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.401855;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_317132abdac5acea3ebea49d.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.lsa{letter-spacing:-0.984000px;}
.ls13{letter-spacing:-0.828000px;}
.ls23{letter-spacing:-0.720000px;}
.ls1a{letter-spacing:-0.457800px;}
.ls5{letter-spacing:-0.414600px;}
.ls3{letter-spacing:-0.305400px;}
.ls17{letter-spacing:-0.262200px;}
.ls7{letter-spacing:-0.152400px;}
.ls4{letter-spacing:-0.109200px;}
.ls20{letter-spacing:-0.106800px;}
.ls21{letter-spacing:-0.100200px;}
.ls1c{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.144000px;}
.ls1e{letter-spacing:0.262080px;}
.ls18{letter-spacing:0.262200px;}
.ls2{letter-spacing:0.305280px;}
.ls6{letter-spacing:0.305400px;}
.ls19{letter-spacing:0.354240px;}
.lsf{letter-spacing:0.414720px;}
.lsc{letter-spacing:0.457800px;}
.lsd{letter-spacing:0.457920px;}
.ls12{letter-spacing:0.529920px;}
.ls8{letter-spacing:0.567600px;}
.ls16{letter-spacing:0.612000px;}
.ls15{letter-spacing:0.720000px;}
.ls14{letter-spacing:1.026000px;}
.ls9{letter-spacing:6.065280px;}
.ls1f{letter-spacing:8.945280px;}
.ls1d{letter-spacing:14.705280px;}
.lsb{letter-spacing:15.425280px;}
.lse{letter-spacing:19.025280px;}
.ls10{letter-spacing:19.745280px;}
.ls11{letter-spacing:20.465280px;}
.ls1b{letter-spacing:197.976000px;}
.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;}
}
.ws10{word-spacing:-66.240000px;}
.ws0{word-spacing:-38.684160px;}
.wsc{word-spacing:-19.026720px;}
.ws8{word-spacing:-18.982320px;}
.wsb{word-spacing:-18.944640px;}
.wsa{word-spacing:-18.872520px;}
.ws6{word-spacing:-18.720120px;}
.wsf{word-spacing:-18.676920px;}
.ws2{word-spacing:-18.414720px;}
.ws4{word-spacing:-18.305520px;}
.ws7{word-spacing:-18.262320px;}
.wse{word-spacing:-18.152520px;}
.ws9{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.109320px;}
.ws5{word-spacing:-18.000120px;}
.wsd{word-spacing:-17.586720px;}
.ws14{word-spacing:-16.666560px;}
.ws12{word-spacing:-16.613280px;}
.ws13{word-spacing:-16.513080px;}
.ws11{word-spacing:-16.506480px;}
.ws1{word-spacing:0.000000px;}
._16{margin-left:-11.940480px;}
._4{margin-left:-2.185920px;}
._0{margin-left:-1.059840px;}
._1{width:1.215840px;}
._7{width:2.692320px;}
._9{width:4.458240px;}
._8{width:5.762880px;}
._a{width:7.469760px;}
._b{width:8.695200px;}
._e{width:10.232640px;}
._2{width:11.519520px;}
._13{width:12.810720px;}
._d{width:13.843680px;}
._c{width:14.904000px;}
._14{width:16.144800px;}
._1a{width:17.257920px;}
._6{width:20.384160px;}
._5{width:21.599760px;}
._12{width:23.184000px;}
._1c{width:24.262320px;}
._1b{width:25.646400px;}
._18{width:26.898240px;}
._19{width:28.019520px;}
._1e{width:29.718240px;}
._21{width:30.957600px;}
._22{width:32.457600px;}
._26{width:37.359360px;}
._23{width:38.485440px;}
._15{width:40.992960px;}
._10{width:43.387200px;}
._11{width:44.852160px;}
._27{width:46.492800px;}
._3{width:47.496960px;}
._24{width:50.739840px;}
._25{width:52.197120px;}
._1d{width:60.013440px;}
._f{width:96.455520px;}
._2a{width:105.815280px;}
._20{width:112.613520px;}
._28{width:121.671360px;}
._29{width:142.535520px;}
._17{width:193.961280px;}
._1f{width:197.561280px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs2{font-size:41.760000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.yfe{bottom:-12.855000px;}
.y0{bottom:0.000000px;}
.y1e{bottom:4.500000px;}
.ya3{bottom:5.145000px;}
.ya6{bottom:5.505000px;}
.y19b{bottom:5.752500px;}
.y1a9{bottom:5.760000px;}
.y177{bottom:5.940000px;}
.yfd{bottom:6.945000px;}
.y102{bottom:12.135000px;}
.yf9{bottom:12.165000px;}
.y100{bottom:12.495000px;}
.y9e{bottom:12.675000px;}
.ya0{bottom:12.705000px;}
.ya7{bottom:13.065000px;}
.y124{bottom:13.140000px;}
.y12b{bottom:13.170000px;}
.y126{bottom:13.320000px;}
.y12a{bottom:13.350000px;}
.y9c{bottom:13.680000px;}
.y115{bottom:14.580000px;}
.yc4{bottom:17.460000px;}
.yc1{bottom:18.000000px;}
.ybd{bottom:18.180000px;}
.y117{bottom:18.360000px;}
.y11c{bottom:18.900000px;}
.y11a{bottom:19.080000px;}
.y119{bottom:19.260000px;}
.yc8{bottom:19.980000px;}
.ybf{bottom:20.340000px;}
.y19a{bottom:25.552500px;}
.y1a8{bottom:25.605000px;}
.y176{bottom:25.740000px;}
.ya2{bottom:26.385000px;}
.ya5{bottom:26.745000px;}
.y9b{bottom:35.100000px;}
.y169{bottom:41.580000px;}
.y166{bottom:41.760000px;}
.yfb{bottom:44.925000px;}
.y199{bottom:45.346500px;}
.y1a7{bottom:45.405000px;}
.y175{bottom:45.540000px;}
.yc6{bottom:48.465000px;}
.y1d{bottom:52.920000px;}
.y9a{bottom:55.800000px;}
.y5a{bottom:57.420000px;}
.y1c{bottom:57.600000px;}
.y198{bottom:65.146500px;}
.y1a6{bottom:65.205000px;}
.y181{bottom:65.340000px;}
.y1b6{bottom:65.370000px;}
.y174{bottom:65.385000px;}
.y168{bottom:74.520000px;}
.yc7{bottom:76.905000px;}
.y197{bottom:85.126500px;}
.y180{bottom:85.140000px;}
.y1b5{bottom:85.170000px;}
.y1a5{bottom:85.185000px;}
.y19f{bottom:85.320000px;}
.y196{bottom:104.926500px;}
.y1a4{bottom:104.985000px;}
.y17f{bottom:105.120000px;}
.y1b4{bottom:105.150000px;}
.y19e{bottom:105.300000px;}
.y1c6{bottom:115.056000px;}
.y15b{bottom:115.236000px;}
.y133{bottom:115.596000px;}
.y1b{bottom:116.640000px;}
.y36{bottom:116.676000px;}
.y1e2{bottom:117.576000px;}
.y215{bottom:120.816000px;}
.y182{bottom:123.883500px;}
.y7e{bottom:124.596000px;}
.y195{bottom:124.726500px;}
.ybb{bottom:124.776000px;}
.y1a3{bottom:124.785000px;}
.y17e{bottom:124.920000px;}
.y19d{bottom:124.950000px;}
.y1a2{bottom:124.965000px;}
.ye0{bottom:127.656000px;}
.y85{bottom:133.956000px;}
.y112{bottom:134.136000px;}
.y1c2{bottom:136.116000px;}
.yf7{bottom:137.556000px;}
.y1c5{bottom:143.496000px;}
.y15a{bottom:143.676000px;}
.y132{bottom:144.036000px;}
.y194{bottom:144.526500px;}
.y1a1{bottom:144.585000px;}
.y17d{bottom:144.720000px;}
.y1b3{bottom:144.750000px;}
.y173{bottom:144.756000px;}
.y153{bottom:147.456000px;}
.y214{bottom:149.436000px;}
.y7d{bottom:153.030000px;}
.y1a{bottom:154.650000px;}
.y1e1{bottom:155.370000px;}
.y1fe{bottom:158.790000px;}
.y98{bottom:162.570000px;}
.y193{bottom:164.326500px;}
.y17c{bottom:164.520000px;}
.y1b2{bottom:164.550000px;}
.y17a{bottom:164.700000px;}
.ydf{bottom:165.630000px;}
.yf6{bottom:165.990000px;}
.y84{bottom:171.930000px;}
.y131{bottom:172.470000px;}
.y172{bottom:173.190000px;}
.y1c1{bottom:174.090000px;}
.y152{bottom:175.890000px;}
.y7c{bottom:181.470000px;}
.y192{bottom:184.306500px;}
.y17b{bottom:184.320000px;}
.y1b1{bottom:184.350000px;}
.y179{bottom:184.500000px;}
.y213{bottom:186.870000px;}
.y1fd{bottom:187.230000px;}
.y97{bottom:191.010000px;}
.y35{bottom:192.630000px;}
.y1e0{bottom:193.350000px;}
.y58{bottom:194.250000px;}
.yf5{bottom:194.430000px;}
.y159{bottom:200.370000px;}
.y130{bottom:200.910000px;}
.y171{bottom:201.630000px;}
.yde{bottom:203.610000px;}
.y191{bottom:204.106500px;}
.y151{bottom:204.330000px;}
.y19{bottom:209.130000px;}
.y7b{bottom:209.910000px;}
.y1c0{bottom:212.070000px;}
.y212{bottom:215.310000px;}
.y96{bottom:219.450000px;}
.y57{bottom:222.870000px;}
.y190{bottom:223.951500px;}
.y1b0{bottom:224.130000px;}
.y1fc{bottom:224.670000px;}
.y158{bottom:228.810000px;}
.y12f{bottom:229.350000px;}
.y170{bottom:230.070000px;}
.y34{bottom:230.610000px;}
.y1df{bottom:231.330000px;}
.ydd{bottom:232.050000px;}
.y150{bottom:232.770000px;}
.y7a{bottom:238.350000px;}
.y18f{bottom:243.751500px;}
.y1af{bottom:243.930000px;}
.y18{bottom:247.110000px;}
.y83{bottom:247.890000px;}
.y1bf{bottom:250.050000px;}
.yf4{bottom:251.310000px;}
.y56{bottom:251.490000px;}
.y211{bottom:252.750000px;}
.y1fb{bottom:253.290000px;}
.y157{bottom:257.430000px;}
.y16f{bottom:258.510000px;}
.ydc{bottom:260.490000px;}
.y14f{bottom:261.210000px;}
.y18e{bottom:263.551500px;}
.y1ae{bottom:263.730000px;}
.y79{bottom:266.790000px;}
.y12e{bottom:267.510000px;}
.y33{bottom:268.410000px;}
.y1de{bottom:269.310000px;}
.y95{bottom:276.330000px;}
.y55{bottom:279.750000px;}
.y210{bottom:281.190000px;}
.y1ad{bottom:283.530000px;}
.y18d{bottom:283.531500px;}
.y1ac{bottom:283.710000px;}
.y17{bottom:284.910000px;}
.y82{bottom:285.870000px;}
.y12d{bottom:286.050000px;}
.y16e{bottom:286.950000px;}
.y1be{bottom:288.030000px;}
.ydb{bottom:288.930000px;}
.y14e{bottom:289.650000px;}
.y1fa{bottom:290.730000px;}
.y78{bottom:295.230000px;}
.y18c{bottom:303.331500px;}
.y12c{bottom:303.510000px;}
.y1ab{bottom:303.690000px;}
.y94{bottom:304.770000px;}
.y32{bottom:306.390000px;}
.y1dd{bottom:307.290000px;}
.y54{bottom:308.190000px;}
.y156{bottom:314.310000px;}
.y16d{bottom:315.390000px;}
.yda{bottom:317.370000px;}
.y14d{bottom:318.090000px;}
.y20f{bottom:318.630000px;}
.y1f9{bottom:319.170000px;}
.y129{bottom:319.545000px;}
.y16{bottom:322.890000px;}
.y18b{bottom:323.131500px;}
.y77{bottom:323.670000px;}
.y1bd{bottom:326.010000px;}
.y111{bottom:333.255000px;}
.y53{bottom:336.675000px;}
.y93{bottom:342.795000px;}
.y18a{bottom:342.931500px;}
.y155{bottom:342.975000px;}
.y31{bottom:344.415000px;}
.y1dc{bottom:345.135000px;}
.yd9{bottom:345.855000px;}
.y14c{bottom:346.755000px;}
.y20e{bottom:347.115000px;}
.y1f8{bottom:347.655000px;}
.y128{bottom:348.735000px;}
.y76{bottom:352.335000px;}
.y16c{bottom:353.595000px;}
.y15{bottom:360.870000px;}
.y81{bottom:361.695000px;}
.y189{bottom:362.731500px;}
.y1bc{bottom:363.855000px;}
.y52{bottom:365.115000px;}
.y16b{bottom:369.435000px;}
.y1c4{bottom:371.235000px;}
.yd8{bottom:374.295000px;}
.y14b{bottom:375.195000px;}
.y20d{bottom:375.555000px;}
.y127{bottom:378.075000px;}
.y75{bottom:380.775000px;}
.y92{bottom:380.955000px;}
.y30{bottom:382.395000px;}
.y188{bottom:382.711500px;}
.y1db{bottom:383.115000px;}
.y1f7{bottom:385.095000px;}
.y110{bottom:390.135000px;}
.y51{bottom:393.555000px;}
.yf3{bottom:393.735000px;}
.y14{bottom:398.895000px;}
.y80{bottom:399.675000px;}
.y1bb{bottom:401.835000px;}
.y187{bottom:402.511500px;}
.yd7{bottom:402.735000px;}
.y16a{bottom:403.275000px;}
.y14a{bottom:403.635000px;}
.y125{bottom:407.235000px;}
.y99{bottom:408.855000px;}
.y74{bottom:409.215000px;}
.y20c{bottom:412.995000px;}
.y1f6{bottom:413.535000px;}
.y10f{bottom:418.755000px;}
.y91{bottom:418.935000px;}
.y2f{bottom:420.375000px;}
.y1da{bottom:421.095000px;}
.y50{bottom:421.995000px;}
.y186{bottom:422.311500px;}
.yf2{bottom:422.355000px;}
.y1c3{bottom:428.115000px;}
.yd6{bottom:431.355000px;}
.y123{bottom:436.395000px;}
.y13{bottom:436.875000px;}
.y167{bottom:436.935000px;}
.y73{bottom:437.655000px;}
.y1ba{bottom:439.815000px;}
.y149{bottom:441.615000px;}
.y1f5{bottom:441.975000px;}
.y185{bottom:442.111500px;}
.y184{bottom:442.291500px;}
.yf1{bottom:444.855000px;}
.y9d{bottom:445.860000px;}
.y10e{bottom:447.195000px;}
.y4f{bottom:450.435000px;}
.y90{bottom:456.555000px;}
.y2e{bottom:458.175000px;}
.y1d9{bottom:459.075000px;}
.yd5{bottom:459.795000px;}
.y183{bottom:461.911500px;}
.y122{bottom:465.735000px;}
.y72{bottom:466.095000px;}
.yf0{bottom:466.275000px;}
.y12{bottom:474.675000px;}
.y10d{bottom:475.635000px;}
.y1b9{bottom:477.795000px;}
.y4e{bottom:478.875000px;}
.y20b{bottom:479.055000px;}
.y148{bottom:479.415000px;}
.y101{bottom:479.520000px;}
.y162{bottom:484.995000px;}
.yd4{bottom:488.235000px;}
.y71{bottom:494.535000px;}
.y8f{bottom:494.715000px;}
.y2d{bottom:496.155000px;}
.y1d8{bottom:497.055000px;}
.y1b8{bottom:498.855000px;}
.y121{bottom:500.655000px;}
.y10c{bottom:504.075000px;}
.yef{bottom:504.255000px;}
.y4d{bottom:507.495000px;}
.y1f4{bottom:507.855000px;}
.y147{bottom:508.035000px;}
.y11{bottom:512.655000px;}
.y161{bottom:513.615000px;}
.yd3{bottom:516.675000px;}
.y1b7{bottom:518.655000px;}
.y70{bottom:522.975000px;}
.y165{bottom:531.975000px;}
.y10b{bottom:532.515000px;}
.y8e{bottom:532.695000px;}
.y2c{bottom:534.135000px;}
.y1d7{bottom:534.855000px;}
.y120{bottom:535.755000px;}
.y4c{bottom:535.935000px;}
.y146{bottom:536.475000px;}
.y1aa{bottom:537.735000px;}
.y160{bottom:542.055000px;}
.yee{bottom:542.235000px;}
.yd2{bottom:545.115000px;}
.y1f3{bottom:545.475000px;}
.y10{bottom:550.635000px;}
.y6f{bottom:551.415000px;}
.y10a{bottom:560.955000px;}
.y4b{bottom:564.375000px;}
.y145{bottom:564.915000px;}
.yff{bottom:569.520000px;}
.y11f{bottom:569.955000px;}
.y15f{bottom:570.495000px;}
.y8d{bottom:570.675000px;}
.y2b{bottom:572.115000px;}
.y1d6{bottom:572.835000px;}
.yd1{bottom:573.555000px;}
.y1f2{bottom:573.915000px;}
.y6e{bottom:579.855000px;}
.yed{bottom:580.035000px;}
.yf{bottom:588.615000px;}
.y109{bottom:589.395000px;}
.y4a{bottom:592.815000px;}
.y144{bottom:593.355000px;}
.y164{bottom:594.255000px;}
.y15e{bottom:598.965000px;}
.y178{bottom:600.585000px;}
.yd0{bottom:602.025000px;}
.y11e{bottom:604.905000px;}
.y6d{bottom:608.505000px;}
.y8c{bottom:608.685000px;}
.y2a{bottom:610.125000px;}
.y1d5{bottom:610.845000px;}
.y1f1{bottom:611.385000px;}
.yba{bottom:617.865000px;}
.yec{bottom:618.045000px;}
.y49{bottom:621.465000px;}
.y143{bottom:621.825000px;}
.ye{bottom:626.775000px;}
.y15d{bottom:627.405000px;}
.y163{bottom:627.945000px;}
.y20a{bottom:630.285000px;}
.ycf{bottom:630.465000px;}
.y6c{bottom:636.945000px;}
.y1f0{bottom:639.825000px;}
.y11d{bottom:640.005000px;}
.y108{bottom:646.305000px;}
.y8b{bottom:646.485000px;}
.yfa{bottom:647.280000px;}
.y29{bottom:648.105000px;}
.y1d4{bottom:648.825000px;}
.y48{bottom:649.905000px;}
.y142{bottom:650.265000px;}
.yb9{bottom:655.845000px;}
.y209{bottom:658.725000px;}
.yce{bottom:658.905000px;}
.yd{bottom:664.605000px;}
.y6b{bottom:665.385000px;}
.ya1{bottom:667.080000px;}
.ya4{bottom:667.800000px;}
.y9f{bottom:668.160000px;}
.yfc{bottom:673.125000px;}
.y11b{bottom:674.205000px;}
.y107{bottom:674.925000px;}
.y1ef{bottom:677.265000px;}
.y47{bottom:678.165000px;}
.y141{bottom:678.705000px;}
.yb8{bottom:684.285000px;}
.y8a{bottom:684.465000px;}
.y28{bottom:685.905000px;}
.y1d3{bottom:686.805000px;}
.y208{bottom:687.165000px;}
.ycd{bottom:687.525000px;}
.y6a{bottom:693.825000px;}
.yc{bottom:702.405000px;}
.y106{bottom:703.545000px;}
.y1ee{bottom:705.705000px;}
.y46{bottom:706.605000px;}
.y140{bottom:707.145000px;}
.y118{bottom:709.125000px;}
.yb7{bottom:712.725000px;}
.y69{bottom:722.265000px;}
.y89{bottom:722.445000px;}
.y27{bottom:723.885000px;}
.y1d2{bottom:724.785000px;}
.ycc{bottom:725.325000px;}
.y105{bottom:731.985000px;}
.y1ed{bottom:734.145000px;}
.y45{bottom:735.225000px;}
.y13f{bottom:735.585000px;}
.yb{bottom:740.385000px;}
.yb6{bottom:741.165000px;}
.y116{bottom:744.225000px;}
.y68{bottom:750.705000px;}
.y88{bottom:750.885000px;}
.y207{bottom:753.225000px;}
.y104{bottom:760.245000px;}
.y26{bottom:761.865000px;}
.y1d1{bottom:762.585000px;}
.ycb{bottom:763.305000px;}
.y44{bottom:763.665000px;}
.yf8{bottom:764.100000px;}
.y13e{bottom:764.385000px;}
.yb5{bottom:769.785000px;}
.y1ec{bottom:771.585000px;}
.ya{bottom:778.365000px;}
.y114{bottom:778.425000px;}
.y67{bottom:779.145000px;}
.y206{bottom:781.665000px;}
.yca{bottom:784.365000px;}
.y103{bottom:788.685000px;}
.yeb{bottom:788.865000px;}
.y43{bottom:792.105000px;}
.yb4{bottom:798.225000px;}
.y25{bottom:799.845000px;}
.y1eb{bottom:800.025000px;}
.y1d0{bottom:800.565000px;}
.y13d{bottom:802.185000px;}
.yc9{bottom:804.345000px;}
.y66{bottom:807.585000px;}
.y9{bottom:816.345000px;}
.yea{bottom:817.125000px;}
.yc5{bottom:819.105000px;}
.y42{bottom:820.545000px;}
.yb3{bottom:826.665000px;}
.y1ea{bottom:828.645000px;}
.y65{bottom:836.025000px;}
.y113{bottom:836.205000px;}
.y24{bottom:837.825000px;}
.y1cf{bottom:838.545000px;}
.y13c{bottom:839.985000px;}
.ye9{bottom:845.565000px;}
.y15c{bottom:845.745000px;}
.y41{bottom:848.985000px;}
.y8{bottom:854.325000px;}
.yb2{bottom:855.105000px;}
.y1a0{bottom:856.005000px;}
.y205{bottom:856.545000px;}
.y64{bottom:864.690000px;}
.y1e9{bottom:866.130000px;}
.y13b{bottom:869.190000px;}
.ye8{bottom:874.050000px;}
.y23{bottom:875.670000px;}
.y1ce{bottom:876.030000px;}
.y40{bottom:877.470000px;}
.yb1{bottom:883.590000px;}
.y204{bottom:885.030000px;}
.y7{bottom:892.125000px;}
.y63{bottom:893.130000px;}
.y1e8{bottom:894.570000px;}
.y13a{bottom:898.890000px;}
.ye7{bottom:902.490000px;}
.y154{bottom:902.670000px;}
.y1cd{bottom:904.470000px;}
.y3f{bottom:905.910000px;}
.yb0{bottom:912.030000px;}
.y203{bottom:913.470000px;}
.y22{bottom:913.650000px;}
.yc3{bottom:919.050000px;}
.y62{bottom:921.570000px;}
.y139{bottom:927.330000px;}
.ye6{bottom:931.110000px;}
.y1e7{bottom:932.010000px;}
.y3e{bottom:934.350000px;}
.yaf{bottom:940.470000px;}
.y1cc{bottom:941.910000px;}
.y61{bottom:950.010000px;}
.y202{bottom:950.910000px;}
.y21{bottom:951.630000px;}
.y6{bottom:951.810000px;}
.y138{bottom:956.310000px;}
.yc2{bottom:956.670000px;}
.ye5{bottom:959.550000px;}
.y3d{bottom:962.790000px;}
.yae{bottom:968.910000px;}
.y1e6{bottom:969.450000px;}
.y1cb{bottom:970.350000px;}
.y60{bottom:978.450000px;}
.y201{bottom:979.350000px;}
.y137{bottom:986.010000px;}
.ye4{bottom:987.990000px;}
.y5{bottom:989.610000px;}
.y3c{bottom:991.230000px;}
.yc0{bottom:995.730000px;}
.yad{bottom:997.350000px;}
.y1e5{bottom:997.890000px;}
.y218{bottom:998.970000px;}
.y5f{bottom:1006.890000px;}
.y1ca{bottom:1007.970000px;}
.y136{bottom:1014.630000px;}
.y19c{bottom:1015.350000px;}
.ye3{bottom:1016.430000px;}
.y200{bottom:1016.970000px;}
.y3b{bottom:1019.850000px;}
.yac{bottom:1025.970000px;}
.y1e4{bottom:1026.330000px;}
.y4{bottom:1027.590000px;}
.ybe{bottom:1034.610000px;}
.y5e{bottom:1035.330000px;}
.y87{bottom:1035.510000px;}
.y1c9{bottom:1036.410000px;}
.y217{bottom:1036.590000px;}
.y135{bottom:1043.070000px;}
.ye2{bottom:1044.870000px;}
.y1ff{bottom:1045.410000px;}
.y3a{bottom:1048.290000px;}
.yab{bottom:1054.410000px;}
.y5d{bottom:1063.770000px;}
.y1e3{bottom:1063.950000px;}
.y1c8{bottom:1064.850000px;}
.y3{bottom:1065.570000px;}
.y134{bottom:1072.050000px;}
.ye1{bottom:1073.310000px;}
.y86{bottom:1073.490000px;}
.y216{bottom:1074.030000px;}
.y39{bottom:1076.730000px;}
.ybc{bottom:1078.170000px;}
.yaa{bottom:1082.850000px;}
.y38{bottom:1100.670000px;}
.y5c{bottom:1101.750000px;}
.y7f{bottom:1101.930000px;}
.y1c7{bottom:1102.470000px;}
.y2{bottom:1103.370000px;}
.y20{bottom:1103.550000px;}
.ya9{bottom:1111.290000px;}
.y37{bottom:1118.850000px;}
.ya8{bottom:1139.760000px;}
.y5b{bottom:1139.940000px;}
.y1{bottom:1141.380000px;}
.y1f{bottom:1141.560000px;}
.y59{bottom:1193.760000px;}
.h4{height:20.736000px;}
.h11{height:27.720000px;}
.h13{height:27.900000px;}
.h1c{height:28.425000px;}
.h1e{height:28.461000px;}
.h1d{height:28.605000px;}
.h7{height:29.700000px;}
.ha{height:29.880000px;}
.h23{height:32.925000px;}
.h1f{height:32.940000px;}
.h20{height:32.970000px;}
.h24{height:33.105000px;}
.h19{height:33.465000px;}
.h16{height:33.480000px;}
.h1b{height:34.185000px;}
.h15{height:34.200000px;}
.h18{height:34.230000px;}
.h1a{height:34.365000px;}
.h17{height:34.380000px;}
.hd{height:36.885000px;}
.h10{height:37.546875px;}
.hb{height:38.145000px;}
.h8{height:42.660000px;}
.hc{height:42.825000px;}
.h9{height:43.020000px;}
.h5{height:43.554375px;}
.h12{height:60.300000px;}
.h21{height:61.545000px;}
.hf{height:62.327813px;}
.h2{height:69.086250px;}
.h3{height:70.664062px;}
.h6{height:71.985000px;}
.h2b{height:73.794375px;}
.h14{height:75.093750px;}
.h25{height:79.222500px;}
.h22{height:94.305000px;}
.he{height:99.202500px;}
.h28{height:138.990000px;}
.h29{height:158.595000px;}
.h26{height:198.360000px;}
.h2a{height:317.550000px;}
.h27{height:475.987500px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:8.985000px;}
.w2{width:10.065000px;}
.w3{width:15.105000px;}
.w11{width:17.985000px;}
.w14{width:103.129500px;}
.w15{width:105.501000px;}
.w17{width:105.516000px;}
.w5{width:108.165000px;}
.w6{width:108.180000px;}
.w16{width:116.100000px;}
.w7{width:121.320000px;}
.w18{width:126.741000px;}
.w19{width:148.125000px;}
.we{width:202.500000px;}
.wf{width:208.095000px;}
.w10{width:208.335000px;}
.wd{width:243.000000px;}
.wc{width:256.500000px;}
.w12{width:337.159500px;}
.w13{width:337.200000px;}
.wb{width:337.500000px;}
.w8{width:339.859500px;}
.w9{width:339.915000px;}
.wa{width:418.320000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x1e{left:7.729500px;}
.x18{left:10.830000px;}
.x1a{left:15.195000px;}
.x14{left:18.165000px;}
.x15{left:20.325000px;}
.x1b{left:26.745000px;}
.x28{left:29.685000px;}
.x16{left:34.545000px;}
.x26{left:37.605000px;}
.x27{left:45.750000px;}
.x1d{left:100.306500px;}
.x1{left:106.416000px;}
.x11{left:108.036000px;}
.x21{left:110.916000px;}
.xe{left:170.310000px;}
.x6{left:177.690000px;}
.x17{left:181.260000px;}
.xa{left:193.350000px;}
.x2{left:195.150000px;}
.x2b{left:204.165000px;}
.x3{left:211.530000px;}
.x5{left:228.990000px;}
.x25{left:237.825000px;}
.x20{left:262.080000px;}
.x12{left:286.455000px;}
.x9{left:301.035000px;}
.xb{left:302.835000px;}
.x2c{left:310.575000px;}
.x8{left:319.395000px;}
.x19{left:329.940000px;}
.x7{left:362.055000px;}
.x24{left:370.080000px;}
.xc{left:377.535000px;}
.x2d{left:427.395000px;}
.x2a{left:438.195000px;}
.x1f{left:440.895000px;}
.x4{left:446.295000px;}
.xf{left:448.275000px;}
.x13{left:478.560000px;}
.x22{left:532.080000px;}
.x2e{left:533.820000px;}
.x23{left:542.985000px;}
.x1c{left:627.120000px;}
.x2f{left:661.290000px;}
.x29{left:766.590000px;}
.x10{left:771.270000px;}
.xd{left:776.310000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.lsa{letter-spacing:-0.874667pt;}
.ls13{letter-spacing:-0.736000pt;}
.ls23{letter-spacing:-0.640000pt;}
.ls1a{letter-spacing:-0.406933pt;}
.ls5{letter-spacing:-0.368533pt;}
.ls3{letter-spacing:-0.271467pt;}
.ls17{letter-spacing:-0.233067pt;}
.ls7{letter-spacing:-0.135467pt;}
.ls4{letter-spacing:-0.097067pt;}
.ls20{letter-spacing:-0.094933pt;}
.ls21{letter-spacing:-0.089067pt;}
.ls1c{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.128000pt;}
.ls1e{letter-spacing:0.232960pt;}
.ls18{letter-spacing:0.233067pt;}
.ls2{letter-spacing:0.271360pt;}
.ls6{letter-spacing:0.271467pt;}
.ls19{letter-spacing:0.314880pt;}
.lsf{letter-spacing:0.368640pt;}
.lsc{letter-spacing:0.406933pt;}
.lsd{letter-spacing:0.407040pt;}
.ls12{letter-spacing:0.471040pt;}
.ls8{letter-spacing:0.504533pt;}
.ls16{letter-spacing:0.544000pt;}
.ls15{letter-spacing:0.640000pt;}
.ls14{letter-spacing:0.912000pt;}
.ls9{letter-spacing:5.391360pt;}
.ls1f{letter-spacing:7.951360pt;}
.ls1d{letter-spacing:13.071360pt;}
.lsb{letter-spacing:13.711360pt;}
.lse{letter-spacing:16.911360pt;}
.ls10{letter-spacing:17.551360pt;}
.ls11{letter-spacing:18.191360pt;}
.ls1b{letter-spacing:175.978667pt;}
.ws10{word-spacing:-58.880000pt;}
.ws0{word-spacing:-34.385920pt;}
.wsc{word-spacing:-16.912640pt;}
.ws8{word-spacing:-16.873173pt;}
.wsb{word-spacing:-16.839680pt;}
.wsa{word-spacing:-16.775573pt;}
.ws6{word-spacing:-16.640107pt;}
.wsf{word-spacing:-16.601707pt;}
.ws2{word-spacing:-16.368640pt;}
.ws4{word-spacing:-16.271573pt;}
.ws7{word-spacing:-16.233173pt;}
.wse{word-spacing:-16.135573pt;}
.ws9{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.097173pt;}
.ws5{word-spacing:-16.000107pt;}
.wsd{word-spacing:-15.632640pt;}
.ws14{word-spacing:-14.814720pt;}
.ws12{word-spacing:-14.767360pt;}
.ws13{word-spacing:-14.678293pt;}
.ws11{word-spacing:-14.672427pt;}
.ws1{word-spacing:0.000000pt;}
._16{margin-left:-10.613760pt;}
._4{margin-left:-1.943040pt;}
._0{margin-left:-0.942080pt;}
._1{width:1.080747pt;}
._7{width:2.393173pt;}
._9{width:3.962880pt;}
._8{width:5.122560pt;}
._a{width:6.639787pt;}
._b{width:7.729067pt;}
._e{width:9.095680pt;}
._2{width:10.239573pt;}
._13{width:11.387307pt;}
._d{width:12.305493pt;}
._c{width:13.248000pt;}
._14{width:14.350933pt;}
._1a{width:15.340373pt;}
._6{width:18.119253pt;}
._5{width:19.199787pt;}
._12{width:20.608000pt;}
._1c{width:21.566507pt;}
._1b{width:22.796800pt;}
._18{width:23.909547pt;}
._19{width:24.906240pt;}
._1e{width:26.416213pt;}
._21{width:27.517867pt;}
._22{width:28.851200pt;}
._26{width:33.208320pt;}
._23{width:34.209280pt;}
._15{width:36.438187pt;}
._10{width:38.566400pt;}
._11{width:39.868587pt;}
._27{width:41.326933pt;}
._3{width:42.219520pt;}
._24{width:45.102080pt;}
._25{width:46.397440pt;}
._1d{width:53.345280pt;}
._f{width:85.738240pt;}
._2a{width:94.058027pt;}
._20{width:100.100907pt;}
._28{width:108.152320pt;}
._29{width:126.698240pt;}
._17{width:172.410027pt;}
._1f{width:175.610027pt;}
.fs4{font-size:32.000000pt;}
.fs2{font-size:37.120000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.yfe{bottom:-11.426667pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:4.000000pt;}
.ya3{bottom:4.573333pt;}
.ya6{bottom:4.893333pt;}
.y19b{bottom:5.113333pt;}
.y1a9{bottom:5.120000pt;}
.y177{bottom:5.280000pt;}
.yfd{bottom:6.173333pt;}
.y102{bottom:10.786667pt;}
.yf9{bottom:10.813333pt;}
.y100{bottom:11.106667pt;}
.y9e{bottom:11.266667pt;}
.ya0{bottom:11.293333pt;}
.ya7{bottom:11.613333pt;}
.y124{bottom:11.680000pt;}
.y12b{bottom:11.706667pt;}
.y126{bottom:11.840000pt;}
.y12a{bottom:11.866667pt;}
.y9c{bottom:12.160000pt;}
.y115{bottom:12.960000pt;}
.yc4{bottom:15.520000pt;}
.yc1{bottom:16.000000pt;}
.ybd{bottom:16.160000pt;}
.y117{bottom:16.320000pt;}
.y11c{bottom:16.800000pt;}
.y11a{bottom:16.960000pt;}
.y119{bottom:17.120000pt;}
.yc8{bottom:17.760000pt;}
.ybf{bottom:18.080000pt;}
.y19a{bottom:22.713333pt;}
.y1a8{bottom:22.760000pt;}
.y176{bottom:22.880000pt;}
.ya2{bottom:23.453333pt;}
.ya5{bottom:23.773333pt;}
.y9b{bottom:31.200000pt;}
.y169{bottom:36.960000pt;}
.y166{bottom:37.120000pt;}
.yfb{bottom:39.933333pt;}
.y199{bottom:40.308000pt;}
.y1a7{bottom:40.360000pt;}
.y175{bottom:40.480000pt;}
.yc6{bottom:43.080000pt;}
.y1d{bottom:47.040000pt;}
.y9a{bottom:49.600000pt;}
.y5a{bottom:51.040000pt;}
.y1c{bottom:51.200000pt;}
.y198{bottom:57.908000pt;}
.y1a6{bottom:57.960000pt;}
.y181{bottom:58.080000pt;}
.y1b6{bottom:58.106667pt;}
.y174{bottom:58.120000pt;}
.y168{bottom:66.240000pt;}
.yc7{bottom:68.360000pt;}
.y197{bottom:75.668000pt;}
.y180{bottom:75.680000pt;}
.y1b5{bottom:75.706667pt;}
.y1a5{bottom:75.720000pt;}
.y19f{bottom:75.840000pt;}
.y196{bottom:93.268000pt;}
.y1a4{bottom:93.320000pt;}
.y17f{bottom:93.440000pt;}
.y1b4{bottom:93.466667pt;}
.y19e{bottom:93.600000pt;}
.y1c6{bottom:102.272000pt;}
.y15b{bottom:102.432000pt;}
.y133{bottom:102.752000pt;}
.y1b{bottom:103.680000pt;}
.y36{bottom:103.712000pt;}
.y1e2{bottom:104.512000pt;}
.y215{bottom:107.392000pt;}
.y182{bottom:110.118667pt;}
.y7e{bottom:110.752000pt;}
.y195{bottom:110.868000pt;}
.ybb{bottom:110.912000pt;}
.y1a3{bottom:110.920000pt;}
.y17e{bottom:111.040000pt;}
.y19d{bottom:111.066667pt;}
.y1a2{bottom:111.080000pt;}
.ye0{bottom:113.472000pt;}
.y85{bottom:119.072000pt;}
.y112{bottom:119.232000pt;}
.y1c2{bottom:120.992000pt;}
.yf7{bottom:122.272000pt;}
.y1c5{bottom:127.552000pt;}
.y15a{bottom:127.712000pt;}
.y132{bottom:128.032000pt;}
.y194{bottom:128.468000pt;}
.y1a1{bottom:128.520000pt;}
.y17d{bottom:128.640000pt;}
.y1b3{bottom:128.666667pt;}
.y173{bottom:128.672000pt;}
.y153{bottom:131.072000pt;}
.y214{bottom:132.832000pt;}
.y7d{bottom:136.026667pt;}
.y1a{bottom:137.466667pt;}
.y1e1{bottom:138.106667pt;}
.y1fe{bottom:141.146667pt;}
.y98{bottom:144.506667pt;}
.y193{bottom:146.068000pt;}
.y17c{bottom:146.240000pt;}
.y1b2{bottom:146.266667pt;}
.y17a{bottom:146.400000pt;}
.ydf{bottom:147.226667pt;}
.yf6{bottom:147.546667pt;}
.y84{bottom:152.826667pt;}
.y131{bottom:153.306667pt;}
.y172{bottom:153.946667pt;}
.y1c1{bottom:154.746667pt;}
.y152{bottom:156.346667pt;}
.y7c{bottom:161.306667pt;}
.y192{bottom:163.828000pt;}
.y17b{bottom:163.840000pt;}
.y1b1{bottom:163.866667pt;}
.y179{bottom:164.000000pt;}
.y213{bottom:166.106667pt;}
.y1fd{bottom:166.426667pt;}
.y97{bottom:169.786667pt;}
.y35{bottom:171.226667pt;}
.y1e0{bottom:171.866667pt;}
.y58{bottom:172.666667pt;}
.yf5{bottom:172.826667pt;}
.y159{bottom:178.106667pt;}
.y130{bottom:178.586667pt;}
.y171{bottom:179.226667pt;}
.yde{bottom:180.986667pt;}
.y191{bottom:181.428000pt;}
.y151{bottom:181.626667pt;}
.y19{bottom:185.893333pt;}
.y7b{bottom:186.586667pt;}
.y1c0{bottom:188.506667pt;}
.y212{bottom:191.386667pt;}
.y96{bottom:195.066667pt;}
.y57{bottom:198.106667pt;}
.y190{bottom:199.068000pt;}
.y1b0{bottom:199.226667pt;}
.y1fc{bottom:199.706667pt;}
.y158{bottom:203.386667pt;}
.y12f{bottom:203.866667pt;}
.y170{bottom:204.506667pt;}
.y34{bottom:204.986667pt;}
.y1df{bottom:205.626667pt;}
.ydd{bottom:206.266667pt;}
.y150{bottom:206.906667pt;}
.y7a{bottom:211.866667pt;}
.y18f{bottom:216.668000pt;}
.y1af{bottom:216.826667pt;}
.y18{bottom:219.653333pt;}
.y83{bottom:220.346667pt;}
.y1bf{bottom:222.266667pt;}
.yf4{bottom:223.386667pt;}
.y56{bottom:223.546667pt;}
.y211{bottom:224.666667pt;}
.y1fb{bottom:225.146667pt;}
.y157{bottom:228.826667pt;}
.y16f{bottom:229.786667pt;}
.ydc{bottom:231.546667pt;}
.y14f{bottom:232.186667pt;}
.y18e{bottom:234.268000pt;}
.y1ae{bottom:234.426667pt;}
.y79{bottom:237.146667pt;}
.y12e{bottom:237.786667pt;}
.y33{bottom:238.586667pt;}
.y1de{bottom:239.386667pt;}
.y95{bottom:245.626667pt;}
.y55{bottom:248.666667pt;}
.y210{bottom:249.946667pt;}
.y1ad{bottom:252.026667pt;}
.y18d{bottom:252.028000pt;}
.y1ac{bottom:252.186667pt;}
.y17{bottom:253.253333pt;}
.y82{bottom:254.106667pt;}
.y12d{bottom:254.266667pt;}
.y16e{bottom:255.066667pt;}
.y1be{bottom:256.026667pt;}
.ydb{bottom:256.826667pt;}
.y14e{bottom:257.466667pt;}
.y1fa{bottom:258.426667pt;}
.y78{bottom:262.426667pt;}
.y18c{bottom:269.628000pt;}
.y12c{bottom:269.786667pt;}
.y1ab{bottom:269.946667pt;}
.y94{bottom:270.906667pt;}
.y32{bottom:272.346667pt;}
.y1dd{bottom:273.146667pt;}
.y54{bottom:273.946667pt;}
.y156{bottom:279.386667pt;}
.y16d{bottom:280.346667pt;}
.yda{bottom:282.106667pt;}
.y14d{bottom:282.746667pt;}
.y20f{bottom:283.226667pt;}
.y1f9{bottom:283.706667pt;}
.y129{bottom:284.040000pt;}
.y16{bottom:287.013333pt;}
.y18b{bottom:287.228000pt;}
.y77{bottom:287.706667pt;}
.y1bd{bottom:289.786667pt;}
.y111{bottom:296.226667pt;}
.y53{bottom:299.266667pt;}
.y93{bottom:304.706667pt;}
.y18a{bottom:304.828000pt;}
.y155{bottom:304.866667pt;}
.y31{bottom:306.146667pt;}
.y1dc{bottom:306.786667pt;}
.yd9{bottom:307.426667pt;}
.y14c{bottom:308.226667pt;}
.y20e{bottom:308.546667pt;}
.y1f8{bottom:309.026667pt;}
.y128{bottom:309.986667pt;}
.y76{bottom:313.186667pt;}
.y16c{bottom:314.306667pt;}
.y15{bottom:320.773333pt;}
.y81{bottom:321.506667pt;}
.y189{bottom:322.428000pt;}
.y1bc{bottom:323.426667pt;}
.y52{bottom:324.546667pt;}
.y16b{bottom:328.386667pt;}
.y1c4{bottom:329.986667pt;}
.yd8{bottom:332.706667pt;}
.y14b{bottom:333.506667pt;}
.y20d{bottom:333.826667pt;}
.y127{bottom:336.066667pt;}
.y75{bottom:338.466667pt;}
.y92{bottom:338.626667pt;}
.y30{bottom:339.906667pt;}
.y188{bottom:340.188000pt;}
.y1db{bottom:340.546667pt;}
.y1f7{bottom:342.306667pt;}
.y110{bottom:346.786667pt;}
.y51{bottom:349.826667pt;}
.yf3{bottom:349.986667pt;}
.y14{bottom:354.573333pt;}
.y80{bottom:355.266667pt;}
.y1bb{bottom:357.186667pt;}
.y187{bottom:357.788000pt;}
.yd7{bottom:357.986667pt;}
.y16a{bottom:358.466667pt;}
.y14a{bottom:358.786667pt;}
.y125{bottom:361.986667pt;}
.y99{bottom:363.426667pt;}
.y74{bottom:363.746667pt;}
.y20c{bottom:367.106667pt;}
.y1f6{bottom:367.586667pt;}
.y10f{bottom:372.226667pt;}
.y91{bottom:372.386667pt;}
.y2f{bottom:373.666667pt;}
.y1da{bottom:374.306667pt;}
.y50{bottom:375.106667pt;}
.y186{bottom:375.388000pt;}
.yf2{bottom:375.426667pt;}
.y1c3{bottom:380.546667pt;}
.yd6{bottom:383.426667pt;}
.y123{bottom:387.906667pt;}
.y13{bottom:388.333333pt;}
.y167{bottom:388.386667pt;}
.y73{bottom:389.026667pt;}
.y1ba{bottom:390.946667pt;}
.y149{bottom:392.546667pt;}
.y1f5{bottom:392.866667pt;}
.y185{bottom:392.988000pt;}
.y184{bottom:393.148000pt;}
.yf1{bottom:395.426667pt;}
.y9d{bottom:396.320000pt;}
.y10e{bottom:397.506667pt;}
.y4f{bottom:400.386667pt;}
.y90{bottom:405.826667pt;}
.y2e{bottom:407.266667pt;}
.y1d9{bottom:408.066667pt;}
.yd5{bottom:408.706667pt;}
.y183{bottom:410.588000pt;}
.y122{bottom:413.986667pt;}
.y72{bottom:414.306667pt;}
.yf0{bottom:414.466667pt;}
.y12{bottom:421.933333pt;}
.y10d{bottom:422.786667pt;}
.y1b9{bottom:424.706667pt;}
.y4e{bottom:425.666667pt;}
.y20b{bottom:425.826667pt;}
.y148{bottom:426.146667pt;}
.y101{bottom:426.240000pt;}
.y162{bottom:431.106667pt;}
.yd4{bottom:433.986667pt;}
.y71{bottom:439.586667pt;}
.y8f{bottom:439.746667pt;}
.y2d{bottom:441.026667pt;}
.y1d8{bottom:441.826667pt;}
.y1b8{bottom:443.426667pt;}
.y121{bottom:445.026667pt;}
.y10c{bottom:448.066667pt;}
.yef{bottom:448.226667pt;}
.y4d{bottom:451.106667pt;}
.y1f4{bottom:451.426667pt;}
.y147{bottom:451.586667pt;}
.y11{bottom:455.693333pt;}
.y161{bottom:456.546667pt;}
.yd3{bottom:459.266667pt;}
.y1b7{bottom:461.026667pt;}
.y70{bottom:464.866667pt;}
.y165{bottom:472.866667pt;}
.y10b{bottom:473.346667pt;}
.y8e{bottom:473.506667pt;}
.y2c{bottom:474.786667pt;}
.y1d7{bottom:475.426667pt;}
.y120{bottom:476.226667pt;}
.y4c{bottom:476.386667pt;}
.y146{bottom:476.866667pt;}
.y1aa{bottom:477.986667pt;}
.y160{bottom:481.826667pt;}
.yee{bottom:481.986667pt;}
.yd2{bottom:484.546667pt;}
.y1f3{bottom:484.866667pt;}
.y10{bottom:489.453333pt;}
.y6f{bottom:490.146667pt;}
.y10a{bottom:498.626667pt;}
.y4b{bottom:501.666667pt;}
.y145{bottom:502.146667pt;}
.yff{bottom:506.240000pt;}
.y11f{bottom:506.626667pt;}
.y15f{bottom:507.106667pt;}
.y8d{bottom:507.266667pt;}
.y2b{bottom:508.546667pt;}
.y1d6{bottom:509.186667pt;}
.yd1{bottom:509.826667pt;}
.y1f2{bottom:510.146667pt;}
.y6e{bottom:515.426667pt;}
.yed{bottom:515.586667pt;}
.yf{bottom:523.213333pt;}
.y109{bottom:523.906667pt;}
.y4a{bottom:526.946667pt;}
.y144{bottom:527.426667pt;}
.y164{bottom:528.226667pt;}
.y15e{bottom:532.413333pt;}
.y178{bottom:533.853333pt;}
.yd0{bottom:535.133333pt;}
.y11e{bottom:537.693333pt;}
.y6d{bottom:540.893333pt;}
.y8c{bottom:541.053333pt;}
.y2a{bottom:542.333333pt;}
.y1d5{bottom:542.973333pt;}
.y1f1{bottom:543.453333pt;}
.yba{bottom:549.213333pt;}
.yec{bottom:549.373333pt;}
.y49{bottom:552.413333pt;}
.y143{bottom:552.733333pt;}
.ye{bottom:557.133333pt;}
.y15d{bottom:557.693333pt;}
.y163{bottom:558.173333pt;}
.y20a{bottom:560.253333pt;}
.ycf{bottom:560.413333pt;}
.y6c{bottom:566.173333pt;}
.y1f0{bottom:568.733333pt;}
.y11d{bottom:568.893333pt;}
.y108{bottom:574.493333pt;}
.y8b{bottom:574.653333pt;}
.yfa{bottom:575.360000pt;}
.y29{bottom:576.093333pt;}
.y1d4{bottom:576.733333pt;}
.y48{bottom:577.693333pt;}
.y142{bottom:578.013333pt;}
.yb9{bottom:582.973333pt;}
.y209{bottom:585.533333pt;}
.yce{bottom:585.693333pt;}
.yd{bottom:590.760000pt;}
.y6b{bottom:591.453333pt;}
.ya1{bottom:592.960000pt;}
.ya4{bottom:593.600000pt;}
.y9f{bottom:593.920000pt;}
.yfc{bottom:598.333333pt;}
.y11b{bottom:599.293333pt;}
.y107{bottom:599.933333pt;}
.y1ef{bottom:602.013333pt;}
.y47{bottom:602.813333pt;}
.y141{bottom:603.293333pt;}
.yb8{bottom:608.253333pt;}
.y8a{bottom:608.413333pt;}
.y28{bottom:609.693333pt;}
.y1d3{bottom:610.493333pt;}
.y208{bottom:610.813333pt;}
.ycd{bottom:611.133333pt;}
.y6a{bottom:616.733333pt;}
.yc{bottom:624.360000pt;}
.y106{bottom:625.373333pt;}
.y1ee{bottom:627.293333pt;}
.y46{bottom:628.093333pt;}
.y140{bottom:628.573333pt;}
.y118{bottom:630.333333pt;}
.yb7{bottom:633.533333pt;}
.y69{bottom:642.013333pt;}
.y89{bottom:642.173333pt;}
.y27{bottom:643.453333pt;}
.y1d2{bottom:644.253333pt;}
.ycc{bottom:644.733333pt;}
.y105{bottom:650.653333pt;}
.y1ed{bottom:652.573333pt;}
.y45{bottom:653.533333pt;}
.y13f{bottom:653.853333pt;}
.yb{bottom:658.120000pt;}
.yb6{bottom:658.813333pt;}
.y116{bottom:661.533333pt;}
.y68{bottom:667.293333pt;}
.y88{bottom:667.453333pt;}
.y207{bottom:669.533333pt;}
.y104{bottom:675.773333pt;}
.y26{bottom:677.213333pt;}
.y1d1{bottom:677.853333pt;}
.ycb{bottom:678.493333pt;}
.y44{bottom:678.813333pt;}
.yf8{bottom:679.200000pt;}
.y13e{bottom:679.453333pt;}
.yb5{bottom:684.253333pt;}
.y1ec{bottom:685.853333pt;}
.ya{bottom:691.880000pt;}
.y114{bottom:691.933333pt;}
.y67{bottom:692.573333pt;}
.y206{bottom:694.813333pt;}
.yca{bottom:697.213333pt;}
.y103{bottom:701.053333pt;}
.yeb{bottom:701.213333pt;}
.y43{bottom:704.093333pt;}
.yb4{bottom:709.533333pt;}
.y25{bottom:710.973333pt;}
.y1eb{bottom:711.133333pt;}
.y1d0{bottom:711.613333pt;}
.y13d{bottom:713.053333pt;}
.yc9{bottom:714.973333pt;}
.y66{bottom:717.853333pt;}
.y9{bottom:725.640000pt;}
.yea{bottom:726.333333pt;}
.yc5{bottom:728.093333pt;}
.y42{bottom:729.373333pt;}
.yb3{bottom:734.813333pt;}
.y1ea{bottom:736.573333pt;}
.y65{bottom:743.133333pt;}
.y113{bottom:743.293333pt;}
.y24{bottom:744.733333pt;}
.y1cf{bottom:745.373333pt;}
.y13c{bottom:746.653333pt;}
.ye9{bottom:751.613333pt;}
.y15c{bottom:751.773333pt;}
.y41{bottom:754.653333pt;}
.y8{bottom:759.400000pt;}
.yb2{bottom:760.093333pt;}
.y1a0{bottom:760.893333pt;}
.y205{bottom:761.373333pt;}
.y64{bottom:768.613333pt;}
.y1e9{bottom:769.893333pt;}
.y13b{bottom:772.613333pt;}
.ye8{bottom:776.933333pt;}
.y23{bottom:778.373333pt;}
.y1ce{bottom:778.693333pt;}
.y40{bottom:779.973333pt;}
.yb1{bottom:785.413333pt;}
.y204{bottom:786.693333pt;}
.y7{bottom:793.000000pt;}
.y63{bottom:793.893333pt;}
.y1e8{bottom:795.173333pt;}
.y13a{bottom:799.013333pt;}
.ye7{bottom:802.213333pt;}
.y154{bottom:802.373333pt;}
.y1cd{bottom:803.973333pt;}
.y3f{bottom:805.253333pt;}
.yb0{bottom:810.693333pt;}
.y203{bottom:811.973333pt;}
.y22{bottom:812.133333pt;}
.yc3{bottom:816.933333pt;}
.y62{bottom:819.173333pt;}
.y139{bottom:824.293333pt;}
.ye6{bottom:827.653333pt;}
.y1e7{bottom:828.453333pt;}
.y3e{bottom:830.533333pt;}
.yaf{bottom:835.973333pt;}
.y1cc{bottom:837.253333pt;}
.y61{bottom:844.453333pt;}
.y202{bottom:845.253333pt;}
.y21{bottom:845.893333pt;}
.y6{bottom:846.053333pt;}
.y138{bottom:850.053333pt;}
.yc2{bottom:850.373333pt;}
.ye5{bottom:852.933333pt;}
.y3d{bottom:855.813333pt;}
.yae{bottom:861.253333pt;}
.y1e6{bottom:861.733333pt;}
.y1cb{bottom:862.533333pt;}
.y60{bottom:869.733333pt;}
.y201{bottom:870.533333pt;}
.y137{bottom:876.453333pt;}
.ye4{bottom:878.213333pt;}
.y5{bottom:879.653333pt;}
.y3c{bottom:881.093333pt;}
.yc0{bottom:885.093333pt;}
.yad{bottom:886.533333pt;}
.y1e5{bottom:887.013333pt;}
.y218{bottom:887.973333pt;}
.y5f{bottom:895.013333pt;}
.y1ca{bottom:895.973333pt;}
.y136{bottom:901.893333pt;}
.y19c{bottom:902.533333pt;}
.ye3{bottom:903.493333pt;}
.y200{bottom:903.973333pt;}
.y3b{bottom:906.533333pt;}
.yac{bottom:911.973333pt;}
.y1e4{bottom:912.293333pt;}
.y4{bottom:913.413333pt;}
.ybe{bottom:919.653333pt;}
.y5e{bottom:920.293333pt;}
.y87{bottom:920.453333pt;}
.y1c9{bottom:921.253333pt;}
.y217{bottom:921.413333pt;}
.y135{bottom:927.173333pt;}
.ye2{bottom:928.773333pt;}
.y1ff{bottom:929.253333pt;}
.y3a{bottom:931.813333pt;}
.yab{bottom:937.253333pt;}
.y5d{bottom:945.573333pt;}
.y1e3{bottom:945.733333pt;}
.y1c8{bottom:946.533333pt;}
.y3{bottom:947.173333pt;}
.y134{bottom:952.933333pt;}
.ye1{bottom:954.053333pt;}
.y86{bottom:954.213333pt;}
.y216{bottom:954.693333pt;}
.y39{bottom:957.093333pt;}
.ybc{bottom:958.373333pt;}
.yaa{bottom:962.533333pt;}
.y38{bottom:978.373333pt;}
.y5c{bottom:979.333333pt;}
.y7f{bottom:979.493333pt;}
.y1c7{bottom:979.973333pt;}
.y2{bottom:980.773333pt;}
.y20{bottom:980.933333pt;}
.ya9{bottom:987.813333pt;}
.y37{bottom:994.533333pt;}
.ya8{bottom:1013.120000pt;}
.y5b{bottom:1013.280000pt;}
.y1{bottom:1014.560000pt;}
.y1f{bottom:1014.720000pt;}
.y59{bottom:1061.120000pt;}
.h4{height:18.432000pt;}
.h11{height:24.640000pt;}
.h13{height:24.800000pt;}
.h1c{height:25.266667pt;}
.h1e{height:25.298667pt;}
.h1d{height:25.426667pt;}
.h7{height:26.400000pt;}
.ha{height:26.560000pt;}
.h23{height:29.266667pt;}
.h1f{height:29.280000pt;}
.h20{height:29.306667pt;}
.h24{height:29.426667pt;}
.h19{height:29.746667pt;}
.h16{height:29.760000pt;}
.h1b{height:30.386667pt;}
.h15{height:30.400000pt;}
.h18{height:30.426667pt;}
.h1a{height:30.546667pt;}
.h17{height:30.560000pt;}
.hd{height:32.786667pt;}
.h10{height:33.375000pt;}
.hb{height:33.906667pt;}
.h8{height:37.920000pt;}
.hc{height:38.066667pt;}
.h9{height:38.240000pt;}
.h5{height:38.715000pt;}
.h12{height:53.600000pt;}
.h21{height:54.706667pt;}
.hf{height:55.402500pt;}
.h2{height:61.410000pt;}
.h3{height:62.812500pt;}
.h6{height:63.986667pt;}
.h2b{height:65.595000pt;}
.h14{height:66.750000pt;}
.h25{height:70.420000pt;}
.h22{height:83.826667pt;}
.he{height:88.180000pt;}
.h28{height:123.546667pt;}
.h29{height:140.973333pt;}
.h26{height:176.320000pt;}
.h2a{height:282.266667pt;}
.h27{height:423.100000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:7.986667pt;}
.w2{width:8.946667pt;}
.w3{width:13.426667pt;}
.w11{width:15.986667pt;}
.w14{width:91.670667pt;}
.w15{width:93.778667pt;}
.w17{width:93.792000pt;}
.w5{width:96.146667pt;}
.w6{width:96.160000pt;}
.w16{width:103.200000pt;}
.w7{width:107.840000pt;}
.w18{width:112.658667pt;}
.w19{width:131.666667pt;}
.we{width:180.000000pt;}
.wf{width:184.973333pt;}
.w10{width:185.186667pt;}
.wd{width:216.000000pt;}
.wc{width:228.000000pt;}
.w12{width:299.697333pt;}
.w13{width:299.733333pt;}
.wb{width:300.000000pt;}
.w8{width:302.097333pt;}
.w9{width:302.146667pt;}
.wa{width:371.840000pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1e{left:6.870667pt;}
.x18{left:9.626667pt;}
.x1a{left:13.506667pt;}
.x14{left:16.146667pt;}
.x15{left:18.066667pt;}
.x1b{left:23.773333pt;}
.x28{left:26.386667pt;}
.x16{left:30.706667pt;}
.x26{left:33.426667pt;}
.x27{left:40.666667pt;}
.x1d{left:89.161333pt;}
.x1{left:94.592000pt;}
.x11{left:96.032000pt;}
.x21{left:98.592000pt;}
.xe{left:151.386667pt;}
.x6{left:157.946667pt;}
.x17{left:161.120000pt;}
.xa{left:171.866667pt;}
.x2{left:173.466667pt;}
.x2b{left:181.480000pt;}
.x3{left:188.026667pt;}
.x5{left:203.546667pt;}
.x25{left:211.400000pt;}
.x20{left:232.960000pt;}
.x12{left:254.626667pt;}
.x9{left:267.586667pt;}
.xb{left:269.186667pt;}
.x2c{left:276.066667pt;}
.x8{left:283.906667pt;}
.x19{left:293.280000pt;}
.x7{left:321.826667pt;}
.x24{left:328.960000pt;}
.xc{left:335.586667pt;}
.x2d{left:379.906667pt;}
.x2a{left:389.506667pt;}
.x1f{left:391.906667pt;}
.x4{left:396.706667pt;}
.xf{left:398.466667pt;}
.x13{left:425.386667pt;}
.x22{left:472.960000pt;}
.x2e{left:474.506667pt;}
.x23{left:482.653333pt;}
.x1c{left:557.440000pt;}
.x2f{left:587.813333pt;}
.x29{left:681.413333pt;}
.x10{left:685.573333pt;}
.xd{left:690.053333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  