
    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_fed357d3cca32e5e9a0bb40e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.183105;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_df81f2e5606b2dd0f300a08d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_26a5b4c4343f602f2df5e7d3.woff')format("woff");}.ff3{font-family:ff3;line-height:1.122070;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_d38f43d06b062b8d27076155.woff')format("woff");}.ff4{font-family:ff4;line-height:1.183105;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_6f02d015f916f06d22cc7888.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2f423cf6430c839490904058.woff')format("woff");}.ff6{font-family:ff6;line-height:1.075195;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_67cccc446563cc1a519ce8b8.woff')format("woff");}.ff7{font-family:ff7;line-height:1.183105;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_94a44f27bb3153c37727a571.woff')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_16d9a5522fbbd0b5c1a89747.woff')format("woff");}.ff9{font-family:ff9;line-height:1.070312;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-16.977000px;}
.v2{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:11.994000px;}
.v3{vertical-align:13.979400px;}
.v1{vertical-align:16.989000px;}
.lsf{letter-spacing:-7.371000px;}
.ls4{letter-spacing:-2.772000px;}
.ls1a{letter-spacing:-2.760000px;}
.ls25{letter-spacing:-2.691000px;}
.ls21{letter-spacing:-2.208000px;}
.ls18{letter-spacing:-1.539000px;}
.ls23{letter-spacing:-1.104000px;}
.lse{letter-spacing:-0.855000px;}
.ls20{letter-spacing:-0.759000px;}
.ls22{letter-spacing:-0.690000px;}
.ls17{letter-spacing:-0.627000px;}
.ls26{letter-spacing:-0.570000px;}
.ls19{letter-spacing:-0.345000px;}
.ls7{letter-spacing:-0.324000px;}
.ls6{letter-spacing:-0.240000px;}
.ls28{letter-spacing:-0.207000px;}
.ls1b{letter-spacing:-0.171000px;}
.ls29{letter-spacing:-0.120681px;}
.ls2a{letter-spacing:-0.081000px;}
.ls0{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.000300px;}
.ls24{letter-spacing:0.000510px;}
.ls1d{letter-spacing:0.001110px;}
.ls10{letter-spacing:0.025200px;}
.ls5{letter-spacing:0.240000px;}
.ls2c{letter-spacing:0.630000px;}
.ls2b{letter-spacing:0.864000px;}
.ls33{letter-spacing:1.008000px;}
.ls3{letter-spacing:1.260000px;}
.ls1c{letter-spacing:2.187000px;}
.ls12{letter-spacing:2.214000px;}
.lsc{letter-spacing:2.400000px;}
.ls32{letter-spacing:4.125000px;}
.ls27{letter-spacing:4.174200px;}
.ls13{letter-spacing:4.186200px;}
.ls9{letter-spacing:4.200000px;}
.ls1f{letter-spacing:4.275000px;}
.ls14{letter-spacing:4.950000px;}
.ls31{letter-spacing:5.103000px;}
.lsa{letter-spacing:5.400000px;}
.ls8{letter-spacing:5.760000px;}
.lsd{letter-spacing:5.880000px;}
.ls1{letter-spacing:6.000000px;}
.ls2d{letter-spacing:6.041700px;}
.lsb{letter-spacing:6.300000px;}
.ls15{letter-spacing:6.900000px;}
.ls2e{letter-spacing:7.175700px;}
.ls16{letter-spacing:8.160156px;}
.ls1e{letter-spacing:8.160756px;}
.ls2{letter-spacing:8.400000px;}
.ls30{letter-spacing:13.034700px;}
.ls2f{letter-spacing:14.294700px;}
.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;}
}
.wsa{word-spacing:-26.475000px;}
.ws16{word-spacing:-26.025000px;}
.ws21{word-spacing:-25.350000px;}
.ws37{word-spacing:-25.200000px;}
.ws39{word-spacing:-22.860000px;}
.wsd{word-spacing:-22.740000px;}
.ws31{word-spacing:-22.680000px;}
.ws2{word-spacing:-22.620000px;}
.ws14{word-spacing:-19.389000px;}
.ws38{word-spacing:-18.711000px;}
.ws0{word-spacing:-18.120000px;}
.wsb{word-spacing:-18.102000px;}
.ws34{word-spacing:-17.703000px;}
.ws1{word-spacing:-17.100000px;}
.ws13{word-spacing:-17.043000px;}
.wsc{word-spacing:-16.860000px;}
.ws1a{word-spacing:-16.698000px;}
.ws26{word-spacing:-16.353000px;}
.ws22{word-spacing:-16.284000px;}
.ws23{word-spacing:-15.939000px;}
.ws35{word-spacing:-15.561000px;}
.wse{word-spacing:-15.390000px;}
.ws18{word-spacing:-15.174000px;}
.ws3a{word-spacing:-14.820000px;}
.ws1e{word-spacing:-14.283000px;}
.ws32{word-spacing:-14.202000px;}
.ws2e{word-spacing:-13.338000px;}
.wsf{word-spacing:-11.303787px;}
.ws2d{word-spacing:-11.183106px;}
.ws2c{word-spacing:-9.829380px;}
.ws2f{word-spacing:-8.846442px;}
.ws5{word-spacing:-8.400000px;}
.ws17{word-spacing:-8.261400px;}
.ws19{word-spacing:-6.900000px;}
.ws33{word-spacing:-6.300000px;}
.ws4{word-spacing:-6.000000px;}
.ws11{word-spacing:-4.200000px;}
.ws10{word-spacing:-2.400000px;}
.ws15{word-spacing:-2.214000px;}
.ws20{word-spacing:-2.187000px;}
.ws7{word-spacing:-1.260000px;}
.ws36{word-spacing:-0.630000px;}
.ws3{word-spacing:0.000000px;}
.ws1f{word-spacing:0.171000px;}
.ws30{word-spacing:0.207000px;}
.ws8{word-spacing:0.240000px;}
.ws9{word-spacing:0.324000px;}
.ws1d{word-spacing:0.345000px;}
.ws2b{word-spacing:0.570000px;}
.ws1b{word-spacing:0.627000px;}
.ws25{word-spacing:0.690000px;}
.ws12{word-spacing:0.855000px;}
.ws1c{word-spacing:1.539000px;}
.ws24{word-spacing:2.208000px;}
.ws2a{word-spacing:2.691000px;}
.ws6{word-spacing:2.772000px;}
.ws29{word-spacing:983.820000px;}
.ws27{word-spacing:1032.600000px;}
.ws28{word-spacing:1044.180000px;}
._2d{margin-left:-20.079000px;}
._d{margin-left:-8.424000px;}
._1f{margin-left:-7.225200px;}
._7{margin-left:-6.192000px;}
._10{margin-left:-5.137500px;}
._4{margin-left:-4.094700px;}
._3{margin-left:-2.293200px;}
._8{margin-left:-1.137000px;}
._5{width:1.008000px;}
._1{width:2.400000px;}
._c{width:3.717300px;}
._b{width:4.743900px;}
._6{width:5.760000px;}
._9{width:7.722000px;}
._a{width:9.606000px;}
._17{width:10.784700px;}
._14{width:12.053700px;}
._11{width:13.542000px;}
._20{width:14.862600px;}
._15{width:15.985500px;}
._1a{width:17.286000px;}
._1d{width:18.387900px;}
._30{width:19.761600px;}
._1b{width:20.766300px;}
._2e{width:22.022100px;}
._2c{width:23.615400px;}
._13{width:24.723000px;}
._16{width:25.908900px;}
._21{width:27.704160px;}
._2f{width:29.484000px;}
._31{width:31.673400px;}
._32{width:32.892300px;}
._18{width:43.445160px;}
._2a{width:51.653400px;}
._f{width:85.554000px;}
._12{width:260.610000px;}
._26{width:273.444000px;}
._24{width:278.474700px;}
._28{width:330.145200px;}
._2b{width:377.499600px;}
._27{width:454.957800px;}
._e{width:456.202200px;}
._23{width:457.617000px;}
._25{width:458.640000px;}
._1c{width:459.945000px;}
._29{width:461.580000px;}
._0{width:578.400000px;}
._2{width:955.711200px;}
._1e{width:958.831200px;}
._22{width:962.881200px;}
._19{width:964.861200px;}
.fc0{color:rgb(35,31,32);}
.fse{font-size:6.000000px;}
.fsd{font-size:29.400000px;}
.fsb{font-size:31.482000px;}
.fsf{font-size:34.980000px;}
.fsa{font-size:40.227000px;}
.fs5{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fsc{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fs9{font-size:69.000000px;}
.fs1{font-size:75.000000px;}
.fs8{font-size:81.000000px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y1d1{bottom:106.118850px;}
.y161{bottom:106.145700px;}
.yd5{bottom:106.281300px;}
.y68{bottom:106.284450px;}
.y1f1{bottom:106.292100px;}
.yb2{bottom:106.293300px;}
.y8b{bottom:106.293450px;}
.y170{bottom:106.296300px;}
.y73{bottom:106.296450px;}
.y8c{bottom:106.299150px;}
.y1d{bottom:106.334100px;}
.y133{bottom:106.334550px;}
.y1b0{bottom:106.402350px;}
.yd6{bottom:108.699300px;}
.y3f{bottom:109.294800px;}
.yd4{bottom:123.534300px;}
.y67{bottom:123.537450px;}
.yb1{bottom:123.546300px;}
.y8a{bottom:123.546450px;}
.y18f{bottom:123.549300px;}
.y160{bottom:126.517950px;}
.y72{bottom:126.544950px;}
.y1d0{bottom:126.782850px;}
.y1c{bottom:126.869100px;}
.y132{bottom:127.120800px;}
.y1fb{bottom:127.822350px;}
.y1af{bottom:128.153100px;}
.y1f0{bottom:135.051600px;}
.yd3{bottom:140.787300px;}
.y66{bottom:140.790450px;}
.y16f{bottom:140.796300px;}
.yb0{bottom:143.794800px;}
.y89{bottom:143.794950px;}
.y71{bottom:145.045500px;}
.y15f{bottom:146.890200px;}
.y1b{bottom:147.404100px;}
.y131{bottom:147.907050px;}
.yf5{bottom:151.340100px;}
.y1cf{bottom:154.676100px;}
.y1ef{bottom:156.581850px;}
.y1ae{bottom:157.133100px;}
.yd2{bottom:158.040300px;}
.y65{bottom:158.043450px;}
.y16e{bottom:161.044800px;}
.y18e{bottom:162.059250px;}
.y88{bottom:162.295500px;}
.y70{bottom:162.298500px;}
.y3e{bottom:162.397500px;}
.yaf{bottom:165.296700px;}
.y15e{bottom:167.262450px;}
.y1a{bottom:167.939100px;}
.y130{bottom:168.693300px;}
.yfe{bottom:170.667600px;}
.y13d{bottom:173.201100px;}
.yf4{bottom:173.816850px;}
.yd1{bottom:175.293300px;}
.y64{bottom:175.296450px;}
.y1ce{bottom:175.340100px;}
.y1fa{bottom:178.112100px;}
.y1ad{bottom:178.883850px;}
.y110{bottom:179.311050px;}
.y16d{bottom:179.545500px;}
.y87{bottom:179.548500px;}
.y6f{bottom:179.551500px;}
.y3d{bottom:182.649000px;}
.y18d{bottom:182.691750px;}
.y1ee{bottom:185.341350px;}
.y15d{bottom:187.634700px;}
.y19{bottom:188.474100px;}
.y12f{bottom:189.479550px;}
.y239{bottom:190.428900px;}
.yfd{bottom:190.919100px;}
.yd0{bottom:192.546300px;}
.y13c{bottom:193.452600px;}
.y219{bottom:194.854350px;}
.y63{bottom:195.544950px;}
.yf3{bottom:196.293600px;}
.y16c{bottom:196.798500px;}
.y86{bottom:199.797000px;}
.y10f{bottom:200.271450px;}
.y1ac{bottom:200.634600px;}
.yae{bottom:200.835450px;}
.y3c{bottom:202.897500px;}
.y1cd{bottom:203.233350px;}
.y1ed{bottom:206.871600px;}
.y15c{bottom:208.006950px;}
.y18{bottom:209.009100px;}
.y12e{bottom:210.265800px;}
.y18c{bottom:210.553500px;}
.y238{bottom:210.678900px;}
.yfc{bottom:211.170600px;}
.ycf{bottom:212.794800px;}
.y62{bottom:214.045500px;}
.y218{bottom:215.108850px;}
.y16b{bottom:217.047000px;}
.yf2{bottom:218.770350px;}
.y10e{bottom:221.232150px;}
.y85{bottom:221.299050px;}
.yad{bottom:221.397450px;}
.y3b{bottom:223.149000px;}
.y1cc{bottom:223.897350px;}
.y15b{bottom:228.379200px;}
.y1f9{bottom:228.401850px;}
.y17{bottom:229.544100px;}
.y1ab{bottom:229.614600px;}
.y237{bottom:230.928900px;}
.y61{bottom:231.298500px;}
.yfb{bottom:231.422100px;}
.y13b{bottom:233.952600px;}
.y6e{bottom:234.445350px;}
.y1ec{bottom:235.631100px;}
.yf1{bottom:241.247100px;}
.yac{bottom:241.959450px;}
.y10d{bottom:242.201700px;}
.y217{bottom:242.592600px;}
.y3a{bottom:243.400500px;}
.yce{bottom:248.301300px;}
.y15a{bottom:248.751450px;}
.y1f8{bottom:249.932100px;}
.y16{bottom:250.079100px;}
.y236{bottom:251.178900px;}
.y1aa{bottom:251.365350px;}
.y60{bottom:251.547000px;}
.yfa{bottom:251.673600px;}
.y1cb{bottom:251.790600px;}
.y6d{bottom:254.696850px;}
.y1eb{bottom:257.161350px;}
.y12d{bottom:259.110900px;}
.yab{bottom:262.521450px;}
.y216{bottom:262.847100px;}
.y10c{bottom:263.160450px;}
.yf0{bottom:263.723850px;}
.ycd{bottom:268.956150px;}
.y159{bottom:269.123700px;}
.y15{bottom:270.614100px;}
.y16a{bottom:270.644700px;}
.y235{bottom:271.428900px;}
.yf9{bottom:271.925100px;}
.y1ca{bottom:272.454600px;}
.y6c{bottom:274.948350px;}
.y1f7{bottom:278.691600px;}
.y1a9{bottom:280.345350px;}
.y12c{bottom:281.835900px;}
.y18b{bottom:282.368850px;}
.yaa{bottom:283.083450px;}
.y10b{bottom:284.119200px;}
.y39{bottom:284.910300px;}
.y1ea{bottom:285.920850px;}
.yef{bottom:286.200600px;}
.y158{bottom:289.495950px;}
.ycc{bottom:289.673400px;}
.y215{bottom:290.330850px;}
.y169{bottom:290.888700px;}
.y234{bottom:291.678900px;}
.y5f{bottom:295.199850px;}
.y1f6{bottom:300.221850px;}
.y1c9{bottom:300.347850px;}
.y1a8{bottom:302.096100px;}
.y18a{bottom:302.999850px;}
.ya9{bottom:303.645450px;}
.y14{bottom:303.914100px;}
.y12b{bottom:304.560900px;}
.y10a{bottom:305.077950px;}
.y1e9{bottom:307.451100px;}
.yee{bottom:308.677350px;}
.y157{bottom:309.868200px;}
.ycb{bottom:310.390650px;}
.y214{bottom:310.585350px;}
.y168{bottom:311.140200px;}
.yf8{bottom:313.434900px;}
.y5e{bottom:315.449850px;}
.y1c8{bottom:321.011850px;}
.y189{bottom:323.630850px;}
.ya8{bottom:324.207450px;}
.y233{bottom:324.678900px;}
.y109{bottom:326.036700px;}
.y12a{bottom:327.285900px;}
.y1f5{bottom:328.981350px;}
.y156{bottom:330.240450px;}
.y1a7{bottom:331.076100px;}
.yca{bottom:331.107900px;}
.yed{bottom:331.154100px;}
.y167{bottom:331.391700px;}
.y5d{bottom:335.671350px;}
.y6b{bottom:335.701350px;}
.y1e8{bottom:336.210600px;}
.y213{bottom:338.069100px;}
.y188{bottom:344.261850px;}
.ya7{bottom:344.769450px;}
.y108{bottom:346.995450px;}
.y1c7{bottom:348.905100px;}
.y129{bottom:350.010900px;}
.y1f4{bottom:350.511600px;}
.y155{bottom:350.612700px;}
.y166{bottom:351.643200px;}
.yc9{bottom:351.825150px;}
.y1a6{bottom:352.826850px;}
.yec{bottom:353.630850px;}
.y5c{bottom:355.922850px;}
.y1e7{bottom:357.740850px;}
.y212{bottom:358.323600px;}
.y13{bottom:362.731500px;}
.y187{bottom:364.892850px;}
.ya6{bottom:365.331450px;}
.y232{bottom:366.183900px;}
.y107{bottom:367.956150px;}
.y38{bottom:368.178000px;}
.y154{bottom:370.984950px;}
.y165{bottom:371.894700px;}
.yc8{bottom:372.542400px;}
.y128{bottom:372.735900px;}
.yeb{bottom:376.107600px;}
.y5b{bottom:376.174350px;}
.y6a{bottom:376.201350px;}
.y1c6{bottom:376.798350px;}
.y1f3{bottom:379.271100px;}
.y1a5{bottom:381.806850px;}
.y186{bottom:385.523850px;}
.y231{bottom:385.683900px;}
.y211{bottom:385.807350px;}
.ya5{bottom:385.950300px;}
.y1e6{bottom:386.500350px;}
.y106{bottom:388.916550px;}
.y37{bottom:389.178000px;}
.y12{bottom:390.766500px;}
.y153{bottom:391.357200px;}
.y164{bottom:392.146200px;}
.yc7{bottom:393.259650px;}
.y127{bottom:395.460900px;}
.yf7{bottom:395.952600px;}
.y5a{bottom:396.425850px;}
.y69{bottom:396.451350px;}
.y1c5{bottom:397.462350px;}
.yea{bottom:398.584350px;}
.y1a4{bottom:403.557600px;}
.y230{bottom:405.183900px;}
.y210{bottom:406.061850px;}
.y185{bottom:406.154850px;}
.ya4{bottom:406.512300px;}
.y1e5{bottom:408.030600px;}
.y105{bottom:409.877250px;}
.y36{bottom:410.187750px;}
.y152{bottom:411.729450px;}
.yc6{bottom:413.976900px;}
.yf6{bottom:416.202600px;}
.y59{bottom:416.677350px;}
.y11{bottom:418.801500px;}
.ye9{bottom:421.061100px;}
.y22f{bottom:424.683900px;}
.y1c4{bottom:425.355600px;}
.y126{bottom:425.491950px;}
.y184{bottom:426.785850px;}
.ya3{bottom:427.074300px;}
.y1f2{bottom:429.560850px;}
.y35{bottom:429.687750px;}
.y104{bottom:430.837800px;}
.y151{bottom:432.101700px;}
.y1a3{bottom:432.537600px;}
.y163{bottom:432.646200px;}
.y20f{bottom:433.545600px;}
.yc5{bottom:434.694150px;}
.y1e4{bottom:436.790100px;}
.y58{bottom:436.928850px;}
.ye8{bottom:443.537850px;}
.y22e{bottom:444.183900px;}
.y125{bottom:445.531950px;}
.y1c3{bottom:446.019600px;}
.y183{bottom:447.416850px;}
.ya2{bottom:447.636300px;}
.y34{bottom:449.187750px;}
.y103{bottom:451.798350px;}
.y150{bottom:452.473950px;}
.y162{bottom:452.896200px;}
.y20e{bottom:453.800100px;}
.y1a2{bottom:454.288350px;}
.y57{bottom:457.180350px;}
.y84{bottom:457.193850px;}
.y1e3{bottom:458.320350px;}
.y22d{bottom:463.683900px;}
.ye7{bottom:466.014600px;}
.y182{bottom:468.047850px;}
.y10{bottom:468.115800px;}
.ya1{bottom:468.198300px;}
.y33{bottom:468.687750px;}
.y102{bottom:472.757100px;}
.y14f{bottom:472.846200px;}
.y1c2{bottom:473.912850px;}
.y1a1{bottom:476.039100px;}
.yc4{bottom:476.655900px;}
.y56{bottom:477.431850px;}
.y83{bottom:477.445350px;}
.y1e2{bottom:479.850600px;}
.y20d{bottom:481.283850px;}
.y22c{bottom:483.183900px;}
.y124{bottom:486.856350px;}
.y32{bottom:488.187750px;}
.ye6{bottom:488.496600px;}
.y181{bottom:488.678850px;}
.ya0{bottom:488.760300px;}
.y14e{bottom:493.218450px;}
.y1c1{bottom:494.576850px;}
.y55{bottom:497.683350px;}
.y82{bottom:497.696850px;}
.yf{bottom:500.650800px;}
.yc3{bottom:501.117900px;}
.y22b{bottom:502.683900px;}
.y1a0{bottom:505.019100px;}
.y123{bottom:507.642600px;}
.y31{bottom:507.687750px;}
.y1e1{bottom:508.610100px;}
.y20c{bottom:508.767600px;}
.y180{bottom:509.309850px;}
.y9f{bottom:509.322300px;}
.ye5{bottom:510.993900px;}
.y101{bottom:512.930250px;}
.y14d{bottom:513.590700px;}
.y13a{bottom:517.445100px;}
.y54{bottom:517.934850px;}
.y81{bottom:517.948350px;}
.y22a{bottom:522.189750px;}
.y1c0{bottom:522.470100px;}
.yc2{bottom:525.579900px;}
.y19f{bottom:526.769850px;}
.y30{bottom:527.187750px;}
.y122{bottom:528.428850px;}
.y20b{bottom:529.022100px;}
.y9e{bottom:529.884300px;}
.y17f{bottom:529.940850px;}
.y1e0{bottom:530.140350px;}
.y100{bottom:533.180250px;}
.ye{bottom:533.185800px;}
.ye4{bottom:533.470650px;}
.y139{bottom:537.696600px;}
.y53{bottom:538.186350px;}
.y80{bottom:538.199850px;}
.y229{bottom:541.689750px;}
.y1bf{bottom:543.134100px;}
.y2f{bottom:546.687750px;}
.y19e{bottom:548.520600px;}
.y121{bottom:549.222150px;}
.y20a{bottom:549.276600px;}
.yc1{bottom:550.041900px;}
.y9d{bottom:550.446300px;}
.y17e{bottom:550.571850px;}
.y14c{bottom:555.215100px;}
.ye3{bottom:555.947400px;}
.y138{bottom:557.948100px;}
.y52{bottom:558.437850px;}
.y7f{bottom:558.445350px;}
.y1df{bottom:558.899850px;}
.y228{bottom:561.189750px;}
.yd{bottom:565.720800px;}
.y2e{bottom:566.187750px;}
.y120{bottom:570.015450px;}
.y19d{bottom:570.271350px;}
.y9c{bottom:571.008300px;}
.y1be{bottom:571.027350px;}
.y17d{bottom:571.202850px;}
.y209{bottom:576.760350px;}
.y137{bottom:578.199600px;}
.ye2{bottom:578.424150px;}
.y51{bottom:578.689350px;}
.y7e{bottom:578.696850px;}
.y1de{bottom:580.430100px;}
.y227{bottom:580.689750px;}
.y2d{bottom:585.687750px;}
.yff{bottom:588.807750px;}
.y11f{bottom:590.808750px;}
.y9b{bottom:591.570300px;}
.y1bd{bottom:591.691350px;}
.y17c{bottom:591.833850px;}
.y208{bottom:597.014850px;}
.y136{bottom:598.451100px;}
.y50{bottom:598.940850px;}
.y7d{bottom:598.948350px;}
.y19c{bottom:599.251350px;}
.y226{bottom:600.189750px;}
.ye1{bottom:600.911100px;}
.y2c{bottom:605.187750px;}
.y1dd{bottom:609.189600px;}
.y11e{bottom:611.602050px;}
.y9a{bottom:612.132300px;}
.y17b{bottom:612.464850px;}
.yc0{bottom:612.730050px;}
.y14b{bottom:617.589750px;}
.y135{bottom:618.702600px;}
.y4f{bottom:619.192350px;}
.y7c{bottom:619.199850px;}
.y1bc{bottom:619.584600px;}
.y225{bottom:619.689750px;}
.y19b{bottom:621.002100px;}
.ye0{bottom:623.387850px;}
.y207{bottom:624.498600px;}
.y2b{bottom:624.687750px;}
.yc{bottom:628.041900px;}
.y1dc{bottom:630.719850px;}
.y11d{bottom:632.395350px;}
.y99{bottom:632.694300px;}
.y17a{bottom:633.095850px;}
.ybf{bottom:633.447300px;}
.y14a{bottom:637.862100px;}
.y224{bottom:639.189750px;}
.y7b{bottom:639.439350px;}
.y4e{bottom:639.443850px;}
.y19a{bottom:642.752850px;}
.y2a{bottom:644.187750px;}
.y206{bottom:644.753100px;}
.ydf{bottom:645.869700px;}
.y1bb{bottom:647.477850px;}
.y11c{bottom:653.202750px;}
.y98{bottom:653.256300px;}
.y179{bottom:653.726850px;}
.ybe{bottom:654.164550px;}
.y149{bottom:658.234350px;}
.yb{bottom:658.581900px;}
.y223{bottom:658.689750px;}
.y134{bottom:659.202600px;}
.y1db{bottom:659.479350px;}
.y7a{bottom:659.690850px;}
.y4d{bottom:659.695350px;}
.y29{bottom:663.687750px;}
.y199{bottom:664.503600px;}
.y205{bottom:665.007600px;}
.y1ba{bottom:668.141850px;}
.yde{bottom:668.356800px;}
.y97{bottom:673.818300px;}
.y11b{bottom:673.989000px;}
.ybd{bottom:674.881800px;}
.y222{bottom:678.189750px;}
.y148{bottom:678.606600px;}
.y79{bottom:679.942350px;}
.y4c{bottom:679.946850px;}
.ya{bottom:680.616900px;}
.y1da{bottom:681.009600px;}
.y28{bottom:683.187750px;}
.ydd{bottom:690.833550px;}
.y204{bottom:692.491350px;}
.y198{bottom:693.483600px;}
.y96{bottom:694.380300px;}
.y11a{bottom:694.775250px;}
.ybc{bottom:695.599050px;}
.y178{bottom:695.619750px;}
.y1b9{bottom:696.035100px;}
.y221{bottom:697.689750px;}
.y147{bottom:698.978850px;}
.y78{bottom:700.193850px;}
.y4b{bottom:700.198350px;}
.y27{bottom:702.687750px;}
.y1d9{bottom:709.769100px;}
.y9{bottom:711.156900px;}
.y203{bottom:712.745850px;}
.ydc{bottom:713.310300px;}
.y95{bottom:714.942300px;}
.y197{bottom:715.234350px;}
.y119{bottom:715.568550px;}
.ybb{bottom:716.246100px;}
.y1b8{bottom:716.699100px;}
.y220{bottom:717.189750px;}
.y146{bottom:719.351100px;}
.y77{bottom:720.445350px;}
.y4a{bottom:720.449850px;}
.y26{bottom:722.187750px;}
.y1d8{bottom:731.299350px;}
.y8{bottom:733.191900px;}
.y94{bottom:735.504300px;}
.y118{bottom:736.361850px;}
.y21f{bottom:736.689750px;}
.yba{bottom:736.963350px;}
.y196{bottom:736.985100px;}
.y145{bottom:739.723350px;}
.y202{bottom:740.229600px;}
.y49{bottom:740.689350px;}
.y76{bottom:740.696850px;}
.y1b7{bottom:744.592350px;}
.y25{bottom:754.437750px;}
.y7{bottom:755.231850px;}
.y93{bottom:756.066300px;}
.y21e{bottom:756.189750px;}
.y117{bottom:757.155300px;}
.yb9{bottom:757.680600px;}
.y177{bottom:758.284350px;}
.y195{bottom:758.735850px;}
.y1d7{bottom:760.058850px;}
.y144{bottom:760.095600px;}
.y201{bottom:760.484100px;}
.y48{bottom:760.940850px;}
.y75{bottom:760.948350px;}
.y1b6{bottom:765.256350px;}
.y92{bottom:776.628300px;}
.y116{bottom:777.976800px;}
.yb8{bottom:778.397850px;}
.y176{bottom:778.915350px;}
.y143{bottom:780.467850px;}
.y47{bottom:781.192350px;}
.y74{bottom:781.199850px;}
.y1d6{bottom:781.589100px;}
.ydb{bottom:786.306300px;}
.y194{bottom:787.715850px;}
.y200{bottom:787.967850px;}
.y21d{bottom:788.439750px;}
.y1b5{bottom:793.149600px;}
.y91{bottom:797.190300px;}
.y115{bottom:798.763050px;}
.yb7{bottom:799.115100px;}
.y175{bottom:799.546350px;}
.y142{bottom:800.840100px;}
.y46{bottom:801.443850px;}
.y24{bottom:803.697750px;}
.y6{bottom:807.049050px;}
.y1ff{bottom:808.222350px;}
.yda{bottom:809.031300px;}
.y193{bottom:809.466600px;}
.y1d5{bottom:810.348600px;}
.y1b4{bottom:813.813600px;}
.y90{bottom:817.757700px;}
.y114{bottom:819.549300px;}
.yb6{bottom:819.832350px;}
.y174{bottom:820.177350px;}
.y141{bottom:821.212350px;}
.y45{bottom:821.695350px;}
.y23{bottom:824.697750px;}
.y5{bottom:829.084050px;}
.y192{bottom:831.217350px;}
.yd9{bottom:831.756300px;}
.y1d4{bottom:831.878850px;}
.y1b3{bottom:834.477600px;}
.y1fe{bottom:835.706100px;}
.y8f{bottom:838.319700px;}
.y113{bottom:840.335550px;}
.yb5{bottom:840.549600px;}
.y173{bottom:840.808350px;}
.y140{bottom:841.584600px;}
.y44{bottom:841.946850px;}
.y22{bottom:845.697750px;}
.y21c{bottom:846.195450px;}
.y191{bottom:852.968100px;}
.yd8{bottom:854.481300px;}
.y1fd{bottom:855.960600px;}
.y8e{bottom:858.881700px;}
.y4{bottom:859.624050px;}
.y1d3{bottom:860.638350px;}
.y112{bottom:861.121800px;}
.yb4{bottom:861.266850px;}
.y172{bottom:861.439350px;}
.y13f{bottom:861.956850px;}
.y43{bottom:862.198350px;}
.y1b2{bottom:862.370850px;}
.y21{bottom:865.197750px;}
.yd7{bottom:872.481300px;}
.y21b{bottom:873.201450px;}
.y3{bottom:881.659050px;}
.y111{bottom:881.915100px;}
.y190{bottom:881.948100px;}
.yb3{bottom:881.984100px;}
.y171{bottom:882.070350px;}
.y1d2{bottom:882.168600px;}
.y13e{bottom:882.329100px;}
.y42{bottom:882.449850px;}
.y1b1{bottom:883.034850px;}
.y1fc{bottom:883.444350px;}
.y20{bottom:884.697750px;}
.y21a{bottom:900.207450px;}
.y8d{bottom:900.706200px;}
.y41{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y1f{bottom:904.197750px;}
.y1e{bottom:948.189000px;}
.y40{bottom:966.189000px;}
.h17{height:3.999023px;}
.hb{height:38.036555px;}
.h13{height:38.037155px;}
.h7{height:44.460938px;}
.hf{height:50.018555px;}
.h1a{height:50.030555px;}
.h18{height:50.068359px;}
.h10{height:51.884766px;}
.h4{height:55.576172px;}
.h16{height:57.443848px;}
.h3{height:58.354980px;}
.h9{height:63.912598px;}
.he{height:63.918598px;}
.ha{height:63.924598px;}
.h12{height:63.936598px;}
.h11{height:63.942598px;}
.hc{height:63.960598px;}
.hd{height:64.032598px;}
.h15{height:64.162198px;}
.h14{height:64.193398px;}
.h19{height:64.312198px;}
.h2{height:69.470215px;}
.h8{height:75.027832px;}
.h6{height:77.806641px;}
.h5{height:100.037109px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xa{left:81.484500px;}
.x6{left:82.980600px;}
.x9{left:83.995950px;}
.x1{left:85.039350px;}
.x12{left:92.271450px;}
.x13{left:93.771450px;}
.x7{left:105.029250px;}
.x5{left:106.365600px;}
.x18{left:132.345000px;}
.xb{left:140.856750px;}
.x14{left:142.133700px;}
.x17{left:169.466850px;}
.x1d{left:211.035000px;}
.x8{left:212.664000px;}
.x1a{left:215.880000px;}
.x4{left:231.330450px;}
.x2{left:232.601400px;}
.x3{left:233.748450px;}
.x1c{left:250.290000px;}
.x1b{left:269.100000px;}
.x19{left:275.610000px;}
.xc{left:285.171450px;}
.xd{left:314.316450px;}
.x15{left:382.590750px;}
.xe{left:411.456450px;}
.x16{left:418.438200px;}
.xf{left:438.216450px;}
.x10{left:535.476450px;}
.x11{left:562.101450px;}
@media print{
.v4{vertical-align:-15.090667pt;}
.v2{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:10.661333pt;}
.v3{vertical-align:12.426133pt;}
.v1{vertical-align:15.101333pt;}
.lsf{letter-spacing:-6.552000pt;}
.ls4{letter-spacing:-2.464000pt;}
.ls1a{letter-spacing:-2.453333pt;}
.ls25{letter-spacing:-2.392000pt;}
.ls21{letter-spacing:-1.962667pt;}
.ls18{letter-spacing:-1.368000pt;}
.ls23{letter-spacing:-0.981333pt;}
.lse{letter-spacing:-0.760000pt;}
.ls20{letter-spacing:-0.674667pt;}
.ls22{letter-spacing:-0.613333pt;}
.ls17{letter-spacing:-0.557333pt;}
.ls26{letter-spacing:-0.506667pt;}
.ls19{letter-spacing:-0.306667pt;}
.ls7{letter-spacing:-0.288000pt;}
.ls6{letter-spacing:-0.213333pt;}
.ls28{letter-spacing:-0.184000pt;}
.ls1b{letter-spacing:-0.152000pt;}
.ls29{letter-spacing:-0.107272pt;}
.ls2a{letter-spacing:-0.072000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.000267pt;}
.ls24{letter-spacing:0.000453pt;}
.ls1d{letter-spacing:0.000987pt;}
.ls10{letter-spacing:0.022400pt;}
.ls5{letter-spacing:0.213333pt;}
.ls2c{letter-spacing:0.560000pt;}
.ls2b{letter-spacing:0.768000pt;}
.ls33{letter-spacing:0.896000pt;}
.ls3{letter-spacing:1.120000pt;}
.ls1c{letter-spacing:1.944000pt;}
.ls12{letter-spacing:1.968000pt;}
.lsc{letter-spacing:2.133333pt;}
.ls32{letter-spacing:3.666667pt;}
.ls27{letter-spacing:3.710400pt;}
.ls13{letter-spacing:3.721067pt;}
.ls9{letter-spacing:3.733333pt;}
.ls1f{letter-spacing:3.800000pt;}
.ls14{letter-spacing:4.400000pt;}
.ls31{letter-spacing:4.536000pt;}
.lsa{letter-spacing:4.800000pt;}
.ls8{letter-spacing:5.120000pt;}
.lsd{letter-spacing:5.226667pt;}
.ls1{letter-spacing:5.333333pt;}
.ls2d{letter-spacing:5.370400pt;}
.lsb{letter-spacing:5.600000pt;}
.ls15{letter-spacing:6.133333pt;}
.ls2e{letter-spacing:6.378400pt;}
.ls16{letter-spacing:7.253472pt;}
.ls1e{letter-spacing:7.254005pt;}
.ls2{letter-spacing:7.466667pt;}
.ls30{letter-spacing:11.586400pt;}
.ls2f{letter-spacing:12.706400pt;}
.wsa{word-spacing:-23.533333pt;}
.ws16{word-spacing:-23.133333pt;}
.ws21{word-spacing:-22.533333pt;}
.ws37{word-spacing:-22.400000pt;}
.ws39{word-spacing:-20.320000pt;}
.wsd{word-spacing:-20.213333pt;}
.ws31{word-spacing:-20.160000pt;}
.ws2{word-spacing:-20.106667pt;}
.ws14{word-spacing:-17.234667pt;}
.ws38{word-spacing:-16.632000pt;}
.ws0{word-spacing:-16.106667pt;}
.wsb{word-spacing:-16.090667pt;}
.ws34{word-spacing:-15.736000pt;}
.ws1{word-spacing:-15.200000pt;}
.ws13{word-spacing:-15.149333pt;}
.wsc{word-spacing:-14.986667pt;}
.ws1a{word-spacing:-14.842667pt;}
.ws26{word-spacing:-14.536000pt;}
.ws22{word-spacing:-14.474667pt;}
.ws23{word-spacing:-14.168000pt;}
.ws35{word-spacing:-13.832000pt;}
.wse{word-spacing:-13.680000pt;}
.ws18{word-spacing:-13.488000pt;}
.ws3a{word-spacing:-13.173333pt;}
.ws1e{word-spacing:-12.696000pt;}
.ws32{word-spacing:-12.624000pt;}
.ws2e{word-spacing:-11.856000pt;}
.wsf{word-spacing:-10.047811pt;}
.ws2d{word-spacing:-9.940539pt;}
.ws2c{word-spacing:-8.737227pt;}
.ws2f{word-spacing:-7.863504pt;}
.ws5{word-spacing:-7.466667pt;}
.ws17{word-spacing:-7.343467pt;}
.ws19{word-spacing:-6.133333pt;}
.ws33{word-spacing:-5.600000pt;}
.ws4{word-spacing:-5.333333pt;}
.ws11{word-spacing:-3.733333pt;}
.ws10{word-spacing:-2.133333pt;}
.ws15{word-spacing:-1.968000pt;}
.ws20{word-spacing:-1.944000pt;}
.ws7{word-spacing:-1.120000pt;}
.ws36{word-spacing:-0.560000pt;}
.ws3{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.152000pt;}
.ws30{word-spacing:0.184000pt;}
.ws8{word-spacing:0.213333pt;}
.ws9{word-spacing:0.288000pt;}
.ws1d{word-spacing:0.306667pt;}
.ws2b{word-spacing:0.506667pt;}
.ws1b{word-spacing:0.557333pt;}
.ws25{word-spacing:0.613333pt;}
.ws12{word-spacing:0.760000pt;}
.ws1c{word-spacing:1.368000pt;}
.ws24{word-spacing:1.962667pt;}
.ws2a{word-spacing:2.392000pt;}
.ws6{word-spacing:2.464000pt;}
.ws29{word-spacing:874.506667pt;}
.ws27{word-spacing:917.866667pt;}
.ws28{word-spacing:928.160000pt;}
._2d{margin-left:-17.848000pt;}
._d{margin-left:-7.488000pt;}
._1f{margin-left:-6.422400pt;}
._7{margin-left:-5.504000pt;}
._10{margin-left:-4.566667pt;}
._4{margin-left:-3.639733pt;}
._3{margin-left:-2.038400pt;}
._8{margin-left:-1.010667pt;}
._5{width:0.896000pt;}
._1{width:2.133333pt;}
._c{width:3.304267pt;}
._b{width:4.216800pt;}
._6{width:5.120000pt;}
._9{width:6.864000pt;}
._a{width:8.538667pt;}
._17{width:9.586400pt;}
._14{width:10.714400pt;}
._11{width:12.037333pt;}
._20{width:13.211200pt;}
._15{width:14.209333pt;}
._1a{width:15.365333pt;}
._1d{width:16.344800pt;}
._30{width:17.565867pt;}
._1b{width:18.458933pt;}
._2e{width:19.575200pt;}
._2c{width:20.991467pt;}
._13{width:21.976000pt;}
._16{width:23.030133pt;}
._21{width:24.625920pt;}
._2f{width:26.208000pt;}
._31{width:28.154133pt;}
._32{width:29.237600pt;}
._18{width:38.617920pt;}
._2a{width:45.914133pt;}
._f{width:76.048000pt;}
._12{width:231.653333pt;}
._26{width:243.061333pt;}
._24{width:247.533067pt;}
._28{width:293.462400pt;}
._2b{width:335.555200pt;}
._27{width:404.406933pt;}
._e{width:405.513067pt;}
._23{width:406.770667pt;}
._25{width:407.680000pt;}
._1c{width:408.840000pt;}
._29{width:410.293333pt;}
._0{width:514.133333pt;}
._2{width:849.521067pt;}
._1e{width:852.294400pt;}
._22{width:855.894400pt;}
._19{width:857.654400pt;}
.fse{font-size:5.333333pt;}
.fsd{font-size:26.133333pt;}
.fsb{font-size:27.984000pt;}
.fsf{font-size:31.093333pt;}
.fsa{font-size:35.757333pt;}
.fs5{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fsc{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fs9{font-size:61.333333pt;}
.fs1{font-size:66.666667pt;}
.fs8{font-size:72.000000pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y1d1{bottom:94.327867pt;}
.y161{bottom:94.351733pt;}
.yd5{bottom:94.472267pt;}
.y68{bottom:94.475067pt;}
.y1f1{bottom:94.481867pt;}
.yb2{bottom:94.482933pt;}
.y8b{bottom:94.483067pt;}
.y170{bottom:94.485600pt;}
.y73{bottom:94.485733pt;}
.y8c{bottom:94.488133pt;}
.y1d{bottom:94.519200pt;}
.y133{bottom:94.519600pt;}
.y1b0{bottom:94.579867pt;}
.yd6{bottom:96.621600pt;}
.y3f{bottom:97.150933pt;}
.yd4{bottom:109.808267pt;}
.y67{bottom:109.811067pt;}
.yb1{bottom:109.818933pt;}
.y8a{bottom:109.819067pt;}
.y18f{bottom:109.821600pt;}
.y160{bottom:112.460400pt;}
.y72{bottom:112.484400pt;}
.y1d0{bottom:112.695867pt;}
.y1c{bottom:112.772533pt;}
.y132{bottom:112.996267pt;}
.y1fb{bottom:113.619867pt;}
.y1af{bottom:113.913867pt;}
.y1f0{bottom:120.045867pt;}
.yd3{bottom:125.144267pt;}
.y66{bottom:125.147067pt;}
.y16f{bottom:125.152267pt;}
.yb0{bottom:127.817600pt;}
.y89{bottom:127.817733pt;}
.y71{bottom:128.929333pt;}
.y15f{bottom:130.569067pt;}
.y1b{bottom:131.025867pt;}
.y131{bottom:131.472933pt;}
.yf5{bottom:134.524533pt;}
.y1cf{bottom:137.489867pt;}
.y1ef{bottom:139.183867pt;}
.y1ae{bottom:139.673867pt;}
.yd2{bottom:140.480267pt;}
.y65{bottom:140.483067pt;}
.y16e{bottom:143.150933pt;}
.y18e{bottom:144.052667pt;}
.y88{bottom:144.262667pt;}
.y70{bottom:144.265333pt;}
.y3e{bottom:144.353333pt;}
.yaf{bottom:146.930400pt;}
.y15e{bottom:148.677733pt;}
.y1a{bottom:149.279200pt;}
.y130{bottom:149.949600pt;}
.yfe{bottom:151.704533pt;}
.y13d{bottom:153.956533pt;}
.yf4{bottom:154.503867pt;}
.yd1{bottom:155.816267pt;}
.y64{bottom:155.819067pt;}
.y1ce{bottom:155.857867pt;}
.y1fa{bottom:158.321867pt;}
.y1ad{bottom:159.007867pt;}
.y110{bottom:159.387600pt;}
.y16d{bottom:159.596000pt;}
.y87{bottom:159.598667pt;}
.y6f{bottom:159.601333pt;}
.y3d{bottom:162.354667pt;}
.y18d{bottom:162.392667pt;}
.y1ee{bottom:164.747867pt;}
.y15d{bottom:166.786400pt;}
.y19{bottom:167.532533pt;}
.y12f{bottom:168.426267pt;}
.y239{bottom:169.270133pt;}
.yfd{bottom:169.705867pt;}
.yd0{bottom:171.152267pt;}
.y13c{bottom:171.957867pt;}
.y219{bottom:173.203867pt;}
.y63{bottom:173.817733pt;}
.yf3{bottom:174.483200pt;}
.y16c{bottom:174.932000pt;}
.y86{bottom:177.597333pt;}
.y10f{bottom:178.019067pt;}
.y1ac{bottom:178.341867pt;}
.yae{bottom:178.520400pt;}
.y3c{bottom:180.353333pt;}
.y1cd{bottom:180.651867pt;}
.y1ed{bottom:183.885867pt;}
.y15c{bottom:184.895067pt;}
.y18{bottom:185.785867pt;}
.y12e{bottom:186.902933pt;}
.y18c{bottom:187.158667pt;}
.y238{bottom:187.270133pt;}
.yfc{bottom:187.707200pt;}
.ycf{bottom:189.150933pt;}
.y62{bottom:190.262667pt;}
.y218{bottom:191.207867pt;}
.y16b{bottom:192.930667pt;}
.yf2{bottom:194.462533pt;}
.y10e{bottom:196.650800pt;}
.y85{bottom:196.710267pt;}
.yad{bottom:196.797733pt;}
.y3b{bottom:198.354667pt;}
.y1cc{bottom:199.019867pt;}
.y15b{bottom:203.003733pt;}
.y1f9{bottom:203.023867pt;}
.y17{bottom:204.039200pt;}
.y1ab{bottom:204.101867pt;}
.y237{bottom:205.270133pt;}
.y61{bottom:205.598667pt;}
.yfb{bottom:205.708533pt;}
.y13b{bottom:207.957867pt;}
.y6e{bottom:208.395867pt;}
.y1ec{bottom:209.449867pt;}
.yf1{bottom:214.441867pt;}
.yac{bottom:215.075067pt;}
.y10d{bottom:215.290400pt;}
.y217{bottom:215.637867pt;}
.y3a{bottom:216.356000pt;}
.yce{bottom:220.712267pt;}
.y15a{bottom:221.112400pt;}
.y1f8{bottom:222.161867pt;}
.y16{bottom:222.292533pt;}
.y236{bottom:223.270133pt;}
.y1aa{bottom:223.435867pt;}
.y60{bottom:223.597333pt;}
.yfa{bottom:223.709867pt;}
.y1cb{bottom:223.813867pt;}
.y6d{bottom:226.397200pt;}
.y1eb{bottom:228.587867pt;}
.y12d{bottom:230.320800pt;}
.yab{bottom:233.352400pt;}
.y216{bottom:233.641867pt;}
.y10c{bottom:233.920400pt;}
.yf0{bottom:234.421200pt;}
.ycd{bottom:239.072133pt;}
.y159{bottom:239.221067pt;}
.y15{bottom:240.545867pt;}
.y16a{bottom:240.573067pt;}
.y235{bottom:241.270133pt;}
.yf9{bottom:241.711200pt;}
.y1ca{bottom:242.181867pt;}
.y6c{bottom:244.398533pt;}
.y1f7{bottom:247.725867pt;}
.y1a9{bottom:249.195867pt;}
.y12c{bottom:250.520800pt;}
.y18b{bottom:250.994533pt;}
.yaa{bottom:251.629733pt;}
.y10b{bottom:252.550400pt;}
.y39{bottom:253.253600pt;}
.y1ea{bottom:254.151867pt;}
.yef{bottom:254.400533pt;}
.y158{bottom:257.329733pt;}
.ycc{bottom:257.487467pt;}
.y215{bottom:258.071867pt;}
.y169{bottom:258.567733pt;}
.y234{bottom:259.270133pt;}
.y5f{bottom:262.399867pt;}
.y1f6{bottom:266.863867pt;}
.y1c9{bottom:266.975867pt;}
.y1a8{bottom:268.529867pt;}
.y18a{bottom:269.333200pt;}
.ya9{bottom:269.907067pt;}
.y14{bottom:270.145867pt;}
.y12b{bottom:270.720800pt;}
.y10a{bottom:271.180400pt;}
.y1e9{bottom:273.289867pt;}
.yee{bottom:274.379867pt;}
.y157{bottom:275.438400pt;}
.ycb{bottom:275.902800pt;}
.y214{bottom:276.075867pt;}
.y168{bottom:276.569067pt;}
.yf8{bottom:278.608800pt;}
.y5e{bottom:280.399867pt;}
.y1c8{bottom:285.343867pt;}
.y189{bottom:287.671867pt;}
.ya8{bottom:288.184400pt;}
.y233{bottom:288.603467pt;}
.y109{bottom:289.810400pt;}
.y12a{bottom:290.920800pt;}
.y1f5{bottom:292.427867pt;}
.y156{bottom:293.547067pt;}
.y1a7{bottom:294.289867pt;}
.yca{bottom:294.318133pt;}
.yed{bottom:294.359200pt;}
.y167{bottom:294.570400pt;}
.y5d{bottom:298.374533pt;}
.y6b{bottom:298.401200pt;}
.y1e8{bottom:298.853867pt;}
.y213{bottom:300.505867pt;}
.y188{bottom:306.010533pt;}
.ya7{bottom:306.461733pt;}
.y108{bottom:308.440400pt;}
.y1c7{bottom:310.137867pt;}
.y129{bottom:311.120800pt;}
.y1f4{bottom:311.565867pt;}
.y155{bottom:311.655733pt;}
.y166{bottom:312.571733pt;}
.yc9{bottom:312.733467pt;}
.y1a6{bottom:313.623867pt;}
.yec{bottom:314.338533pt;}
.y5c{bottom:316.375867pt;}
.y1e7{bottom:317.991867pt;}
.y212{bottom:318.509867pt;}
.y13{bottom:322.428000pt;}
.y187{bottom:324.349200pt;}
.ya6{bottom:324.739067pt;}
.y232{bottom:325.496800pt;}
.y107{bottom:327.072133pt;}
.y38{bottom:327.269333pt;}
.y154{bottom:329.764400pt;}
.y165{bottom:330.573067pt;}
.yc8{bottom:331.148800pt;}
.y128{bottom:331.320800pt;}
.yeb{bottom:334.317867pt;}
.y5b{bottom:334.377200pt;}
.y6a{bottom:334.401200pt;}
.y1c6{bottom:334.931867pt;}
.y1f3{bottom:337.129867pt;}
.y1a5{bottom:339.383867pt;}
.y186{bottom:342.687867pt;}
.y231{bottom:342.830133pt;}
.y211{bottom:342.939867pt;}
.ya5{bottom:343.066933pt;}
.y1e6{bottom:343.555867pt;}
.y106{bottom:345.703600pt;}
.y37{bottom:345.936000pt;}
.y12{bottom:347.348000pt;}
.y153{bottom:347.873067pt;}
.y164{bottom:348.574400pt;}
.yc7{bottom:349.564133pt;}
.y127{bottom:351.520800pt;}
.yf7{bottom:351.957867pt;}
.y5a{bottom:352.378533pt;}
.y69{bottom:352.401200pt;}
.y1c5{bottom:353.299867pt;}
.yea{bottom:354.297200pt;}
.y1a4{bottom:358.717867pt;}
.y230{bottom:360.163467pt;}
.y210{bottom:360.943867pt;}
.y185{bottom:361.026533pt;}
.ya4{bottom:361.344267pt;}
.y1e5{bottom:362.693867pt;}
.y105{bottom:364.335333pt;}
.y36{bottom:364.611333pt;}
.y152{bottom:365.981733pt;}
.yc6{bottom:367.979467pt;}
.yf6{bottom:369.957867pt;}
.y59{bottom:370.379867pt;}
.y11{bottom:372.268000pt;}
.ye9{bottom:374.276533pt;}
.y22f{bottom:377.496800pt;}
.y1c4{bottom:378.093867pt;}
.y126{bottom:378.215067pt;}
.y184{bottom:379.365200pt;}
.ya3{bottom:379.621600pt;}
.y1f2{bottom:381.831867pt;}
.y35{bottom:381.944667pt;}
.y104{bottom:382.966933pt;}
.y151{bottom:384.090400pt;}
.y1a3{bottom:384.477867pt;}
.y163{bottom:384.574400pt;}
.y20f{bottom:385.373867pt;}
.yc5{bottom:386.394800pt;}
.y1e4{bottom:388.257867pt;}
.y58{bottom:388.381200pt;}
.ye8{bottom:394.255867pt;}
.y22e{bottom:394.830133pt;}
.y125{bottom:396.028400pt;}
.y1c3{bottom:396.461867pt;}
.y183{bottom:397.703867pt;}
.ya2{bottom:397.898933pt;}
.y34{bottom:399.278000pt;}
.y103{bottom:401.598533pt;}
.y150{bottom:402.199067pt;}
.y162{bottom:402.574400pt;}
.y20e{bottom:403.377867pt;}
.y1a2{bottom:403.811867pt;}
.y57{bottom:406.382533pt;}
.y84{bottom:406.394533pt;}
.y1e3{bottom:407.395867pt;}
.y22d{bottom:412.163467pt;}
.ye7{bottom:414.235200pt;}
.y182{bottom:416.042533pt;}
.y10{bottom:416.102933pt;}
.ya1{bottom:416.176267pt;}
.y33{bottom:416.611333pt;}
.y102{bottom:420.228533pt;}
.y14f{bottom:420.307733pt;}
.y1c2{bottom:421.255867pt;}
.y1a1{bottom:423.145867pt;}
.yc4{bottom:423.694133pt;}
.y56{bottom:424.383867pt;}
.y83{bottom:424.395867pt;}
.y1e2{bottom:426.533867pt;}
.y20d{bottom:427.807867pt;}
.y22c{bottom:429.496800pt;}
.y124{bottom:432.761200pt;}
.y32{bottom:433.944667pt;}
.ye6{bottom:434.219200pt;}
.y181{bottom:434.381200pt;}
.ya0{bottom:434.453600pt;}
.y14e{bottom:438.416400pt;}
.y1c1{bottom:439.623867pt;}
.y55{bottom:442.385200pt;}
.y82{bottom:442.397200pt;}
.yf{bottom:445.022933pt;}
.yc3{bottom:445.438133pt;}
.y22b{bottom:446.830133pt;}
.y1a0{bottom:448.905867pt;}
.y123{bottom:451.237867pt;}
.y31{bottom:451.278000pt;}
.y1e1{bottom:452.097867pt;}
.y20c{bottom:452.237867pt;}
.y180{bottom:452.719867pt;}
.y9f{bottom:452.730933pt;}
.ye5{bottom:454.216800pt;}
.y101{bottom:455.938000pt;}
.y14d{bottom:456.525067pt;}
.y13a{bottom:459.951200pt;}
.y54{bottom:460.386533pt;}
.y81{bottom:460.398533pt;}
.y22a{bottom:464.168667pt;}
.y1c0{bottom:464.417867pt;}
.yc2{bottom:467.182133pt;}
.y19f{bottom:468.239867pt;}
.y30{bottom:468.611333pt;}
.y122{bottom:469.714533pt;}
.y20b{bottom:470.241867pt;}
.y9e{bottom:471.008267pt;}
.y17f{bottom:471.058533pt;}
.y1e0{bottom:471.235867pt;}
.y100{bottom:473.938000pt;}
.ye{bottom:473.942933pt;}
.ye4{bottom:474.196133pt;}
.y139{bottom:477.952533pt;}
.y53{bottom:478.387867pt;}
.y80{bottom:478.399867pt;}
.y229{bottom:481.502000pt;}
.y1bf{bottom:482.785867pt;}
.y2f{bottom:485.944667pt;}
.y19e{bottom:487.573867pt;}
.y121{bottom:488.197467pt;}
.y20a{bottom:488.245867pt;}
.yc1{bottom:488.926133pt;}
.y9d{bottom:489.285600pt;}
.y17e{bottom:489.397200pt;}
.y14c{bottom:493.524533pt;}
.ye3{bottom:494.175467pt;}
.y138{bottom:495.953867pt;}
.y52{bottom:496.389200pt;}
.y7f{bottom:496.395867pt;}
.y1df{bottom:496.799867pt;}
.y228{bottom:498.835333pt;}
.yd{bottom:502.862933pt;}
.y2e{bottom:503.278000pt;}
.y120{bottom:506.680400pt;}
.y19d{bottom:506.907867pt;}
.y9c{bottom:507.562933pt;}
.y1be{bottom:507.579867pt;}
.y17d{bottom:507.735867pt;}
.y209{bottom:512.675867pt;}
.y137{bottom:513.955200pt;}
.ye2{bottom:514.154800pt;}
.y51{bottom:514.390533pt;}
.y7e{bottom:514.397200pt;}
.y1de{bottom:515.937867pt;}
.y227{bottom:516.168667pt;}
.y2d{bottom:520.611333pt;}
.yff{bottom:523.384667pt;}
.y11f{bottom:525.163333pt;}
.y9b{bottom:525.840267pt;}
.y1bd{bottom:525.947867pt;}
.y17c{bottom:526.074533pt;}
.y208{bottom:530.679867pt;}
.y136{bottom:531.956533pt;}
.y50{bottom:532.391867pt;}
.y7d{bottom:532.398533pt;}
.y19c{bottom:532.667867pt;}
.y226{bottom:533.502000pt;}
.ye1{bottom:534.143200pt;}
.y2c{bottom:537.944667pt;}
.y1dd{bottom:541.501867pt;}
.y11e{bottom:543.646267pt;}
.y9a{bottom:544.117600pt;}
.y17b{bottom:544.413200pt;}
.yc0{bottom:544.648933pt;}
.y14b{bottom:548.968667pt;}
.y135{bottom:549.957867pt;}
.y4f{bottom:550.393200pt;}
.y7c{bottom:550.399867pt;}
.y1bc{bottom:550.741867pt;}
.y225{bottom:550.835333pt;}
.y19b{bottom:552.001867pt;}
.ye0{bottom:554.122533pt;}
.y207{bottom:555.109867pt;}
.y2b{bottom:555.278000pt;}
.yc{bottom:558.259467pt;}
.y1dc{bottom:560.639867pt;}
.y11d{bottom:562.129200pt;}
.y99{bottom:562.394933pt;}
.y17a{bottom:562.751867pt;}
.ybf{bottom:563.064267pt;}
.y14a{bottom:566.988533pt;}
.y224{bottom:568.168667pt;}
.y7b{bottom:568.390533pt;}
.y4e{bottom:568.394533pt;}
.y19a{bottom:571.335867pt;}
.y2a{bottom:572.611333pt;}
.y206{bottom:573.113867pt;}
.ydf{bottom:574.106400pt;}
.y1bb{bottom:575.535867pt;}
.y11c{bottom:580.624667pt;}
.y98{bottom:580.672267pt;}
.y179{bottom:581.090533pt;}
.ybe{bottom:581.479600pt;}
.y149{bottom:585.097200pt;}
.yb{bottom:585.406133pt;}
.y223{bottom:585.502000pt;}
.y134{bottom:585.957867pt;}
.y1db{bottom:586.203867pt;}
.y7a{bottom:586.391867pt;}
.y4d{bottom:586.395867pt;}
.y29{bottom:589.944667pt;}
.y199{bottom:590.669867pt;}
.y205{bottom:591.117867pt;}
.y1ba{bottom:593.903867pt;}
.yde{bottom:594.094933pt;}
.y97{bottom:598.949600pt;}
.y11b{bottom:599.101333pt;}
.ybd{bottom:599.894933pt;}
.y222{bottom:602.835333pt;}
.y148{bottom:603.205867pt;}
.y79{bottom:604.393200pt;}
.y4c{bottom:604.397200pt;}
.ya{bottom:604.992800pt;}
.y1da{bottom:605.341867pt;}
.y28{bottom:607.278000pt;}
.ydd{bottom:614.074267pt;}
.y204{bottom:615.547867pt;}
.y198{bottom:616.429867pt;}
.y96{bottom:617.226933pt;}
.y11a{bottom:617.578000pt;}
.ybc{bottom:618.310267pt;}
.y178{bottom:618.328667pt;}
.y1b9{bottom:618.697867pt;}
.y221{bottom:620.168667pt;}
.y147{bottom:621.314533pt;}
.y78{bottom:622.394533pt;}
.y4b{bottom:622.398533pt;}
.y27{bottom:624.611333pt;}
.y1d9{bottom:630.905867pt;}
.y9{bottom:632.139467pt;}
.y203{bottom:633.551867pt;}
.ydc{bottom:634.053600pt;}
.y95{bottom:635.504267pt;}
.y197{bottom:635.763867pt;}
.y119{bottom:636.060933pt;}
.ybb{bottom:636.663200pt;}
.y1b8{bottom:637.065867pt;}
.y220{bottom:637.502000pt;}
.y146{bottom:639.423200pt;}
.y77{bottom:640.395867pt;}
.y4a{bottom:640.399867pt;}
.y26{bottom:641.944667pt;}
.y1d8{bottom:650.043867pt;}
.y8{bottom:651.726133pt;}
.y94{bottom:653.781600pt;}
.y118{bottom:654.543867pt;}
.y21f{bottom:654.835333pt;}
.yba{bottom:655.078533pt;}
.y196{bottom:655.097867pt;}
.y145{bottom:657.531867pt;}
.y202{bottom:657.981867pt;}
.y49{bottom:658.390533pt;}
.y76{bottom:658.397200pt;}
.y1b7{bottom:661.859867pt;}
.y25{bottom:670.611333pt;}
.y7{bottom:671.317200pt;}
.y93{bottom:672.058933pt;}
.y21e{bottom:672.168667pt;}
.y117{bottom:673.026933pt;}
.yb9{bottom:673.493867pt;}
.y177{bottom:674.030533pt;}
.y195{bottom:674.431867pt;}
.y1d7{bottom:675.607867pt;}
.y144{bottom:675.640533pt;}
.y201{bottom:675.985867pt;}
.y48{bottom:676.391867pt;}
.y75{bottom:676.398533pt;}
.y1b6{bottom:680.227867pt;}
.y92{bottom:690.336267pt;}
.y116{bottom:691.534933pt;}
.yb8{bottom:691.909200pt;}
.y176{bottom:692.369200pt;}
.y143{bottom:693.749200pt;}
.y47{bottom:694.393200pt;}
.y74{bottom:694.399867pt;}
.y1d6{bottom:694.745867pt;}
.ydb{bottom:698.938933pt;}
.y194{bottom:700.191867pt;}
.y200{bottom:700.415867pt;}
.y21d{bottom:700.835333pt;}
.y1b5{bottom:705.021867pt;}
.y91{bottom:708.613600pt;}
.y115{bottom:710.011600pt;}
.yb7{bottom:710.324533pt;}
.y175{bottom:710.707867pt;}
.y142{bottom:711.857867pt;}
.y46{bottom:712.394533pt;}
.y24{bottom:714.398000pt;}
.y6{bottom:717.376933pt;}
.y1ff{bottom:718.419867pt;}
.yda{bottom:719.138933pt;}
.y193{bottom:719.525867pt;}
.y1d5{bottom:720.309867pt;}
.y1b4{bottom:723.389867pt;}
.y90{bottom:726.895733pt;}
.y114{bottom:728.488267pt;}
.yb6{bottom:728.739867pt;}
.y174{bottom:729.046533pt;}
.y141{bottom:729.966533pt;}
.y45{bottom:730.395867pt;}
.y23{bottom:733.064667pt;}
.y5{bottom:736.963600pt;}
.y192{bottom:738.859867pt;}
.yd9{bottom:739.338933pt;}
.y1d4{bottom:739.447867pt;}
.y1b3{bottom:741.757867pt;}
.y1fe{bottom:742.849867pt;}
.y8f{bottom:745.173067pt;}
.y113{bottom:746.964933pt;}
.yb5{bottom:747.155200pt;}
.y173{bottom:747.385200pt;}
.y140{bottom:748.075200pt;}
.y44{bottom:748.397200pt;}
.y22{bottom:751.731333pt;}
.y21c{bottom:752.173733pt;}
.y191{bottom:758.193867pt;}
.yd8{bottom:759.538933pt;}
.y1fd{bottom:760.853867pt;}
.y8e{bottom:763.450400pt;}
.y4{bottom:764.110267pt;}
.y1d3{bottom:765.011867pt;}
.y112{bottom:765.441600pt;}
.yb4{bottom:765.570533pt;}
.y172{bottom:765.723867pt;}
.y13f{bottom:766.183867pt;}
.y43{bottom:766.398533pt;}
.y1b2{bottom:766.551867pt;}
.y21{bottom:769.064667pt;}
.yd7{bottom:775.538933pt;}
.y21b{bottom:776.179067pt;}
.y3{bottom:783.696933pt;}
.y111{bottom:783.924533pt;}
.y190{bottom:783.953867pt;}
.yb3{bottom:783.985867pt;}
.y171{bottom:784.062533pt;}
.y1d2{bottom:784.149867pt;}
.y13e{bottom:784.292533pt;}
.y42{bottom:784.399867pt;}
.y1b1{bottom:784.919867pt;}
.y1fc{bottom:785.283867pt;}
.y20{bottom:786.398000pt;}
.y21a{bottom:800.184400pt;}
.y8d{bottom:800.627733pt;}
.y41{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y1f{bottom:803.731333pt;}
.y1e{bottom:842.834667pt;}
.y40{bottom:858.834667pt;}
.h17{height:3.554688pt;}
.hb{height:33.810271pt;}
.h13{height:33.810804pt;}
.h7{height:39.520833pt;}
.hf{height:44.460938pt;}
.h1a{height:44.471604pt;}
.h18{height:44.505208pt;}
.h10{height:46.119792pt;}
.h4{height:49.401042pt;}
.h16{height:51.061198pt;}
.h3{height:51.871094pt;}
.h9{height:56.811198pt;}
.he{height:56.816531pt;}
.ha{height:56.821865pt;}
.h12{height:56.832531pt;}
.h11{height:56.837865pt;}
.hc{height:56.853865pt;}
.hd{height:56.917865pt;}
.h15{height:57.033065pt;}
.h14{height:57.060798pt;}
.h19{height:57.166398pt;}
.h2{height:61.751302pt;}
.h8{height:66.691406pt;}
.h6{height:69.161458pt;}
.h5{height:88.921875pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xa{left:72.430667pt;}
.x6{left:73.760533pt;}
.x9{left:74.663067pt;}
.x1{left:75.590533pt;}
.x12{left:82.019067pt;}
.x13{left:83.352400pt;}
.x7{left:93.359333pt;}
.x5{left:94.547200pt;}
.x18{left:117.640000pt;}
.xb{left:125.206000pt;}
.x14{left:126.341067pt;}
.x17{left:150.637200pt;}
.x1d{left:187.586667pt;}
.x8{left:189.034667pt;}
.x1a{left:191.893333pt;}
.x4{left:205.627067pt;}
.x2{left:206.756800pt;}
.x3{left:207.776400pt;}
.x1c{left:222.480000pt;}
.x1b{left:239.200000pt;}
.x19{left:244.986667pt;}
.xc{left:253.485733pt;}
.xd{left:279.392400pt;}
.x15{left:340.080667pt;}
.xe{left:365.739067pt;}
.x16{left:371.945067pt;}
.xf{left:389.525733pt;}
.x10{left:475.979067pt;}
.x11{left:499.645733pt;}
}




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