
    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_cb831bfc45030f6d94299355.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_f1c644d656ab70bbcbe05e01.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_44a302ec4b1c49167ac8d9ce.woff')format("woff");}.ff3{font-family:ff3;line-height:1.435059;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_5603d7a952584c59973ae304.woff')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b0b15e2014e9299aee880581.woff')format("woff");}.ff5{font-family:ff5;line-height:0.690918;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_9b7225e862e6d7fba2cac2d9.woff')format("woff");}.ff6{font-family:ff6;line-height:0.921387;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_2708fd9fd160649447b04223.woff')format("woff");}.ff7{font-family:ff7;line-height:1.035156;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_f3afeb41957ed1f8d9d77797.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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_58887f2a2478c0cae0902858.woff')format("woff");}.ff9{font-family:ff9;line-height:1.435059;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_f4571fe3cf11cfd49336ebdc.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a07afe1b1823860ac453566f.woff')format("woff");}.ffb{font-family:ffb;line-height:0.737793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_5ea1094a88384ed75f209c04.woff')format("woff");}.ffc{font-family:ffc;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_14765b786099747e844fa811.woff')format("woff");}.ffd{font-family:ffd;line-height:0.914551;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_863fa374908edd152982e486.woff')format("woff");}.ffe{font-family:ffe;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_554f0d7cbb2042e59e6ff353.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_b76e85c98000bad102b19bd6.woff')format("woff");}.ff10{font-family:ff10;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_74725a0a56c3f1175630964d.woff')format("woff");}.ff11{font-family:ff11;line-height:0.976562;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{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);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls1a{letter-spacing:-1.980000px;}
.ls12{letter-spacing:-1.440000px;}
.lsb{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.223800px;}
.ls8{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.089400px;}
.ls11{letter-spacing:0.106800px;}
.ls15{letter-spacing:0.108000px;}
.ls3{letter-spacing:0.144720px;}
.ls9{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.181200px;}
.ls13{letter-spacing:0.259800px;}
.ls18{letter-spacing:0.259920px;}
.ls4{letter-spacing:0.270720px;}
.ls19{letter-spacing:0.298800px;}
.lsa{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.493920px;}
.ls0{letter-spacing:0.540000px;}
.ls16{letter-spacing:0.828000px;}
.ls17{letter-spacing:0.840000px;}
.ls14{letter-spacing:0.900000px;}
.lsf{letter-spacing:1.080000px;}
.ls5{letter-spacing:9.000000px;}
.ls2{letter-spacing:47.700000px;}
.ls6{letter-spacing:49.320000px;}
.ls1{letter-spacing:71.280000px;}
.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;}
}
.ws0{word-spacing:-21.060000px;}
.wse{word-spacing:-18.000000px;}
.wsd{word-spacing:-16.560000px;}
.ws12{word-spacing:-16.020000px;}
.ws14{word-spacing:-15.300000px;}
.ws13{word-spacing:-15.238800px;}
.ws11{word-spacing:-15.199800px;}
.wsb{word-spacing:-15.046800px;}
.wsc{word-spacing:-14.940000px;}
.ws6{word-spacing:-13.500000px;}
.ws10{word-spacing:-12.420000px;}
.ws5{word-spacing:-12.241200px;}
.wsf{word-spacing:-12.060000px;}
.ws3{word-spacing:-11.700000px;}
.ws4{word-spacing:-11.340000px;}
.ws9{word-spacing:-10.529400px;}
.ws8{word-spacing:-10.440000px;}
.ws7{word-spacing:-9.000000px;}
.ws2{word-spacing:-7.560000px;}
.wsa{word-spacing:0.000000px;}
.ws1{word-spacing:60.840000px;}
._7{margin-left:-59.580000px;}
._1b{margin-left:-3.367440px;}
._4{margin-left:-2.252160px;}
._2{margin-left:-1.095120px;}
._0{width:1.044000px;}
._1{width:2.424480px;}
._12{width:3.491760px;}
._f{width:5.258880px;}
._d{width:6.633360px;}
._e{width:7.740720px;}
._16{width:8.753040px;}
._15{width:10.375920px;}
._9{width:11.473920px;}
._a{width:12.481200px;}
._17{width:13.695840px;}
._1c{width:14.850000px;}
._1e{width:16.035840px;}
._14{width:17.151120px;}
._13{width:18.167040px;}
._25{width:19.302480px;}
._10{width:20.378160px;}
._24{width:21.425760px;}
._b{width:22.979520px;}
._c{width:24.143040px;}
._1a{width:25.577280px;}
._18{width:27.190800px;}
._19{width:28.684800px;}
._32{width:29.713680px;}
._11{width:31.075200px;}
._2e{width:33.047280px;}
._36{width:34.094880px;}
._34{width:35.138880px;}
._37{width:36.876240px;}
._26{width:38.007360px;}
._27{width:39.297600px;}
._29{width:40.309920px;}
._28{width:41.533200px;}
._3c{width:43.206480px;}
._33{width:44.222400px;}
._2d{width:45.477360px;}
._35{width:47.509200px;}
._1f{width:49.318560px;}
._22{width:50.769120px;}
._2a{width:54.680400px;}
._1d{width:56.459520px;}
._31{width:57.596160px;}
._2b{width:60.118560px;}
._2c{width:61.377120px;}
._5{width:65.496000px;}
._30{width:69.022800px;}
._2f{width:70.576560px;}
._3{width:71.982960px;}
._3a{width:74.879280px;}
._3b{width:75.986640px;}
._21{width:86.693760px;}
._20{width:87.796800px;}
._39{width:127.578240px;}
._6{width:199.620000px;}
._38{width:220.486320px;}
._23{width:285.870000px;}
._8{width:755.976000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:5.760000px;}
.fs10{font-size:6.000000px;}
.fsb{font-size:23.760000px;}
.fs7{font-size:30.240000px;}
.fsc{font-size:36.000000px;}
.fsa{font-size:37.946952px;}
.fs1{font-size:41.760000px;}
.fs6{font-size:45.360000px;}
.fs8{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fsd{font-size:62.991941px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fse{font-size:75.893905px;}
.fsf{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.y46{bottom:-247.710000px;}
.y45{bottom:-214.050000px;}
.y44{bottom:-180.210000px;}
.y7c{bottom:-169.230000px;}
.y43{bottom:-146.550000px;}
.y7b{bottom:-135.570000px;}
.y42{bottom:-112.710000px;}
.y7a{bottom:-101.910000px;}
.y41{bottom:-79.050000px;}
.y79{bottom:-68.070000px;}
.y40{bottom:-45.360000px;}
.y78{bottom:-34.410000px;}
.y49{bottom:-27.180000px;}
.y7e{bottom:-17.922750px;}
.y3f{bottom:-11.520000px;}
.y77{bottom:-0.525000px;}
.y0{bottom:0.000000px;}
.y22e{bottom:1.837500px;}
.y161{bottom:2.865000px;}
.y150{bottom:2.895000px;}
.y141{bottom:3.045000px;}
.y147{bottom:3.060000px;}
.y130{bottom:3.075000px;}
.y3{bottom:3.960000px;}
.y6a{bottom:4.155000px;}
.y119{bottom:4.680000px;}
.y107{bottom:4.845000px;}
.yfd{bottom:4.860000px;}
.y105{bottom:4.890000px;}
.y48{bottom:5.040000px;}
.y62{bottom:5.565000px;}
.y6c{bottom:5.580000px;}
.y3e{bottom:6.840000px;}
.y6{bottom:12.600000px;}
.y124{bottom:14.055000px;}
.yfa{bottom:14.220000px;}
.y160{bottom:16.725000px;}
.y146{bottom:16.740000px;}
.y12f{bottom:16.755000px;}
.y140{bottom:16.905000px;}
.y69{bottom:17.115000px;}
.y151{bottom:17.640000px;}
.y135{bottom:20.340000px;}
.y3d{bottom:20.700000px;}
.y61{bottom:21.450000px;}
.y7{bottom:21.960000px;}
.y4{bottom:23.220000px;}
.y13c{bottom:24.645000px;}
.y5{bottom:24.660000px;}
.y120{bottom:27.720000px;}
.y123{bottom:27.735000px;}
.y68{bottom:30.075000px;}
.y76{bottom:30.435000px;}
.y13f{bottom:30.585000px;}
.y145{bottom:30.600000px;}
.y12e{bottom:30.615000px;}
.y143{bottom:31.500000px;}
.y60{bottom:33.870000px;}
.y3c{bottom:34.740000px;}
.y134{bottom:36.360000px;}
.y126{bottom:36.540000px;}
.y121{bottom:41.580000px;}
.y67{bottom:43.215000px;}
.y75{bottom:43.395000px;}
.y15f{bottom:44.265000px;}
.y128{bottom:44.280000px;}
.y14f{bottom:44.295000px;}
.y166{bottom:44.445000px;}
.y13e{bottom:44.460000px;}
.y12d{bottom:44.475000px;}
.y153{bottom:45.180000px;}
.y80{bottom:46.980000px;}
.y3b{bottom:47.520000px;}
.y5f{bottom:51.690000px;}
.y133{bottom:52.200000px;}
.y125{bottom:52.380000px;}
.y66{bottom:56.205000px;}
.y74{bottom:56.355000px;}
.y2{bottom:57.420000px;}
.y15e{bottom:58.125000px;}
.y144{bottom:58.140000px;}
.y12c{bottom:58.155000px;}
.y165{bottom:58.305000px;}
.y15a{bottom:59.025000px;}
.y149{bottom:59.040000px;}
.y162{bottom:60.105000px;}
.y127{bottom:60.120000px;}
.y7d{bottom:63.780000px;}
.y132{bottom:68.040000px;}
.y65{bottom:69.345000px;}
.y73{bottom:69.495000px;}
.y5e{bottom:69.510000px;}
.y11e{bottom:70.575000px;}
.y15d{bottom:71.985000px;}
.y12b{bottom:72.015000px;}
.y14e{bottom:72.045000px;}
.y72{bottom:82.455000px;}
.y131{bottom:83.880000px;}
.y11d{bottom:84.435000px;}
.y15c{bottom:85.665000px;}
.y154{bottom:85.680000px;}
.y14d{bottom:85.725000px;}
.y164{bottom:85.845000px;}
.y12a{bottom:85.875000px;}
.y64{bottom:86.265000px;}
.y5d{bottom:87.330000px;}
.y71{bottom:95.595000px;}
.y11b{bottom:98.280000px;}
.y1f8{bottom:99.180000px;}
.y129{bottom:99.540000px;}
.y15b{bottom:99.570000px;}
.y14c{bottom:99.585000px;}
.y163{bottom:99.705000px;}
.yb1{bottom:103.680000px;}
.y116{bottom:103.860000px;}
.y158{bottom:104.205000px;}
.y5c{bottom:105.330000px;}
.y70{bottom:108.555000px;}
.y1c3{bottom:109.620000px;}
.y22d{bottom:109.800000px;}
.y18e{bottom:110.340000px;}
.yd5{bottom:112.500000px;}
.y14a{bottom:113.430000px;}
.y39{bottom:114.840000px;}
.y1f7{bottom:116.280000px;}
.y5b{bottom:118.650000px;}
.y169{bottom:120.420000px;}
.y6f{bottom:121.515000px;}
.y115{bottom:122.580000px;}
.yb0{bottom:123.480000px;}
.y157{bottom:125.085000px;}
.y22c{bottom:127.080000px;}
.y5a{bottom:127.470000px;}
.y1c2{bottom:129.420000px;}
.yd4{bottom:132.300000px;}
.y1f6{bottom:133.560000px;}
.y6e{bottom:133.935000px;}
.y38{bottom:134.820000px;}
.y114{bottom:142.560000px;}
.yaf{bottom:143.280000px;}
.y168{bottom:144.360000px;}
.y59{bottom:145.290000px;}
.y1c1{bottom:150.120000px;}
.y1f5{bottom:150.840000px;}
.yd3{bottom:152.280000px;}
.y37{bottom:154.620000px;}
.y22b{bottom:161.640000px;}
.y113{bottom:162.390000px;}
.y58{bottom:163.110000px;}
.y167{bottom:168.150000px;}
.yd2{bottom:172.110000px;}
.y36{bottom:174.450000px;}
.y1c0{bottom:174.630000px;}
.y22a{bottom:178.950000px;}
.y57{bottom:180.930000px;}
.y112{bottom:182.190000px;}
.yae{bottom:183.090000px;}
.y1f4{bottom:185.430000px;}
.y156{bottom:186.705000px;}
.y13a{bottom:191.520000px;}
.yd1{bottom:191.910000px;}
.y35{bottom:194.250000px;}
.y229{bottom:196.050000px;}
.y56{bottom:198.750000px;}
.y1bf{bottom:198.930000px;}
.y111{bottom:201.990000px;}
.y1f3{bottom:202.530000px;}
.yad{bottom:202.890000px;}
.yd0{bottom:211.710000px;}
.y55{bottom:212.070000px;}
.y228{bottom:213.330000px;}
.y34{bottom:214.050000px;}
.y1be{bottom:218.730000px;}
.y1f2{bottom:219.810000px;}
.y54{bottom:221.070000px;}
.yac{bottom:222.690000px;}
.y110{bottom:223.050000px;}
.y227{bottom:230.610000px;}
.ycf{bottom:231.510000px;}
.y33{bottom:234.030000px;}
.y1f1{bottom:237.090000px;}
.y1bd{bottom:238.530000px;}
.y53{bottom:238.890000px;}
.y10f{bottom:241.785000px;}
.yab{bottom:242.490000px;}
.y226{bottom:247.890000px;}
.y19f{bottom:251.490000px;}
.yce{bottom:252.390000px;}
.y32{bottom:253.830000px;}
.y1f0{bottom:254.370000px;}
.y52{bottom:256.740000px;}
.y1bc{bottom:258.330000px;}
.y10e{bottom:258.345000px;}
.yaa{bottom:262.290000px;}
.y225{bottom:265.170000px;}
.y19e{bottom:269.310000px;}
.y1ef{bottom:271.650000px;}
.ycd{bottom:272.190000px;}
.y31{bottom:273.630000px;}
.y51{bottom:274.560000px;}
.y10d{bottom:275.085000px;}
.y1bb{bottom:278.130000px;}
.ya9{bottom:282.270000px;}
.y224{bottom:282.450000px;}
.y18d{bottom:283.530000px;}
.ycc{bottom:285.150000px;}
.y1ee{bottom:288.930000px;}
.y10c{bottom:291.645000px;}
.y50{bottom:292.380000px;}
.y30{bottom:293.430000px;}
.y159{bottom:297.945000px;}
.y1ba{bottom:299.010000px;}
.y223{bottom:299.550000px;}
.ya8{bottom:302.070000px;}
.y18c{bottom:302.970000px;}
.ycb{bottom:304.950000px;}
.y4f{bottom:305.700000px;}
.y1ed{bottom:306.030000px;}
.y10b{bottom:308.205000px;}
.y19d{bottom:309.990000px;}
.y2f{bottom:313.230000px;}
.y4e{bottom:314.520000px;}
.y18b{bottom:315.930000px;}
.y222{bottom:316.830000px;}
.ya7{bottom:321.870000px;}
.y1b9{bottom:323.310000px;}
.yca{bottom:324.750000px;}
.y10a{bottom:324.945000px;}
.y19c{bottom:329.790000px;}
.y4d{bottom:332.520000px;}
.y2e{bottom:333.210000px;}
.y221{bottom:334.110000px;}
.y18a{bottom:335.730000px;}
.y1ec{bottom:340.590000px;}
.y109{bottom:341.505000px;}
.ya6{bottom:341.670000px;}
.yc9{bottom:344.730000px;}
.y1b8{bottom:347.610000px;}
.y19b{bottom:349.590000px;}
.y4c{bottom:350.340000px;}
.y220{bottom:351.390000px;}
.y2d{bottom:353.910000px;}
.y189{bottom:355.530000px;}
.y1eb{bottom:357.870000px;}
.y108{bottom:358.065000px;}
.ya5{bottom:361.470000px;}
.yc8{bottom:364.530000px;}
.y1b7{bottom:367.410000px;}
.y4b{bottom:368.160000px;}
.y21f{bottom:368.670000px;}
.y19a{bottom:369.390000px;}
.y2c{bottom:371.190000px;}
.y106{bottom:374.805000px;}
.y1ea{bottom:375.150000px;}
.y188{bottom:375.330000px;}
.y2b{bottom:379.650000px;}
.ya4{bottom:381.450000px;}
.y4a{bottom:382.725000px;}
.yc7{bottom:384.330000px;}
.y21e{bottom:385.770000px;}
.y1b6{bottom:388.290000px;}
.y199{bottom:389.370000px;}
.y104{bottom:391.365000px;}
.y1e9{bottom:392.475000px;}
.y187{bottom:395.355000px;}
.ya3{bottom:401.295000px;}
.y21d{bottom:403.095000px;}
.y2a{bottom:403.455000px;}
.yc6{bottom:404.175000px;}
.y103{bottom:407.955000px;}
.y198{bottom:409.215000px;}
.y1e8{bottom:409.575000px;}
.y6d{bottom:411.540000px;}
.y1b5{bottom:412.635000px;}
.y186{bottom:415.155000px;}
.y21c{bottom:420.375000px;}
.ya2{bottom:421.095000px;}
.y155{bottom:422.880000px;}
.y139{bottom:422.895000px;}
.yc5{bottom:423.975000px;}
.y29{bottom:424.335000px;}
.y102{bottom:424.695000px;}
.y1e7{bottom:426.855000px;}
.y197{bottom:429.015000px;}
.y185{bottom:436.215000px;}
.y1b4{bottom:436.935000px;}
.y21b{bottom:437.655000px;}
.ya1{bottom:440.895000px;}
.y101{bottom:441.255000px;}
.yc4{bottom:443.955000px;}
.y1e6{bottom:444.135000px;}
.y28{bottom:444.315000px;}
.y196{bottom:448.815000px;}
.y21a{bottom:454.935000px;}
.y184{bottom:455.475000px;}
.y1b3{bottom:456.735000px;}
.y100{bottom:457.815000px;}
.y27{bottom:457.995000px;}
.ya0{bottom:460.695000px;}
.y1e5{bottom:461.415000px;}
.yc3{bottom:463.755000px;}
.y26{bottom:466.635000px;}
.y183{bottom:468.615000px;}
.y219{bottom:472.215000px;}
.yff{bottom:474.375000px;}
.y1b2{bottom:476.535000px;}
.y1e4{bottom:478.695000px;}
.y9f{bottom:480.675000px;}
.yc2{bottom:483.555000px;}
.y182{bottom:488.595000px;}
.y218{bottom:489.315000px;}
.y25{bottom:490.035000px;}
.yfe{bottom:491.115000px;}
.y1e3{bottom:495.975000px;}
.y1b1{bottom:497.415000px;}
.y9e{bottom:500.475000px;}
.yc1{bottom:503.355000px;}
.y217{bottom:506.595000px;}
.yfc{bottom:507.675000px;}
.y181{bottom:508.395000px;}
.y1e2{bottom:513.075000px;}
.y24{bottom:513.255000px;}
.y152{bottom:520.260000px;}
.y9d{bottom:520.275000px;}
.y1b0{bottom:521.715000px;}
.yc0{bottom:523.155000px;}
.y216{bottom:523.875000px;}
.yfb{bottom:524.235000px;}
.y180{bottom:528.195000px;}
.y1e1{bottom:530.355000px;}
.y23{bottom:536.475000px;}
.y9c{bottom:540.075000px;}
.y215{bottom:541.155000px;}
.yf9{bottom:542.415000px;}
.ybf{bottom:544.035000px;}
.y1af{bottom:546.015000px;}
.y1e0{bottom:547.635000px;}
.y17f{bottom:547.995000px;}
.y214{bottom:558.435000px;}
.y9b{bottom:559.875000px;}
.y14b{bottom:562.380000px;}
.y148{bottom:562.395000px;}
.ybe{bottom:563.655000px;}
.y1df{bottom:564.915000px;}
.y1ae{bottom:566.715000px;}
.y63{bottom:567.780000px;}
.y17e{bottom:567.795000px;}
.y213{bottom:575.715000px;}
.ybd{bottom:576.795000px;}
.y9a{bottom:579.855000px;}
.y1de{bottom:582.195000px;}
.yf8{bottom:585.795000px;}
.y17d{bottom:587.775000px;}
.y1ad{bottom:590.655000px;}
.y22{bottom:591.375000px;}
.y212{bottom:592.815000px;}
.ybc{bottom:596.595000px;}
.y1dd{bottom:599.295000px;}
.y99{bottom:599.655000px;}
.yf7{bottom:605.235000px;}
.y21{bottom:606.855000px;}
.y17c{bottom:607.575000px;}
.y211{bottom:610.095000px;}
.y1ac{bottom:614.955000px;}
.ybb{bottom:616.395000px;}
.y1dc{bottom:616.575000px;}
.y98{bottom:619.455000px;}
.y20{bottom:622.335000px;}
.ye1{bottom:625.425000px;}
.y17b{bottom:627.405000px;}
.y1db{bottom:633.885000px;}
.yba{bottom:636.225000px;}
.y1f{bottom:638.025000px;}
.y97{bottom:639.285000px;}
.y210{bottom:644.685000px;}
.ye0{bottom:645.225000px;}
.y17a{bottom:647.205000px;}
.y195{bottom:648.465000px;}
.y1da{bottom:651.165000px;}
.yf6{bottom:652.965000px;}
.y1e{bottom:653.505000px;}
.yb9{bottom:656.205000px;}
.y96{bottom:659.085000px;}
.y20f{bottom:661.965000px;}
.y1d{bottom:664.665000px;}
.ydf{bottom:665.025000px;}
.y194{bottom:667.905000px;}
.y179{bottom:668.265000px;}
.y1d9{bottom:668.445000px;}
.yf5{bottom:672.945000px;}
.y3a{bottom:673.305000px;}
.yb8{bottom:676.005000px;}
.y1c{bottom:678.165000px;}
.y95{bottom:679.065000px;}
.y20e{bottom:679.245000px;}
.y193{bottom:681.045000px;}
.yde{bottom:685.005000px;}
.y1d8{bottom:685.725000px;}
.y142{bottom:687.345000px;}
.y178{bottom:687.885000px;}
.y1b{bottom:691.125000px;}
.yf4{bottom:692.745000px;}
.yb7{bottom:695.805000px;}
.y20d{bottom:696.345000px;}
.y94{bottom:698.865000px;}
.y177{bottom:700.845000px;}
.y1d7{bottom:702.825000px;}
.y1a{bottom:704.085000px;}
.ydd{bottom:704.805000px;}
.yf3{bottom:712.545000px;}
.y20c{bottom:713.625000px;}
.yb6{bottom:715.605000px;}
.y19{bottom:717.045000px;}
.y93{bottom:718.665000px;}
.y1d6{bottom:720.105000px;}
.y176{bottom:720.645000px;}
.ydc{bottom:724.605000px;}
.y18{bottom:730.905000px;}
.yf2{bottom:732.345000px;}
.yb5{bottom:735.405000px;}
.y1d5{bottom:737.385000px;}
.y92{bottom:738.465000px;}
.y175{bottom:740.445000px;}
.y17{bottom:743.685000px;}
.ydb{bottom:744.405000px;}
.y20b{bottom:748.185000px;}
.yf1{bottom:752.145000px;}
.y1d4{bottom:754.665000px;}
.yb4{bottom:755.385000px;}
.y13d{bottom:757.005000px;}
.y13b{bottom:757.020000px;}
.y91{bottom:758.265000px;}
.y174{bottom:760.245000px;}
.yda{bottom:764.205000px;}
.y20a{bottom:765.465000px;}
.y16{bottom:770.505000px;}
.y1d3{bottom:771.945000px;}
.yf0{bottom:773.025000px;}
.yb3{bottom:776.085000px;}
.y90{bottom:778.245000px;}
.y173{bottom:780.225000px;}
.y15{bottom:781.665000px;}
.y209{bottom:782.565000px;}
.yd9{bottom:784.185000px;}
.y1d2{bottom:789.225000px;}
.yb2{bottom:796.965000px;}
.y8f{bottom:798.045000px;}
.y1ab{bottom:798.945000px;}
.y208{bottom:799.845000px;}
.y172{bottom:800.025000px;}
.yd8{bottom:803.985000px;}
.y14{bottom:805.965000px;}
.y1d1{bottom:806.325000px;}
.yef{bottom:813.885000px;}
.y138{bottom:814.440000px;}
.y207{bottom:817.125000px;}
.y8e{bottom:817.845000px;}
.y171{bottom:819.825000px;}
.y1aa{bottom:823.245000px;}
.y1d0{bottom:823.605000px;}
.yd7{bottom:824.685000px;}
.y13{bottom:830.805000px;}
.yee{bottom:833.685000px;}
.y206{bottom:834.405000px;}
.y8d{bottom:837.645000px;}
.y137{bottom:838.185000px;}
.y170{bottom:839.625000px;}
.y1cf{bottom:840.885000px;}
.yd6{bottom:844.485000px;}
.y12{bottom:846.645000px;}
.y1a9{bottom:847.545000px;}
.y205{bottom:851.685000px;}
.yed{bottom:853.530000px;}
.y8c{bottom:857.490000px;}
.y136{bottom:858.030000px;}
.y1ce{bottom:858.210000px;}
.y16f{bottom:859.470000px;}
.y11{bottom:862.530000px;}
.y1a8{bottom:867.390000px;}
.y204{bottom:869.010000px;}
.yec{bottom:873.330000px;}
.y1cd{bottom:875.490000px;}
.y11c{bottom:876.555000px;}
.y11a{bottom:876.570000px;}
.y8b{bottom:877.470000px;}
.y10{bottom:878.370000px;}
.y16e{bottom:879.450000px;}
.y203{bottom:886.110000px;}
.y1a7{bottom:887.370000px;}
.y1cc{bottom:892.590000px;}
.yeb{bottom:893.310000px;}
.yf{bottom:894.210000px;}
.y8a{bottom:897.270000px;}
.y16d{bottom:899.250000px;}
.y202{bottom:903.390000px;}
.ye{bottom:905.910000px;}
.y1a6{bottom:907.170000px;}
.y1cb{bottom:909.870000px;}
.yea{bottom:913.110000px;}
.y89{bottom:917.070000px;}
.y16c{bottom:919.050000px;}
.y201{bottom:920.670000px;}
.yd{bottom:923.550000px;}
.y1a5{bottom:926.970000px;}
.y1ca{bottom:927.150000px;}
.ye9{bottom:932.910000px;}
.y88{bottom:936.870000px;}
.y200{bottom:937.950000px;}
.y192{bottom:938.850000px;}
.y16b{bottom:940.110000px;}
.y1c9{bottom:944.430000px;}
.y1a4{bottom:946.770000px;}
.yc{bottom:947.850000px;}
.ye8{bottom:952.710000px;}
.y1ff{bottom:955.230000px;}
.y87{bottom:956.670000px;}
.y191{bottom:958.650000px;}
.y16a{bottom:959.550000px;}
.y1c8{bottom:961.710000px;}
.y1a3{bottom:966.570000px;}
.yb{bottom:969.450000px;}
.ye7{bottom:972.510000px;}
.y86{bottom:976.650000px;}
.y1c7{bottom:978.990000px;}
.y190{bottom:979.890000px;}
.y1a2{bottom:986.550000px;}
.y122{bottom:987.795000px;}
.y11f{bottom:987.810000px;}
.y1fe{bottom:989.610000px;}
.ye6{bottom:992.490000px;}
.y85{bottom:996.450000px;}
.y1c6{bottom:996.630000px;}
.y18f{bottom:999.330000px;}
.ya{bottom:1002.930000px;}
.y1fd{bottom:1006.890000px;}
.y1a1{bottom:1007.250000px;}
.ye5{bottom:1012.290000px;}
.y84{bottom:1016.250000px;}
.y1fc{bottom:1024.170000px;}
.y1a0{bottom:1031.550000px;}
.ye4{bottom:1032.090000px;}
.y1c5{bottom:1034.790000px;}
.y83{bottom:1036.050000px;}
.y9{bottom:1039.110000px;}
.y1fb{bottom:1041.450000px;}
.ye3{bottom:1051.890000px;}
.y1c4{bottom:1052.070000px;}
.y118{bottom:1053.510000px;}
.y82{bottom:1055.850000px;}
.y1fa{bottom:1058.730000px;}
.y8{bottom:1063.230000px;}
.ye2{bottom:1072.590000px;}
.y81{bottom:1075.650000px;}
.y1f9{bottom:1075.830000px;}
.y117{bottom:1077.090000px;}
.y6b{bottom:1096.200000px;}
.y1{bottom:1121.220000px;}
.y7f{bottom:1123.200000px;}
.y47{bottom:1137.240000px;}
.h7{height:5.653125px;}
.h17{height:5.805000px;}
.h55{height:6.257812px;}
.h3{height:13.500000px;}
.h30{height:15.825000px;}
.h31{height:15.861000px;}
.h2f{height:16.005000px;}
.h1a{height:16.920000px;}
.h22{height:22.140000px;}
.h16{height:23.319141px;}
.h2a{height:29.664141px;}
.hd{height:29.678906px;}
.hf{height:30.963516px;}
.h2b{height:31.081955px;}
.h5{height:34.200000px;}
.h2e{height:34.905000px;}
.h20{height:36.281250px;}
.h14{height:39.503370px;}
.h6{height:40.985156px;}
.h45{height:41.385000px;}
.h46{height:41.395500px;}
.h47{height:41.400000px;}
.h54{height:41.756133px;}
.h21{height:42.086250px;}
.h27{height:43.737568px;}
.h11{height:44.518359px;}
.hc{height:45.116367px;}
.h19{height:45.714375px;}
.h12{height:46.622932px;}
.h38{height:47.321367px;}
.h13{height:47.344922px;}
.h1b{height:48.616875px;}
.h15{height:52.998047px;}
.h1c{height:54.421875px;}
.h3d{height:55.245000px;}
.h3e{height:55.255500px;}
.h3f{height:55.260000px;}
.h10{height:55.291992px;}
.h1e{height:55.503491px;}
.h18{height:57.780000px;}
.h26{height:58.621992px;}
.h4{height:58.651172px;}
.h2d{height:60.226875px;}
.h28{height:61.423863px;}
.h52{height:62.211094px;}
.h35{height:63.345000px;}
.h36{height:63.351000px;}
.h37{height:63.360000px;}
.hb{height:65.010937px;}
.h2{height:65.884219px;}
.he{height:67.824844px;}
.h41{height:68.935500px;}
.h40{height:68.940000px;}
.h29{height:70.628906px;}
.h32{height:70.664062px;}
.ha{height:72.562500px;}
.h23{height:74.953125px;}
.h25{height:75.093750px;}
.h53{height:78.367500px;}
.h2c{height:79.006741px;}
.h9{height:84.898125px;}
.h8{height:87.695156px;}
.h1f{height:94.365000px;}
.h48{height:96.465000px;}
.h49{height:96.475500px;}
.h4a{height:96.480000px;}
.h39{height:110.325000px;}
.h3a{height:110.331000px;}
.h3b{height:110.340000px;}
.h4f{height:110.505000px;}
.h50{height:110.511000px;}
.h51{height:110.520000px;}
.h4d{height:124.221000px;}
.h4e{height:124.222500px;}
.h42{height:124.230000px;}
.h43{height:124.236000px;}
.h44{height:124.245000px;}
.h24{height:144.900000px;}
.h33{height:174.585000px;}
.h34{height:174.600000px;}
.h4c{height:235.455000px;}
.h4b{height:235.470000px;}
.h1d{height:380.415000px;}
.h3c{height:389.370000px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.wc{width:54.000000px;}
.wd{width:74.196000px;}
.w3{width:82.071000px;}
.w10{width:87.291000px;}
.w14{width:87.300000px;}
.we{width:121.521000px;}
.wb{width:128.001000px;}
.w16{width:141.322500px;}
.w5{width:154.470000px;}
.wf{width:155.325000px;}
.w11{width:155.355000px;}
.wa{width:180.390000px;}
.w8{width:182.535000px;}
.w13{width:207.930000px;}
.w17{width:209.370000px;}
.w15{width:270.060000px;}
.w12{width:270.075000px;}
.w18{width:369.960000px;}
.w19{width:369.975000px;}
.w7{width:532.740000px;}
.w4{width:639.855000px;}
.w2{width:721.935000px;}
.w9{width:743.175000px;}
.w6{width:747.135000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x39{left:4.252500px;}
.x2{left:8.091000px;}
.x30{left:9.345000px;}
.x12{left:10.791000px;}
.x2e{left:13.485000px;}
.x35{left:15.480000px;}
.x21{left:16.920000px;}
.x2d{left:18.000000px;}
.x23{left:19.440000px;}
.x18{left:21.255000px;}
.x26{left:24.660000px;}
.x36{left:31.140000px;}
.x25{left:36.720000px;}
.x38{left:38.160000px;}
.x2f{left:42.480000px;}
.x37{left:44.820000px;}
.x31{left:49.890000px;}
.x2a{left:53.850000px;}
.x27{left:57.765000px;}
.x28{left:62.280000px;}
.x3{left:73.965000px;}
.x33{left:77.220000px;}
.x16{left:80.505000px;}
.x13{left:81.765000px;}
.x11{left:93.105000px;}
.x15{left:94.185000px;}
.x2c{left:99.390000px;}
.x1{left:108.036000px;}
.x1d{left:114.336000px;}
.x1a{left:118.476000px;}
.x6{left:121.536000px;}
.x1c{left:128.376000px;}
.xe{left:132.696000px;}
.xb{left:135.756000px;}
.x34{left:149.250000px;}
.xd{left:152.130000px;}
.xc{left:153.750000px;}
.x1b{left:185.970000px;}
.x4{left:190.125000px;}
.x29{left:195.345000px;}
.x1f{left:202.185000px;}
.x7{left:216.930000px;}
.x32{left:249.375000px;}
.x14{left:303.015000px;}
.x17{left:310.350000px;}
.x20{left:330.195000px;}
.x9{left:335.955000px;}
.x2b{left:350.715000px;}
.x22{left:384.195000px;}
.x8{left:443.085000px;}
.x5{left:446.505000px;}
.xa{left:459.105000px;}
.xf{left:489.165000px;}
.x10{left:490.785000px;}
.x24{left:579.930000px;}
.x19{left:620.253000px;}
.x1e{left:716.370000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls1a{letter-spacing:-1.760000pt;}
.ls12{letter-spacing:-1.280000pt;}
.lsb{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.198933pt;}
.ls8{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.079467pt;}
.ls11{letter-spacing:0.094933pt;}
.ls15{letter-spacing:0.096000pt;}
.ls3{letter-spacing:0.128640pt;}
.ls9{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.161067pt;}
.ls13{letter-spacing:0.230933pt;}
.ls18{letter-spacing:0.231040pt;}
.ls4{letter-spacing:0.240640pt;}
.ls19{letter-spacing:0.265600pt;}
.lsa{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.439040pt;}
.ls0{letter-spacing:0.480000pt;}
.ls16{letter-spacing:0.736000pt;}
.ls17{letter-spacing:0.746667pt;}
.ls14{letter-spacing:0.800000pt;}
.lsf{letter-spacing:0.960000pt;}
.ls5{letter-spacing:8.000000pt;}
.ls2{letter-spacing:42.400000pt;}
.ls6{letter-spacing:43.840000pt;}
.ls1{letter-spacing:63.360000pt;}
.ws0{word-spacing:-18.720000pt;}
.wse{word-spacing:-16.000000pt;}
.wsd{word-spacing:-14.720000pt;}
.ws12{word-spacing:-14.240000pt;}
.ws14{word-spacing:-13.600000pt;}
.ws13{word-spacing:-13.545600pt;}
.ws11{word-spacing:-13.510933pt;}
.wsb{word-spacing:-13.374933pt;}
.wsc{word-spacing:-13.280000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws10{word-spacing:-11.040000pt;}
.ws5{word-spacing:-10.881067pt;}
.wsf{word-spacing:-10.720000pt;}
.ws3{word-spacing:-10.400000pt;}
.ws4{word-spacing:-10.080000pt;}
.ws9{word-spacing:-9.359467pt;}
.ws8{word-spacing:-9.280000pt;}
.ws7{word-spacing:-8.000000pt;}
.ws2{word-spacing:-6.720000pt;}
.wsa{word-spacing:0.000000pt;}
.ws1{word-spacing:54.080000pt;}
._7{margin-left:-52.960000pt;}
._1b{margin-left:-2.993280pt;}
._4{margin-left:-2.001920pt;}
._2{margin-left:-0.973440pt;}
._0{width:0.928000pt;}
._1{width:2.155093pt;}
._12{width:3.103787pt;}
._f{width:4.674560pt;}
._d{width:5.896320pt;}
._e{width:6.880640pt;}
._16{width:7.780480pt;}
._15{width:9.223040pt;}
._9{width:10.199040pt;}
._a{width:11.094400pt;}
._17{width:12.174080pt;}
._1c{width:13.200000pt;}
._1e{width:14.254080pt;}
._14{width:15.245440pt;}
._13{width:16.148480pt;}
._25{width:17.157760pt;}
._10{width:18.113920pt;}
._24{width:19.045120pt;}
._b{width:20.426240pt;}
._c{width:21.460480pt;}
._1a{width:22.735360pt;}
._18{width:24.169600pt;}
._19{width:25.497600pt;}
._32{width:26.412160pt;}
._11{width:27.622400pt;}
._2e{width:29.375360pt;}
._36{width:30.306560pt;}
._34{width:31.234560pt;}
._37{width:32.778880pt;}
._26{width:33.784320pt;}
._27{width:34.931200pt;}
._29{width:35.831040pt;}
._28{width:36.918400pt;}
._3c{width:38.405760pt;}
._33{width:39.308800pt;}
._2d{width:40.424320pt;}
._35{width:42.230400pt;}
._1f{width:43.838720pt;}
._22{width:45.128107pt;}
._2a{width:48.604800pt;}
._1d{width:50.186240pt;}
._31{width:51.196587pt;}
._2b{width:53.438720pt;}
._2c{width:54.557440pt;}
._5{width:58.218667pt;}
._30{width:61.353600pt;}
._2f{width:62.734720pt;}
._3{width:63.984853pt;}
._3a{width:66.559360pt;}
._3b{width:67.543680pt;}
._21{width:77.061120pt;}
._20{width:78.041600pt;}
._39{width:113.402880pt;}
._6{width:177.440000pt;}
._38{width:195.987840pt;}
._23{width:254.106667pt;}
._8{width:671.978667pt;}
.fs3{font-size:5.120000pt;}
.fs10{font-size:5.333333pt;}
.fsb{font-size:21.120000pt;}
.fs7{font-size:26.880000pt;}
.fsc{font-size:32.000000pt;}
.fsa{font-size:33.730624pt;}
.fs1{font-size:37.120000pt;}
.fs6{font-size:40.320000pt;}
.fs8{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fsd{font-size:55.992837pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fse{font-size:67.461249pt;}
.fsf{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.y46{bottom:-220.186667pt;}
.y45{bottom:-190.266667pt;}
.y44{bottom:-160.186667pt;}
.y7c{bottom:-150.426667pt;}
.y43{bottom:-130.266667pt;}
.y7b{bottom:-120.506667pt;}
.y42{bottom:-100.186667pt;}
.y7a{bottom:-90.586667pt;}
.y41{bottom:-70.266667pt;}
.y79{bottom:-60.506667pt;}
.y40{bottom:-40.320000pt;}
.y78{bottom:-30.586667pt;}
.y49{bottom:-24.160000pt;}
.y7e{bottom:-15.931333pt;}
.y3f{bottom:-10.240000pt;}
.y77{bottom:-0.466667pt;}
.y0{bottom:0.000000pt;}
.y22e{bottom:1.633333pt;}
.y161{bottom:2.546667pt;}
.y150{bottom:2.573333pt;}
.y141{bottom:2.706667pt;}
.y147{bottom:2.720000pt;}
.y130{bottom:2.733333pt;}
.y3{bottom:3.520000pt;}
.y6a{bottom:3.693333pt;}
.y119{bottom:4.160000pt;}
.y107{bottom:4.306667pt;}
.yfd{bottom:4.320000pt;}
.y105{bottom:4.346667pt;}
.y48{bottom:4.480000pt;}
.y62{bottom:4.946667pt;}
.y6c{bottom:4.960000pt;}
.y3e{bottom:6.080000pt;}
.y6{bottom:11.200000pt;}
.y124{bottom:12.493333pt;}
.yfa{bottom:12.640000pt;}
.y160{bottom:14.866667pt;}
.y146{bottom:14.880000pt;}
.y12f{bottom:14.893333pt;}
.y140{bottom:15.026667pt;}
.y69{bottom:15.213333pt;}
.y151{bottom:15.680000pt;}
.y135{bottom:18.080000pt;}
.y3d{bottom:18.400000pt;}
.y61{bottom:19.066667pt;}
.y7{bottom:19.520000pt;}
.y4{bottom:20.640000pt;}
.y13c{bottom:21.906667pt;}
.y5{bottom:21.920000pt;}
.y120{bottom:24.640000pt;}
.y123{bottom:24.653333pt;}
.y68{bottom:26.733333pt;}
.y76{bottom:27.053333pt;}
.y13f{bottom:27.186667pt;}
.y145{bottom:27.200000pt;}
.y12e{bottom:27.213333pt;}
.y143{bottom:28.000000pt;}
.y60{bottom:30.106667pt;}
.y3c{bottom:30.880000pt;}
.y134{bottom:32.320000pt;}
.y126{bottom:32.480000pt;}
.y121{bottom:36.960000pt;}
.y67{bottom:38.413333pt;}
.y75{bottom:38.573333pt;}
.y15f{bottom:39.346667pt;}
.y128{bottom:39.360000pt;}
.y14f{bottom:39.373333pt;}
.y166{bottom:39.506667pt;}
.y13e{bottom:39.520000pt;}
.y12d{bottom:39.533333pt;}
.y153{bottom:40.160000pt;}
.y80{bottom:41.760000pt;}
.y3b{bottom:42.240000pt;}
.y5f{bottom:45.946667pt;}
.y133{bottom:46.400000pt;}
.y125{bottom:46.560000pt;}
.y66{bottom:49.960000pt;}
.y74{bottom:50.093333pt;}
.y2{bottom:51.040000pt;}
.y15e{bottom:51.666667pt;}
.y144{bottom:51.680000pt;}
.y12c{bottom:51.693333pt;}
.y165{bottom:51.826667pt;}
.y15a{bottom:52.466667pt;}
.y149{bottom:52.480000pt;}
.y162{bottom:53.426667pt;}
.y127{bottom:53.440000pt;}
.y7d{bottom:56.693333pt;}
.y132{bottom:60.480000pt;}
.y65{bottom:61.640000pt;}
.y73{bottom:61.773333pt;}
.y5e{bottom:61.786667pt;}
.y11e{bottom:62.733333pt;}
.y15d{bottom:63.986667pt;}
.y12b{bottom:64.013333pt;}
.y14e{bottom:64.040000pt;}
.y72{bottom:73.293333pt;}
.y131{bottom:74.560000pt;}
.y11d{bottom:75.053333pt;}
.y15c{bottom:76.146667pt;}
.y154{bottom:76.160000pt;}
.y14d{bottom:76.200000pt;}
.y164{bottom:76.306667pt;}
.y12a{bottom:76.333333pt;}
.y64{bottom:76.680000pt;}
.y5d{bottom:77.626667pt;}
.y71{bottom:84.973333pt;}
.y11b{bottom:87.360000pt;}
.y1f8{bottom:88.160000pt;}
.y129{bottom:88.480000pt;}
.y15b{bottom:88.506667pt;}
.y14c{bottom:88.520000pt;}
.y163{bottom:88.626667pt;}
.yb1{bottom:92.160000pt;}
.y116{bottom:92.320000pt;}
.y158{bottom:92.626667pt;}
.y5c{bottom:93.626667pt;}
.y70{bottom:96.493333pt;}
.y1c3{bottom:97.440000pt;}
.y22d{bottom:97.600000pt;}
.y18e{bottom:98.080000pt;}
.yd5{bottom:100.000000pt;}
.y14a{bottom:100.826667pt;}
.y39{bottom:102.080000pt;}
.y1f7{bottom:103.360000pt;}
.y5b{bottom:105.466667pt;}
.y169{bottom:107.040000pt;}
.y6f{bottom:108.013333pt;}
.y115{bottom:108.960000pt;}
.yb0{bottom:109.760000pt;}
.y157{bottom:111.186667pt;}
.y22c{bottom:112.960000pt;}
.y5a{bottom:113.306667pt;}
.y1c2{bottom:115.040000pt;}
.yd4{bottom:117.600000pt;}
.y1f6{bottom:118.720000pt;}
.y6e{bottom:119.053333pt;}
.y38{bottom:119.840000pt;}
.y114{bottom:126.720000pt;}
.yaf{bottom:127.360000pt;}
.y168{bottom:128.320000pt;}
.y59{bottom:129.146667pt;}
.y1c1{bottom:133.440000pt;}
.y1f5{bottom:134.080000pt;}
.yd3{bottom:135.360000pt;}
.y37{bottom:137.440000pt;}
.y22b{bottom:143.680000pt;}
.y113{bottom:144.346667pt;}
.y58{bottom:144.986667pt;}
.y167{bottom:149.466667pt;}
.yd2{bottom:152.986667pt;}
.y36{bottom:155.066667pt;}
.y1c0{bottom:155.226667pt;}
.y22a{bottom:159.066667pt;}
.y57{bottom:160.826667pt;}
.y112{bottom:161.946667pt;}
.yae{bottom:162.746667pt;}
.y1f4{bottom:164.826667pt;}
.y156{bottom:165.960000pt;}
.y13a{bottom:170.240000pt;}
.yd1{bottom:170.586667pt;}
.y35{bottom:172.666667pt;}
.y229{bottom:174.266667pt;}
.y56{bottom:176.666667pt;}
.y1bf{bottom:176.826667pt;}
.y111{bottom:179.546667pt;}
.y1f3{bottom:180.026667pt;}
.yad{bottom:180.346667pt;}
.yd0{bottom:188.186667pt;}
.y55{bottom:188.506667pt;}
.y228{bottom:189.626667pt;}
.y34{bottom:190.266667pt;}
.y1be{bottom:194.426667pt;}
.y1f2{bottom:195.386667pt;}
.y54{bottom:196.506667pt;}
.yac{bottom:197.946667pt;}
.y110{bottom:198.266667pt;}
.y227{bottom:204.986667pt;}
.ycf{bottom:205.786667pt;}
.y33{bottom:208.026667pt;}
.y1f1{bottom:210.746667pt;}
.y1bd{bottom:212.026667pt;}
.y53{bottom:212.346667pt;}
.y10f{bottom:214.920000pt;}
.yab{bottom:215.546667pt;}
.y226{bottom:220.346667pt;}
.y19f{bottom:223.546667pt;}
.yce{bottom:224.346667pt;}
.y32{bottom:225.626667pt;}
.y1f0{bottom:226.106667pt;}
.y52{bottom:228.213333pt;}
.y1bc{bottom:229.626667pt;}
.y10e{bottom:229.640000pt;}
.yaa{bottom:233.146667pt;}
.y225{bottom:235.706667pt;}
.y19e{bottom:239.386667pt;}
.y1ef{bottom:241.466667pt;}
.ycd{bottom:241.946667pt;}
.y31{bottom:243.226667pt;}
.y51{bottom:244.053333pt;}
.y10d{bottom:244.520000pt;}
.y1bb{bottom:247.226667pt;}
.ya9{bottom:250.906667pt;}
.y224{bottom:251.066667pt;}
.y18d{bottom:252.026667pt;}
.ycc{bottom:253.466667pt;}
.y1ee{bottom:256.826667pt;}
.y10c{bottom:259.240000pt;}
.y50{bottom:259.893333pt;}
.y30{bottom:260.826667pt;}
.y159{bottom:264.840000pt;}
.y1ba{bottom:265.786667pt;}
.y223{bottom:266.266667pt;}
.ya8{bottom:268.506667pt;}
.y18c{bottom:269.306667pt;}
.ycb{bottom:271.066667pt;}
.y4f{bottom:271.733333pt;}
.y1ed{bottom:272.026667pt;}
.y10b{bottom:273.960000pt;}
.y19d{bottom:275.546667pt;}
.y2f{bottom:278.426667pt;}
.y4e{bottom:279.573333pt;}
.y18b{bottom:280.826667pt;}
.y222{bottom:281.626667pt;}
.ya7{bottom:286.106667pt;}
.y1b9{bottom:287.386667pt;}
.yca{bottom:288.666667pt;}
.y10a{bottom:288.840000pt;}
.y19c{bottom:293.146667pt;}
.y4d{bottom:295.573333pt;}
.y2e{bottom:296.186667pt;}
.y221{bottom:296.986667pt;}
.y18a{bottom:298.426667pt;}
.y1ec{bottom:302.746667pt;}
.y109{bottom:303.560000pt;}
.ya6{bottom:303.706667pt;}
.yc9{bottom:306.426667pt;}
.y1b8{bottom:308.986667pt;}
.y19b{bottom:310.746667pt;}
.y4c{bottom:311.413333pt;}
.y220{bottom:312.346667pt;}
.y2d{bottom:314.586667pt;}
.y189{bottom:316.026667pt;}
.y1eb{bottom:318.106667pt;}
.y108{bottom:318.280000pt;}
.ya5{bottom:321.306667pt;}
.yc8{bottom:324.026667pt;}
.y1b7{bottom:326.586667pt;}
.y4b{bottom:327.253333pt;}
.y21f{bottom:327.706667pt;}
.y19a{bottom:328.346667pt;}
.y2c{bottom:329.946667pt;}
.y106{bottom:333.160000pt;}
.y1ea{bottom:333.466667pt;}
.y188{bottom:333.626667pt;}
.y2b{bottom:337.466667pt;}
.ya4{bottom:339.066667pt;}
.y4a{bottom:340.200000pt;}
.yc7{bottom:341.626667pt;}
.y21e{bottom:342.906667pt;}
.y1b6{bottom:345.146667pt;}
.y199{bottom:346.106667pt;}
.y104{bottom:347.880000pt;}
.y1e9{bottom:348.866667pt;}
.y187{bottom:351.426667pt;}
.ya3{bottom:356.706667pt;}
.y21d{bottom:358.306667pt;}
.y2a{bottom:358.626667pt;}
.yc6{bottom:359.266667pt;}
.y103{bottom:362.626667pt;}
.y198{bottom:363.746667pt;}
.y1e8{bottom:364.066667pt;}
.y6d{bottom:365.813333pt;}
.y1b5{bottom:366.786667pt;}
.y186{bottom:369.026667pt;}
.y21c{bottom:373.666667pt;}
.ya2{bottom:374.306667pt;}
.y155{bottom:375.893333pt;}
.y139{bottom:375.906667pt;}
.yc5{bottom:376.866667pt;}
.y29{bottom:377.186667pt;}
.y102{bottom:377.506667pt;}
.y1e7{bottom:379.426667pt;}
.y197{bottom:381.346667pt;}
.y185{bottom:387.746667pt;}
.y1b4{bottom:388.386667pt;}
.y21b{bottom:389.026667pt;}
.ya1{bottom:391.906667pt;}
.y101{bottom:392.226667pt;}
.yc4{bottom:394.626667pt;}
.y1e6{bottom:394.786667pt;}
.y28{bottom:394.946667pt;}
.y196{bottom:398.946667pt;}
.y21a{bottom:404.386667pt;}
.y184{bottom:404.866667pt;}
.y1b3{bottom:405.986667pt;}
.y100{bottom:406.946667pt;}
.y27{bottom:407.106667pt;}
.ya0{bottom:409.506667pt;}
.y1e5{bottom:410.146667pt;}
.yc3{bottom:412.226667pt;}
.y26{bottom:414.786667pt;}
.y183{bottom:416.546667pt;}
.y219{bottom:419.746667pt;}
.yff{bottom:421.666667pt;}
.y1b2{bottom:423.586667pt;}
.y1e4{bottom:425.506667pt;}
.y9f{bottom:427.266667pt;}
.yc2{bottom:429.826667pt;}
.y182{bottom:434.306667pt;}
.y218{bottom:434.946667pt;}
.y25{bottom:435.586667pt;}
.yfe{bottom:436.546667pt;}
.y1e3{bottom:440.866667pt;}
.y1b1{bottom:442.146667pt;}
.y9e{bottom:444.866667pt;}
.yc1{bottom:447.426667pt;}
.y217{bottom:450.306667pt;}
.yfc{bottom:451.266667pt;}
.y181{bottom:451.906667pt;}
.y1e2{bottom:456.066667pt;}
.y24{bottom:456.226667pt;}
.y152{bottom:462.453333pt;}
.y9d{bottom:462.466667pt;}
.y1b0{bottom:463.746667pt;}
.yc0{bottom:465.026667pt;}
.y216{bottom:465.666667pt;}
.yfb{bottom:465.986667pt;}
.y180{bottom:469.506667pt;}
.y1e1{bottom:471.426667pt;}
.y23{bottom:476.866667pt;}
.y9c{bottom:480.066667pt;}
.y215{bottom:481.026667pt;}
.yf9{bottom:482.146667pt;}
.ybf{bottom:483.586667pt;}
.y1af{bottom:485.346667pt;}
.y1e0{bottom:486.786667pt;}
.y17f{bottom:487.106667pt;}
.y214{bottom:496.386667pt;}
.y9b{bottom:497.666667pt;}
.y14b{bottom:499.893333pt;}
.y148{bottom:499.906667pt;}
.ybe{bottom:501.026667pt;}
.y1df{bottom:502.146667pt;}
.y1ae{bottom:503.746667pt;}
.y63{bottom:504.693333pt;}
.y17e{bottom:504.706667pt;}
.y213{bottom:511.746667pt;}
.ybd{bottom:512.706667pt;}
.y9a{bottom:515.426667pt;}
.y1de{bottom:517.506667pt;}
.yf8{bottom:520.706667pt;}
.y17d{bottom:522.466667pt;}
.y1ad{bottom:525.026667pt;}
.y22{bottom:525.666667pt;}
.y212{bottom:526.946667pt;}
.ybc{bottom:530.306667pt;}
.y1dd{bottom:532.706667pt;}
.y99{bottom:533.026667pt;}
.yf7{bottom:537.986667pt;}
.y21{bottom:539.426667pt;}
.y17c{bottom:540.066667pt;}
.y211{bottom:542.306667pt;}
.y1ac{bottom:546.626667pt;}
.ybb{bottom:547.906667pt;}
.y1dc{bottom:548.066667pt;}
.y98{bottom:550.626667pt;}
.y20{bottom:553.186667pt;}
.ye1{bottom:555.933333pt;}
.y17b{bottom:557.693333pt;}
.y1db{bottom:563.453333pt;}
.yba{bottom:565.533333pt;}
.y1f{bottom:567.133333pt;}
.y97{bottom:568.253333pt;}
.y210{bottom:573.053333pt;}
.ye0{bottom:573.533333pt;}
.y17a{bottom:575.293333pt;}
.y195{bottom:576.413333pt;}
.y1da{bottom:578.813333pt;}
.yf6{bottom:580.413333pt;}
.y1e{bottom:580.893333pt;}
.yb9{bottom:583.293333pt;}
.y96{bottom:585.853333pt;}
.y20f{bottom:588.413333pt;}
.y1d{bottom:590.813333pt;}
.ydf{bottom:591.133333pt;}
.y194{bottom:593.693333pt;}
.y179{bottom:594.013333pt;}
.y1d9{bottom:594.173333pt;}
.yf5{bottom:598.173333pt;}
.y3a{bottom:598.493333pt;}
.yb8{bottom:600.893333pt;}
.y1c{bottom:602.813333pt;}
.y95{bottom:603.613333pt;}
.y20e{bottom:603.773333pt;}
.y193{bottom:605.373333pt;}
.yde{bottom:608.893333pt;}
.y1d8{bottom:609.533333pt;}
.y142{bottom:610.973333pt;}
.y178{bottom:611.453333pt;}
.y1b{bottom:614.333333pt;}
.yf4{bottom:615.773333pt;}
.yb7{bottom:618.493333pt;}
.y20d{bottom:618.973333pt;}
.y94{bottom:621.213333pt;}
.y177{bottom:622.973333pt;}
.y1d7{bottom:624.733333pt;}
.y1a{bottom:625.853333pt;}
.ydd{bottom:626.493333pt;}
.yf3{bottom:633.373333pt;}
.y20c{bottom:634.333333pt;}
.yb6{bottom:636.093333pt;}
.y19{bottom:637.373333pt;}
.y93{bottom:638.813333pt;}
.y1d6{bottom:640.093333pt;}
.y176{bottom:640.573333pt;}
.ydc{bottom:644.093333pt;}
.y18{bottom:649.693333pt;}
.yf2{bottom:650.973333pt;}
.yb5{bottom:653.693333pt;}
.y1d5{bottom:655.453333pt;}
.y92{bottom:656.413333pt;}
.y175{bottom:658.173333pt;}
.y17{bottom:661.053333pt;}
.ydb{bottom:661.693333pt;}
.y20b{bottom:665.053333pt;}
.yf1{bottom:668.573333pt;}
.y1d4{bottom:670.813333pt;}
.yb4{bottom:671.453333pt;}
.y13d{bottom:672.893333pt;}
.y13b{bottom:672.906667pt;}
.y91{bottom:674.013333pt;}
.y174{bottom:675.773333pt;}
.yda{bottom:679.293333pt;}
.y20a{bottom:680.413333pt;}
.y16{bottom:684.893333pt;}
.y1d3{bottom:686.173333pt;}
.yf0{bottom:687.133333pt;}
.yb3{bottom:689.853333pt;}
.y90{bottom:691.773333pt;}
.y173{bottom:693.533333pt;}
.y15{bottom:694.813333pt;}
.y209{bottom:695.613333pt;}
.yd9{bottom:697.053333pt;}
.y1d2{bottom:701.533333pt;}
.yb2{bottom:708.413333pt;}
.y8f{bottom:709.373333pt;}
.y1ab{bottom:710.173333pt;}
.y208{bottom:710.973333pt;}
.y172{bottom:711.133333pt;}
.yd8{bottom:714.653333pt;}
.y14{bottom:716.413333pt;}
.y1d1{bottom:716.733333pt;}
.yef{bottom:723.453333pt;}
.y138{bottom:723.946667pt;}
.y207{bottom:726.333333pt;}
.y8e{bottom:726.973333pt;}
.y171{bottom:728.733333pt;}
.y1aa{bottom:731.773333pt;}
.y1d0{bottom:732.093333pt;}
.yd7{bottom:733.053333pt;}
.y13{bottom:738.493333pt;}
.yee{bottom:741.053333pt;}
.y206{bottom:741.693333pt;}
.y8d{bottom:744.573333pt;}
.y137{bottom:745.053333pt;}
.y170{bottom:746.333333pt;}
.y1cf{bottom:747.453333pt;}
.yd6{bottom:750.653333pt;}
.y12{bottom:752.573333pt;}
.y1a9{bottom:753.373333pt;}
.y205{bottom:757.053333pt;}
.yed{bottom:758.693333pt;}
.y8c{bottom:762.213333pt;}
.y136{bottom:762.693333pt;}
.y1ce{bottom:762.853333pt;}
.y16f{bottom:763.973333pt;}
.y11{bottom:766.693333pt;}
.y1a8{bottom:771.013333pt;}
.y204{bottom:772.453333pt;}
.yec{bottom:776.293333pt;}
.y1cd{bottom:778.213333pt;}
.y11c{bottom:779.160000pt;}
.y11a{bottom:779.173333pt;}
.y8b{bottom:779.973333pt;}
.y10{bottom:780.773333pt;}
.y16e{bottom:781.733333pt;}
.y203{bottom:787.653333pt;}
.y1a7{bottom:788.773333pt;}
.y1cc{bottom:793.413333pt;}
.yeb{bottom:794.053333pt;}
.yf{bottom:794.853333pt;}
.y8a{bottom:797.573333pt;}
.y16d{bottom:799.333333pt;}
.y202{bottom:803.013333pt;}
.ye{bottom:805.253333pt;}
.y1a6{bottom:806.373333pt;}
.y1cb{bottom:808.773333pt;}
.yea{bottom:811.653333pt;}
.y89{bottom:815.173333pt;}
.y16c{bottom:816.933333pt;}
.y201{bottom:818.373333pt;}
.yd{bottom:820.933333pt;}
.y1a5{bottom:823.973333pt;}
.y1ca{bottom:824.133333pt;}
.ye9{bottom:829.253333pt;}
.y88{bottom:832.773333pt;}
.y200{bottom:833.733333pt;}
.y192{bottom:834.533333pt;}
.y16b{bottom:835.653333pt;}
.y1c9{bottom:839.493333pt;}
.y1a4{bottom:841.573333pt;}
.yc{bottom:842.533333pt;}
.ye8{bottom:846.853333pt;}
.y1ff{bottom:849.093333pt;}
.y87{bottom:850.373333pt;}
.y191{bottom:852.133333pt;}
.y16a{bottom:852.933333pt;}
.y1c8{bottom:854.853333pt;}
.y1a3{bottom:859.173333pt;}
.yb{bottom:861.733333pt;}
.ye7{bottom:864.453333pt;}
.y86{bottom:868.133333pt;}
.y1c7{bottom:870.213333pt;}
.y190{bottom:871.013333pt;}
.y1a2{bottom:876.933333pt;}
.y122{bottom:878.040000pt;}
.y11f{bottom:878.053333pt;}
.y1fe{bottom:879.653333pt;}
.ye6{bottom:882.213333pt;}
.y85{bottom:885.733333pt;}
.y1c6{bottom:885.893333pt;}
.y18f{bottom:888.293333pt;}
.ya{bottom:891.493333pt;}
.y1fd{bottom:895.013333pt;}
.y1a1{bottom:895.333333pt;}
.ye5{bottom:899.813333pt;}
.y84{bottom:903.333333pt;}
.y1fc{bottom:910.373333pt;}
.y1a0{bottom:916.933333pt;}
.ye4{bottom:917.413333pt;}
.y1c5{bottom:919.813333pt;}
.y83{bottom:920.933333pt;}
.y9{bottom:923.653333pt;}
.y1fb{bottom:925.733333pt;}
.ye3{bottom:935.013333pt;}
.y1c4{bottom:935.173333pt;}
.y118{bottom:936.453333pt;}
.y82{bottom:938.533333pt;}
.y1fa{bottom:941.093333pt;}
.y8{bottom:945.093333pt;}
.ye2{bottom:953.413333pt;}
.y81{bottom:956.133333pt;}
.y1f9{bottom:956.293333pt;}
.y117{bottom:957.413333pt;}
.y6b{bottom:974.400000pt;}
.y1{bottom:996.640000pt;}
.y7f{bottom:998.400000pt;}
.y47{bottom:1010.880000pt;}
.h7{height:5.025000pt;}
.h17{height:5.160000pt;}
.h55{height:5.562500pt;}
.h3{height:12.000000pt;}
.h30{height:14.066667pt;}
.h31{height:14.098667pt;}
.h2f{height:14.226667pt;}
.h1a{height:15.040000pt;}
.h22{height:19.680000pt;}
.h16{height:20.728125pt;}
.h2a{height:26.368125pt;}
.hd{height:26.381250pt;}
.hf{height:27.523125pt;}
.h2b{height:27.628404pt;}
.h5{height:30.400000pt;}
.h2e{height:31.026667pt;}
.h20{height:32.250000pt;}
.h14{height:35.114107pt;}
.h6{height:36.431250pt;}
.h45{height:36.786667pt;}
.h46{height:36.796000pt;}
.h47{height:36.800000pt;}
.h54{height:37.116563pt;}
.h21{height:37.410000pt;}
.h27{height:38.877839pt;}
.h11{height:39.571875pt;}
.hc{height:40.103437pt;}
.h19{height:40.635000pt;}
.h12{height:41.442606pt;}
.h38{height:42.063437pt;}
.h13{height:42.084375pt;}
.h1b{height:43.215000pt;}
.h15{height:47.109375pt;}
.h1c{height:48.375000pt;}
.h3d{height:49.106667pt;}
.h3e{height:49.116000pt;}
.h3f{height:49.120000pt;}
.h10{height:49.148438pt;}
.h1e{height:49.336436pt;}
.h18{height:51.360000pt;}
.h26{height:52.108438pt;}
.h4{height:52.134375pt;}
.h2d{height:53.535000pt;}
.h28{height:54.598989pt;}
.h52{height:55.298750pt;}
.h35{height:56.306667pt;}
.h36{height:56.312000pt;}
.h37{height:56.320000pt;}
.hb{height:57.787500pt;}
.h2{height:58.563750pt;}
.he{height:60.288750pt;}
.h41{height:61.276000pt;}
.h40{height:61.280000pt;}
.h29{height:62.781250pt;}
.h32{height:62.812500pt;}
.ha{height:64.500000pt;}
.h23{height:66.625000pt;}
.h25{height:66.750000pt;}
.h53{height:69.660000pt;}
.h2c{height:70.228214pt;}
.h9{height:75.465000pt;}
.h8{height:77.951250pt;}
.h1f{height:83.880000pt;}
.h48{height:85.746667pt;}
.h49{height:85.756000pt;}
.h4a{height:85.760000pt;}
.h39{height:98.066667pt;}
.h3a{height:98.072000pt;}
.h3b{height:98.080000pt;}
.h4f{height:98.226667pt;}
.h50{height:98.232000pt;}
.h51{height:98.240000pt;}
.h4d{height:110.418667pt;}
.h4e{height:110.420000pt;}
.h42{height:110.426667pt;}
.h43{height:110.432000pt;}
.h44{height:110.440000pt;}
.h24{height:128.800000pt;}
.h33{height:155.186667pt;}
.h34{height:155.200000pt;}
.h4c{height:209.293333pt;}
.h4b{height:209.306667pt;}
.h1d{height:338.146667pt;}
.h3c{height:346.106667pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.wc{width:48.000000pt;}
.wd{width:65.952000pt;}
.w3{width:72.952000pt;}
.w10{width:77.592000pt;}
.w14{width:77.600000pt;}
.we{width:108.018667pt;}
.wb{width:113.778667pt;}
.w16{width:125.620000pt;}
.w5{width:137.306667pt;}
.wf{width:138.066667pt;}
.w11{width:138.093333pt;}
.wa{width:160.346667pt;}
.w8{width:162.253333pt;}
.w13{width:184.826667pt;}
.w17{width:186.106667pt;}
.w15{width:240.053333pt;}
.w12{width:240.066667pt;}
.w18{width:328.853333pt;}
.w19{width:328.866667pt;}
.w7{width:473.546667pt;}
.w4{width:568.760000pt;}
.w2{width:641.720000pt;}
.w9{width:660.600000pt;}
.w6{width:664.120000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x39{left:3.780000pt;}
.x2{left:7.192000pt;}
.x30{left:8.306667pt;}
.x12{left:9.592000pt;}
.x2e{left:11.986667pt;}
.x35{left:13.760000pt;}
.x21{left:15.040000pt;}
.x2d{left:16.000000pt;}
.x23{left:17.280000pt;}
.x18{left:18.893333pt;}
.x26{left:21.920000pt;}
.x36{left:27.680000pt;}
.x25{left:32.640000pt;}
.x38{left:33.920000pt;}
.x2f{left:37.760000pt;}
.x37{left:39.840000pt;}
.x31{left:44.346667pt;}
.x2a{left:47.866667pt;}
.x27{left:51.346667pt;}
.x28{left:55.360000pt;}
.x3{left:65.746667pt;}
.x33{left:68.640000pt;}
.x16{left:71.560000pt;}
.x13{left:72.680000pt;}
.x11{left:82.760000pt;}
.x15{left:83.720000pt;}
.x2c{left:88.346667pt;}
.x1{left:96.032000pt;}
.x1d{left:101.632000pt;}
.x1a{left:105.312000pt;}
.x6{left:108.032000pt;}
.x1c{left:114.112000pt;}
.xe{left:117.952000pt;}
.xb{left:120.672000pt;}
.x34{left:132.666667pt;}
.xd{left:135.226667pt;}
.xc{left:136.666667pt;}
.x1b{left:165.306667pt;}
.x4{left:169.000000pt;}
.x29{left:173.640000pt;}
.x1f{left:179.720000pt;}
.x7{left:192.826667pt;}
.x32{left:221.666667pt;}
.x14{left:269.346667pt;}
.x17{left:275.866667pt;}
.x20{left:293.506667pt;}
.x9{left:298.626667pt;}
.x2b{left:311.746667pt;}
.x22{left:341.506667pt;}
.x8{left:393.853333pt;}
.x5{left:396.893333pt;}
.xa{left:408.093333pt;}
.xf{left:434.813333pt;}
.x10{left:436.253333pt;}
.x24{left:515.493333pt;}
.x19{left:551.336000pt;}
.x1e{left:636.773333pt;}
}




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