
    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_d3de57b9bc2aeb351bb02676.woff')format("woff");}.ff1{font-family:ff1;line-height:1.231445;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_5be0738e3ba19b3b79c0e356.woff')format("woff");}.ff2{font-family:ff2;line-height:1.099609;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_5268a65545fbb6ec55ed78a4.woff')format("woff");}.ff3{font-family:ff3;line-height:1.231445;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_d721f4674351c077ddd0e6dc.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_5cbe2c2942a1543d52a863c7.woff')format("woff");}.ff5{font-family:ff5;line-height:1.099609;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_c5f4f55caf4bfec128a70e32.woff')format("woff");}.ff6{font-family:ff6;line-height:1.130371;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_d9917b0ad8909616579259b7.woff')format("woff");}.ff7{font-family:ff7;line-height:1.009277;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_0e11ae34cd334ac579fb5665.woff')format("woff");}.ff8{font-family:ff8;line-height:1.009277;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_6bfc8327f8451c6ccb946919.woff')format("woff");}.ff9{font-family:ff9;line-height:0.833984;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_ad0994a70697cb173bf05041.woff')format("woff");}.ffa{font-family:ffa;line-height:1.130371;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.v1{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.ls32{letter-spacing:-0.401400px;}
.ls7{letter-spacing:-0.391800px;}
.ls24{letter-spacing:-0.360000px;}
.ls3d{letter-spacing:-0.351000px;}
.ls4c{letter-spacing:-0.288000px;}
.ls3b{letter-spacing:-0.263400px;}
.lsd{letter-spacing:-0.238800px;}
.ls25{letter-spacing:-0.220200px;}
.ls6{letter-spacing:-0.180000px;}
.ls3a{letter-spacing:-0.178800px;}
.ls48{letter-spacing:-0.159000px;}
.ls51{letter-spacing:-0.144000px;}
.ls33{letter-spacing:-0.123000px;}
.ls31{letter-spacing:-0.121200px;}
.lsa{letter-spacing:-0.112200px;}
.ls38{letter-spacing:-0.099600px;}
.ls19{letter-spacing:-0.072000px;}
.ls27{letter-spacing:-0.041400px;}
.lsc{letter-spacing:-0.037080px;}
.ls5{letter-spacing:-0.031680px;}
.lse{letter-spacing:-0.029520px;}
.ls4{letter-spacing:0.000000px;}
.ls35{letter-spacing:0.003240px;}
.ls37{letter-spacing:0.009000px;}
.ls46{letter-spacing:0.009720px;}
.ls34{letter-spacing:0.012600px;}
.ls1e{letter-spacing:0.026280px;}
.ls50{letter-spacing:0.048000px;}
.ls8{letter-spacing:0.054720px;}
.ls3c{letter-spacing:0.058320px;}
.ls16{letter-spacing:0.072000px;}
.ls39{letter-spacing:0.096600px;}
.ls47{letter-spacing:0.125280px;}
.lsb{letter-spacing:0.137400px;}
.ls26{letter-spacing:0.139800px;}
.ls15{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.153600px;}
.ls1b{letter-spacing:0.172080px;}
.ls1{letter-spacing:0.180000px;}
.ls4f{letter-spacing:0.288000px;}
.lsf{letter-spacing:0.328200px;}
.ls4d{letter-spacing:0.432000px;}
.ls4e{letter-spacing:0.648000px;}
.ls10{letter-spacing:0.746280px;}
.ls4b{letter-spacing:1.728000px;}
.ls4a{letter-spacing:2.736000px;}
.ls44{letter-spacing:3.168000px;}
.ls2{letter-spacing:3.626280px;}
.ls11{letter-spacing:3.986280px;}
.ls43{letter-spacing:4.248000px;}
.ls1d{letter-spacing:4.320000px;}
.ls1f{letter-spacing:5.328000px;}
.ls49{letter-spacing:5.760000px;}
.ls3e{letter-spacing:6.048000px;}
.ls2c{letter-spacing:6.480000px;}
.ls17{letter-spacing:8.208000px;}
.ls0{letter-spacing:8.666280px;}
.ls45{letter-spacing:9.288000px;}
.ls20{letter-spacing:9.360000px;}
.ls22{letter-spacing:10.728000px;}
.ls21{letter-spacing:11.088000px;}
.ls28{letter-spacing:11.160000px;}
.ls18{letter-spacing:11.448000px;}
.ls3{letter-spacing:14.426280px;}
.ls1a{letter-spacing:16.920000px;}
.ls2a{letter-spacing:19.008000px;}
.ls2b{letter-spacing:20.880000px;}
.ls14{letter-spacing:21.626280px;}
.ls41{letter-spacing:22.248000px;}
.ls29{letter-spacing:24.840000px;}
.ls12{letter-spacing:25.586280px;}
.ls2f{letter-spacing:30.528000px;}
.ls2e{letter-spacing:30.888000px;}
.ls40{letter-spacing:35.208000px;}
.ls3f{letter-spacing:35.328000px;}
.ls23{letter-spacing:37.368000px;}
.ls36{letter-spacing:37.488000px;}
.ls2d{letter-spacing:37.800000px;}
.ls13{letter-spacing:40.346280px;}
.ls42{letter-spacing:43.848000px;}
.ls30{letter-spacing:69.048000px;}
.ls1c{letter-spacing:110.088000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws12{word-spacing:-75.893905px;}
.ws1e{word-spacing:-72.144000px;}
.ws10{word-spacing:-72.000000px;}
.ws11{word-spacing:-71.640000px;}
.ws1c{word-spacing:-60.178320px;}
.ws19{word-spacing:-60.129000px;}
.ws9{word-spacing:-60.120000px;}
.ws14{word-spacing:-60.078600px;}
.ws17{word-spacing:-59.997000px;}
.ws1d{word-spacing:-59.769000px;}
.ws16{word-spacing:-59.718600px;}
.ws4{word-spacing:-22.702320px;}
.ws22{word-spacing:-20.376000px;}
.wsd{word-spacing:-20.304000px;}
.ws7{word-spacing:-20.232000px;}
.wsf{word-spacing:-20.160000px;}
.ws21{word-spacing:-20.088000px;}
.ws1f{word-spacing:-19.944000px;}
.ws23{word-spacing:-19.872000px;}
.ws18{word-spacing:-19.440000px;}
.ws6{word-spacing:-18.665880px;}
.ws5{word-spacing:-18.512280px;}
.wse{word-spacing:-17.784000px;}
.ws0{word-spacing:-17.073720px;}
.ws13{word-spacing:-17.033520px;}
.ws20{word-spacing:-16.903440px;}
.ws3{word-spacing:-16.893720px;}
.ws1a{word-spacing:-16.794120px;}
.ws15{word-spacing:-16.772520px;}
.ws2{word-spacing:-16.713720px;}
.wsa{word-spacing:-16.232400px;}
.ws1b{word-spacing:-16.053600px;}
.ws8{word-spacing:-14.849640px;}
.wsc{word-spacing:-0.072000px;}
.ws1{word-spacing:-0.060120px;}
.wsb{word-spacing:0.000000px;}
._18{margin-left:-3.581160px;}
._22{margin-left:-2.258520px;}
._0{margin-left:-1.044720px;}
._8{width:1.174320px;}
._9{width:2.945880px;}
._1{width:4.148280px;}
._2{width:5.481720px;}
._c{width:6.611040px;}
._6{width:7.612320px;}
._4{width:9.198360px;}
._5{width:10.473480px;}
._10{width:12.166920px;}
._3{width:13.406760px;}
._a{width:14.488920px;}
._b{width:15.627840px;}
._1b{width:16.704000px;}
._1c{width:17.757840px;}
._d{width:18.843600px;}
._11{width:19.993920px;}
._14{width:21.292800px;}
._16{width:22.873320px;}
._e{width:23.987880px;}
._f{width:25.256040px;}
._1d{width:27.383520px;}
._13{width:29.274600px;}
._1a{width:30.485400px;}
._1e{width:32.514600px;}
._23{width:33.611040px;}
._21{width:34.812720px;}
._20{width:35.928000px;}
._19{width:37.296000px;}
._15{width:38.808000px;}
._12{width:40.284840px;}
._27{width:43.704000px;}
._28{width:44.713680px;}
._17{width:46.224000px;}
._1f{width:51.408000px;}
._25{width:59.760000px;}
._26{width:60.912000px;}
._24{width:68.976000px;}
._7{width:955.339200px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(33,37,41);}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs5{font-size:42.120000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:60.120000px;}
.fs3{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:75.893905px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y2{bottom:2.790000px;}
.y6{bottom:3.960000px;}
.y18b{bottom:14.310000px;}
.y10f{bottom:14.850000px;}
.ycf{bottom:15.300000px;}
.y11c{bottom:15.570000px;}
.y116{bottom:19.350000px;}
.y5{bottom:25.470000px;}
.y18a{bottom:44.910000px;}
.y4{bottom:46.980000px;}
.y10e{bottom:47.160000px;}
.y132{bottom:47.340000px;}
.y18e{bottom:47.370000px;}
.yee{bottom:48.240000px;}
.yce{bottom:48.330000px;}
.y115{bottom:51.570000px;}
.ye5{bottom:54.540000px;}
.y3{bottom:68.490000px;}
.y127{bottom:71.370000px;}
.y10{bottom:76.410000px;}
.y131{bottom:76.950000px;}
.y189{bottom:77.940000px;}
.y18d{bottom:77.970000px;}
.ycd{bottom:80.370000px;}
.yed{bottom:81.270000px;}
.y11a{bottom:81.360000px;}
.y114{bottom:83.880000px;}
.ye4{bottom:86.850000px;}
.y34{bottom:94.320000px;}
.y126{bottom:103.680000px;}
.y130{bottom:106.650000px;}
.ycc{bottom:110.970000px;}
.y188{bottom:111.000000px;}
.yec{bottom:114.300000px;}
.y119{bottom:114.390000px;}
.yf{bottom:115.020000px;}
.y113{bottom:116.190000px;}
.y1f2{bottom:117.090000px;}
.ye3{bottom:119.070000px;}
.ydb{bottom:119.430000px;}
.y5f{bottom:121.050000px;}
.ya2{bottom:123.300000px;}
.y106{bottom:124.650000px;}
.y86{bottom:127.260000px;}
.y1d3{bottom:133.290000px;}
.y1b0{bottom:134.640000px;}
.y125{bottom:135.900000px;}
.y137{bottom:136.170000px;}
.ye{bottom:136.530000px;}
.y5e{bottom:136.620000px;}
.y12f{bottom:137.250000px;}
.y15b{bottom:138.510000px;}
.yb6{bottom:142.560000px;}
.y1f1{bottom:142.830000px;}
.ycb{bottom:144.000000px;}
.y187{bottom:144.030000px;}
.yda{bottom:145.260000px;}
.y15a{bottom:146.160000px;}
.yc6{bottom:147.240000px;}
.yeb{bottom:147.330000px;}
.y118{bottom:147.420000px;}
.y112{bottom:148.410000px;}
.ya1{bottom:149.130000px;}
.y105{bottom:150.750000px;}
.ye2{bottom:151.380000px;}
.y85{bottom:153.090000px;}
.yd{bottom:158.040000px;}
.y1d2{bottom:159.120000px;}
.y1af{bottom:160.470000px;}
.y136{bottom:161.910000px;}
.yb5{bottom:164.070000px;}
.y124{bottom:168.210000px;}
.y1f0{bottom:168.660000px;}
.y5d{bottom:169.560000px;}
.y12e{bottom:170.280000px;}
.y159{bottom:171.990000px;}
.ya0{bottom:174.960000px;}
.y104{bottom:176.580000px;}
.yca{bottom:177.060000px;}
.y84{bottom:178.830000px;}
.yc{bottom:179.550000px;}
.yc5{bottom:179.580000px;}
.yb4{bottom:179.640000px;}
.yea{bottom:180.360000px;}
.y117{bottom:180.450000px;}
.y111{bottom:180.720000px;}
.ye1{bottom:183.600000px;}
.y1ae{bottom:186.300000px;}
.y135{bottom:188.280000px;}
.yd9{bottom:189.090000px;}
.y1d1{bottom:189.450000px;}
.y1ef{bottom:194.490000px;}
.y5c{bottom:195.390000px;}
.y158{bottom:198.360000px;}
.y123{bottom:200.520000px;}
.y9f{bottom:200.790000px;}
.yb{bottom:201.060000px;}
.y12d{bottom:202.320000px;}
.y103{bottom:202.410000px;}
.y83{bottom:204.660000px;}
.yc9{bottom:210.090000px;}
.yc4{bottom:211.800000px;}
.y1ad{bottom:212.130000px;}
.ye9{bottom:213.390000px;}
.y134{bottom:214.470000px;}
.y1d0{bottom:215.280000px;}
.ye0{bottom:215.910000px;}
.yb2{bottom:218.700000px;}
.y5b{bottom:221.220000px;}
.ya{bottom:222.570000px;}
.y157{bottom:224.550000px;}
.y1ee{bottom:224.850000px;}
.yb3{bottom:226.200000px;}
.y9e{bottom:226.650000px;}
.y102{bottom:228.810000px;}
.y82{bottom:230.520000px;}
.y122{bottom:232.740000px;}
.y12c{bottom:232.920000px;}
.yd8{bottom:233.490000px;}
.y1ac{bottom:237.990000px;}
.yc8{bottom:243.120000px;}
.y9{bottom:244.110000px;}
.yb1{bottom:244.920000px;}
.y1cf{bottom:245.640000px;}
.ye8{bottom:246.450000px;}
.y5a{bottom:247.080000px;}
.ydf{bottom:248.250000px;}
.y156{bottom:250.410000px;}
.y1ed{bottom:250.680000px;}
.y133{bottom:251.490000px;}
.y171{bottom:252.300000px;}
.y9d{bottom:252.480000px;}
.y101{bottom:255.000000px;}
.y81{bottom:256.350000px;}
.yd7{bottom:257.160000px;}
.y1ab{bottom:263.820000px;}
.y12b{bottom:264.960000px;}
.y121{bottom:265.050000px;}
.y11d{bottom:269.760000px;}
.y1ce{bottom:271.380000px;}
.y59{bottom:272.910000px;}
.y186{bottom:275.160000px;}
.yc7{bottom:276.150000px;}
.yc3{bottom:276.420000px;}
.y1ec{bottom:276.510000px;}
.y9c{bottom:278.310000px;}
.ye7{bottom:279.480000px;}
.yde{bottom:280.470000px;}
.yd6{bottom:280.830000px;}
.yb0{bottom:281.910000px;}
.y80{bottom:282.180000px;}
.y8{bottom:282.900000px;}
.y170{bottom:284.520000px;}
.y1aa{bottom:289.560000px;}
.y12a{bottom:295.560000px;}
.y120{bottom:297.270000px;}
.y58{bottom:298.650000px;}
.y1cd{bottom:301.710000px;}
.y155{bottom:302.520000px;}
.yaf{bottom:303.420000px;}
.y9b{bottom:304.140000px;}
.y185{bottom:305.760000px;}
.y100{bottom:306.660000px;}
.y1eb{bottom:306.840000px;}
.y7f{bottom:308.010000px;}
.ye6{bottom:312.510000px;}
.ydd{bottom:312.780000px;}
.yd5{bottom:313.050000px;}
.y1a9{bottom:315.390000px;}
.y16f{bottom:316.830000px;}
.y33{bottom:318.270000px;}
.y57{bottom:324.480000px;}
.y1cc{bottom:327.540000px;}
.y129{bottom:328.590000px;}
.y154{bottom:328.710000px;}
.y11f{bottom:329.580000px;}
.y9a{bottom:329.880000px;}
.y1ea{bottom:332.670000px;}
.yae{bottom:332.940000px;}
.yff{bottom:333.030000px;}
.y7e{bottom:333.840000px;}
.y184{bottom:338.790000px;}
.yd4{bottom:338.880000px;}
.y32{bottom:339.870000px;}
.y1a8{bottom:341.220000px;}
.y16e{bottom:349.140000px;}
.y55{bottom:350.310000px;}
.y1cb{bottom:353.370000px;}
.y153{bottom:354.540000px;}
.y99{bottom:355.710000px;}
.y56{bottom:357.780000px;}
.y7d{bottom:359.670000px;}
.y31{bottom:361.380000px;}
.y128{bottom:361.620000px;}
.y11e{bottom:361.890000px;}
.y1e9{bottom:363.000000px;}
.y1a7{bottom:367.050000px;}
.y183{bottom:371.820000px;}
.y54{bottom:376.140000px;}
.yd3{bottom:376.680000px;}
.y152{bottom:380.370000px;}
.y16d{bottom:381.360000px;}
.y98{bottom:381.540000px;}
.y30{bottom:382.890000px;}
.y1ca{bottom:383.700000px;}
.y7c{bottom:385.500000px;}
.y1e8{bottom:388.830000px;}
.y1a6{bottom:392.880000px;}
.y53{bottom:401.970000px;}
.yd2{bottom:402.510000px;}
.y2f{bottom:404.400000px;}
.y182{bottom:404.850000px;}
.y151{bottom:406.740000px;}
.y97{bottom:407.370000px;}
.yfe{bottom:408.720000px;}
.y1c9{bottom:409.530000px;}
.y7b{bottom:411.330000px;}
.y16c{bottom:413.670000px;}
.y1a5{bottom:418.710000px;}
.y1e7{bottom:419.160000px;}
.y2e{bottom:425.910000px;}
.y52{bottom:427.800000px;}
.yd1{bottom:428.340000px;}
.y150{bottom:432.930000px;}
.y96{bottom:433.200000px;}
.yfd{bottom:434.550000px;}
.y7a{bottom:437.160000px;}
.y181{bottom:437.880000px;}
.y1c8{bottom:444.360000px;}
.y1a4{bottom:444.540000px;}
.y1e6{bottom:444.900000px;}
.y16b{bottom:445.980000px;}
.y2d{bottom:447.420000px;}
.y51{bottom:453.630000px;}
.y14f{bottom:458.760000px;}
.y95{bottom:459.030000px;}
.yfc{bottom:460.380000px;}
.y79{bottom:462.900000px;}
.yd0{bottom:465.330000px;}
.y2c{bottom:468.930000px;}
.y180{bottom:469.920000px;}
.y1a3{bottom:470.370000px;}
.y1e5{bottom:475.230000px;}
.y16a{bottom:478.200000px;}
.y50{bottom:479.460000px;}
.y1c7{bottom:482.970000px;}
.yc2{bottom:483.600000px;}
.y14e{bottom:484.590000px;}
.yfb{bottom:486.210000px;}
.y78{bottom:488.730000px;}
.y2b{bottom:490.440000px;}
.y94{bottom:493.860000px;}
.y1a2{bottom:496.200000px;}
.y17f{bottom:500.520000px;}
.y1e4{bottom:501.060000px;}
.y4f{bottom:505.290000px;}
.y14d{bottom:510.420000px;}
.y169{bottom:510.540000px;}
.y2a{bottom:511.950000px;}
.yfa{bottom:512.040000px;}
.y1c6{bottom:513.390000px;}
.y77{bottom:514.560000px;}
.y1a1{bottom:522.030000px;}
.y93{bottom:528.690000px;}
.y4e{bottom:531.120000px;}
.y1e3{bottom:531.390000px;}
.y29{bottom:533.460000px;}
.y17e{bottom:533.580000px;}
.y14c{bottom:536.790000px;}
.yf9{bottom:537.870000px;}
.y1c5{bottom:539.220000px;}
.y76{bottom:540.390000px;}
.y168{bottom:542.760000px;}
.y1a0{bottom:547.860000px;}
.yad{bottom:549.120000px;}
.y92{bottom:554.520000px;}
.y28{bottom:554.970000px;}
.y4d{bottom:556.950000px;}
.y1e2{bottom:557.220000px;}
.y14b{bottom:563.430000px;}
.yf8{bottom:563.610000px;}
.y75{bottom:566.220000px;}
.y17d{bottom:566.610000px;}
.y1c4{bottom:569.550000px;}
.yac{bottom:570.630000px;}
.y19f{bottom:573.690000px;}
.y167{bottom:575.070000px;}
.y27{bottom:576.570000px;}
.y4c{bottom:582.780000px;}
.y1e1{bottom:583.050000px;}
.yf7{bottom:589.440000px;}
.y14a{bottom:589.620000px;}
.y74{bottom:592.050000px;}
.y91{bottom:593.130000px;}
.y1c3{bottom:595.380000px;}
.y26{bottom:598.530000px;}
.y19e{bottom:599.430000px;}
.y17c{bottom:599.640000px;}
.yab{bottom:600.150000px;}
.y166{bottom:607.380000px;}
.y4b{bottom:608.520000px;}
.y1e0{bottom:613.380000px;}
.yf6{bottom:615.270000px;}
.y149{bottom:615.450000px;}
.y73{bottom:617.880000px;}
.y90{bottom:619.050000px;}
.y25{bottom:620.760000px;}
.y19d{bottom:625.260000px;}
.y1c2{bottom:625.710000px;}
.y17b{bottom:632.670000px;}
.y4a{bottom:634.350000px;}
.y1df{bottom:639.210000px;}
.y165{bottom:639.600000px;}
.yf5{bottom:641.100000px;}
.y148{bottom:641.280000px;}
.y24{bottom:642.540000px;}
.y72{bottom:643.710000px;}
.y8f{bottom:644.880000px;}
.y11b{bottom:649.860000px;}
.y19c{bottom:651.120000px;}
.y1c1{bottom:651.570000px;}
.y49{bottom:660.210000px;}
.y23{bottom:664.170000px;}
.y1de{bottom:665.070000px;}
.y17a{bottom:665.700000px;}
.yf4{bottom:666.960000px;}
.y147{bottom:667.140000px;}
.y71{bottom:669.570000px;}
.y8e{bottom:670.740000px;}
.y164{bottom:671.910000px;}
.y19b{bottom:676.950000px;}
.y1c0{bottom:681.900000px;}
.y110{bottom:683.610000px;}
.y22{bottom:685.680000px;}
.y48{bottom:686.040000px;}
.yf3{bottom:692.790000px;}
.y146{bottom:692.970000px;}
.y70{bottom:695.400000px;}
.y8d{bottom:696.570000px;}
.y179{bottom:698.730000px;}
.y19a{bottom:702.780000px;}
.y163{bottom:704.220000px;}
.y21{bottom:707.190000px;}
.y1bf{bottom:707.730000px;}
.y47{bottom:711.870000px;}
.yf2{bottom:718.620000px;}
.y145{bottom:718.800000px;}
.y6f{bottom:721.230000px;}
.y8c{bottom:722.400000px;}
.y199{bottom:728.610000px;}
.y20{bottom:728.700000px;}
.y178{bottom:731.760000px;}
.y1be{bottom:733.560000px;}
.y162{bottom:736.440000px;}
.y46{bottom:737.700000px;}
.yf1{bottom:744.450000px;}
.y144{bottom:744.630000px;}
.y6e{bottom:747.060000px;}
.y8b{bottom:748.230000px;}
.y1f{bottom:750.210000px;}
.y1dd{bottom:751.560000px;}
.y198{bottom:763.440000px;}
.y45{bottom:763.530000px;}
.y1bd{bottom:763.800000px;}
.y177{bottom:764.700000px;}
.y161{bottom:768.750000px;}
.yf0{bottom:770.280000px;}
.y143{bottom:770.460000px;}
.y1e{bottom:771.720000px;}
.y6d{bottom:772.800000px;}
.y8a{bottom:774.060000px;}
.y1dc{bottom:777.300000px;}
.y197{bottom:789.270000px;}
.y44{bottom:789.360000px;}
.y1bc{bottom:789.630000px;}
.y1d{bottom:794.130000px;}
.yc1{bottom:795.840000px;}
.y142{bottom:796.290000px;}
.y176{bottom:797.730000px;}
.y6c{bottom:798.630000px;}
.y89{bottom:799.800000px;}
.y160{bottom:801.060000px;}
.y1db{bottom:803.130000px;}
.yef{bottom:807.180000px;}
.y196{bottom:815.100000px;}
.y43{bottom:815.190000px;}
.y1bb{bottom:815.460000px;}
.y1c{bottom:819.420000px;}
.yc0{bottom:821.760000px;}
.y141{bottom:822.120000px;}
.ydc{bottom:825.540000px;}
.y88{bottom:825.630000px;}
.y175{bottom:830.760000px;}
.y15f{bottom:833.280000px;}
.y6b{bottom:833.460000px;}
.y42{bottom:841.020000px;}
.y195{bottom:841.470000px;}
.y1b{bottom:843.090000px;}
.y1ba{bottom:845.790000px;}
.ybf{bottom:847.590000px;}
.y140{bottom:847.860000px;}
.y87{bottom:851.460000px;}
.y1da{bottom:859.290000px;}
.y174{bottom:863.790000px;}
.y15e{bottom:865.590000px;}
.y1a{bottom:866.760000px;}
.y194{bottom:867.660000px;}
.yaa{bottom:868.290000px;}
.ybe{bottom:873.420000px;}
.y13f{bottom:873.690000px;}
.y41{bottom:875.850000px;}
.y1b9{bottom:876.120000px;}
.y6a{bottom:877.290000px;}
.y10d{bottom:882.510000px;}
.y1d9{bottom:889.620000px;}
.y19{bottom:890.430000px;}
.y193{bottom:893.940000px;}
.ya9{bottom:894.120000px;}
.y173{bottom:896.820000px;}
.y15d{bottom:897.900000px;}
.ybd{bottom:899.250000px;}
.y13e{bottom:899.520000px;}
.y40{bottom:900.780000px;}
.y69{bottom:903.120000px;}
.y1b8{bottom:906.450000px;}
.y18{bottom:914.100000px;}
.y1d8{bottom:915.450000px;}
.ya8{bottom:919.950000px;}
.y192{bottom:920.130000px;}
.y3f{bottom:922.290000px;}
.ybc{bottom:925.620000px;}
.y13d{bottom:925.890000px;}
.y68{bottom:928.950000px;}
.y172{bottom:929.880000px;}
.y15c{bottom:930.150000px;}
.y1b7{bottom:932.280000px;}
.y17{bottom:937.770000px;}
.y1d7{bottom:941.280000px;}
.y3e{bottom:943.800000px;}
.ya7{bottom:945.780000px;}
.y191{bottom:945.960000px;}
.ybb{bottom:951.810000px;}
.y13c{bottom:952.080000px;}
.y67{bottom:954.780000px;}
.y16{bottom:961.440000px;}
.y1b6{bottom:962.610000px;}
.y3d{bottom:965.310000px;}
.ya6{bottom:971.610000px;}
.y190{bottom:971.790000px;}
.y13b{bottom:978.450000px;}
.y10c{bottom:979.710000px;}
.y66{bottom:980.610000px;}
.y15{bottom:984.750000px;}
.yba{bottom:986.640000px;}
.y3c{bottom:986.820000px;}
.y1b5{bottom:988.440000px;}
.ya4{bottom:997.440000px;}
.y13a{bottom:1004.640000px;}
.ya5{bottom:1004.910000px;}
.y10b{bottom:1005.540000px;}
.y65{bottom:1006.440000px;}
.y14{bottom:1007.160000px;}
.y3b{bottom:1008.330000px;}
.y18f{bottom:1008.780000px;}
.yb9{bottom:1012.470000px;}
.y1b4{bottom:1018.770000px;}
.ya3{bottom:1023.270000px;}
.y18c{bottom:1027.050000px;}
.y1d6{bottom:1027.770000px;}
.y3a{bottom:1029.840000px;}
.y139{bottom:1031.010000px;}
.y10a{bottom:1031.370000px;}
.y64{bottom:1032.270000px;}
.y13{bottom:1033.710000px;}
.y1b3{bottom:1044.600000px;}
.yb8{bottom:1047.840000px;}
.y39{bottom:1051.350000px;}
.y1d5{bottom:1053.600000px;}
.y109{bottom:1057.200000px;}
.y138{bottom:1057.740000px;}
.y63{bottom:1058.100000px;}
.y12{bottom:1063.770000px;}
.y1b2{bottom:1070.460000px;}
.y38{bottom:1073.430000px;}
.yb7{bottom:1074.600000px;}
.y1d4{bottom:1079.460000px;}
.y108{bottom:1083.060000px;}
.y62{bottom:1083.960000px;}
.y11{bottom:1092.690000px;}
.y37{bottom:1095.210000px;}
.y1b1{bottom:1100.700000px;}
.y107{bottom:1109.340000px;}
.y61{bottom:1109.700000px;}
.y7{bottom:1116.090000px;}
.y36{bottom:1117.170000px;}
.y1{bottom:1134.270000px;}
.y60{bottom:1135.530000px;}
.y35{bottom:1138.950000px;}
.h17{height:33.030000px;}
.he{height:35.947266px;}
.h10{height:36.381973px;}
.hd{height:42.058301px;}
.h4{height:51.929824px;}
.h13{height:52.312500px;}
.h6{height:53.920898px;}
.hf{height:55.141665px;}
.h3{height:60.031934px;}
.ha{height:62.191406px;}
.h7{height:62.703281px;}
.h12{height:64.019531px;}
.h15{height:64.620000px;}
.h8{height:65.783496px;}
.hb{height:71.894531px;}
.h9{height:72.452988px;}
.h5{height:75.093750px;}
.h2{height:86.040000px;}
.h1a{height:128.722500px;}
.h16{height:198.180000px;}
.h11{height:293.880000px;}
.h14{height:330.240000px;}
.h18{height:379.380000px;}
.h19{height:947.608500px;}
.hc{height:1262.877990px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:50.850000px;}
.w8{width:312.898500px;}
.w4{width:329.700000px;}
.w2{width:331.888500px;}
.w6{width:346.738500px;}
.w7{width:348.240000px;}
.wb{width:349.680000px;}
.wa{width:349.798500px;}
.w9{width:382.170000px;}
.w5{width:892.978125px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x1{left:98.281500px;}
.x8{left:104.670000px;}
.x6{left:106.380000px;}
.xe{left:110.880000px;}
.x1b{left:148.980000px;}
.x9{left:160.410000px;}
.x12{left:161.850000px;}
.xf{left:183.178125px;}
.x32{left:187.410000px;}
.x10{left:188.490000px;}
.xb{left:191.458125px;}
.xc{left:197.670000px;}
.x15{left:201.900000px;}
.x2{left:203.878500px;}
.x1a{left:209.100000px;}
.x34{left:224.850000px;}
.x2b{left:257.070000px;}
.x27{left:264.810000px;}
.x33{left:272.550000px;}
.x16{left:299.908125px;}
.x17{left:305.130000px;}
.x1d{left:313.050000px;}
.xd{left:322.410000px;}
.x2f{left:344.640000px;}
.x35{left:347.070000px;}
.x36{left:352.200000px;}
.x2c{left:362.040000px;}
.x13{left:374.730000px;}
.x1e{left:380.490000px;}
.x31{left:383.010000px;}
.x1c{left:388.950000px;}
.x1f{left:394.530000px;}
.x28{left:412.260000px;}
.x20{left:417.390000px;}
.x3{left:430.170000px;}
.x21{left:431.430000px;}
.x7{left:446.550000px;}
.x2e{left:449.160000px;}
.x37{left:479.220000px;}
.x5{left:481.020000px;}
.x38{left:484.350000px;}
.x29{left:505.770000px;}
.x18{left:530.610000px;}
.x22{left:560.400000px;}
.x39{left:568.950000px;}
.x23{left:574.440000px;}
.x2a{left:620.190000px;}
.x19{left:626.040000px;}
.x24{left:673.740000px;}
.x25{left:687.780000px;}
.x2d{left:692.460000px;}
.x30{left:766.710000px;}
.xa{left:776.700000px;}
.x14{left:779.940000px;}
.x11{left:781.830000px;}
.x26{left:786.690000px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.ls32{letter-spacing:-0.356800pt;}
.ls7{letter-spacing:-0.348267pt;}
.ls24{letter-spacing:-0.320000pt;}
.ls3d{letter-spacing:-0.312000pt;}
.ls4c{letter-spacing:-0.256000pt;}
.ls3b{letter-spacing:-0.234133pt;}
.lsd{letter-spacing:-0.212267pt;}
.ls25{letter-spacing:-0.195733pt;}
.ls6{letter-spacing:-0.160000pt;}
.ls3a{letter-spacing:-0.158933pt;}
.ls48{letter-spacing:-0.141333pt;}
.ls51{letter-spacing:-0.128000pt;}
.ls33{letter-spacing:-0.109333pt;}
.ls31{letter-spacing:-0.107733pt;}
.lsa{letter-spacing:-0.099733pt;}
.ls38{letter-spacing:-0.088533pt;}
.ls19{letter-spacing:-0.064000pt;}
.ls27{letter-spacing:-0.036800pt;}
.lsc{letter-spacing:-0.032960pt;}
.ls5{letter-spacing:-0.028160pt;}
.lse{letter-spacing:-0.026240pt;}
.ls4{letter-spacing:0.000000pt;}
.ls35{letter-spacing:0.002880pt;}
.ls37{letter-spacing:0.008000pt;}
.ls46{letter-spacing:0.008640pt;}
.ls34{letter-spacing:0.011200pt;}
.ls1e{letter-spacing:0.023360pt;}
.ls50{letter-spacing:0.042667pt;}
.ls8{letter-spacing:0.048640pt;}
.ls3c{letter-spacing:0.051840pt;}
.ls16{letter-spacing:0.064000pt;}
.ls39{letter-spacing:0.085867pt;}
.ls47{letter-spacing:0.111360pt;}
.lsb{letter-spacing:0.122133pt;}
.ls26{letter-spacing:0.124267pt;}
.ls15{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.136533pt;}
.ls1b{letter-spacing:0.152960pt;}
.ls1{letter-spacing:0.160000pt;}
.ls4f{letter-spacing:0.256000pt;}
.lsf{letter-spacing:0.291733pt;}
.ls4d{letter-spacing:0.384000pt;}
.ls4e{letter-spacing:0.576000pt;}
.ls10{letter-spacing:0.663360pt;}
.ls4b{letter-spacing:1.536000pt;}
.ls4a{letter-spacing:2.432000pt;}
.ls44{letter-spacing:2.816000pt;}
.ls2{letter-spacing:3.223360pt;}
.ls11{letter-spacing:3.543360pt;}
.ls43{letter-spacing:3.776000pt;}
.ls1d{letter-spacing:3.840000pt;}
.ls1f{letter-spacing:4.736000pt;}
.ls49{letter-spacing:5.120000pt;}
.ls3e{letter-spacing:5.376000pt;}
.ls2c{letter-spacing:5.760000pt;}
.ls17{letter-spacing:7.296000pt;}
.ls0{letter-spacing:7.703360pt;}
.ls45{letter-spacing:8.256000pt;}
.ls20{letter-spacing:8.320000pt;}
.ls22{letter-spacing:9.536000pt;}
.ls21{letter-spacing:9.856000pt;}
.ls28{letter-spacing:9.920000pt;}
.ls18{letter-spacing:10.176000pt;}
.ls3{letter-spacing:12.823360pt;}
.ls1a{letter-spacing:15.040000pt;}
.ls2a{letter-spacing:16.896000pt;}
.ls2b{letter-spacing:18.560000pt;}
.ls14{letter-spacing:19.223360pt;}
.ls41{letter-spacing:19.776000pt;}
.ls29{letter-spacing:22.080000pt;}
.ls12{letter-spacing:22.743360pt;}
.ls2f{letter-spacing:27.136000pt;}
.ls2e{letter-spacing:27.456000pt;}
.ls40{letter-spacing:31.296000pt;}
.ls3f{letter-spacing:31.402667pt;}
.ls23{letter-spacing:33.216000pt;}
.ls36{letter-spacing:33.322667pt;}
.ls2d{letter-spacing:33.600000pt;}
.ls13{letter-spacing:35.863360pt;}
.ls42{letter-spacing:38.976000pt;}
.ls30{letter-spacing:61.376000pt;}
.ls1c{letter-spacing:97.856000pt;}
.ws12{word-spacing:-67.461249pt;}
.ws1e{word-spacing:-64.128000pt;}
.ws10{word-spacing:-64.000000pt;}
.ws11{word-spacing:-63.680000pt;}
.ws1c{word-spacing:-53.491840pt;}
.ws19{word-spacing:-53.448000pt;}
.ws9{word-spacing:-53.440000pt;}
.ws14{word-spacing:-53.403200pt;}
.ws17{word-spacing:-53.330667pt;}
.ws1d{word-spacing:-53.128000pt;}
.ws16{word-spacing:-53.083200pt;}
.ws4{word-spacing:-20.179840pt;}
.ws22{word-spacing:-18.112000pt;}
.wsd{word-spacing:-18.048000pt;}
.ws7{word-spacing:-17.984000pt;}
.wsf{word-spacing:-17.920000pt;}
.ws21{word-spacing:-17.856000pt;}
.ws1f{word-spacing:-17.728000pt;}
.ws23{word-spacing:-17.664000pt;}
.ws18{word-spacing:-17.280000pt;}
.ws6{word-spacing:-16.591893pt;}
.ws5{word-spacing:-16.455360pt;}
.wse{word-spacing:-15.808000pt;}
.ws0{word-spacing:-15.176640pt;}
.ws13{word-spacing:-15.140907pt;}
.ws20{word-spacing:-15.025280pt;}
.ws3{word-spacing:-15.016640pt;}
.ws1a{word-spacing:-14.928107pt;}
.ws15{word-spacing:-14.908907pt;}
.ws2{word-spacing:-14.856640pt;}
.wsa{word-spacing:-14.428800pt;}
.ws1b{word-spacing:-14.269867pt;}
.ws8{word-spacing:-13.199680pt;}
.wsc{word-spacing:-0.064000pt;}
.ws1{word-spacing:-0.053440pt;}
.wsb{word-spacing:0.000000pt;}
._18{margin-left:-3.183253pt;}
._22{margin-left:-2.007573pt;}
._0{margin-left:-0.928640pt;}
._8{width:1.043840pt;}
._9{width:2.618560pt;}
._1{width:3.687360pt;}
._2{width:4.872640pt;}
._c{width:5.876480pt;}
._6{width:6.766507pt;}
._4{width:8.176320pt;}
._5{width:9.309760pt;}
._10{width:10.815040pt;}
._3{width:11.917120pt;}
._a{width:12.879040pt;}
._b{width:13.891413pt;}
._1b{width:14.848000pt;}
._1c{width:15.784747pt;}
._d{width:16.749867pt;}
._11{width:17.772373pt;}
._14{width:18.926933pt;}
._16{width:20.331840pt;}
._e{width:21.322560pt;}
._f{width:22.449813pt;}
._1d{width:24.340907pt;}
._13{width:26.021867pt;}
._1a{width:27.098133pt;}
._1e{width:28.901867pt;}
._23{width:29.876480pt;}
._21{width:30.944640pt;}
._20{width:31.936000pt;}
._19{width:33.152000pt;}
._15{width:34.496000pt;}
._12{width:35.808747pt;}
._27{width:38.848000pt;}
._28{width:39.745493pt;}
._17{width:41.088000pt;}
._1f{width:45.696000pt;}
._25{width:53.120000pt;}
._26{width:54.144000pt;}
._24{width:61.312000pt;}
._7{width:849.190400pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:37.440000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.440000pt;}
.fs3{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:67.461249pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:2.480000pt;}
.y6{bottom:3.520000pt;}
.y18b{bottom:12.720000pt;}
.y10f{bottom:13.200000pt;}
.ycf{bottom:13.600000pt;}
.y11c{bottom:13.840000pt;}
.y116{bottom:17.200000pt;}
.y5{bottom:22.640000pt;}
.y18a{bottom:39.920000pt;}
.y4{bottom:41.760000pt;}
.y10e{bottom:41.920000pt;}
.y132{bottom:42.080000pt;}
.y18e{bottom:42.106667pt;}
.yee{bottom:42.880000pt;}
.yce{bottom:42.960000pt;}
.y115{bottom:45.840000pt;}
.ye5{bottom:48.480000pt;}
.y3{bottom:60.880000pt;}
.y127{bottom:63.440000pt;}
.y10{bottom:67.920000pt;}
.y131{bottom:68.400000pt;}
.y189{bottom:69.280000pt;}
.y18d{bottom:69.306667pt;}
.ycd{bottom:71.440000pt;}
.yed{bottom:72.240000pt;}
.y11a{bottom:72.320000pt;}
.y114{bottom:74.560000pt;}
.ye4{bottom:77.200000pt;}
.y34{bottom:83.840000pt;}
.y126{bottom:92.160000pt;}
.y130{bottom:94.800000pt;}
.ycc{bottom:98.640000pt;}
.y188{bottom:98.666667pt;}
.yec{bottom:101.600000pt;}
.y119{bottom:101.680000pt;}
.yf{bottom:102.240000pt;}
.y113{bottom:103.280000pt;}
.y1f2{bottom:104.080000pt;}
.ye3{bottom:105.840000pt;}
.ydb{bottom:106.160000pt;}
.y5f{bottom:107.600000pt;}
.ya2{bottom:109.600000pt;}
.y106{bottom:110.800000pt;}
.y86{bottom:113.120000pt;}
.y1d3{bottom:118.480000pt;}
.y1b0{bottom:119.680000pt;}
.y125{bottom:120.800000pt;}
.y137{bottom:121.040000pt;}
.ye{bottom:121.360000pt;}
.y5e{bottom:121.440000pt;}
.y12f{bottom:122.000000pt;}
.y15b{bottom:123.120000pt;}
.yb6{bottom:126.720000pt;}
.y1f1{bottom:126.960000pt;}
.ycb{bottom:128.000000pt;}
.y187{bottom:128.026667pt;}
.yda{bottom:129.120000pt;}
.y15a{bottom:129.920000pt;}
.yc6{bottom:130.880000pt;}
.yeb{bottom:130.960000pt;}
.y118{bottom:131.040000pt;}
.y112{bottom:131.920000pt;}
.ya1{bottom:132.560000pt;}
.y105{bottom:134.000000pt;}
.ye2{bottom:134.560000pt;}
.y85{bottom:136.080000pt;}
.yd{bottom:140.480000pt;}
.y1d2{bottom:141.440000pt;}
.y1af{bottom:142.640000pt;}
.y136{bottom:143.920000pt;}
.yb5{bottom:145.840000pt;}
.y124{bottom:149.520000pt;}
.y1f0{bottom:149.920000pt;}
.y5d{bottom:150.720000pt;}
.y12e{bottom:151.360000pt;}
.y159{bottom:152.880000pt;}
.ya0{bottom:155.520000pt;}
.y104{bottom:156.960000pt;}
.yca{bottom:157.386667pt;}
.y84{bottom:158.960000pt;}
.yc{bottom:159.600000pt;}
.yc5{bottom:159.626667pt;}
.yb4{bottom:159.680000pt;}
.yea{bottom:160.320000pt;}
.y117{bottom:160.400000pt;}
.y111{bottom:160.640000pt;}
.ye1{bottom:163.200000pt;}
.y1ae{bottom:165.600000pt;}
.y135{bottom:167.360000pt;}
.yd9{bottom:168.080000pt;}
.y1d1{bottom:168.400000pt;}
.y1ef{bottom:172.880000pt;}
.y5c{bottom:173.680000pt;}
.y158{bottom:176.320000pt;}
.y123{bottom:178.240000pt;}
.y9f{bottom:178.480000pt;}
.yb{bottom:178.720000pt;}
.y12d{bottom:179.840000pt;}
.y103{bottom:179.920000pt;}
.y83{bottom:181.920000pt;}
.yc9{bottom:186.746667pt;}
.yc4{bottom:188.266667pt;}
.y1ad{bottom:188.560000pt;}
.ye9{bottom:189.680000pt;}
.y134{bottom:190.640000pt;}
.y1d0{bottom:191.360000pt;}
.ye0{bottom:191.920000pt;}
.yb2{bottom:194.400000pt;}
.y5b{bottom:196.640000pt;}
.ya{bottom:197.840000pt;}
.y157{bottom:199.600000pt;}
.y1ee{bottom:199.866667pt;}
.yb3{bottom:201.066667pt;}
.y9e{bottom:201.466667pt;}
.y102{bottom:203.386667pt;}
.y82{bottom:204.906667pt;}
.y122{bottom:206.880000pt;}
.y12c{bottom:207.040000pt;}
.yd8{bottom:207.546667pt;}
.y1ac{bottom:211.546667pt;}
.yc8{bottom:216.106667pt;}
.y9{bottom:216.986667pt;}
.yb1{bottom:217.706667pt;}
.y1cf{bottom:218.346667pt;}
.ye8{bottom:219.066667pt;}
.y5a{bottom:219.626667pt;}
.ydf{bottom:220.666667pt;}
.y156{bottom:222.586667pt;}
.y1ed{bottom:222.826667pt;}
.y133{bottom:223.546667pt;}
.y171{bottom:224.266667pt;}
.y9d{bottom:224.426667pt;}
.y101{bottom:226.666667pt;}
.y81{bottom:227.866667pt;}
.yd7{bottom:228.586667pt;}
.y1ab{bottom:234.506667pt;}
.y12b{bottom:235.520000pt;}
.y121{bottom:235.600000pt;}
.y11d{bottom:239.786667pt;}
.y1ce{bottom:241.226667pt;}
.y59{bottom:242.586667pt;}
.y186{bottom:244.586667pt;}
.yc7{bottom:245.466667pt;}
.yc3{bottom:245.706667pt;}
.y1ec{bottom:245.786667pt;}
.y9c{bottom:247.386667pt;}
.ye7{bottom:248.426667pt;}
.yde{bottom:249.306667pt;}
.yd6{bottom:249.626667pt;}
.yb0{bottom:250.586667pt;}
.y80{bottom:250.826667pt;}
.y8{bottom:251.466667pt;}
.y170{bottom:252.906667pt;}
.y1aa{bottom:257.386667pt;}
.y12a{bottom:262.720000pt;}
.y120{bottom:264.240000pt;}
.y58{bottom:265.466667pt;}
.y1cd{bottom:268.186667pt;}
.y155{bottom:268.906667pt;}
.yaf{bottom:269.706667pt;}
.y9b{bottom:270.346667pt;}
.y185{bottom:271.786667pt;}
.y100{bottom:272.586667pt;}
.y1eb{bottom:272.746667pt;}
.y7f{bottom:273.786667pt;}
.ye6{bottom:277.786667pt;}
.ydd{bottom:278.026667pt;}
.yd5{bottom:278.266667pt;}
.y1a9{bottom:280.346667pt;}
.y16f{bottom:281.626667pt;}
.y33{bottom:282.906667pt;}
.y57{bottom:288.426667pt;}
.y1cc{bottom:291.146667pt;}
.y129{bottom:292.080000pt;}
.y154{bottom:292.186667pt;}
.y11f{bottom:292.960000pt;}
.y9a{bottom:293.226667pt;}
.y1ea{bottom:295.706667pt;}
.yae{bottom:295.946667pt;}
.yff{bottom:296.026667pt;}
.y7e{bottom:296.746667pt;}
.y184{bottom:301.146667pt;}
.yd4{bottom:301.226667pt;}
.y32{bottom:302.106667pt;}
.y1a8{bottom:303.306667pt;}
.y16e{bottom:310.346667pt;}
.y55{bottom:311.386667pt;}
.y1cb{bottom:314.106667pt;}
.y153{bottom:315.146667pt;}
.y99{bottom:316.186667pt;}
.y56{bottom:318.026667pt;}
.y7d{bottom:319.706667pt;}
.y31{bottom:321.226667pt;}
.y128{bottom:321.440000pt;}
.y11e{bottom:321.680000pt;}
.y1e9{bottom:322.666667pt;}
.y1a7{bottom:326.266667pt;}
.y183{bottom:330.506667pt;}
.y54{bottom:334.346667pt;}
.yd3{bottom:334.826667pt;}
.y152{bottom:338.106667pt;}
.y16d{bottom:338.986667pt;}
.y98{bottom:339.146667pt;}
.y30{bottom:340.346667pt;}
.y1ca{bottom:341.066667pt;}
.y7c{bottom:342.666667pt;}
.y1e8{bottom:345.626667pt;}
.y1a6{bottom:349.226667pt;}
.y53{bottom:357.306667pt;}
.yd2{bottom:357.786667pt;}
.y2f{bottom:359.466667pt;}
.y182{bottom:359.866667pt;}
.y151{bottom:361.546667pt;}
.y97{bottom:362.106667pt;}
.yfe{bottom:363.306667pt;}
.y1c9{bottom:364.026667pt;}
.y7b{bottom:365.626667pt;}
.y16c{bottom:367.706667pt;}
.y1a5{bottom:372.186667pt;}
.y1e7{bottom:372.586667pt;}
.y2e{bottom:378.586667pt;}
.y52{bottom:380.266667pt;}
.yd1{bottom:380.746667pt;}
.y150{bottom:384.826667pt;}
.y96{bottom:385.066667pt;}
.yfd{bottom:386.266667pt;}
.y7a{bottom:388.586667pt;}
.y181{bottom:389.226667pt;}
.y1c8{bottom:394.986667pt;}
.y1a4{bottom:395.146667pt;}
.y1e6{bottom:395.466667pt;}
.y16b{bottom:396.426667pt;}
.y2d{bottom:397.706667pt;}
.y51{bottom:403.226667pt;}
.y14f{bottom:407.786667pt;}
.y95{bottom:408.026667pt;}
.yfc{bottom:409.226667pt;}
.y79{bottom:411.466667pt;}
.yd0{bottom:413.626667pt;}
.y2c{bottom:416.826667pt;}
.y180{bottom:417.706667pt;}
.y1a3{bottom:418.106667pt;}
.y1e5{bottom:422.426667pt;}
.y16a{bottom:425.066667pt;}
.y50{bottom:426.186667pt;}
.y1c7{bottom:429.306667pt;}
.yc2{bottom:429.866667pt;}
.y14e{bottom:430.746667pt;}
.yfb{bottom:432.186667pt;}
.y78{bottom:434.426667pt;}
.y2b{bottom:435.946667pt;}
.y94{bottom:438.986667pt;}
.y1a2{bottom:441.066667pt;}
.y17f{bottom:444.906667pt;}
.y1e4{bottom:445.386667pt;}
.y4f{bottom:449.146667pt;}
.y14d{bottom:453.706667pt;}
.y169{bottom:453.813333pt;}
.y2a{bottom:455.066667pt;}
.yfa{bottom:455.146667pt;}
.y1c6{bottom:456.346667pt;}
.y77{bottom:457.386667pt;}
.y1a1{bottom:464.026667pt;}
.y93{bottom:469.946667pt;}
.y4e{bottom:472.106667pt;}
.y1e3{bottom:472.346667pt;}
.y29{bottom:474.186667pt;}
.y17e{bottom:474.293333pt;}
.y14c{bottom:477.146667pt;}
.yf9{bottom:478.106667pt;}
.y1c5{bottom:479.306667pt;}
.y76{bottom:480.346667pt;}
.y168{bottom:482.453333pt;}
.y1a0{bottom:486.986667pt;}
.yad{bottom:488.106667pt;}
.y92{bottom:492.906667pt;}
.y28{bottom:493.306667pt;}
.y4d{bottom:495.066667pt;}
.y1e2{bottom:495.306667pt;}
.y14b{bottom:500.826667pt;}
.yf8{bottom:500.986667pt;}
.y75{bottom:503.306667pt;}
.y17d{bottom:503.653333pt;}
.y1c4{bottom:506.266667pt;}
.yac{bottom:507.226667pt;}
.y19f{bottom:509.946667pt;}
.y167{bottom:511.173333pt;}
.y27{bottom:512.506667pt;}
.y4c{bottom:518.026667pt;}
.y1e1{bottom:518.266667pt;}
.yf7{bottom:523.946667pt;}
.y14a{bottom:524.106667pt;}
.y74{bottom:526.266667pt;}
.y91{bottom:527.226667pt;}
.y1c3{bottom:529.226667pt;}
.y26{bottom:532.026667pt;}
.y19e{bottom:532.826667pt;}
.y17c{bottom:533.013333pt;}
.yab{bottom:533.466667pt;}
.y166{bottom:539.893333pt;}
.y4b{bottom:540.906667pt;}
.y1e0{bottom:545.226667pt;}
.yf6{bottom:546.906667pt;}
.y149{bottom:547.066667pt;}
.y73{bottom:549.226667pt;}
.y90{bottom:550.266667pt;}
.y25{bottom:551.786667pt;}
.y19d{bottom:555.786667pt;}
.y1c2{bottom:556.186667pt;}
.y17b{bottom:562.373333pt;}
.y4a{bottom:563.866667pt;}
.y1df{bottom:568.186667pt;}
.y165{bottom:568.533333pt;}
.yf5{bottom:569.866667pt;}
.y148{bottom:570.026667pt;}
.y24{bottom:571.146667pt;}
.y72{bottom:572.186667pt;}
.y8f{bottom:573.226667pt;}
.y11b{bottom:577.653333pt;}
.y19c{bottom:578.773333pt;}
.y1c1{bottom:579.173333pt;}
.y49{bottom:586.853333pt;}
.y23{bottom:590.373333pt;}
.y1de{bottom:591.173333pt;}
.y17a{bottom:591.733333pt;}
.yf4{bottom:592.853333pt;}
.y147{bottom:593.013333pt;}
.y71{bottom:595.173333pt;}
.y8e{bottom:596.213333pt;}
.y164{bottom:597.253333pt;}
.y19b{bottom:601.733333pt;}
.y1c0{bottom:606.133333pt;}
.y110{bottom:607.653333pt;}
.y22{bottom:609.493333pt;}
.y48{bottom:609.813333pt;}
.yf3{bottom:615.813333pt;}
.y146{bottom:615.973333pt;}
.y70{bottom:618.133333pt;}
.y8d{bottom:619.173333pt;}
.y179{bottom:621.093333pt;}
.y19a{bottom:624.693333pt;}
.y163{bottom:625.973333pt;}
.y21{bottom:628.613333pt;}
.y1bf{bottom:629.093333pt;}
.y47{bottom:632.773333pt;}
.yf2{bottom:638.773333pt;}
.y145{bottom:638.933333pt;}
.y6f{bottom:641.093333pt;}
.y8c{bottom:642.133333pt;}
.y199{bottom:647.653333pt;}
.y20{bottom:647.733333pt;}
.y178{bottom:650.453333pt;}
.y1be{bottom:652.053333pt;}
.y162{bottom:654.613333pt;}
.y46{bottom:655.733333pt;}
.yf1{bottom:661.733333pt;}
.y144{bottom:661.893333pt;}
.y6e{bottom:664.053333pt;}
.y8b{bottom:665.093333pt;}
.y1f{bottom:666.853333pt;}
.y1dd{bottom:668.053333pt;}
.y198{bottom:678.613333pt;}
.y45{bottom:678.693333pt;}
.y1bd{bottom:678.933333pt;}
.y177{bottom:679.733333pt;}
.y161{bottom:683.333333pt;}
.yf0{bottom:684.693333pt;}
.y143{bottom:684.853333pt;}
.y1e{bottom:685.973333pt;}
.y6d{bottom:686.933333pt;}
.y8a{bottom:688.053333pt;}
.y1dc{bottom:690.933333pt;}
.y197{bottom:701.573333pt;}
.y44{bottom:701.653333pt;}
.y1bc{bottom:701.893333pt;}
.y1d{bottom:705.893333pt;}
.yc1{bottom:707.413333pt;}
.y142{bottom:707.813333pt;}
.y176{bottom:709.093333pt;}
.y6c{bottom:709.893333pt;}
.y89{bottom:710.933333pt;}
.y160{bottom:712.053333pt;}
.y1db{bottom:713.893333pt;}
.yef{bottom:717.493333pt;}
.y196{bottom:724.533333pt;}
.y43{bottom:724.613333pt;}
.y1bb{bottom:724.853333pt;}
.y1c{bottom:728.373333pt;}
.yc0{bottom:730.453333pt;}
.y141{bottom:730.773333pt;}
.ydc{bottom:733.813333pt;}
.y88{bottom:733.893333pt;}
.y175{bottom:738.453333pt;}
.y15f{bottom:740.693333pt;}
.y6b{bottom:740.853333pt;}
.y42{bottom:747.573333pt;}
.y195{bottom:747.973333pt;}
.y1b{bottom:749.413333pt;}
.y1ba{bottom:751.813333pt;}
.ybf{bottom:753.413333pt;}
.y140{bottom:753.653333pt;}
.y87{bottom:756.853333pt;}
.y1da{bottom:763.813333pt;}
.y174{bottom:767.813333pt;}
.y15e{bottom:769.413333pt;}
.y1a{bottom:770.453333pt;}
.y194{bottom:771.253333pt;}
.yaa{bottom:771.813333pt;}
.ybe{bottom:776.373333pt;}
.y13f{bottom:776.613333pt;}
.y41{bottom:778.533333pt;}
.y1b9{bottom:778.773333pt;}
.y6a{bottom:779.813333pt;}
.y10d{bottom:784.453333pt;}
.y1d9{bottom:790.773333pt;}
.y19{bottom:791.493333pt;}
.y193{bottom:794.613333pt;}
.ya9{bottom:794.773333pt;}
.y173{bottom:797.173333pt;}
.y15d{bottom:798.133333pt;}
.ybd{bottom:799.333333pt;}
.y13e{bottom:799.573333pt;}
.y40{bottom:800.693333pt;}
.y69{bottom:802.773333pt;}
.y1b8{bottom:805.733333pt;}
.y18{bottom:812.533333pt;}
.y1d8{bottom:813.733333pt;}
.ya8{bottom:817.733333pt;}
.y192{bottom:817.893333pt;}
.y3f{bottom:819.813333pt;}
.ybc{bottom:822.773333pt;}
.y13d{bottom:823.013333pt;}
.y68{bottom:825.733333pt;}
.y172{bottom:826.560000pt;}
.y15c{bottom:826.800000pt;}
.y1b7{bottom:828.693333pt;}
.y17{bottom:833.573333pt;}
.y1d7{bottom:836.693333pt;}
.y3e{bottom:838.933333pt;}
.ya7{bottom:840.693333pt;}
.y191{bottom:840.853333pt;}
.ybb{bottom:846.053333pt;}
.y13c{bottom:846.293333pt;}
.y67{bottom:848.693333pt;}
.y16{bottom:854.613333pt;}
.y1b6{bottom:855.653333pt;}
.y3d{bottom:858.053333pt;}
.ya6{bottom:863.653333pt;}
.y190{bottom:863.813333pt;}
.y13b{bottom:869.733333pt;}
.y10c{bottom:870.853333pt;}
.y66{bottom:871.653333pt;}
.y15{bottom:875.333333pt;}
.yba{bottom:877.013333pt;}
.y3c{bottom:877.173333pt;}
.y1b5{bottom:878.613333pt;}
.ya4{bottom:886.613333pt;}
.y13a{bottom:893.013333pt;}
.ya5{bottom:893.253333pt;}
.y10b{bottom:893.813333pt;}
.y65{bottom:894.613333pt;}
.y14{bottom:895.253333pt;}
.y3b{bottom:896.293333pt;}
.y18f{bottom:896.693333pt;}
.yb9{bottom:899.973333pt;}
.y1b4{bottom:905.573333pt;}
.ya3{bottom:909.573333pt;}
.y18c{bottom:912.933333pt;}
.y1d6{bottom:913.573333pt;}
.y3a{bottom:915.413333pt;}
.y139{bottom:916.453333pt;}
.y10a{bottom:916.773333pt;}
.y64{bottom:917.573333pt;}
.y13{bottom:918.853333pt;}
.y1b3{bottom:928.533333pt;}
.yb8{bottom:931.413333pt;}
.y39{bottom:934.533333pt;}
.y1d5{bottom:936.533333pt;}
.y109{bottom:939.733333pt;}
.y138{bottom:940.213333pt;}
.y63{bottom:940.533333pt;}
.y12{bottom:945.573333pt;}
.y1b2{bottom:951.520000pt;}
.y38{bottom:954.160000pt;}
.yb7{bottom:955.200000pt;}
.y1d4{bottom:959.520000pt;}
.y108{bottom:962.720000pt;}
.y62{bottom:963.520000pt;}
.y11{bottom:971.280000pt;}
.y37{bottom:973.520000pt;}
.y1b1{bottom:978.400000pt;}
.y107{bottom:986.080000pt;}
.y61{bottom:986.400000pt;}
.y7{bottom:992.080000pt;}
.y36{bottom:993.040000pt;}
.y1{bottom:1008.240000pt;}
.y60{bottom:1009.360000pt;}
.y35{bottom:1012.400000pt;}
.h17{height:29.360000pt;}
.he{height:31.953125pt;}
.h10{height:32.339531pt;}
.hd{height:37.385156pt;}
.h4{height:46.159844pt;}
.h13{height:46.500000pt;}
.h6{height:47.929688pt;}
.hf{height:49.014814pt;}
.h3{height:53.361719pt;}
.ha{height:55.281250pt;}
.h7{height:55.736250pt;}
.h12{height:56.906250pt;}
.h15{height:57.440000pt;}
.h8{height:58.474219pt;}
.hb{height:63.906250pt;}
.h9{height:64.402656pt;}
.h5{height:66.750000pt;}
.h2{height:76.480000pt;}
.h1a{height:114.420000pt;}
.h16{height:176.160000pt;}
.h11{height:261.226667pt;}
.h14{height:293.546667pt;}
.h18{height:337.226667pt;}
.h19{height:842.318667pt;}
.hc{height:1122.558213pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:45.200000pt;}
.w8{width:278.132000pt;}
.w4{width:293.066667pt;}
.w2{width:295.012000pt;}
.w6{width:308.212000pt;}
.w7{width:309.546667pt;}
.wb{width:310.826667pt;}
.wa{width:310.932000pt;}
.w9{width:339.706667pt;}
.w5{width:793.758333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x1{left:87.361333pt;}
.x8{left:93.040000pt;}
.x6{left:94.560000pt;}
.xe{left:98.560000pt;}
.x1b{left:132.426667pt;}
.x9{left:142.586667pt;}
.x12{left:143.866667pt;}
.xf{left:162.825000pt;}
.x32{left:166.586667pt;}
.x10{left:167.546667pt;}
.xb{left:170.185000pt;}
.xc{left:175.706667pt;}
.x15{left:179.466667pt;}
.x2{left:181.225333pt;}
.x1a{left:185.866667pt;}
.x34{left:199.866667pt;}
.x2b{left:228.506667pt;}
.x27{left:235.386667pt;}
.x33{left:242.266667pt;}
.x16{left:266.585000pt;}
.x17{left:271.226667pt;}
.x1d{left:278.266667pt;}
.xd{left:286.586667pt;}
.x2f{left:306.346667pt;}
.x35{left:308.506667pt;}
.x36{left:313.066667pt;}
.x2c{left:321.813333pt;}
.x13{left:333.093333pt;}
.x1e{left:338.213333pt;}
.x31{left:340.453333pt;}
.x1c{left:345.733333pt;}
.x1f{left:350.693333pt;}
.x28{left:366.453333pt;}
.x20{left:371.013333pt;}
.x3{left:382.373333pt;}
.x21{left:383.493333pt;}
.x7{left:396.933333pt;}
.x2e{left:399.253333pt;}
.x37{left:425.973333pt;}
.x5{left:427.573333pt;}
.x38{left:430.533333pt;}
.x29{left:449.573333pt;}
.x18{left:471.653333pt;}
.x22{left:498.133333pt;}
.x39{left:505.733333pt;}
.x23{left:510.613333pt;}
.x2a{left:551.280000pt;}
.x19{left:556.480000pt;}
.x24{left:598.880000pt;}
.x25{left:611.360000pt;}
.x2d{left:615.520000pt;}
.x30{left:681.520000pt;}
.xa{left:690.400000pt;}
.x14{left:693.280000pt;}
.x11{left:694.960000pt;}
.x26{left:699.280000pt;}
}




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