
    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_03e2d3f6289165d7b1eae3f2.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_310b296d92fc21064ea673ac.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b9dff61f155238ee43adadf3.woff')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_3658976989c993c2b0f0fa0f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_f2c09846a3b12c4aa3042fa4.woff')format("woff");}.ff5{font-family:ff5;line-height:1.030762;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_eb01b45326050078c276a33a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.030762;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_942d4539e67acad4afe64515.woff')format("woff");}.ff7{font-family:ff7;line-height:1.104004;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_53e015ac3b4470637b6cb7ec.woff')format("woff");}.ff8{font-family:ff8;line-height:1.104004;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_6a6b4939b19cc05a7f532d01.woff')format("woff");}.ff9{font-family:ff9;line-height:1.112305;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_a4d91708048b03721e50ce6e.woff')format("woff");}.ffa{font-family:ffa;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_b4feb020e884746ba36338c3.woff')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_6b5de50b56e705ee163bae1c.woff')format("woff");}.ffc{font-family:ffc;line-height:0.854004;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:ffd;src:url('chunks/assets/font_e6f0708552efe89a65852fea.woff')format("woff");}.ffd{font-family:ffd;line-height:0.854004;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:ffe;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ffe{font-family:ffe;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.fff{font-family:fff;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_388253baff149e00e3fd2495.woff')format("woff");}.ff10{font-family:ff10;line-height:0.747559;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:ff11;src:url('chunks/assets/font_d7811bc05268d49a16011df4.woff')format("woff");}.ff11{font-family:ff11;line-height:1.074707;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:ff12;src:url('chunks/assets/font_97d32c02fdf701075dc4bf1a.woff')format("woff");}.ff12{font-family:ff12;line-height:0.925781;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:ff13;src:url('chunks/assets/font_8d045ac19289d8388ddd95b8.woff')format("woff");}.ff13{font-family:ff13;line-height:0.916992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.215125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215125,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);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-0.341400px;}
.ls7{letter-spacing:-0.216000px;}
.ls1{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.350400px;}
.ls4{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.720000px;}
.ls5{letter-spacing:0.900000px;}
.lsf{letter-spacing:2.340000px;}
.ls10{letter-spacing:8.100000px;}
.ls3{letter-spacing:9.378720px;}
.lsa{letter-spacing:28.224000px;}
.ls8{letter-spacing:33.984000px;}
.lsb{letter-spacing:64.026720px;}
.lse{letter-spacing:70.020000px;}
.ls9{letter-spacing:84.581280px;}
.ls6{letter-spacing:152.778720px;}
.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;}
}
.ws3{word-spacing:-72.000000px;}
.ws9{word-spacing:-59.760000px;}
.ws6{word-spacing:-24.300000px;}
.ws7{word-spacing:-23.940000px;}
.ws8{word-spacing:-21.410400px;}
.ws4{word-spacing:-21.060000px;}
.ws5{word-spacing:-20.718600px;}
.wsa{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:0.000000px;}
.ws2{word-spacing:0.815805px;}
._27{margin-left:-7.775364px;}
._24{margin-left:-6.486480px;}
._26{margin-left:-4.464636px;}
._23{margin-left:-2.864160px;}
._1{margin-left:-1.010964px;}
._0{width:1.244976px;}
._12{width:2.738964px;}
._f{width:3.816000px;}
._9{width:5.760000px;}
._a{width:6.984000px;}
._b{width:8.064000px;}
._16{width:9.144000px;}
._20{width:10.202964px;}
._10{width:11.376000px;}
._d{width:13.248000px;}
._e{width:14.484000px;}
._1e{width:15.744000px;}
._1f{width:16.925988px;}
._17{width:19.584000px;}
._2{width:20.856000px;}
._19{width:22.392000px;}
._1a{width:23.688000px;}
._1b{width:24.696000px;}
._5{width:26.424000px;}
._6{width:27.432000px;}
._14{width:28.730964px;}
._15{width:29.805036px;}
._1d{width:31.538964px;}
._c{width:32.978964px;}
._29{width:34.070400px;}
._3{width:35.400000px;}
._4{width:37.320000px;}
._7{width:38.736000px;}
._8{width:39.816000px;}
._11{width:41.040000px;}
._13{width:42.912000px;}
._1c{width:44.210964px;}
._28{width:46.293036px;}
._25{width:66.633924px;}
._2c{width:71.136000px;}
._2e{width:109.080000px;}
._21{width:124.560000px;}
._22{width:125.712000px;}
._2b{width:164.232000px;}
._2a{width:167.292000px;}
._2f{width:487.512000px;}
._18{width:650.088000px;}
._2d{width:802.872000px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:18.000000px;}
.fs6{font-size:41.760000px;}
.fs5{font-size:59.760000px;}
.fs7{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.fs3{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y1a6{bottom:0.042000px;}
.y4{bottom:3.960000px;}
.y3{bottom:24.660000px;}
.y2{bottom:45.360000px;}
.y1e3{bottom:92.191500px;}
.y10{bottom:100.476000px;}
.y8{bottom:100.836000px;}
.y1ad{bottom:105.241500px;}
.y55{bottom:106.416000px;}
.y31{bottom:110.016000px;}
.y187{bottom:112.176000px;}
.yea{bottom:113.796000px;}
.y1e2{bottom:115.966500px;}
.y14b{bottom:119.556000px;}
.y112{bottom:120.276000px;}
.y1fe{bottom:120.691500px;}
.y1f1{bottom:121.141500px;}
.yf{bottom:121.176000px;}
.y7{bottom:121.536000px;}
.y1ac{bottom:125.941500px;}
.y9d{bottom:126.216000px;}
.y207{bottom:126.241500px;}
.y186{bottom:136.116000px;}
.y1e1{bottom:139.741500px;}
.y14a{bottom:140.256000px;}
.y30{bottom:141.156000px;}
.ye9{bottom:141.516000px;}
.y111{bottom:144.396000px;}
.y1fd{bottom:144.466500px;}
.y1f0{bottom:144.916500px;}
.yc3{bottom:145.836000px;}
.y206{bottom:150.016500px;}
.y9c{bottom:150.330000px;}
.y4e{bottom:153.570000px;}
.y3f{bottom:156.270000px;}
.y185{bottom:156.450000px;}
.y149{bottom:160.950000px;}
.y1a5{bottom:162.210000px;}
.y1fc{bottom:168.241500px;}
.y1ef{bottom:168.691500px;}
.yc2{bottom:169.950000px;}
.y2f{bottom:172.110000px;}
.y205{bottom:173.791500px;}
.y9b{bottom:174.630000px;}
.y4c{bottom:175.170000px;}
.y184{bottom:177.150000px;}
.y110{bottom:180.390000px;}
.y148{bottom:182.190000px;}
.ye8{bottom:182.910000px;}
.y3e{bottom:187.410000px;}
.y1a4{bottom:188.490000px;}
.y1d0{bottom:189.541500px;}
.y1fb{bottom:192.016500px;}
.y1ee{bottom:192.466500px;}
.yc1{bottom:194.070000px;}
.y204{bottom:197.566500px;}
.y1e0{bottom:197.791500px;}
.y9a{bottom:198.750000px;}
.y54{bottom:199.470000px;}
.y2e{bottom:203.250000px;}
.y10f{bottom:204.330000px;}
.y4b{bottom:206.310000px;}
.y1a3{bottom:209.190000px;}
.y1cf{bottom:213.316500px;}
.y1fa{bottom:215.791500px;}
.y1ed{bottom:216.241500px;}
.yc0{bottom:218.190000px;}
.y3d{bottom:218.370000px;}
.ye7{bottom:218.910000px;}
.y203{bottom:221.341500px;}
.y1df{bottom:221.566500px;}
.y99{bottom:224.310000px;}
.y10e{bottom:228.270000px;}
.y1a2{bottom:229.890000px;}
.y53{bottom:230.610000px;}
.y2d{bottom:234.210000px;}
.y183{bottom:235.470000px;}
.y1ce{bottom:237.091500px;}
.y4a{bottom:237.270000px;}
.y1f9{bottom:239.566500px;}
.y1ec{bottom:240.016500px;}
.ybf{bottom:242.310000px;}
.ye6{bottom:242.850000px;}
.y202{bottom:245.116500px;}
.y147{bottom:245.190000px;}
.y3c{bottom:249.510000px;}
.y98{bottom:250.050000px;}
.y1a1{bottom:250.590000px;}
.y10d{bottom:252.210000px;}
.y172{bottom:259.950000px;}
.y45{bottom:260.310000px;}
.y1cd{bottom:260.866500px;}
.y52{bottom:261.570000px;}
.y1f8{bottom:263.341500px;}
.y1eb{bottom:263.791500px;}
.y182{bottom:264.810000px;}
.y2c{bottom:265.350000px;}
.ybe{bottom:266.430000px;}
.ye5{bottom:266.970000px;}
.y49{bottom:268.410000px;}
.y146{bottom:269.130000px;}
.y12f{bottom:269.670000px;}
.y1a0{bottom:271.290000px;}
.y6d{bottom:273.810000px;}
.y97{bottom:275.610000px;}
.y10c{bottom:276.150000px;}
.y171{bottom:284.070000px;}
.y1f7{bottom:287.116500px;}
.y65{bottom:290.010000px;}
.ybd{bottom:290.730000px;}
.ye4{bottom:290.910000px;}
.y44{bottom:291.270000px;}
.y19f{bottom:291.990000px;}
.y145{bottom:293.250000px;}
.y181{bottom:294.150000px;}
.y2b{bottom:296.310000px;}
.y48{bottom:299.370000px;}
.y10b{bottom:300.090000px;}
.y96{bottom:301.170000px;}
.y51{bottom:302.970000px;}
.y78{bottom:303.870000px;}
.y6c{bottom:304.770000px;}
.y170{bottom:308.010000px;}
.y1f6{bottom:310.891500px;}
.y19e{bottom:312.690000px;}
.y201{bottom:313.666500px;}
.y144{bottom:313.950000px;}
.ybc{bottom:314.850000px;}
.y64{bottom:320.970000px;}
.y1ea{bottom:321.841500px;}
.y43{bottom:322.410000px;}
.y180{bottom:323.490000px;}
.y10a{bottom:324.210000px;}
.y95{bottom:326.910000px;}
.y2a{bottom:327.450000px;}
.y1cc{bottom:329.416500px;}
.y16f{bottom:331.950000px;}
.y19d{bottom:333.390000px;}
.y143{bottom:334.650000px;}
.y1f5{bottom:334.666500px;}
.y77{bottom:335.010000px;}
.y6b{bottom:335.910000px;}
.y200{bottom:337.441500px;}
.ye3{bottom:338.835000px;}
.ybb{bottom:339.015000px;}
.y47{bottom:340.815000px;}
.y7b{bottom:343.515000px;}
.y50{bottom:344.415000px;}
.y1e9{bottom:345.616500px;}
.y109{bottom:348.195000px;}
.y63{bottom:352.155000px;}
.y94{bottom:352.515000px;}
.y17f{bottom:352.695000px;}
.y42{bottom:353.415000px;}
.y19c{bottom:354.135000px;}
.y142{bottom:355.395000px;}
.y29{bottom:358.455000px;}
.y12e{bottom:358.635000px;}
.y1ff{bottom:361.216500px;}
.yba{bottom:363.135000px;}
.y76{bottom:366.015000px;}
.y6a{bottom:366.915000px;}
.y16e{bottom:367.995000px;}
.y7a{bottom:374.655000px;}
.ye2{bottom:374.835000px;}
.y141{bottom:376.095000px;}
.y93{bottom:378.255000px;}
.y17e{bottom:382.035000px;}
.y46{bottom:382.215000px;}
.y108{bottom:384.195000px;}
.yb9{bottom:387.255000px;}
.y28{bottom:389.595000px;}
.y16d{bottom:391.935000px;}
.y1f4{bottom:392.716500px;}
.y62{bottom:393.555000px;}
.y19b{bottom:395.535000px;}
.y12d{bottom:396.075000px;}
.y140{bottom:396.795000px;}
.ye1{bottom:398.775000px;}
.y92{bottom:403.815000px;}
.y41{bottom:405.255000px;}
.y107{bottom:408.135000px;}
.y69{bottom:408.315000px;}
.yb8{bottom:411.375000px;}
.y16c{bottom:415.875000px;}
.y19a{bottom:416.235000px;}
.y1f3{bottom:416.491500px;}
.y13f{bottom:417.495000px;}
.y27{bottom:420.555000px;}
.ye0{bottom:422.895000px;}
.y75{bottom:428.115000px;}
.y91{bottom:429.375000px;}
.y106{bottom:432.075000px;}
.y1cb{bottom:432.241500px;}
.y12c{bottom:433.155000px;}
.y61{bottom:434.955000px;}
.yb7{bottom:435.495000px;}
.y79{bottom:436.755000px;}
.y199{bottom:436.935000px;}
.y13e{bottom:438.195000px;}
.y16b{bottom:439.815000px;}
.y17d{bottom:440.715000px;}
.ydf{bottom:446.835000px;}
.y26{bottom:451.695000px;}
.y90{bottom:455.115000px;}
.y105{bottom:456.015000px;}
.y1ca{bottom:456.016500px;}
.y198{bottom:457.635000px;}
.y13d{bottom:458.895000px;}
.yb6{bottom:459.795000px;}
.y16a{bottom:463.935000px;}
.y74{bottom:469.515000px;}
.y17c{bottom:469.875000px;}
.yde{bottom:470.775000px;}
.y197{bottom:478.335000px;}
.y13c{bottom:479.415000px;}
.y1c9{bottom:479.791500px;}
.y104{bottom:480.135000px;}
.y8f{bottom:480.675000px;}
.y25{bottom:482.655000px;}
.yb5{bottom:483.915000px;}
.y169{bottom:487.875000px;}
.y12a{bottom:492.375000px;}
.ydd{bottom:494.715000px;}
.y196{bottom:499.035000px;}
.y17b{bottom:499.215000px;}
.y13b{bottom:500.115000px;}
.y1c8{bottom:503.566500px;}
.y103{bottom:504.075000px;}
.y8e{bottom:506.415000px;}
.yb4{bottom:508.035000px;}
.y24{bottom:513.795000px;}
.ye{bottom:514.515000px;}
.y129{bottom:516.315000px;}
.y168{bottom:519.015000px;}
.y195{bottom:519.735000px;}
.y13a{bottom:520.815000px;}
.y1c7{bottom:527.341500px;}
.y102{bottom:528.015000px;}
.y17a{bottom:528.555000px;}
.ydc{bottom:530.715000px;}
.y8d{bottom:531.975000px;}
.yb3{bottom:532.155000px;}
.y167{bottom:533.235000px;}
.y1b1{bottom:539.941500px;}
.y128{bottom:540.255000px;}
.y194{bottom:540.435000px;}
.y139{bottom:541.515000px;}
.y23{bottom:544.755000px;}
.y1c6{bottom:551.116500px;}
.y223{bottom:551.266500px;}
.ydb{bottom:554.655000px;}
.y8c{bottom:556.095000px;}
.yb2{bottom:556.275000px;}
.y166{bottom:557.355000px;}
.y179{bottom:557.895000px;}
.y193{bottom:561.135000px;}
.y101{bottom:564.015000px;}
.y222{bottom:571.966500px;}
.y22{bottom:575.715000px;}
.y127{bottom:576.255000px;}
.yd{bottom:576.615000px;}
.y6{bottom:577.515000px;}
.yda{bottom:578.595000px;}
.y8b{bottom:580.215000px;}
.yb1{bottom:580.395000px;}
.y165{bottom:580.935000px;}
.y1b0{bottom:581.341500px;}
.y192{bottom:581.835000px;}
.y1c5{bottom:585.391500px;}
.y178{bottom:587.055000px;}
.y100{bottom:587.955000px;}
.y221{bottom:592.666500px;}
.y66{bottom:593.895000px;}
.yc{bottom:597.315000px;}
.y126{bottom:600.195000px;}
.y164{bottom:601.635000px;}
.y1ab{bottom:602.041500px;}
.y191{bottom:602.535000px;}
.yd9{bottom:602.715000px;}
.yb0{bottom:604.725000px;}
.y21{bottom:606.885000px;}
.y8a{bottom:608.505000px;}
.y1c4{bottom:609.166500px;}
.yff{bottom:611.925000px;}
.y220{bottom:613.366500px;}
.y138{bottom:613.545000px;}
.y177{bottom:616.425000px;}
.yb{bottom:618.045000px;}
.y163{bottom:622.365000px;}
.y1aa{bottom:622.741500px;}
.y190{bottom:623.265000px;}
.y125{bottom:624.345000px;}
.yd8{bottom:626.685000px;}
.yaf{bottom:628.845000px;}
.y1c3{bottom:632.941500px;}
.y21f{bottom:634.066500px;}
.yfe{bottom:635.865000px;}
.y137{bottom:637.485000px;}
.y20{bottom:637.845000px;}
.y162{bottom:643.065000px;}
.y18f{bottom:643.965000px;}
.y176{bottom:645.765000px;}
.y124{bottom:648.285000px;}
.y4d{bottom:651.345000px;}
.y6e{bottom:651.885000px;}
.yae{bottom:652.965000px;}
.y89{bottom:653.325000px;}
.y21e{bottom:654.766500px;}
.y1c2{bottom:656.716500px;}
.yfd{bottom:659.985000px;}
.y136{bottom:661.605000px;}
.yd7{bottom:662.685000px;}
.y161{bottom:663.765000px;}
.y18e{bottom:664.665000px;}
.y1f{bottom:668.985000px;}
.y175{bottom:675.105000px;}
.y21d{bottom:675.466500px;}
.yad{bottom:677.085000px;}
.y1c1{bottom:680.491500px;}
.yfc{bottom:683.925000px;}
.y123{bottom:684.285000px;}
.y160{bottom:684.465000px;}
.y18d{bottom:685.365000px;}
.y135{bottom:685.545000px;}
.yd6{bottom:686.625000px;}
.y211{bottom:690.991500px;}
.y21c{bottom:696.166500px;}
.y73{bottom:697.245000px;}
.y88{bottom:698.145000px;}
.y1e{bottom:699.945000px;}
.yac{bottom:701.205000px;}
.y174{bottom:704.265000px;}
.y1c0{bottom:704.266500px;}
.y15f{bottom:705.165000px;}
.y134{bottom:706.245000px;}
.y18c{bottom:707.325000px;}
.yfb{bottom:707.865000px;}
.y122{bottom:708.225000px;}
.yd5{bottom:710.565000px;}
.yab{bottom:725.325000px;}
.y15e{bottom:725.865000px;}
.y59{bottom:727.845000px;}
.y1bf{bottom:728.041500px;}
.y133{bottom:728.205000px;}
.y72{bottom:728.385000px;}
.y1d{bottom:731.085000px;}
.yd4{bottom:734.505000px;}
.y18b{bottom:735.045000px;}
.y87{bottom:742.965000px;}
.yfa{bottom:743.865000px;}
.y121{bottom:744.225000px;}
.y173{bottom:746.025000px;}
.y15d{bottom:746.565000px;}
.y215{bottom:749.041500px;}
.yaa{bottom:749.445000px;}
.y132{bottom:757.365000px;}
.y21b{bottom:758.266500px;}
.yd3{bottom:758.445000px;}
.y71{bottom:759.345000px;}
.y210{bottom:759.541500px;}
.y1c{bottom:762.045000px;}
.y1be{bottom:762.316500px;}
.y18a{bottom:762.585000px;}
.y15c{bottom:767.265000px;}
.yf9{bottom:767.805000px;}
.y120{bottom:768.165000px;}
.y1dd{bottom:772.816500px;}
.ya9{bottom:773.745000px;}
.y58{bottom:779.505000px;}
.yd2{bottom:782.565000px;}
.y20f{bottom:783.316500px;}
.y131{bottom:783.825000px;}
.ya{bottom:784.185000px;}
.y1bd{bottom:786.091500px;}
.y15b{bottom:787.965000px;}
.y1af{bottom:788.341500px;}
.y70{bottom:790.485000px;}
.yf8{bottom:791.745000px;}
.y1b{bottom:793.185000px;}
.y1de{bottom:796.591500px;}
.ya8{bottom:797.865000px;}
.y3b{bottom:800.745000px;}
.y11f{bottom:804.165000px;}
.y130{bottom:804.525000px;}
.y20e{bottom:807.091500px;}
.y15a{bottom:808.665000px;}
.y1ae{bottom:809.041500px;}
.y5{bottom:809.385000px;}
.y1bc{bottom:809.866500px;}
.y57{bottom:810.645000px;}
.yf7{bottom:815.685000px;}
.yd1{bottom:818.385000px;}
.y212{bottom:820.366500px;}
.y60{bottom:821.445000px;}
.ya7{bottom:821.985000px;}
.y1a{bottom:824.145000px;}
.y11e{bottom:828.105000px;}
.y159{bottom:829.365000px;}
.y20d{bottom:830.866500px;}
.y1bb{bottom:833.641500px;}
.y86{bottom:838.005000px;}
.yf6{bottom:839.805000px;}
.y1dc{bottom:841.366500px;}
.yd0{bottom:842.505000px;}
.y214{bottom:844.141500px;}
.ya6{bottom:846.105000px;}
.y158{bottom:850.065000px;}
.y56{bottom:852.045000px;}
.y6f{bottom:852.585000px;}
.y20c{bottom:854.641500px;}
.y19{bottom:855.285000px;}
.y1ba{bottom:857.416500px;}
.y3a{bottom:862.845000px;}
.yf5{bottom:863.745000px;}
.y1db{bottom:865.141500px;}
.ycf{bottom:866.445000px;}
.y213{bottom:867.916500px;}
.ya5{bottom:870.225000px;}
.y157{bottom:870.810000px;}
.y11d{bottom:876.030000px;}
.y20b{bottom:878.416500px;}
.y85{bottom:880.530000px;}
.y1b9{bottom:881.191500px;}
.y5f{bottom:883.590000px;}
.y18{bottom:886.290000px;}
.yf4{bottom:887.730000px;}
.y1da{bottom:888.916500px;}
.yce{bottom:890.430000px;}
.y156{bottom:891.510000px;}
.y38{bottom:894.030000px;}
.ya4{bottom:894.390000px;}
.y189{bottom:899.970000px;}
.y20a{bottom:902.191500px;}
.y84{bottom:906.270000px;}
.yf3{bottom:911.670000px;}
.y11c{bottom:912.030000px;}
.y155{bottom:912.210000px;}
.y1d9{bottom:912.691500px;}
.ycd{bottom:914.370000px;}
.y5e{bottom:914.730000px;}
.y1b8{bottom:915.466500px;}
.y17{bottom:917.430000px;}
.ya3{bottom:918.690000px;}
.y37{bottom:924.990000px;}
.y209{bottom:925.966500px;}
.y83{bottom:931.830000px;}
.y154{bottom:932.910000px;}
.y11b{bottom:935.970000px;}
.y1d8{bottom:936.466500px;}
.ycc{bottom:938.310000px;}
.y1b7{bottom:939.241500px;}
.ya2{bottom:942.810000px;}
.y5d{bottom:945.690000px;}
.yf2{bottom:947.670000px;}
.y16{bottom:948.390000px;}
.y21a{bottom:949.741500px;}
.y153{bottom:953.610000px;}
.y36{bottom:956.130000px;}
.y82{bottom:957.570000px;}
.y11a{bottom:960.090000px;}
.y1d7{bottom:960.241500px;}
.y1b6{bottom:963.016500px;}
.y4f{bottom:966.390000px;}
.ya1{bottom:966.930000px;}
.yf1{bottom:971.610000px;}
.y1e8{bottom:973.516500px;}
.ycb{bottom:974.310000px;}
.y9{bottom:974.670000px;}
.y5c{bottom:976.830000px;}
.y15{bottom:979.530000px;}
.y81{bottom:983.130000px;}
.y1d6{bottom:984.016500px;}
.y119{bottom:984.030000px;}
.y1b5{bottom:986.791500px;}
.y35{bottom:987.090000px;}
.ya0{bottom:991.050000px;}
.y152{bottom:995.010000px;}
.yf0{bottom:995.550000px;}
.y219{bottom:997.291500px;}
.yca{bottom:998.430000px;}
.y5b{bottom:1007.790000px;}
.y1d5{bottom:1007.791500px;}
.y118{bottom:1007.970000px;}
.y80{bottom:1008.870000px;}
.y14{bottom:1010.490000px;}
.y1b4{bottom:1010.566500px;}
.y9f{bottom:1015.170000px;}
.y151{bottom:1015.710000px;}
.y34{bottom:1018.230000px;}
.yef{bottom:1019.670000px;}
.y218{bottom:1021.066500px;}
.yc9{bottom:1022.370000px;}
.y1d4{bottom:1031.566500px;}
.y188{bottom:1031.910000px;}
.y1b3{bottom:1034.341500px;}
.y7f{bottom:1034.430000px;}
.y150{bottom:1036.410000px;}
.y68{bottom:1038.930000px;}
.y13{bottom:1041.630000px;}
.y1e7{bottom:1042.066500px;}
.y9e{bottom:1043.250000px;}
.yee{bottom:1043.610000px;}
.y117{bottom:1043.970000px;}
.y217{bottom:1044.841500px;}
.yc8{bottom:1046.310000px;}
.y33{bottom:1049.190000px;}
.y1d3{bottom:1055.341500px;}
.y14f{bottom:1057.110000px;}
.y1b2{bottom:1058.116500px;}
.y1{bottom:1059.450000px;}
.y7e{bottom:1059.990000px;}
.y1e6{bottom:1065.841500px;}
.yed{bottom:1067.550000px;}
.y116{bottom:1067.910000px;}
.y1f2{bottom:1068.616500px;}
.y67{bottom:1069.890000px;}
.yc7{bottom:1070.250000px;}
.y12{bottom:1072.590000px;}
.y14e{bottom:1077.810000px;}
.y1d2{bottom:1079.116500px;}
.y32{bottom:1080.330000px;}
.y7d{bottom:1085.730000px;}
.y1e5{bottom:1089.616500px;}
.y5a{bottom:1090.590000px;}
.yec{bottom:1091.490000px;}
.y115{bottom:1091.850000px;}
.y216{bottom:1092.391500px;}
.yc6{bottom:1094.190000px;}
.y14d{bottom:1098.510000px;}
.y208{bottom:1102.891500px;}
.y11{bottom:1111.290000px;}
.y40{bottom:1111.290150px;}
.yeb{bottom:1112.190000px;}
.y1e4{bottom:1113.391500px;}
.y114{bottom:1115.790000px;}
.y14c{bottom:1119.210000px;}
.y1a9{bottom:1119.541500px;}
.yc5{bottom:1124.610000px;}
.y12b{bottom:1134.150000px;}
.yc4{bottom:1134.330000px;}
.y7c{bottom:1137.030000px;}
.y1d1{bottom:1137.166500px;}
.y113{bottom:1139.940000px;}
.y1a8{bottom:1140.241500px;}
.y1a7{bottom:1160.941500px;}
.y39{bottom:1193.040000px;}
.he{height:16.136719px;}
.h12{height:37.437188px;}
.h17{height:50.765625px;}
.h13{height:58.833281px;}
.hf{height:60.855469px;}
.h16{height:61.839844px;}
.h11{height:63.949219px;}
.h7{height:64.546875px;}
.h6{height:70.664062px;}
.h8{height:71.242031px;}
.h3{height:72.562500px;}
.hb{height:74.820586px;}
.hc{height:75.519844px;}
.h2{height:75.780000px;}
.h10{height:80.984531px;}
.h5{height:84.898125px;}
.hd{height:85.052461px;}
.h4{height:96.508125px;}
.h9{height:132.132656px;}
.ha{height:138.769805px;}
.h15{height:1262.791500px;}
.h14{height:1262.834646px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:414.645000px;}
.w5{width:892.912500px;}
.w4{width:892.955906px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:10.440000px;}
.x2{left:14.940000px;}
.x3{left:22.500000px;}
.x35{left:85.200000px;}
.x39{left:93.750000px;}
.x3a{left:109.950000px;}
.xb{left:127.656000px;}
.x2b{left:133.055987px;}
.x36{left:138.375000px;}
.x2a{left:141.155987px;}
.x27{left:154.649987px;}
.x38{left:166.950000px;}
.xc{left:180.750000px;}
.x37{left:184.425000px;}
.x1e{left:191.730000px;}
.x29{left:207.749987px;}
.x20{left:228.449987px;}
.x1f{left:233.669987px;}
.x1{left:244.650000px;}
.x2f{left:259.425000px;}
.x9{left:260.850000px;}
.x2d{left:262.275000px;}
.x1b{left:267.870000px;}
.x2e{left:270.300000px;}
.x6{left:280.875000px;}
.x31{left:282.450000px;}
.x19{left:285.375000px;}
.x18{left:286.995000px;}
.x15{left:289.695000px;}
.x1d{left:291.495000px;}
.x30{left:293.325000px;}
.x16{left:304.455000px;}
.x33{left:309.225000px;}
.x5{left:313.095000px;}
.x14{left:324.075000px;}
.x10{left:327.290550px;}
.x23{left:332.534987px;}
.x17{left:338.655000px;}
.xe{left:345.135000px;}
.x1c{left:347.835000px;}
.x12{left:351.615000px;}
.x13{left:357.195000px;}
.x1a{left:363.135000px;}
.x3c{left:386.625000px;}
.xa{left:393.195000px;}
.x24{left:399.854987px;}
.x32{left:406.650000px;}
.x34{left:415.875000px;}
.x3b{left:421.125000px;}
.x25{left:425.594987px;}
.x7{left:427.935000px;}
.x21{left:433.874987px;}
.x28{left:436.574987px;}
.x22{left:446.474987px;}
.x8{left:449.895000px;}
.x2c{left:451.694987px;}
.x11{left:602.915550px;}
.xf{left:643.605000px;}
.x26{left:765.509987px;}
.xd{left:790.170000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.303467pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls1{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.311467pt;}
.ls4{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.640000pt;}
.ls5{letter-spacing:0.800000pt;}
.lsf{letter-spacing:2.080000pt;}
.ls10{letter-spacing:7.200000pt;}
.ls3{letter-spacing:8.336640pt;}
.lsa{letter-spacing:25.088000pt;}
.ls8{letter-spacing:30.208000pt;}
.lsb{letter-spacing:56.912640pt;}
.lse{letter-spacing:62.240000pt;}
.ls9{letter-spacing:75.183360pt;}
.ls6{letter-spacing:135.803307pt;}
.ws3{word-spacing:-64.000000pt;}
.ws9{word-spacing:-53.120000pt;}
.ws6{word-spacing:-21.600000pt;}
.ws7{word-spacing:-21.280000pt;}
.ws8{word-spacing:-19.031467pt;}
.ws4{word-spacing:-18.720000pt;}
.ws5{word-spacing:-18.416533pt;}
.wsa{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:0.000000pt;}
.ws2{word-spacing:0.725160pt;}
._27{margin-left:-6.911435pt;}
._24{margin-left:-5.765760pt;}
._26{margin-left:-3.968565pt;}
._23{margin-left:-2.545920pt;}
._1{margin-left:-0.898635pt;}
._0{width:1.106645pt;}
._12{width:2.434635pt;}
._f{width:3.392000pt;}
._9{width:5.120000pt;}
._a{width:6.208000pt;}
._b{width:7.168000pt;}
._16{width:8.128000pt;}
._20{width:9.069302pt;}
._10{width:10.112000pt;}
._d{width:11.776000pt;}
._e{width:12.874667pt;}
._1e{width:13.994667pt;}
._1f{width:15.045323pt;}
._17{width:17.408000pt;}
._2{width:18.538667pt;}
._19{width:19.904000pt;}
._1a{width:21.056000pt;}
._1b{width:21.952000pt;}
._5{width:23.488000pt;}
._6{width:24.384000pt;}
._14{width:25.538635pt;}
._15{width:26.493365pt;}
._1d{width:28.034635pt;}
._c{width:29.314635pt;}
._29{width:30.284800pt;}
._3{width:31.466667pt;}
._4{width:33.173333pt;}
._7{width:34.432000pt;}
._8{width:35.392000pt;}
._11{width:36.480000pt;}
._13{width:38.144000pt;}
._1c{width:39.298635pt;}
._28{width:41.149365pt;}
._25{width:59.230155pt;}
._2c{width:63.232000pt;}
._2e{width:96.960000pt;}
._21{width:110.720000pt;}
._22{width:111.744000pt;}
._2b{width:145.984000pt;}
._2a{width:148.704000pt;}
._2f{width:433.344000pt;}
._18{width:577.856000pt;}
._2d{width:713.664000pt;}
.fs4{font-size:16.000000pt;}
.fs6{font-size:37.120000pt;}
.fs5{font-size:53.120000pt;}
.fs7{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.fs3{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y1a6{bottom:0.037333pt;}
.y4{bottom:3.520000pt;}
.y3{bottom:21.920000pt;}
.y2{bottom:40.320000pt;}
.y1e3{bottom:81.948000pt;}
.y10{bottom:89.312000pt;}
.y8{bottom:89.632000pt;}
.y1ad{bottom:93.548000pt;}
.y55{bottom:94.592000pt;}
.y31{bottom:97.792000pt;}
.y187{bottom:99.712000pt;}
.yea{bottom:101.152000pt;}
.y1e2{bottom:103.081333pt;}
.y14b{bottom:106.272000pt;}
.y112{bottom:106.912000pt;}
.y1fe{bottom:107.281333pt;}
.y1f1{bottom:107.681333pt;}
.yf{bottom:107.712000pt;}
.y7{bottom:108.032000pt;}
.y1ac{bottom:111.948000pt;}
.y9d{bottom:112.192000pt;}
.y207{bottom:112.214667pt;}
.y186{bottom:120.992000pt;}
.y1e1{bottom:124.214667pt;}
.y14a{bottom:124.672000pt;}
.y30{bottom:125.472000pt;}
.ye9{bottom:125.792000pt;}
.y111{bottom:128.352000pt;}
.y1fd{bottom:128.414667pt;}
.y1f0{bottom:128.814667pt;}
.yc3{bottom:129.632000pt;}
.y206{bottom:133.348000pt;}
.y9c{bottom:133.626667pt;}
.y4e{bottom:136.506667pt;}
.y3f{bottom:138.906667pt;}
.y185{bottom:139.066667pt;}
.y149{bottom:143.066667pt;}
.y1a5{bottom:144.186667pt;}
.y1fc{bottom:149.548000pt;}
.y1ef{bottom:149.948000pt;}
.yc2{bottom:151.066667pt;}
.y2f{bottom:152.986667pt;}
.y205{bottom:154.481333pt;}
.y9b{bottom:155.226667pt;}
.y4c{bottom:155.706667pt;}
.y184{bottom:157.466667pt;}
.y110{bottom:160.346667pt;}
.y148{bottom:161.946667pt;}
.ye8{bottom:162.586667pt;}
.y3e{bottom:166.586667pt;}
.y1a4{bottom:167.546667pt;}
.y1d0{bottom:168.481333pt;}
.y1fb{bottom:170.681333pt;}
.y1ee{bottom:171.081333pt;}
.yc1{bottom:172.506667pt;}
.y204{bottom:175.614667pt;}
.y1e0{bottom:175.814667pt;}
.y9a{bottom:176.666667pt;}
.y54{bottom:177.306667pt;}
.y2e{bottom:180.666667pt;}
.y10f{bottom:181.626667pt;}
.y4b{bottom:183.386667pt;}
.y1a3{bottom:185.946667pt;}
.y1cf{bottom:189.614667pt;}
.y1fa{bottom:191.814667pt;}
.y1ed{bottom:192.214667pt;}
.yc0{bottom:193.946667pt;}
.y3d{bottom:194.106667pt;}
.ye7{bottom:194.586667pt;}
.y203{bottom:196.748000pt;}
.y1df{bottom:196.948000pt;}
.y99{bottom:199.386667pt;}
.y10e{bottom:202.906667pt;}
.y1a2{bottom:204.346667pt;}
.y53{bottom:204.986667pt;}
.y2d{bottom:208.186667pt;}
.y183{bottom:209.306667pt;}
.y1ce{bottom:210.748000pt;}
.y4a{bottom:210.906667pt;}
.y1f9{bottom:212.948000pt;}
.y1ec{bottom:213.348000pt;}
.ybf{bottom:215.386667pt;}
.ye6{bottom:215.866667pt;}
.y202{bottom:217.881333pt;}
.y147{bottom:217.946667pt;}
.y3c{bottom:221.786667pt;}
.y98{bottom:222.266667pt;}
.y1a1{bottom:222.746667pt;}
.y10d{bottom:224.186667pt;}
.y172{bottom:231.066667pt;}
.y45{bottom:231.386667pt;}
.y1cd{bottom:231.881333pt;}
.y52{bottom:232.506667pt;}
.y1f8{bottom:234.081333pt;}
.y1eb{bottom:234.481333pt;}
.y182{bottom:235.386667pt;}
.y2c{bottom:235.866667pt;}
.ybe{bottom:236.826667pt;}
.ye5{bottom:237.306667pt;}
.y49{bottom:238.586667pt;}
.y146{bottom:239.226667pt;}
.y12f{bottom:239.706667pt;}
.y1a0{bottom:241.146667pt;}
.y6d{bottom:243.386667pt;}
.y97{bottom:244.986667pt;}
.y10c{bottom:245.466667pt;}
.y171{bottom:252.506667pt;}
.y1f7{bottom:255.214667pt;}
.y65{bottom:257.786667pt;}
.ybd{bottom:258.426667pt;}
.ye4{bottom:258.586667pt;}
.y44{bottom:258.906667pt;}
.y19f{bottom:259.546667pt;}
.y145{bottom:260.666667pt;}
.y181{bottom:261.466667pt;}
.y2b{bottom:263.386667pt;}
.y48{bottom:266.106667pt;}
.y10b{bottom:266.746667pt;}
.y96{bottom:267.706667pt;}
.y51{bottom:269.306667pt;}
.y78{bottom:270.106667pt;}
.y6c{bottom:270.906667pt;}
.y170{bottom:273.786667pt;}
.y1f6{bottom:276.348000pt;}
.y19e{bottom:277.946667pt;}
.y201{bottom:278.814667pt;}
.y144{bottom:279.066667pt;}
.ybc{bottom:279.866667pt;}
.y64{bottom:285.306667pt;}
.y1ea{bottom:286.081333pt;}
.y43{bottom:286.586667pt;}
.y180{bottom:287.546667pt;}
.y10a{bottom:288.186667pt;}
.y95{bottom:290.586667pt;}
.y2a{bottom:291.066667pt;}
.y1cc{bottom:292.814667pt;}
.y16f{bottom:295.066667pt;}
.y19d{bottom:296.346667pt;}
.y143{bottom:297.466667pt;}
.y1f5{bottom:297.481333pt;}
.y77{bottom:297.786667pt;}
.y6b{bottom:298.586667pt;}
.y200{bottom:299.948000pt;}
.ye3{bottom:301.186667pt;}
.ybb{bottom:301.346667pt;}
.y47{bottom:302.946667pt;}
.y7b{bottom:305.346667pt;}
.y50{bottom:306.146667pt;}
.y1e9{bottom:307.214667pt;}
.y109{bottom:309.506667pt;}
.y63{bottom:313.026667pt;}
.y94{bottom:313.346667pt;}
.y17f{bottom:313.506667pt;}
.y42{bottom:314.146667pt;}
.y19c{bottom:314.786667pt;}
.y142{bottom:315.906667pt;}
.y29{bottom:318.626667pt;}
.y12e{bottom:318.786667pt;}
.y1ff{bottom:321.081333pt;}
.yba{bottom:322.786667pt;}
.y76{bottom:325.346667pt;}
.y6a{bottom:326.146667pt;}
.y16e{bottom:327.106667pt;}
.y7a{bottom:333.026667pt;}
.ye2{bottom:333.186667pt;}
.y141{bottom:334.306667pt;}
.y93{bottom:336.226667pt;}
.y17e{bottom:339.586667pt;}
.y46{bottom:339.746667pt;}
.y108{bottom:341.506667pt;}
.yb9{bottom:344.226667pt;}
.y28{bottom:346.306667pt;}
.y16d{bottom:348.386667pt;}
.y1f4{bottom:349.081333pt;}
.y62{bottom:349.826667pt;}
.y19b{bottom:351.586667pt;}
.y12d{bottom:352.066667pt;}
.y140{bottom:352.706667pt;}
.ye1{bottom:354.466667pt;}
.y92{bottom:358.946667pt;}
.y41{bottom:360.226667pt;}
.y107{bottom:362.786667pt;}
.y69{bottom:362.946667pt;}
.yb8{bottom:365.666667pt;}
.y16c{bottom:369.666667pt;}
.y19a{bottom:369.986667pt;}
.y1f3{bottom:370.214667pt;}
.y13f{bottom:371.106667pt;}
.y27{bottom:373.826667pt;}
.ye0{bottom:375.906667pt;}
.y75{bottom:380.546667pt;}
.y91{bottom:381.666667pt;}
.y106{bottom:384.066667pt;}
.y1cb{bottom:384.214667pt;}
.y12c{bottom:385.026667pt;}
.y61{bottom:386.626667pt;}
.yb7{bottom:387.106667pt;}
.y79{bottom:388.226667pt;}
.y199{bottom:388.386667pt;}
.y13e{bottom:389.506667pt;}
.y16b{bottom:390.946667pt;}
.y17d{bottom:391.746667pt;}
.ydf{bottom:397.186667pt;}
.y26{bottom:401.506667pt;}
.y90{bottom:404.546667pt;}
.y105{bottom:405.346667pt;}
.y1ca{bottom:405.348000pt;}
.y198{bottom:406.786667pt;}
.y13d{bottom:407.906667pt;}
.yb6{bottom:408.706667pt;}
.y16a{bottom:412.386667pt;}
.y74{bottom:417.346667pt;}
.y17c{bottom:417.666667pt;}
.yde{bottom:418.466667pt;}
.y197{bottom:425.186667pt;}
.y13c{bottom:426.146667pt;}
.y1c9{bottom:426.481333pt;}
.y104{bottom:426.786667pt;}
.y8f{bottom:427.266667pt;}
.y25{bottom:429.026667pt;}
.yb5{bottom:430.146667pt;}
.y169{bottom:433.666667pt;}
.y12a{bottom:437.666667pt;}
.ydd{bottom:439.746667pt;}
.y196{bottom:443.586667pt;}
.y17b{bottom:443.746667pt;}
.y13b{bottom:444.546667pt;}
.y1c8{bottom:447.614667pt;}
.y103{bottom:448.066667pt;}
.y8e{bottom:450.146667pt;}
.yb4{bottom:451.586667pt;}
.y24{bottom:456.706667pt;}
.ye{bottom:457.346667pt;}
.y129{bottom:458.946667pt;}
.y168{bottom:461.346667pt;}
.y195{bottom:461.986667pt;}
.y13a{bottom:462.946667pt;}
.y1c7{bottom:468.748000pt;}
.y102{bottom:469.346667pt;}
.y17a{bottom:469.826667pt;}
.ydc{bottom:471.746667pt;}
.y8d{bottom:472.866667pt;}
.yb3{bottom:473.026667pt;}
.y167{bottom:473.986667pt;}
.y1b1{bottom:479.948000pt;}
.y128{bottom:480.226667pt;}
.y194{bottom:480.386667pt;}
.y139{bottom:481.346667pt;}
.y23{bottom:484.226667pt;}
.y1c6{bottom:489.881333pt;}
.y223{bottom:490.014667pt;}
.ydb{bottom:493.026667pt;}
.y8c{bottom:494.306667pt;}
.yb2{bottom:494.466667pt;}
.y166{bottom:495.426667pt;}
.y179{bottom:495.906667pt;}
.y193{bottom:498.786667pt;}
.y101{bottom:501.346667pt;}
.y222{bottom:508.414667pt;}
.y22{bottom:511.746667pt;}
.y127{bottom:512.226667pt;}
.yd{bottom:512.546667pt;}
.y6{bottom:513.346667pt;}
.yda{bottom:514.306667pt;}
.y8b{bottom:515.746667pt;}
.yb1{bottom:515.906667pt;}
.y165{bottom:516.386667pt;}
.y1b0{bottom:516.748000pt;}
.y192{bottom:517.186667pt;}
.y1c5{bottom:520.348000pt;}
.y178{bottom:521.826667pt;}
.y100{bottom:522.626667pt;}
.y221{bottom:526.814667pt;}
.y66{bottom:527.906667pt;}
.yc{bottom:530.946667pt;}
.y126{bottom:533.506667pt;}
.y164{bottom:534.786667pt;}
.y1ab{bottom:535.148000pt;}
.y191{bottom:535.586667pt;}
.yd9{bottom:535.746667pt;}
.yb0{bottom:537.533333pt;}
.y21{bottom:539.453333pt;}
.y8a{bottom:540.893333pt;}
.y1c4{bottom:541.481333pt;}
.yff{bottom:543.933333pt;}
.y220{bottom:545.214667pt;}
.y138{bottom:545.373333pt;}
.y177{bottom:547.933333pt;}
.yb{bottom:549.373333pt;}
.y163{bottom:553.213333pt;}
.y1aa{bottom:553.548000pt;}
.y190{bottom:554.013333pt;}
.y125{bottom:554.973333pt;}
.yd8{bottom:557.053333pt;}
.yaf{bottom:558.973333pt;}
.y1c3{bottom:562.614667pt;}
.y21f{bottom:563.614667pt;}
.yfe{bottom:565.213333pt;}
.y137{bottom:566.653333pt;}
.y20{bottom:566.973333pt;}
.y162{bottom:571.613333pt;}
.y18f{bottom:572.413333pt;}
.y176{bottom:574.013333pt;}
.y124{bottom:576.253333pt;}
.y4d{bottom:578.973333pt;}
.y6e{bottom:579.453333pt;}
.yae{bottom:580.413333pt;}
.y89{bottom:580.733333pt;}
.y21e{bottom:582.014667pt;}
.y1c2{bottom:583.748000pt;}
.yfd{bottom:586.653333pt;}
.y136{bottom:588.093333pt;}
.yd7{bottom:589.053333pt;}
.y161{bottom:590.013333pt;}
.y18e{bottom:590.813333pt;}
.y1f{bottom:594.653333pt;}
.y175{bottom:600.093333pt;}
.y21d{bottom:600.414667pt;}
.yad{bottom:601.853333pt;}
.y1c1{bottom:604.881333pt;}
.yfc{bottom:607.933333pt;}
.y123{bottom:608.253333pt;}
.y160{bottom:608.413333pt;}
.y18d{bottom:609.213333pt;}
.y135{bottom:609.373333pt;}
.yd6{bottom:610.333333pt;}
.y211{bottom:614.214667pt;}
.y21c{bottom:618.814667pt;}
.y73{bottom:619.773333pt;}
.y88{bottom:620.573333pt;}
.y1e{bottom:622.173333pt;}
.yac{bottom:623.293333pt;}
.y174{bottom:626.013333pt;}
.y1c0{bottom:626.014667pt;}
.y15f{bottom:626.813333pt;}
.y134{bottom:627.773333pt;}
.y18c{bottom:628.733333pt;}
.yfb{bottom:629.213333pt;}
.y122{bottom:629.533333pt;}
.yd5{bottom:631.613333pt;}
.yab{bottom:644.733333pt;}
.y15e{bottom:645.213333pt;}
.y59{bottom:646.973333pt;}
.y1bf{bottom:647.148000pt;}
.y133{bottom:647.293333pt;}
.y72{bottom:647.453333pt;}
.y1d{bottom:649.853333pt;}
.yd4{bottom:652.893333pt;}
.y18b{bottom:653.373333pt;}
.y87{bottom:660.413333pt;}
.yfa{bottom:661.213333pt;}
.y121{bottom:661.533333pt;}
.y173{bottom:663.133333pt;}
.y15d{bottom:663.613333pt;}
.y215{bottom:665.814667pt;}
.yaa{bottom:666.173333pt;}
.y132{bottom:673.213333pt;}
.y21b{bottom:674.014667pt;}
.yd3{bottom:674.173333pt;}
.y71{bottom:674.973333pt;}
.y210{bottom:675.148000pt;}
.y1c{bottom:677.373333pt;}
.y1be{bottom:677.614667pt;}
.y18a{bottom:677.853333pt;}
.y15c{bottom:682.013333pt;}
.yf9{bottom:682.493333pt;}
.y120{bottom:682.813333pt;}
.y1dd{bottom:686.948000pt;}
.ya9{bottom:687.773333pt;}
.y58{bottom:692.893333pt;}
.yd2{bottom:695.613333pt;}
.y20f{bottom:696.281333pt;}
.y131{bottom:696.733333pt;}
.ya{bottom:697.053333pt;}
.y1bd{bottom:698.748000pt;}
.y15b{bottom:700.413333pt;}
.y1af{bottom:700.748000pt;}
.y70{bottom:702.653333pt;}
.yf8{bottom:703.773333pt;}
.y1b{bottom:705.053333pt;}
.y1de{bottom:708.081333pt;}
.ya8{bottom:709.213333pt;}
.y3b{bottom:711.773333pt;}
.y11f{bottom:714.813333pt;}
.y130{bottom:715.133333pt;}
.y20e{bottom:717.414667pt;}
.y15a{bottom:718.813333pt;}
.y1ae{bottom:719.148000pt;}
.y5{bottom:719.453333pt;}
.y1bc{bottom:719.881333pt;}
.y57{bottom:720.573333pt;}
.yf7{bottom:725.053333pt;}
.yd1{bottom:727.453333pt;}
.y212{bottom:729.214667pt;}
.y60{bottom:730.173333pt;}
.ya7{bottom:730.653333pt;}
.y1a{bottom:732.573333pt;}
.y11e{bottom:736.093333pt;}
.y159{bottom:737.213333pt;}
.y20d{bottom:738.548000pt;}
.y1bb{bottom:741.014667pt;}
.y86{bottom:744.893333pt;}
.yf6{bottom:746.493333pt;}
.y1dc{bottom:747.881333pt;}
.yd0{bottom:748.893333pt;}
.y214{bottom:750.348000pt;}
.ya6{bottom:752.093333pt;}
.y158{bottom:755.613333pt;}
.y56{bottom:757.373333pt;}
.y6f{bottom:757.853333pt;}
.y20c{bottom:759.681333pt;}
.y19{bottom:760.253333pt;}
.y1ba{bottom:762.148000pt;}
.y3a{bottom:766.973333pt;}
.yf5{bottom:767.773333pt;}
.y1db{bottom:769.014667pt;}
.ycf{bottom:770.173333pt;}
.y213{bottom:771.481333pt;}
.ya5{bottom:773.533333pt;}
.y157{bottom:774.053333pt;}
.y11d{bottom:778.693333pt;}
.y20b{bottom:780.814667pt;}
.y85{bottom:782.693333pt;}
.y1b9{bottom:783.281333pt;}
.y5f{bottom:785.413333pt;}
.y18{bottom:787.813333pt;}
.yf4{bottom:789.093333pt;}
.y1da{bottom:790.148000pt;}
.yce{bottom:791.493333pt;}
.y156{bottom:792.453333pt;}
.y38{bottom:794.693333pt;}
.ya4{bottom:795.013333pt;}
.y189{bottom:799.973333pt;}
.y20a{bottom:801.948000pt;}
.y84{bottom:805.573333pt;}
.yf3{bottom:810.373333pt;}
.y11c{bottom:810.693333pt;}
.y155{bottom:810.853333pt;}
.y1d9{bottom:811.281333pt;}
.ycd{bottom:812.773333pt;}
.y5e{bottom:813.093333pt;}
.y1b8{bottom:813.748000pt;}
.y17{bottom:815.493333pt;}
.ya3{bottom:816.613333pt;}
.y37{bottom:822.213333pt;}
.y209{bottom:823.081333pt;}
.y83{bottom:828.293333pt;}
.y154{bottom:829.253333pt;}
.y11b{bottom:831.973333pt;}
.y1d8{bottom:832.414667pt;}
.ycc{bottom:834.053333pt;}
.y1b7{bottom:834.881333pt;}
.ya2{bottom:838.053333pt;}
.y5d{bottom:840.613333pt;}
.yf2{bottom:842.373333pt;}
.y16{bottom:843.013333pt;}
.y21a{bottom:844.214667pt;}
.y153{bottom:847.653333pt;}
.y36{bottom:849.893333pt;}
.y82{bottom:851.173333pt;}
.y11a{bottom:853.413333pt;}
.y1d7{bottom:853.548000pt;}
.y1b6{bottom:856.014667pt;}
.y4f{bottom:859.013333pt;}
.ya1{bottom:859.493333pt;}
.yf1{bottom:863.653333pt;}
.y1e8{bottom:865.348000pt;}
.ycb{bottom:866.053333pt;}
.y9{bottom:866.373333pt;}
.y5c{bottom:868.293333pt;}
.y15{bottom:870.693333pt;}
.y81{bottom:873.893333pt;}
.y1d6{bottom:874.681333pt;}
.y119{bottom:874.693333pt;}
.y1b5{bottom:877.148000pt;}
.y35{bottom:877.413333pt;}
.ya0{bottom:880.933333pt;}
.y152{bottom:884.453333pt;}
.yf0{bottom:884.933333pt;}
.y219{bottom:886.481333pt;}
.yca{bottom:887.493333pt;}
.y5b{bottom:895.813333pt;}
.y1d5{bottom:895.814667pt;}
.y118{bottom:895.973333pt;}
.y80{bottom:896.773333pt;}
.y14{bottom:898.213333pt;}
.y1b4{bottom:898.281333pt;}
.y9f{bottom:902.373333pt;}
.y151{bottom:902.853333pt;}
.y34{bottom:905.093333pt;}
.yef{bottom:906.373333pt;}
.y218{bottom:907.614667pt;}
.yc9{bottom:908.773333pt;}
.y1d4{bottom:916.948000pt;}
.y188{bottom:917.253333pt;}
.y1b3{bottom:919.414667pt;}
.y7f{bottom:919.493333pt;}
.y150{bottom:921.253333pt;}
.y68{bottom:923.493333pt;}
.y13{bottom:925.893333pt;}
.y1e7{bottom:926.281333pt;}
.y9e{bottom:927.333333pt;}
.yee{bottom:927.653333pt;}
.y117{bottom:927.973333pt;}
.y217{bottom:928.748000pt;}
.yc8{bottom:930.053333pt;}
.y33{bottom:932.613333pt;}
.y1d3{bottom:938.081333pt;}
.y14f{bottom:939.653333pt;}
.y1b2{bottom:940.548000pt;}
.y1{bottom:941.733333pt;}
.y7e{bottom:942.213333pt;}
.y1e6{bottom:947.414667pt;}
.yed{bottom:948.933333pt;}
.y116{bottom:949.253333pt;}
.y1f2{bottom:949.881333pt;}
.y67{bottom:951.013333pt;}
.yc7{bottom:951.333333pt;}
.y12{bottom:953.413333pt;}
.y14e{bottom:958.053333pt;}
.y1d2{bottom:959.214667pt;}
.y32{bottom:960.293333pt;}
.y7d{bottom:965.093333pt;}
.y1e5{bottom:968.548000pt;}
.y5a{bottom:969.413333pt;}
.yec{bottom:970.213333pt;}
.y115{bottom:970.533333pt;}
.y216{bottom:971.014667pt;}
.yc6{bottom:972.613333pt;}
.y14d{bottom:976.453333pt;}
.y208{bottom:980.348000pt;}
.y11{bottom:987.813333pt;}
.y40{bottom:987.813467pt;}
.yeb{bottom:988.613333pt;}
.y1e4{bottom:989.681333pt;}
.y114{bottom:991.813333pt;}
.y14c{bottom:994.853333pt;}
.y1a9{bottom:995.148000pt;}
.yc5{bottom:999.653333pt;}
.y12b{bottom:1008.133333pt;}
.yc4{bottom:1008.293333pt;}
.y7c{bottom:1010.693333pt;}
.y1d1{bottom:1010.814667pt;}
.y113{bottom:1013.280000pt;}
.y1a8{bottom:1013.548000pt;}
.y1a7{bottom:1031.948000pt;}
.y39{bottom:1060.480000pt;}
.he{height:14.343750pt;}
.h12{height:33.277500pt;}
.h17{height:45.125000pt;}
.h13{height:52.296250pt;}
.hf{height:54.093750pt;}
.h16{height:54.968750pt;}
.h11{height:56.843750pt;}
.h7{height:57.375000pt;}
.h6{height:62.812500pt;}
.h8{height:63.326250pt;}
.h3{height:64.500000pt;}
.hb{height:66.507188pt;}
.hc{height:67.128750pt;}
.h2{height:67.360000pt;}
.h10{height:71.986250pt;}
.h5{height:75.465000pt;}
.hd{height:75.602187pt;}
.h4{height:85.785000pt;}
.h9{height:117.451250pt;}
.ha{height:123.350937pt;}
.h15{height:1122.481333pt;}
.h14{height:1122.519685pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:368.573333pt;}
.w5{width:793.700000pt;}
.w4{width:793.738583pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:9.280000pt;}
.x2{left:13.280000pt;}
.x3{left:20.000000pt;}
.x35{left:75.733333pt;}
.x39{left:83.333333pt;}
.x3a{left:97.733333pt;}
.xb{left:113.472000pt;}
.x2b{left:118.271988pt;}
.x36{left:123.000000pt;}
.x2a{left:125.471988pt;}
.x27{left:137.466655pt;}
.x38{left:148.400000pt;}
.xc{left:160.666667pt;}
.x37{left:163.933333pt;}
.x1e{left:170.426667pt;}
.x29{left:184.666655pt;}
.x20{left:203.066655pt;}
.x1f{left:207.706655pt;}
.x1{left:217.466667pt;}
.x2f{left:230.600000pt;}
.x9{left:231.866667pt;}
.x2d{left:233.133333pt;}
.x1b{left:238.106667pt;}
.x2e{left:240.266667pt;}
.x6{left:249.666667pt;}
.x31{left:251.066667pt;}
.x19{left:253.666667pt;}
.x18{left:255.106667pt;}
.x15{left:257.506667pt;}
.x1d{left:259.106667pt;}
.x30{left:260.733333pt;}
.x16{left:270.626667pt;}
.x33{left:274.866667pt;}
.x5{left:278.306667pt;}
.x14{left:288.066667pt;}
.x10{left:290.924933pt;}
.x23{left:295.586655pt;}
.x17{left:301.026667pt;}
.xe{left:306.786667pt;}
.x1c{left:309.186667pt;}
.x12{left:312.546667pt;}
.x13{left:317.506667pt;}
.x1a{left:322.786667pt;}
.x3c{left:343.666667pt;}
.xa{left:349.506667pt;}
.x24{left:355.426655pt;}
.x32{left:361.466667pt;}
.x34{left:369.666667pt;}
.x3b{left:374.333333pt;}
.x25{left:378.306655pt;}
.x7{left:380.386667pt;}
.x21{left:385.666655pt;}
.x28{left:388.066655pt;}
.x22{left:396.866655pt;}
.x8{left:399.906667pt;}
.x2c{left:401.506655pt;}
.x11{left:535.924933pt;}
.xf{left:572.093333pt;}
.x26{left:680.453322pt;}
.xd{left:702.373333pt;}
}




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