
    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_ab9cbff74c18041cdf5af24f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.157000;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_25f4b1fe9dd50f1f13ad9804.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.150000;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_2c681c9e0d91b2bd650c3b4b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.198000;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;}
.m11{transform:matrix(0.214109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214109,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.215304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215304,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.218284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218284,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.219913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219913,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.221123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221123,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.222588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222588,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.227464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227464,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.227894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227894,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.228218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228218,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.229952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229952,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.230321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230321,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.230667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230667,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.233185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233185,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.234505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234505,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.237684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237684,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.239430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239430,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.239557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239557,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.240060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240060,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.242005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242005,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.242126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242126,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.242457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242457,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.242832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242832,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.248821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248821,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-24.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws8{word-spacing:-15.000000px;}
.ws1{word-spacing:-13.500000px;}
.ws0{word-spacing:-12.000000px;}
.ws7{word-spacing:-11.550000px;}
.ws4{word-spacing:-11.400000px;}
.ws2{word-spacing:-7.500000px;}
.ws3{word-spacing:0.000000px;}
.ws6{word-spacing:53.860800px;}
.ws5{word-spacing:68.635200px;}
._49{margin-left:-9.018000px;}
._4{margin-left:-7.872000px;}
._9{margin-left:-6.816000px;}
._2{margin-left:-5.808000px;}
._3{margin-left:-4.608000px;}
._1{margin-left:-3.264000px;}
._0{margin-left:-1.584000px;}
._8{width:1.290000px;}
._7{width:2.850000px;}
._5{width:4.752000px;}
._6{width:6.384000px;}
._e{width:7.486800px;}
._14{width:8.495400px;}
._a{width:9.549000px;}
._b{width:10.557000px;}
._d{width:11.701800px;}
._f{width:14.874000px;}
._10{width:16.560000px;}
._15{width:17.638200px;}
._13{width:18.815400px;}
._12{width:20.562000px;}
._11{width:21.600000px;}
._18{width:23.454600px;}
._17{width:24.474600px;}
._40{width:25.727400px;}
._43{width:26.966400px;}
._16{width:28.036800px;}
._c{width:29.775600px;}
._41{width:31.611600px;}
._42{width:33.291600px;}
._19{width:34.950600px;}
._4c{width:36.165600px;}
._44{width:37.513800px;}
._45{width:38.563800px;}
._46{width:40.030200px;}
._35{width:41.240400px;}
._4f{width:42.343200px;}
._4e{width:43.934400px;}
._48{width:46.656000px;}
._47{width:47.845800px;}
._3a{width:48.955800px;}
._4b{width:50.160000px;}
._4a{width:51.216000px;}
._4d{width:52.974000px;}
._28{width:65.577600px;}
._3c{width:67.703400px;}
._1c{width:73.687200px;}
._1e{width:77.652000px;}
._2c{width:79.442400px;}
._1d{width:90.609600px;}
._2d{width:113.112000px;}
._23{width:115.072800px;}
._3b{width:138.789000px;}
._24{width:153.012000px;}
._2b{width:169.716000px;}
._29{width:181.730400px;}
._34{width:184.171200px;}
._25{width:185.558400px;}
._31{width:187.071000px;}
._2e{width:196.672800px;}
._3f{width:211.570200px;}
._20{width:216.259200px;}
._26{width:218.472000px;}
._3d{width:223.074000px;}
._36{width:225.060600px;}
._27{width:227.296800px;}
._3e{width:262.172400px;}
._37{width:263.499000px;}
._1b{width:282.170400px;}
._1f{width:286.984800px;}
._22{width:294.986400px;}
._39{width:296.452800px;}
._21{width:308.100000px;}
._1a{width:324.410400px;}
._33{width:327.578400px;}
._2a{width:334.600800px;}
._2f{width:343.133400px;}
._32{width:399.234600px;}
._30{width:412.926000px;}
._38{width:587.416800px;}
.fc1{color:rgb(0,128,128);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:30.000000px;}
.fs3{font-size:36.000000px;}
.fs5{font-size:45.600000px;}
.fs6{font-size:46.200000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y3c{bottom:65.700000px;}
.y265{bottom:70.800000px;}
.y263{bottom:78.900000px;}
.y3b{bottom:80.100000px;}
.y1c7{bottom:83.760000px;}
.y92{bottom:85.380000px;}
.y22f{bottom:87.000000px;}
.y5f{bottom:87.006000px;}
.y153{bottom:90.420000px;}
.y19d{bottom:91.860000px;}
.y162{bottom:93.480000px;}
.y3a{bottom:94.500000px;}
.y25f{bottom:95.100000px;}
.y1ff{bottom:96.720000px;}
.y210{bottom:96.835500px;}
.yd5{bottom:98.047500px;}
.y1c6{bottom:99.960000px;}
.y91{bottom:101.580000px;}
.y22e{bottom:103.200000px;}
.y5e{bottom:103.206000px;}
.y248{bottom:105.420000px;}
.y152{bottom:106.620000px;}
.y19c{bottom:108.060000px;}
.y39{bottom:108.900000px;}
.y161{bottom:109.680000px;}
.y25e{bottom:111.300000px;}
.yb5{bottom:112.441500px;}
.y1fe{bottom:112.920000px;}
.y20f{bottom:113.035500px;}
.yd4{bottom:114.247500px;}
.y1c5{bottom:116.160000px;}
.y90{bottom:117.780000px;}
.y22d{bottom:119.400000px;}
.y5d{bottom:119.406000px;}
.y247{bottom:121.620000px;}
.y151{bottom:122.820000px;}
.y19b{bottom:124.260000px;}
.y117{bottom:124.740000px;}
.y160{bottom:125.880000px;}
.y25d{bottom:127.500000px;}
.yb4{bottom:128.641500px;}
.y1fd{bottom:129.120000px;}
.y20e{bottom:129.235500px;}
.y38{bottom:129.300000px;}
.yd3{bottom:130.447500px;}
.y1c4{bottom:132.360000px;}
.y8f{bottom:133.980000px;}
.y22c{bottom:135.600000px;}
.y5c{bottom:135.606000px;}
.y116{bottom:138.420000px;}
.y150{bottom:139.020000px;}
.y19a{bottom:140.460000px;}
.y15f{bottom:142.080000px;}
.y37{bottom:143.700000px;}
.yb3{bottom:144.841500px;}
.y1fc{bottom:145.320000px;}
.y20d{bottom:145.435500px;}
.y246{bottom:145.920000px;}
.yd2{bottom:146.647500px;}
.y1c3{bottom:148.560000px;}
.y8e{bottom:150.180000px;}
.y22b{bottom:151.800000px;}
.y5b{bottom:151.806000px;}
.y115{bottom:152.100000px;}
.y14f{bottom:155.220000px;}
.y199{bottom:156.660000px;}
.y255{bottom:159.900000px;}
.yb2{bottom:161.041500px;}
.y1fb{bottom:161.520000px;}
.y20c{bottom:161.635500px;}
.y245{bottom:162.120000px;}
.yd1{bottom:162.847500px;}
.y1c2{bottom:164.760000px;}
.y114{bottom:165.780000px;}
.y8d{bottom:166.380000px;}
.y22a{bottom:168.000000px;}
.y5a{bottom:168.006000px;}
.y14e{bottom:171.420000px;}
.y198{bottom:172.860000px;}
.y254{bottom:176.100000px;}
.yb1{bottom:177.241500px;}
.y1fa{bottom:177.720000px;}
.y20b{bottom:177.835500px;}
.y244{bottom:178.320000px;}
.yd0{bottom:179.047500px;}
.y113{bottom:179.460000px;}
.y1c1{bottom:180.960000px;}
.y8c{bottom:182.580000px;}
.y229{bottom:184.200000px;}
.y59{bottom:184.206000px;}
.y14d{bottom:187.620000px;}
.y197{bottom:189.060000px;}
.y253{bottom:192.300000px;}
.y112{bottom:193.140000px;}
.yb0{bottom:193.441500px;}
.y1f9{bottom:193.920000px;}
.y20a{bottom:194.035500px;}
.y243{bottom:194.520000px;}
.ycf{bottom:195.247500px;}
.y32{bottom:195.600000px;}
.y1c0{bottom:197.160000px;}
.y8b{bottom:198.780000px;}
.y25c{bottom:200.400000px;}
.y58{bottom:200.406000px;}
.y14c{bottom:203.820000px;}
.y196{bottom:205.260000px;}
.y111{bottom:206.820000px;}
.y228{bottom:208.500000px;}
.y1f8{bottom:210.120000px;}
.y242{bottom:210.720000px;}
.yce{bottom:211.447500px;}
.y31{bottom:211.800000px;}
.y1bf{bottom:213.360000px;}
.y8a{bottom:214.980000px;}
.y25b{bottom:216.600000px;}
.y57{bottom:216.606000px;}
.y110{bottom:220.500000px;}
.y195{bottom:221.460000px;}
.yaf{bottom:222.601500px;}
.y227{bottom:224.700000px;}
.y1f7{bottom:226.320000px;}
.ycd{bottom:227.647500px;}
.y30{bottom:228.000000px;}
.y1be{bottom:229.560000px;}
.y89{bottom:231.180000px;}
.y262{bottom:232.800000px;}
.y10f{bottom:234.180000px;}
.y241{bottom:235.020000px;}
.y1ec{bottom:237.660000px;}
.yae{bottom:238.801500px;}
.y226{bottom:240.900000px;}
.y1f6{bottom:242.520000px;}
.y56{bottom:242.526000px;}
.ycc{bottom:243.847500px;}
.y2f{bottom:244.200000px;}
.y1bd{bottom:245.760000px;}
.y88{bottom:247.380000px;}
.y10e{bottom:247.860000px;}
.y264{bottom:249.000000px;}
.y240{bottom:251.220000px;}
.y1eb{bottom:253.860000px;}
.yad{bottom:255.001500px;}
.y225{bottom:257.100000px;}
.y1f5{bottom:258.720000px;}
.y14b{bottom:259.020000px;}
.ycb{bottom:260.047500px;}
.y2e{bottom:260.400000px;}
.y10d{bottom:261.540000px;}
.y1bc{bottom:261.960000px;}
.y87{bottom:263.580000px;}
.y252{bottom:265.200000px;}
.y23f{bottom:267.420000px;}
.y1ea{bottom:270.060000px;}
.yac{bottom:271.201500px;}
.y55{bottom:271.686000px;}
.y14a{bottom:272.880000px;}
.y224{bottom:273.300000px;}
.y1f4{bottom:274.920000px;}
.y10c{bottom:275.220000px;}
.yca{bottom:276.247500px;}
.y2d{bottom:276.600000px;}
.y1bb{bottom:278.160000px;}
.y86{bottom:279.780000px;}
.y251{bottom:281.400000px;}
.y23e{bottom:283.620000px;}
.y1e9{bottom:286.260000px;}
.y149{bottom:286.740000px;}
.yab{bottom:287.401500px;}
.y54{bottom:287.886000px;}
.y10b{bottom:288.900000px;}
.y223{bottom:289.500000px;}
.y1f3{bottom:291.120000px;}
.yc9{bottom:292.447500px;}
.y2c{bottom:292.800000px;}
.y1ba{bottom:294.360000px;}
.y85{bottom:295.980000px;}
.y250{bottom:297.600000px;}
.y148{bottom:300.600000px;}
.y1e8{bottom:302.460000px;}
.y10a{bottom:302.580000px;}
.yaa{bottom:303.601500px;}
.y53{bottom:304.086000px;}
.y222{bottom:305.700000px;}
.y1f2{bottom:307.320000px;}
.y23d{bottom:307.920000px;}
.yc8{bottom:308.647500px;}
.y2b{bottom:309.000000px;}
.y1b9{bottom:310.560000px;}
.y84{bottom:312.180000px;}
.y24f{bottom:313.800000px;}
.y147{bottom:314.460000px;}
.y109{bottom:316.260000px;}
.y1e7{bottom:318.660000px;}
.ya9{bottom:319.801500px;}
.y52{bottom:320.286000px;}
.y221{bottom:321.900000px;}
.y23c{bottom:324.120000px;}
.yc7{bottom:324.847500px;}
.y2a{bottom:325.200000px;}
.y1b8{bottom:326.760000px;}
.y146{bottom:328.320000px;}
.y83{bottom:328.380000px;}
.y108{bottom:329.940000px;}
.y261{bottom:330.000000px;}
.y1e6{bottom:334.860000px;}
.ya8{bottom:336.001500px;}
.y1f1{bottom:336.480000px;}
.y51{bottom:336.486000px;}
.y220{bottom:338.100000px;}
.y23b{bottom:340.320000px;}
.yc6{bottom:341.047500px;}
.y29{bottom:341.400000px;}
.y145{bottom:342.180000px;}
.y1b7{bottom:342.960000px;}
.y107{bottom:343.620000px;}
.y82{bottom:344.580000px;}
.y25a{bottom:346.200000px;}
.y36{bottom:349.500000px;}
.y1e5{bottom:351.060000px;}
.ya7{bottom:352.201500px;}
.y1f0{bottom:352.680000px;}
.y50{bottom:352.686000px;}
.y21f{bottom:354.300000px;}
.y144{bottom:356.040000px;}
.y23a{bottom:356.520000px;}
.yc5{bottom:357.247500px;}
.y106{bottom:357.300000px;}
.y28{bottom:357.600000px;}
.y1b6{bottom:359.160000px;}
.y81{bottom:360.780000px;}
.y259{bottom:362.400000px;}
.y35{bottom:365.700000px;}
.y1e4{bottom:367.260000px;}
.ya6{bottom:368.401500px;}
.y1ef{bottom:368.880000px;}
.y4f{bottom:368.886000px;}
.y143{bottom:369.900000px;}
.y21e{bottom:370.500000px;}
.y105{bottom:370.980000px;}
.y239{bottom:372.720000px;}
.yc4{bottom:373.447500px;}
.y27{bottom:373.800000px;}
.y1b5{bottom:375.360000px;}
.y80{bottom:376.980000px;}
.y258{bottom:378.600000px;}
.y34{bottom:381.900000px;}
.y1e3{bottom:383.460000px;}
.y142{bottom:383.760000px;}
.ya5{bottom:384.601500px;}
.y104{bottom:384.660000px;}
.y1ee{bottom:385.080000px;}
.y4e{bottom:385.086000px;}
.y21d{bottom:386.700000px;}
.yc3{bottom:389.647500px;}
.y26{bottom:390.000000px;}
.y1b4{bottom:391.560000px;}
.y7f{bottom:393.180000px;}
.y257{bottom:394.800000px;}
.y238{bottom:397.020000px;}
.y141{bottom:397.620000px;}
.y33{bottom:398.100000px;}
.y103{bottom:398.340000px;}
.y1e2{bottom:399.660000px;}
.ya4{bottom:400.801500px;}
.y1ed{bottom:401.280000px;}
.y4d{bottom:401.286000px;}
.y21c{bottom:402.900000px;}
.yc2{bottom:405.847500px;}
.y1b3{bottom:407.760000px;}
.y15e{bottom:409.380000px;}
.y256{bottom:411.000000px;}
.y140{bottom:411.480000px;}
.y102{bottom:412.020000px;}
.y237{bottom:413.220000px;}
.y25{bottom:414.300000px;}
.y1e1{bottom:415.860000px;}
.ya3{bottom:417.001500px;}
.y7e{bottom:417.480000px;}
.y4c{bottom:417.486000px;}
.y21b{bottom:419.100000px;}
.yc1{bottom:422.047500px;}
.y1b2{bottom:423.960000px;}
.y13f{bottom:425.340000px;}
.y15d{bottom:425.580000px;}
.y101{bottom:425.700000px;}
.y24e{bottom:427.200000px;}
.y236{bottom:429.420000px;}
.y24{bottom:430.500000px;}
.y1e0{bottom:432.060000px;}
.ya2{bottom:433.201500px;}
.y7d{bottom:433.680000px;}
.y4b{bottom:433.686000px;}
.y21a{bottom:435.300000px;}
.yc0{bottom:438.247500px;}
.y13e{bottom:439.200000px;}
.y100{bottom:439.380000px;}
.y1b1{bottom:440.160000px;}
.y15c{bottom:441.780000px;}
.y24d{bottom:443.400000px;}
.y235{bottom:445.620000px;}
.y23{bottom:446.700000px;}
.y7c{bottom:449.880000px;}
.y4a{bottom:449.886000px;}
.y177{bottom:451.500000px;}
.yff{bottom:453.060000px;}
.ybf{bottom:454.447500px;}
.y1b0{bottom:456.360000px;}
.y15b{bottom:457.980000px;}
.y24c{bottom:459.600000px;}
.y234{bottom:461.820000px;}
.y22{bottom:462.900000px;}
.y7b{bottom:466.080000px;}
.y49{bottom:466.086000px;}
.yfe{bottom:466.740000px;}
.y13d{bottom:466.920000px;}
.y176{bottom:467.700000px;}
.ybe{bottom:470.647500px;}
.y1af{bottom:472.560000px;}
.y15a{bottom:474.180000px;}
.y24b{bottom:475.800000px;}
.y233{bottom:478.020000px;}
.y21{bottom:479.100000px;}
.yfd{bottom:480.420000px;}
.y13c{bottom:480.780000px;}
.y7a{bottom:482.280000px;}
.y175{bottom:483.900000px;}
.ybd{bottom:486.847500px;}
.y1ae{bottom:488.760000px;}
.y159{bottom:490.380000px;}
.y24a{bottom:492.000000px;}
.yfc{bottom:494.100000px;}
.y13b{bottom:494.640000px;}
.y20{bottom:495.300000px;}
.y79{bottom:498.480000px;}
.y174{bottom:500.100000px;}
.ybc{bottom:503.047500px;}
.y1df{bottom:504.960000px;}
.y158{bottom:506.580000px;}
.yfb{bottom:507.780000px;}
.y219{bottom:508.200000px;}
.y13a{bottom:508.500000px;}
.y1f{bottom:511.500000px;}
.y78{bottom:514.680000px;}
.y173{bottom:516.300000px;}
.y1de{bottom:521.160000px;}
.yfa{bottom:521.460000px;}
.y139{bottom:522.360000px;}
.y157{bottom:522.780000px;}
.y218{bottom:524.400000px;}
.y1e{bottom:527.700000px;}
.ybb{bottom:528.967500px;}
.y77{bottom:530.880000px;}
.y172{bottom:532.500000px;}
.y209{bottom:534.300000px;}
.yf9{bottom:535.140000px;}
.y138{bottom:536.220000px;}
.y1dd{bottom:537.360000px;}
.y194{bottom:538.980000px;}
.y217{bottom:540.600000px;}
.y1d{bottom:543.900000px;}
.y76{bottom:547.080000px;}
.y171{bottom:548.700000px;}
.yf8{bottom:548.820000px;}
.y137{bottom:550.080000px;}
.y208{bottom:550.500000px;}
.y1dc{bottom:553.560000px;}
.y193{bottom:555.180000px;}
.y216{bottom:556.800000px;}
.y1c{bottom:560.100000px;}
.yf7{bottom:562.500000px;}
.y75{bottom:563.280000px;}
.y136{bottom:563.940000px;}
.y170{bottom:564.900000px;}
.y207{bottom:566.700000px;}
.y1db{bottom:569.760000px;}
.y192{bottom:571.380000px;}
.y215{bottom:573.000000px;}
.yf6{bottom:576.180000px;}
.y1b{bottom:576.300000px;}
.y135{bottom:577.800000px;}
.y74{bottom:579.480000px;}
.y16f{bottom:581.100000px;}
.y206{bottom:582.900000px;}
.y1da{bottom:585.960000px;}
.y191{bottom:587.580000px;}
.y214{bottom:589.200000px;}
.yf5{bottom:589.860000px;}
.y134{bottom:591.660000px;}
.y73{bottom:595.680000px;}
.y16e{bottom:597.300000px;}
.y205{bottom:599.100000px;}
.y1d9{bottom:602.160000px;}
.yf4{bottom:603.540000px;}
.y190{bottom:603.780000px;}
.y213{bottom:605.400000px;}
.y133{bottom:605.520000px;}
.y72{bottom:611.880000px;}
.y16d{bottom:613.500000px;}
.y204{bottom:615.300000px;}
.yf3{bottom:617.220000px;}
.y1d8{bottom:618.360000px;}
.y132{bottom:619.380000px;}
.y18f{bottom:619.980000px;}
.y212{bottom:621.600000px;}
.y1a{bottom:622.200000px;}
.y232{bottom:622.680000px;}
.y71{bottom:628.080000px;}
.y16c{bottom:629.700000px;}
.yf2{bottom:630.900000px;}
.y131{bottom:633.240000px;}
.y1d7{bottom:634.560000px;}
.y18e{bottom:636.180000px;}
.y211{bottom:637.800000px;}
.y19{bottom:638.400000px;}
.y231{bottom:640.680000px;}
.y70{bottom:644.280000px;}
.yf1{bottom:644.580000px;}
.y16b{bottom:645.900000px;}
.y130{bottom:647.100000px;}
.y1d6{bottom:650.760000px;}
.y18d{bottom:652.380000px;}
.y203{bottom:654.000000px;}
.yf0{bottom:658.260000px;}
.y230{bottom:658.680000px;}
.y6f{bottom:660.480000px;}
.y12f{bottom:660.960000px;}
.y16a{bottom:662.100000px;}
.y18{bottom:662.700000px;}
.y1d5{bottom:666.960000px;}
.y18c{bottom:668.580000px;}
.y202{bottom:670.200000px;}
.yef{bottom:671.940000px;}
.y12e{bottom:674.820000px;}
.y6e{bottom:676.680000px;}
.y169{bottom:678.300000px;}
.y17{bottom:678.900000px;}
.y1d4{bottom:683.160000px;}
.y18b{bottom:684.780000px;}
.yee{bottom:685.620000px;}
.y201{bottom:686.400000px;}
.y12d{bottom:688.680000px;}
.y6d{bottom:692.880000px;}
.y168{bottom:694.500000px;}
.y16{bottom:695.100000px;}
.yed{bottom:699.300000px;}
.y1d3{bottom:699.360000px;}
.y18a{bottom:700.980000px;}
.y12c{bottom:702.540000px;}
.y200{bottom:702.600000px;}
.y6c{bottom:709.080000px;}
.y167{bottom:710.700000px;}
.y15{bottom:711.300000px;}
.yec{bottom:712.980000px;}
.y1d2{bottom:715.560000px;}
.y12b{bottom:716.400000px;}
.y189{bottom:717.180000px;}
.y1a1{bottom:718.800000px;}
.y6b{bottom:725.280000px;}
.yeb{bottom:726.660000px;}
.y166{bottom:726.900000px;}
.y14{bottom:727.500000px;}
.y12a{bottom:730.260000px;}
.y1d1{bottom:731.760000px;}
.y188{bottom:733.380000px;}
.y1a0{bottom:735.000000px;}
.yea{bottom:740.340000px;}
.y6a{bottom:741.480000px;}
.y165{bottom:743.100000px;}
.y13{bottom:743.700000px;}
.y129{bottom:744.120000px;}
.y1d0{bottom:747.960000px;}
.y187{bottom:749.580000px;}
.y19f{bottom:751.200000px;}
.ye9{bottom:754.020000px;}
.y69{bottom:757.680000px;}
.y128{bottom:757.980000px;}
.y164{bottom:759.300000px;}
.y12{bottom:759.900000px;}
.yba{bottom:761.100000px;}
.y1cf{bottom:764.160000px;}
.y186{bottom:765.780000px;}
.y19e{bottom:767.400000px;}
.ye8{bottom:767.700000px;}
.y127{bottom:771.840000px;}
.y156{bottom:773.880000px;}
.y163{bottom:775.500000px;}
.y11{bottom:776.100000px;}
.yb9{bottom:777.300000px;}
.y1ce{bottom:780.360000px;}
.ye7{bottom:781.380000px;}
.y185{bottom:781.980000px;}
.y68{bottom:783.600000px;}
.ya1{bottom:784.800000px;}
.y126{bottom:785.700000px;}
.y155{bottom:790.080000px;}
.y260{bottom:791.700000px;}
.y10{bottom:792.300000px;}
.yb8{bottom:793.500000px;}
.ye6{bottom:795.060000px;}
.y1cd{bottom:796.560000px;}
.y184{bottom:798.180000px;}
.y125{bottom:799.560000px;}
.y67{bottom:799.800000px;}
.ya0{bottom:801.000000px;}
.y154{bottom:806.280000px;}
.y249{bottom:807.900000px;}
.yf{bottom:808.500000px;}
.ye5{bottom:808.740000px;}
.yb7{bottom:809.700000px;}
.y1cc{bottom:812.760000px;}
.y124{bottom:813.420000px;}
.y66{bottom:816.000000px;}
.y9f{bottom:817.200000px;}
.ye4{bottom:822.420000px;}
.y1ad{bottom:822.480000px;}
.y183{bottom:824.100000px;}
.ye{bottom:824.700000px;}
.yb6{bottom:825.900000px;}
.y123{bottom:827.280000px;}
.y1cb{bottom:828.960000px;}
.y65{bottom:832.200000px;}
.y9e{bottom:833.400000px;}
.ye3{bottom:836.100000px;}
.y1ac{bottom:838.680000px;}
.y182{bottom:840.300000px;}
.yd{bottom:840.900000px;}
.y122{bottom:841.140000px;}
.y48{bottom:842.100000px;}
.y1ca{bottom:845.160000px;}
.y64{bottom:848.400000px;}
.y9d{bottom:849.600000px;}
.ye2{bottom:849.780000px;}
.y1ab{bottom:854.880000px;}
.y121{bottom:855.000000px;}
.y181{bottom:856.500000px;}
.yc{bottom:857.100000px;}
.y47{bottom:858.300000px;}
.y1c9{bottom:861.360000px;}
.ye1{bottom:863.460000px;}
.y63{bottom:864.600000px;}
.y9c{bottom:865.800000px;}
.y120{bottom:868.860000px;}
.y1aa{bottom:871.080000px;}
.y180{bottom:872.700000px;}
.y46{bottom:874.500000px;}
.ye0{bottom:877.140000px;}
.y1c8{bottom:877.560000px;}
.y62{bottom:880.800000px;}
.y9b{bottom:882.000000px;}
.y11f{bottom:882.720000px;}
.y1a9{bottom:887.280000px;}
.y17f{bottom:888.900000px;}
.y45{bottom:890.700000px;}
.ydf{bottom:890.820000px;}
.y11e{bottom:896.580000px;}
.y61{bottom:897.000000px;}
.y9a{bottom:898.200000px;}
.yb{bottom:900.000000px;}
.y1a8{bottom:903.480000px;}
.yde{bottom:904.500000px;}
.y17e{bottom:905.100000px;}
.y11d{bottom:910.440000px;}
.y60{bottom:913.200000px;}
.y99{bottom:914.400000px;}
.ya{bottom:916.200000px;}
.ydd{bottom:918.180000px;}
.y1a7{bottom:919.680000px;}
.y17d{bottom:921.300000px;}
.y11c{bottom:924.300000px;}
.y44{bottom:929.400000px;}
.y98{bottom:930.600000px;}
.y9{bottom:932.400000px;}
.y1a6{bottom:935.880000px;}
.ydc{bottom:936.360000px;}
.y17c{bottom:937.500000px;}
.y11b{bottom:938.160000px;}
.y43{bottom:945.600000px;}
.y97{bottom:946.800000px;}
.y11a{bottom:952.020000px;}
.y1a5{bottom:952.080000px;}
.y17b{bottom:953.700000px;}
.ydb{bottom:954.540000px;}
.y8{bottom:956.700000px;}
.y42{bottom:961.800000px;}
.y96{bottom:963.000000px;}
.y119{bottom:965.880000px;}
.yda{bottom:968.220000px;}
.y1a4{bottom:968.280000px;}
.y17a{bottom:969.900000px;}
.y41{bottom:978.000000px;}
.y95{bottom:979.200000px;}
.y118{bottom:984.240000px;}
.y1a3{bottom:984.480000px;}
.y7{bottom:985.500000px;}
.y179{bottom:986.100000px;}
.yd9{bottom:986.700000px;}
.y40{bottom:994.200000px;}
.y94{bottom:995.400000px;}
.y1a2{bottom:1000.680000px;}
.y178{bottom:1002.300000px;}
.yd8{bottom:1002.900000px;}
.y3f{bottom:1010.400000px;}
.y93{bottom:1011.600000px;}
.yd7{bottom:1019.100000px;}
.y3e{bottom:1026.600000px;}
.y6{bottom:1027.800000px;}
.yd6{bottom:1035.300000px;}
.y3d{bottom:1042.800000px;}
.y5{bottom:1077.000000px;}
.y4{bottom:1091.400000px;}
.y3{bottom:1105.800000px;}
.y2{bottom:1120.200000px;}
.y1{bottom:1134.600000px;}
.h8{height:27.480000px;}
.ha{height:41.769600px;}
.hb{height:42.319200px;}
.h1{height:43.968000px;}
.h2{height:45.936000px;}
.h3{height:48.816000px;}
.h6{height:49.464000px;}
.h9{height:51.480000px;}
.h7{height:51.678000px;}
.hc{height:54.960000px;}
.h5{height:56.544000px;}
.h4{height:91.872000px;}
.h0{height:1186.500000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:81.000000px;}
.x9{left:186.000000px;}
.xb{left:214.500000px;}
.xa{left:306.000000px;}
.xc{left:408.000000px;}
.x5{left:441.000000px;}
.x2{left:472.500000px;}
.x4{left:580.140000px;}
.x6{left:583.500000px;}
.xd{left:631.500000px;}
.x3{left:685.992000px;}
.x7{left:711.000000px;}
.x8{left:771.000000px;}
@media print{
.v2{vertical-align:-21.333333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls0{letter-spacing:0.000000pt;}
.ws8{word-spacing:-13.333333pt;}
.ws1{word-spacing:-12.000000pt;}
.ws0{word-spacing:-10.666667pt;}
.ws7{word-spacing:-10.266667pt;}
.ws4{word-spacing:-10.133333pt;}
.ws2{word-spacing:-6.666667pt;}
.ws3{word-spacing:0.000000pt;}
.ws6{word-spacing:47.876267pt;}
.ws5{word-spacing:61.009067pt;}
._49{margin-left:-8.016000pt;}
._4{margin-left:-6.997333pt;}
._9{margin-left:-6.058667pt;}
._2{margin-left:-5.162667pt;}
._3{margin-left:-4.096000pt;}
._1{margin-left:-2.901333pt;}
._0{margin-left:-1.408000pt;}
._8{width:1.146667pt;}
._7{width:2.533333pt;}
._5{width:4.224000pt;}
._6{width:5.674667pt;}
._e{width:6.654933pt;}
._14{width:7.551467pt;}
._a{width:8.488000pt;}
._b{width:9.384000pt;}
._d{width:10.401600pt;}
._f{width:13.221333pt;}
._10{width:14.720000pt;}
._15{width:15.678400pt;}
._13{width:16.724800pt;}
._12{width:18.277333pt;}
._11{width:19.200000pt;}
._18{width:20.848533pt;}
._17{width:21.755200pt;}
._40{width:22.868800pt;}
._43{width:23.970133pt;}
._16{width:24.921600pt;}
._c{width:26.467200pt;}
._41{width:28.099200pt;}
._42{width:29.592533pt;}
._19{width:31.067200pt;}
._4c{width:32.147200pt;}
._44{width:33.345600pt;}
._45{width:34.278933pt;}
._46{width:35.582400pt;}
._35{width:36.658133pt;}
._4f{width:37.638400pt;}
._4e{width:39.052800pt;}
._48{width:41.472000pt;}
._47{width:42.529600pt;}
._3a{width:43.516267pt;}
._4b{width:44.586667pt;}
._4a{width:45.525333pt;}
._4d{width:47.088000pt;}
._28{width:58.291200pt;}
._3c{width:60.180800pt;}
._1c{width:65.499733pt;}
._1e{width:69.024000pt;}
._2c{width:70.615467pt;}
._1d{width:80.541867pt;}
._2d{width:100.544000pt;}
._23{width:102.286933pt;}
._3b{width:123.368000pt;}
._24{width:136.010667pt;}
._2b{width:150.858667pt;}
._29{width:161.538133pt;}
._34{width:163.707733pt;}
._25{width:164.940800pt;}
._31{width:166.285333pt;}
._2e{width:174.820267pt;}
._3f{width:188.062400pt;}
._20{width:192.230400pt;}
._26{width:194.197333pt;}
._3d{width:198.288000pt;}
._36{width:200.053867pt;}
._27{width:202.041600pt;}
._3e{width:233.042133pt;}
._37{width:234.221333pt;}
._1b{width:250.818133pt;}
._1f{width:255.097600pt;}
._22{width:262.210133pt;}
._39{width:263.513600pt;}
._21{width:273.866667pt;}
._1a{width:288.364800pt;}
._33{width:291.180800pt;}
._2a{width:297.422933pt;}
._2f{width:305.007467pt;}
._32{width:354.875200pt;}
._30{width:367.045333pt;}
._38{width:522.148267pt;}
.fs4{font-size:26.666667pt;}
.fs3{font-size:32.000000pt;}
.fs5{font-size:40.533333pt;}
.fs6{font-size:41.066667pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:58.400000pt;}
.y265{bottom:62.933333pt;}
.y263{bottom:70.133333pt;}
.y3b{bottom:71.200000pt;}
.y1c7{bottom:74.453333pt;}
.y92{bottom:75.893333pt;}
.y22f{bottom:77.333333pt;}
.y5f{bottom:77.338667pt;}
.y153{bottom:80.373333pt;}
.y19d{bottom:81.653333pt;}
.y162{bottom:83.093333pt;}
.y3a{bottom:84.000000pt;}
.y25f{bottom:84.533333pt;}
.y1ff{bottom:85.973333pt;}
.y210{bottom:86.076000pt;}
.yd5{bottom:87.153333pt;}
.y1c6{bottom:88.853333pt;}
.y91{bottom:90.293333pt;}
.y22e{bottom:91.733333pt;}
.y5e{bottom:91.738667pt;}
.y248{bottom:93.706667pt;}
.y152{bottom:94.773333pt;}
.y19c{bottom:96.053333pt;}
.y39{bottom:96.800000pt;}
.y161{bottom:97.493333pt;}
.y25e{bottom:98.933333pt;}
.yb5{bottom:99.948000pt;}
.y1fe{bottom:100.373333pt;}
.y20f{bottom:100.476000pt;}
.yd4{bottom:101.553333pt;}
.y1c5{bottom:103.253333pt;}
.y90{bottom:104.693333pt;}
.y22d{bottom:106.133333pt;}
.y5d{bottom:106.138667pt;}
.y247{bottom:108.106667pt;}
.y151{bottom:109.173333pt;}
.y19b{bottom:110.453333pt;}
.y117{bottom:110.880000pt;}
.y160{bottom:111.893333pt;}
.y25d{bottom:113.333333pt;}
.yb4{bottom:114.348000pt;}
.y1fd{bottom:114.773333pt;}
.y20e{bottom:114.876000pt;}
.y38{bottom:114.933333pt;}
.yd3{bottom:115.953333pt;}
.y1c4{bottom:117.653333pt;}
.y8f{bottom:119.093333pt;}
.y22c{bottom:120.533333pt;}
.y5c{bottom:120.538667pt;}
.y116{bottom:123.040000pt;}
.y150{bottom:123.573333pt;}
.y19a{bottom:124.853333pt;}
.y15f{bottom:126.293333pt;}
.y37{bottom:127.733333pt;}
.yb3{bottom:128.748000pt;}
.y1fc{bottom:129.173333pt;}
.y20d{bottom:129.276000pt;}
.y246{bottom:129.706667pt;}
.yd2{bottom:130.353333pt;}
.y1c3{bottom:132.053333pt;}
.y8e{bottom:133.493333pt;}
.y22b{bottom:134.933333pt;}
.y5b{bottom:134.938667pt;}
.y115{bottom:135.200000pt;}
.y14f{bottom:137.973333pt;}
.y199{bottom:139.253333pt;}
.y255{bottom:142.133333pt;}
.yb2{bottom:143.148000pt;}
.y1fb{bottom:143.573333pt;}
.y20c{bottom:143.676000pt;}
.y245{bottom:144.106667pt;}
.yd1{bottom:144.753333pt;}
.y1c2{bottom:146.453333pt;}
.y114{bottom:147.360000pt;}
.y8d{bottom:147.893333pt;}
.y22a{bottom:149.333333pt;}
.y5a{bottom:149.338667pt;}
.y14e{bottom:152.373333pt;}
.y198{bottom:153.653333pt;}
.y254{bottom:156.533333pt;}
.yb1{bottom:157.548000pt;}
.y1fa{bottom:157.973333pt;}
.y20b{bottom:158.076000pt;}
.y244{bottom:158.506667pt;}
.yd0{bottom:159.153333pt;}
.y113{bottom:159.520000pt;}
.y1c1{bottom:160.853333pt;}
.y8c{bottom:162.293333pt;}
.y229{bottom:163.733333pt;}
.y59{bottom:163.738667pt;}
.y14d{bottom:166.773333pt;}
.y197{bottom:168.053333pt;}
.y253{bottom:170.933333pt;}
.y112{bottom:171.680000pt;}
.yb0{bottom:171.948000pt;}
.y1f9{bottom:172.373333pt;}
.y20a{bottom:172.476000pt;}
.y243{bottom:172.906667pt;}
.ycf{bottom:173.553333pt;}
.y32{bottom:173.866667pt;}
.y1c0{bottom:175.253333pt;}
.y8b{bottom:176.693333pt;}
.y25c{bottom:178.133333pt;}
.y58{bottom:178.138667pt;}
.y14c{bottom:181.173333pt;}
.y196{bottom:182.453333pt;}
.y111{bottom:183.840000pt;}
.y228{bottom:185.333333pt;}
.y1f8{bottom:186.773333pt;}
.y242{bottom:187.306667pt;}
.yce{bottom:187.953333pt;}
.y31{bottom:188.266667pt;}
.y1bf{bottom:189.653333pt;}
.y8a{bottom:191.093333pt;}
.y25b{bottom:192.533333pt;}
.y57{bottom:192.538667pt;}
.y110{bottom:196.000000pt;}
.y195{bottom:196.853333pt;}
.yaf{bottom:197.868000pt;}
.y227{bottom:199.733333pt;}
.y1f7{bottom:201.173333pt;}
.ycd{bottom:202.353333pt;}
.y30{bottom:202.666667pt;}
.y1be{bottom:204.053333pt;}
.y89{bottom:205.493333pt;}
.y262{bottom:206.933333pt;}
.y10f{bottom:208.160000pt;}
.y241{bottom:208.906667pt;}
.y1ec{bottom:211.253333pt;}
.yae{bottom:212.268000pt;}
.y226{bottom:214.133333pt;}
.y1f6{bottom:215.573333pt;}
.y56{bottom:215.578667pt;}
.ycc{bottom:216.753333pt;}
.y2f{bottom:217.066667pt;}
.y1bd{bottom:218.453333pt;}
.y88{bottom:219.893333pt;}
.y10e{bottom:220.320000pt;}
.y264{bottom:221.333333pt;}
.y240{bottom:223.306667pt;}
.y1eb{bottom:225.653333pt;}
.yad{bottom:226.668000pt;}
.y225{bottom:228.533333pt;}
.y1f5{bottom:229.973333pt;}
.y14b{bottom:230.240000pt;}
.ycb{bottom:231.153333pt;}
.y2e{bottom:231.466667pt;}
.y10d{bottom:232.480000pt;}
.y1bc{bottom:232.853333pt;}
.y87{bottom:234.293333pt;}
.y252{bottom:235.733333pt;}
.y23f{bottom:237.706667pt;}
.y1ea{bottom:240.053333pt;}
.yac{bottom:241.068000pt;}
.y55{bottom:241.498667pt;}
.y14a{bottom:242.560000pt;}
.y224{bottom:242.933333pt;}
.y1f4{bottom:244.373333pt;}
.y10c{bottom:244.640000pt;}
.yca{bottom:245.553333pt;}
.y2d{bottom:245.866667pt;}
.y1bb{bottom:247.253333pt;}
.y86{bottom:248.693333pt;}
.y251{bottom:250.133333pt;}
.y23e{bottom:252.106667pt;}
.y1e9{bottom:254.453333pt;}
.y149{bottom:254.880000pt;}
.yab{bottom:255.468000pt;}
.y54{bottom:255.898667pt;}
.y10b{bottom:256.800000pt;}
.y223{bottom:257.333333pt;}
.y1f3{bottom:258.773333pt;}
.yc9{bottom:259.953333pt;}
.y2c{bottom:260.266667pt;}
.y1ba{bottom:261.653333pt;}
.y85{bottom:263.093333pt;}
.y250{bottom:264.533333pt;}
.y148{bottom:267.200000pt;}
.y1e8{bottom:268.853333pt;}
.y10a{bottom:268.960000pt;}
.yaa{bottom:269.868000pt;}
.y53{bottom:270.298667pt;}
.y222{bottom:271.733333pt;}
.y1f2{bottom:273.173333pt;}
.y23d{bottom:273.706667pt;}
.yc8{bottom:274.353333pt;}
.y2b{bottom:274.666667pt;}
.y1b9{bottom:276.053333pt;}
.y84{bottom:277.493333pt;}
.y24f{bottom:278.933333pt;}
.y147{bottom:279.520000pt;}
.y109{bottom:281.120000pt;}
.y1e7{bottom:283.253333pt;}
.ya9{bottom:284.268000pt;}
.y52{bottom:284.698667pt;}
.y221{bottom:286.133333pt;}
.y23c{bottom:288.106667pt;}
.yc7{bottom:288.753333pt;}
.y2a{bottom:289.066667pt;}
.y1b8{bottom:290.453333pt;}
.y146{bottom:291.840000pt;}
.y83{bottom:291.893333pt;}
.y108{bottom:293.280000pt;}
.y261{bottom:293.333333pt;}
.y1e6{bottom:297.653333pt;}
.ya8{bottom:298.668000pt;}
.y1f1{bottom:299.093333pt;}
.y51{bottom:299.098667pt;}
.y220{bottom:300.533333pt;}
.y23b{bottom:302.506667pt;}
.yc6{bottom:303.153333pt;}
.y29{bottom:303.466667pt;}
.y145{bottom:304.160000pt;}
.y1b7{bottom:304.853333pt;}
.y107{bottom:305.440000pt;}
.y82{bottom:306.293333pt;}
.y25a{bottom:307.733333pt;}
.y36{bottom:310.666667pt;}
.y1e5{bottom:312.053333pt;}
.ya7{bottom:313.068000pt;}
.y1f0{bottom:313.493333pt;}
.y50{bottom:313.498667pt;}
.y21f{bottom:314.933333pt;}
.y144{bottom:316.480000pt;}
.y23a{bottom:316.906667pt;}
.yc5{bottom:317.553333pt;}
.y106{bottom:317.600000pt;}
.y28{bottom:317.866667pt;}
.y1b6{bottom:319.253333pt;}
.y81{bottom:320.693333pt;}
.y259{bottom:322.133333pt;}
.y35{bottom:325.066667pt;}
.y1e4{bottom:326.453333pt;}
.ya6{bottom:327.468000pt;}
.y1ef{bottom:327.893333pt;}
.y4f{bottom:327.898667pt;}
.y143{bottom:328.800000pt;}
.y21e{bottom:329.333333pt;}
.y105{bottom:329.760000pt;}
.y239{bottom:331.306667pt;}
.yc4{bottom:331.953333pt;}
.y27{bottom:332.266667pt;}
.y1b5{bottom:333.653333pt;}
.y80{bottom:335.093333pt;}
.y258{bottom:336.533333pt;}
.y34{bottom:339.466667pt;}
.y1e3{bottom:340.853333pt;}
.y142{bottom:341.120000pt;}
.ya5{bottom:341.868000pt;}
.y104{bottom:341.920000pt;}
.y1ee{bottom:342.293333pt;}
.y4e{bottom:342.298667pt;}
.y21d{bottom:343.733333pt;}
.yc3{bottom:346.353333pt;}
.y26{bottom:346.666667pt;}
.y1b4{bottom:348.053333pt;}
.y7f{bottom:349.493333pt;}
.y257{bottom:350.933333pt;}
.y238{bottom:352.906667pt;}
.y141{bottom:353.440000pt;}
.y33{bottom:353.866667pt;}
.y103{bottom:354.080000pt;}
.y1e2{bottom:355.253333pt;}
.ya4{bottom:356.268000pt;}
.y1ed{bottom:356.693333pt;}
.y4d{bottom:356.698667pt;}
.y21c{bottom:358.133333pt;}
.yc2{bottom:360.753333pt;}
.y1b3{bottom:362.453333pt;}
.y15e{bottom:363.893333pt;}
.y256{bottom:365.333333pt;}
.y140{bottom:365.760000pt;}
.y102{bottom:366.240000pt;}
.y237{bottom:367.306667pt;}
.y25{bottom:368.266667pt;}
.y1e1{bottom:369.653333pt;}
.ya3{bottom:370.668000pt;}
.y7e{bottom:371.093333pt;}
.y4c{bottom:371.098667pt;}
.y21b{bottom:372.533333pt;}
.yc1{bottom:375.153333pt;}
.y1b2{bottom:376.853333pt;}
.y13f{bottom:378.080000pt;}
.y15d{bottom:378.293333pt;}
.y101{bottom:378.400000pt;}
.y24e{bottom:379.733333pt;}
.y236{bottom:381.706667pt;}
.y24{bottom:382.666667pt;}
.y1e0{bottom:384.053333pt;}
.ya2{bottom:385.068000pt;}
.y7d{bottom:385.493333pt;}
.y4b{bottom:385.498667pt;}
.y21a{bottom:386.933333pt;}
.yc0{bottom:389.553333pt;}
.y13e{bottom:390.400000pt;}
.y100{bottom:390.560000pt;}
.y1b1{bottom:391.253333pt;}
.y15c{bottom:392.693333pt;}
.y24d{bottom:394.133333pt;}
.y235{bottom:396.106667pt;}
.y23{bottom:397.066667pt;}
.y7c{bottom:399.893333pt;}
.y4a{bottom:399.898667pt;}
.y177{bottom:401.333333pt;}
.yff{bottom:402.720000pt;}
.ybf{bottom:403.953333pt;}
.y1b0{bottom:405.653333pt;}
.y15b{bottom:407.093333pt;}
.y24c{bottom:408.533333pt;}
.y234{bottom:410.506667pt;}
.y22{bottom:411.466667pt;}
.y7b{bottom:414.293333pt;}
.y49{bottom:414.298667pt;}
.yfe{bottom:414.880000pt;}
.y13d{bottom:415.040000pt;}
.y176{bottom:415.733333pt;}
.ybe{bottom:418.353333pt;}
.y1af{bottom:420.053333pt;}
.y15a{bottom:421.493333pt;}
.y24b{bottom:422.933333pt;}
.y233{bottom:424.906667pt;}
.y21{bottom:425.866667pt;}
.yfd{bottom:427.040000pt;}
.y13c{bottom:427.360000pt;}
.y7a{bottom:428.693333pt;}
.y175{bottom:430.133333pt;}
.ybd{bottom:432.753333pt;}
.y1ae{bottom:434.453333pt;}
.y159{bottom:435.893333pt;}
.y24a{bottom:437.333333pt;}
.yfc{bottom:439.200000pt;}
.y13b{bottom:439.680000pt;}
.y20{bottom:440.266667pt;}
.y79{bottom:443.093333pt;}
.y174{bottom:444.533333pt;}
.ybc{bottom:447.153333pt;}
.y1df{bottom:448.853333pt;}
.y158{bottom:450.293333pt;}
.yfb{bottom:451.360000pt;}
.y219{bottom:451.733333pt;}
.y13a{bottom:452.000000pt;}
.y1f{bottom:454.666667pt;}
.y78{bottom:457.493333pt;}
.y173{bottom:458.933333pt;}
.y1de{bottom:463.253333pt;}
.yfa{bottom:463.520000pt;}
.y139{bottom:464.320000pt;}
.y157{bottom:464.693333pt;}
.y218{bottom:466.133333pt;}
.y1e{bottom:469.066667pt;}
.ybb{bottom:470.193333pt;}
.y77{bottom:471.893333pt;}
.y172{bottom:473.333333pt;}
.y209{bottom:474.933333pt;}
.yf9{bottom:475.680000pt;}
.y138{bottom:476.640000pt;}
.y1dd{bottom:477.653333pt;}
.y194{bottom:479.093333pt;}
.y217{bottom:480.533333pt;}
.y1d{bottom:483.466667pt;}
.y76{bottom:486.293333pt;}
.y171{bottom:487.733333pt;}
.yf8{bottom:487.840000pt;}
.y137{bottom:488.960000pt;}
.y208{bottom:489.333333pt;}
.y1dc{bottom:492.053333pt;}
.y193{bottom:493.493333pt;}
.y216{bottom:494.933333pt;}
.y1c{bottom:497.866667pt;}
.yf7{bottom:500.000000pt;}
.y75{bottom:500.693333pt;}
.y136{bottom:501.280000pt;}
.y170{bottom:502.133333pt;}
.y207{bottom:503.733333pt;}
.y1db{bottom:506.453333pt;}
.y192{bottom:507.893333pt;}
.y215{bottom:509.333333pt;}
.yf6{bottom:512.160000pt;}
.y1b{bottom:512.266667pt;}
.y135{bottom:513.600000pt;}
.y74{bottom:515.093333pt;}
.y16f{bottom:516.533333pt;}
.y206{bottom:518.133333pt;}
.y1da{bottom:520.853333pt;}
.y191{bottom:522.293333pt;}
.y214{bottom:523.733333pt;}
.yf5{bottom:524.320000pt;}
.y134{bottom:525.920000pt;}
.y73{bottom:529.493333pt;}
.y16e{bottom:530.933333pt;}
.y205{bottom:532.533333pt;}
.y1d9{bottom:535.253333pt;}
.yf4{bottom:536.480000pt;}
.y190{bottom:536.693333pt;}
.y213{bottom:538.133333pt;}
.y133{bottom:538.240000pt;}
.y72{bottom:543.893333pt;}
.y16d{bottom:545.333333pt;}
.y204{bottom:546.933333pt;}
.yf3{bottom:548.640000pt;}
.y1d8{bottom:549.653333pt;}
.y132{bottom:550.560000pt;}
.y18f{bottom:551.093333pt;}
.y212{bottom:552.533333pt;}
.y1a{bottom:553.066667pt;}
.y232{bottom:553.493333pt;}
.y71{bottom:558.293333pt;}
.y16c{bottom:559.733333pt;}
.yf2{bottom:560.800000pt;}
.y131{bottom:562.880000pt;}
.y1d7{bottom:564.053333pt;}
.y18e{bottom:565.493333pt;}
.y211{bottom:566.933333pt;}
.y19{bottom:567.466667pt;}
.y231{bottom:569.493333pt;}
.y70{bottom:572.693333pt;}
.yf1{bottom:572.960000pt;}
.y16b{bottom:574.133333pt;}
.y130{bottom:575.200000pt;}
.y1d6{bottom:578.453333pt;}
.y18d{bottom:579.893333pt;}
.y203{bottom:581.333333pt;}
.yf0{bottom:585.120000pt;}
.y230{bottom:585.493333pt;}
.y6f{bottom:587.093333pt;}
.y12f{bottom:587.520000pt;}
.y16a{bottom:588.533333pt;}
.y18{bottom:589.066667pt;}
.y1d5{bottom:592.853333pt;}
.y18c{bottom:594.293333pt;}
.y202{bottom:595.733333pt;}
.yef{bottom:597.280000pt;}
.y12e{bottom:599.840000pt;}
.y6e{bottom:601.493333pt;}
.y169{bottom:602.933333pt;}
.y17{bottom:603.466667pt;}
.y1d4{bottom:607.253333pt;}
.y18b{bottom:608.693333pt;}
.yee{bottom:609.440000pt;}
.y201{bottom:610.133333pt;}
.y12d{bottom:612.160000pt;}
.y6d{bottom:615.893333pt;}
.y168{bottom:617.333333pt;}
.y16{bottom:617.866667pt;}
.yed{bottom:621.600000pt;}
.y1d3{bottom:621.653333pt;}
.y18a{bottom:623.093333pt;}
.y12c{bottom:624.480000pt;}
.y200{bottom:624.533333pt;}
.y6c{bottom:630.293333pt;}
.y167{bottom:631.733333pt;}
.y15{bottom:632.266667pt;}
.yec{bottom:633.760000pt;}
.y1d2{bottom:636.053333pt;}
.y12b{bottom:636.800000pt;}
.y189{bottom:637.493333pt;}
.y1a1{bottom:638.933333pt;}
.y6b{bottom:644.693333pt;}
.yeb{bottom:645.920000pt;}
.y166{bottom:646.133333pt;}
.y14{bottom:646.666667pt;}
.y12a{bottom:649.120000pt;}
.y1d1{bottom:650.453333pt;}
.y188{bottom:651.893333pt;}
.y1a0{bottom:653.333333pt;}
.yea{bottom:658.080000pt;}
.y6a{bottom:659.093333pt;}
.y165{bottom:660.533333pt;}
.y13{bottom:661.066667pt;}
.y129{bottom:661.440000pt;}
.y1d0{bottom:664.853333pt;}
.y187{bottom:666.293333pt;}
.y19f{bottom:667.733333pt;}
.ye9{bottom:670.240000pt;}
.y69{bottom:673.493333pt;}
.y128{bottom:673.760000pt;}
.y164{bottom:674.933333pt;}
.y12{bottom:675.466667pt;}
.yba{bottom:676.533333pt;}
.y1cf{bottom:679.253333pt;}
.y186{bottom:680.693333pt;}
.y19e{bottom:682.133333pt;}
.ye8{bottom:682.400000pt;}
.y127{bottom:686.080000pt;}
.y156{bottom:687.893333pt;}
.y163{bottom:689.333333pt;}
.y11{bottom:689.866667pt;}
.yb9{bottom:690.933333pt;}
.y1ce{bottom:693.653333pt;}
.ye7{bottom:694.560000pt;}
.y185{bottom:695.093333pt;}
.y68{bottom:696.533333pt;}
.ya1{bottom:697.600000pt;}
.y126{bottom:698.400000pt;}
.y155{bottom:702.293333pt;}
.y260{bottom:703.733333pt;}
.y10{bottom:704.266667pt;}
.yb8{bottom:705.333333pt;}
.ye6{bottom:706.720000pt;}
.y1cd{bottom:708.053333pt;}
.y184{bottom:709.493333pt;}
.y125{bottom:710.720000pt;}
.y67{bottom:710.933333pt;}
.ya0{bottom:712.000000pt;}
.y154{bottom:716.693333pt;}
.y249{bottom:718.133333pt;}
.yf{bottom:718.666667pt;}
.ye5{bottom:718.880000pt;}
.yb7{bottom:719.733333pt;}
.y1cc{bottom:722.453333pt;}
.y124{bottom:723.040000pt;}
.y66{bottom:725.333333pt;}
.y9f{bottom:726.400000pt;}
.ye4{bottom:731.040000pt;}
.y1ad{bottom:731.093333pt;}
.y183{bottom:732.533333pt;}
.ye{bottom:733.066667pt;}
.yb6{bottom:734.133333pt;}
.y123{bottom:735.360000pt;}
.y1cb{bottom:736.853333pt;}
.y65{bottom:739.733333pt;}
.y9e{bottom:740.800000pt;}
.ye3{bottom:743.200000pt;}
.y1ac{bottom:745.493333pt;}
.y182{bottom:746.933333pt;}
.yd{bottom:747.466667pt;}
.y122{bottom:747.680000pt;}
.y48{bottom:748.533333pt;}
.y1ca{bottom:751.253333pt;}
.y64{bottom:754.133333pt;}
.y9d{bottom:755.200000pt;}
.ye2{bottom:755.360000pt;}
.y1ab{bottom:759.893333pt;}
.y121{bottom:760.000000pt;}
.y181{bottom:761.333333pt;}
.yc{bottom:761.866667pt;}
.y47{bottom:762.933333pt;}
.y1c9{bottom:765.653333pt;}
.ye1{bottom:767.520000pt;}
.y63{bottom:768.533333pt;}
.y9c{bottom:769.600000pt;}
.y120{bottom:772.320000pt;}
.y1aa{bottom:774.293333pt;}
.y180{bottom:775.733333pt;}
.y46{bottom:777.333333pt;}
.ye0{bottom:779.680000pt;}
.y1c8{bottom:780.053333pt;}
.y62{bottom:782.933333pt;}
.y9b{bottom:784.000000pt;}
.y11f{bottom:784.640000pt;}
.y1a9{bottom:788.693333pt;}
.y17f{bottom:790.133333pt;}
.y45{bottom:791.733333pt;}
.ydf{bottom:791.840000pt;}
.y11e{bottom:796.960000pt;}
.y61{bottom:797.333333pt;}
.y9a{bottom:798.400000pt;}
.yb{bottom:800.000000pt;}
.y1a8{bottom:803.093333pt;}
.yde{bottom:804.000000pt;}
.y17e{bottom:804.533333pt;}
.y11d{bottom:809.280000pt;}
.y60{bottom:811.733333pt;}
.y99{bottom:812.800000pt;}
.ya{bottom:814.400000pt;}
.ydd{bottom:816.160000pt;}
.y1a7{bottom:817.493333pt;}
.y17d{bottom:818.933333pt;}
.y11c{bottom:821.600000pt;}
.y44{bottom:826.133333pt;}
.y98{bottom:827.200000pt;}
.y9{bottom:828.800000pt;}
.y1a6{bottom:831.893333pt;}
.ydc{bottom:832.320000pt;}
.y17c{bottom:833.333333pt;}
.y11b{bottom:833.920000pt;}
.y43{bottom:840.533333pt;}
.y97{bottom:841.600000pt;}
.y11a{bottom:846.240000pt;}
.y1a5{bottom:846.293333pt;}
.y17b{bottom:847.733333pt;}
.ydb{bottom:848.480000pt;}
.y8{bottom:850.400000pt;}
.y42{bottom:854.933333pt;}
.y96{bottom:856.000000pt;}
.y119{bottom:858.560000pt;}
.yda{bottom:860.640000pt;}
.y1a4{bottom:860.693333pt;}
.y17a{bottom:862.133333pt;}
.y41{bottom:869.333333pt;}
.y95{bottom:870.400000pt;}
.y118{bottom:874.880000pt;}
.y1a3{bottom:875.093333pt;}
.y7{bottom:876.000000pt;}
.y179{bottom:876.533333pt;}
.yd9{bottom:877.066667pt;}
.y40{bottom:883.733333pt;}
.y94{bottom:884.800000pt;}
.y1a2{bottom:889.493333pt;}
.y178{bottom:890.933333pt;}
.yd8{bottom:891.466667pt;}
.y3f{bottom:898.133333pt;}
.y93{bottom:899.200000pt;}
.yd7{bottom:905.866667pt;}
.y3e{bottom:912.533333pt;}
.y6{bottom:913.600000pt;}
.yd6{bottom:920.266667pt;}
.y3d{bottom:926.933333pt;}
.y5{bottom:957.333333pt;}
.y4{bottom:970.133333pt;}
.y3{bottom:982.933333pt;}
.y2{bottom:995.733333pt;}
.y1{bottom:1008.533333pt;}
.h8{height:24.426667pt;}
.ha{height:37.128533pt;}
.hb{height:37.617067pt;}
.h1{height:39.082667pt;}
.h2{height:40.832000pt;}
.h3{height:43.392000pt;}
.h6{height:43.968000pt;}
.h9{height:45.760000pt;}
.h7{height:45.936000pt;}
.hc{height:48.853333pt;}
.h5{height:50.261333pt;}
.h4{height:81.664000pt;}
.h0{height:1054.666667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:72.000000pt;}
.x9{left:165.333333pt;}
.xb{left:190.666667pt;}
.xa{left:272.000000pt;}
.xc{left:362.666667pt;}
.x5{left:392.000000pt;}
.x2{left:420.000000pt;}
.x4{left:515.680000pt;}
.x6{left:518.666667pt;}
.xd{left:561.333333pt;}
.x3{left:609.770667pt;}
.x7{left:632.000000pt;}
.x8{left:685.333333pt;}
}




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