
    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_d9a235825d1a07d3021ee8e2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_3fad23651264ac28e207d361.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_19403ea88f27c317e2a19229.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_2abdb41edf0fb4fbc5d3cf9c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.966309;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_82aa7add26d3e72a4a28ac5b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.736816;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_436eab73a76ee026c9329ace.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5b9522b845cd00134c0aede4.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_be6648f53c7a2a6540508a45.woff')format("woff");}.ff9{font-family:ff9;line-height:0.932129;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_378d45f2fab773d379671224.woff')format("woff");}.ffa{font-family:ffa;line-height:0.966309;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_5d66dc4262b6c9dc5381c05a.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_7f4a0bb350ec102a1f355b95.woff')format("woff");}.ffc{font-family:ffc;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;}
.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:-70.560000px;}
.v5{vertical-align:-69.120000px;}
.v3{vertical-align:-60.600000px;}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.lsc{letter-spacing:-1.440000px;}
.ls15{letter-spacing:-1.422000px;}
.lsf{letter-spacing:-0.954000px;}
.ls17{letter-spacing:-0.936000px;}
.ls16{letter-spacing:-0.864000px;}
.ls7{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.630000px;}
.ls14{letter-spacing:-0.507000px;}
.ls8{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.089400px;}
.lsa{letter-spacing:-0.072000px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.020160px;}
.ls19{letter-spacing:0.032160px;}
.lsd{letter-spacing:0.120000px;}
.ls1a{letter-spacing:0.140160px;}
.ls11{letter-spacing:0.164160px;}
.ls9{letter-spacing:0.466800px;}
.ls3{letter-spacing:0.493920px;}
.lse{letter-spacing:0.507000px;}
.ls0{letter-spacing:0.720000px;}
.ls1{letter-spacing:0.840000px;}
.ls4{letter-spacing:1.080000px;}
.ls1f{letter-spacing:9.360000px;}
.ls1e{letter-spacing:10.800000px;}
.ls1d{letter-spacing:16.450560px;}
.ls12{letter-spacing:23.940000px;}
.ls10{letter-spacing:46.546560px;}
.ls1c{letter-spacing:46.690560px;}
.ls1b{letter-spacing:147.600000px;}
.ls13{letter-spacing:147.720000px;}
.ls20{letter-spacing:176.544000px;}
.ls18{letter-spacing:208.080000px;}
.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:-16.560000px;}
.ws6{word-spacing:-15.586800px;}
.ws7{word-spacing:-15.140160px;}
.ws2{word-spacing:-15.120000px;}
.wsd{word-spacing:-14.613000px;}
.wsc{word-spacing:-14.166000px;}
.wse{word-spacing:-13.698000px;}
.ws5{word-spacing:-13.680000px;}
.ws9{word-spacing:-13.050000px;}
.wsa{word-spacing:-12.240000px;}
.ws3{word-spacing:-11.160000px;}
.ws4{word-spacing:-10.440000px;}
.ws1{word-spacing:-9.720000px;}
.ws8{word-spacing:-8.928000px;}
.wsb{word-spacing:0.000000px;}
._30{margin-left:-7.808160px;}
._31{margin-left:-6.526080px;}
._2f{margin-left:-4.569120px;}
._5{margin-left:-3.185280px;}
._3{margin-left:-2.119680px;}
._4{margin-left:-1.097280px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._6{width:4.981920px;}
._b{width:6.411840px;}
._8{width:7.430400px;}
._7{width:8.809920px;}
._9{width:10.632480px;}
._a{width:12.242880px;}
._c{width:13.907520px;}
._34{width:16.531200px;}
._1d{width:17.876160px;}
._33{width:19.293120px;}
._32{width:20.773440px;}
._d{width:22.443840px;}
._e{width:24.312960px;}
._37{width:25.684800px;}
._22{width:26.850240px;}
._21{width:28.494720px;}
._35{width:29.992320px;}
._36{width:31.060800px;}
._20{width:32.394240px;}
._2d{width:34.361280px;}
._10{width:37.843200px;}
._15{width:40.040640px;}
._14{width:41.097600px;}
._19{width:42.649920px;}
._1e{width:44.233920px;}
._1f{width:45.993600px;}
._11{width:56.592000px;}
._1b{width:62.758080px;}
._1a{width:64.540800px;}
._2e{width:80.317440px;}
._27{width:83.534400px;}
._16{width:95.497920px;}
._17{width:96.675840px;}
._2a{width:106.472640px;}
._18{width:110.888640px;}
._12{width:116.058240px;}
._13{width:117.524160px;}
._2c{width:133.784640px;}
._26{width:174.856320px;}
._24{width:181.287360px;}
._29{width:192.545280px;}
._23{width:201.421440px;}
._f{width:212.860800px;}
._28{width:242.746560px;}
._25{width:253.771200px;}
._2b{width:276.189120px;}
._1c{width:315.734400px;}
.fc4{color:rgb(79,129,189);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fsa{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs8{font-size:54.720000px;}
.fs3{font-size:57.600000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:83.520000px;}
.fsb{font-size:83.664000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y4f{bottom:2.875500px;}
.y102{bottom:3.585000px;}
.yb1{bottom:3.600000px;}
.yba{bottom:3.945000px;}
.y163{bottom:3.949500px;}
.yc2{bottom:3.955500px;}
.y45{bottom:3.960000px;}
.y106{bottom:3.990000px;}
.y112{bottom:3.991500px;}
.y5{bottom:4.320000px;}
.y5d{bottom:5.370000px;}
.y188{bottom:5.745000px;}
.y18c{bottom:6.105000px;}
.y18a{bottom:6.150000px;}
.y1a0{bottom:6.825000px;}
.y18e{bottom:7.185000px;}
.y2{bottom:10.080000px;}
.y4e{bottom:10.795500px;}
.y13a{bottom:15.105000px;}
.y13c{bottom:15.465000px;}
.y5b{bottom:15.835500px;}
.y101{bottom:20.865000px;}
.yc6{bottom:20.880000px;}
.yb9{bottom:21.225000px;}
.yc1{bottom:21.235500px;}
.y44{bottom:21.240000px;}
.y4{bottom:23.400000px;}
.y5a{bottom:31.315500px;}
.y43{bottom:38.160000px;}
.ybd{bottom:38.505000px;}
.yc0{bottom:38.515500px;}
.yb4{bottom:38.520000px;}
.yb8{bottom:38.535000px;}
.y4d{bottom:40.315500px;}
.y3{bottom:47.880000px;}
.y59{bottom:48.631500px;}
.y4c{bottom:52.231500px;}
.y42{bottom:55.440000px;}
.ybf{bottom:55.474500px;}
.ybc{bottom:55.785000px;}
.yb3{bottom:55.800000px;}
.yb7{bottom:55.815000px;}
.y7{bottom:57.636000px;}
.y58{bottom:64.474500px;}
.y4b{bottom:65.194500px;}
.y41{bottom:72.720000px;}
.yc5{bottom:72.765000px;}
.yb6{bottom:73.095000px;}
.y4a{bottom:78.154500px;}
.y57{bottom:80.314500px;}
.y40{bottom:90.000000px;}
.y56{bottom:92.914500px;}
.y166{bottom:94.360500px;}
.y12d{bottom:96.876000px;}
.y46{bottom:97.600500px;}
.ybe{bottom:98.320500px;}
.y55{bottom:99.394500px;}
.y49{bottom:100.114500px;}
.yf7{bottom:102.276000px;}
.y114{bottom:102.640500px;}
.y1ea{bottom:102.996000px;}
.y1a4{bottom:104.436000px;}
.y153{bottom:106.236000px;}
.y212{bottom:106.596000px;}
.y3f{bottom:107.325000px;}
.y8a{bottom:108.396000px;}
.y165{bottom:112.360500px;}
.y12c{bottom:114.156000px;}
.y54{bottom:115.234500px;}
.yf6{bottom:119.556000px;}
.y1c4{bottom:120.276000px;}
.y113{bottom:120.640500px;}
.y1a3{bottom:121.716000px;}
.y152{bottom:123.516000px;}
.y211{bottom:123.876000px;}
.y3e{bottom:124.605000px;}
.y89{bottom:125.676000px;}
.y164{bottom:130.360500px;}
.y53{bottom:130.714500px;}
.y12b{bottom:131.436000px;}
.y1c3{bottom:134.320500px;}
.yf5{bottom:136.476000px;}
.y1e9{bottom:137.556000px;}
.y1a2{bottom:138.636000px;}
.y111{bottom:138.640500px;}
.y151{bottom:140.796000px;}
.y210{bottom:141.156000px;}
.y3d{bottom:141.885000px;}
.y88{bottom:142.992000px;}
.y52{bottom:146.194500px;}
.y162{bottom:148.405500px;}
.y12a{bottom:148.752000px;}
.y1c2{bottom:152.370000px;}
.y1a1{bottom:153.090000px;}
.yf4{bottom:153.795000px;}
.y1e8{bottom:154.515000px;}
.y110{bottom:156.690000px;}
.y150{bottom:158.475000px;}
.y3c{bottom:159.165000px;}
.y87{bottom:160.275000px;}
.y51{bottom:161.674500px;}
.y48{bottom:162.394500px;}
.y17b{bottom:165.675000px;}
.y129{bottom:166.035000px;}
.y161{bottom:166.410000px;}
.ybb{bottom:167.850000px;}
.y1c1{bottom:170.370000px;}
.yf3{bottom:171.075000px;}
.y1e7{bottom:171.795000px;}
.y19f{bottom:172.890000px;}
.y47{bottom:173.194500px;}
.y10f{bottom:174.690000px;}
.y14f{bottom:175.755000px;}
.y3b{bottom:176.445000px;}
.y50{bottom:176.824500px;}
.y86{bottom:177.555000px;}
.y17a{bottom:179.355000px;}
.y128{bottom:183.315000px;}
.yf2{bottom:187.995000px;}
.y1c0{bottom:188.370000px;}
.y1e6{bottom:189.075000px;}
.y14e{bottom:193.035000px;}
.y3a{bottom:193.725000px;}
.y85{bottom:194.835000px;}
.y10e{bottom:196.275000px;}
.y19e{bottom:197.715000px;}
.y127{bottom:200.235000px;}
.y160{bottom:205.635000px;}
.y1e5{bottom:206.355000px;}
.y1bf{bottom:206.370000px;}
.y14d{bottom:210.315000px;}
.y39{bottom:211.005000px;}
.y84{bottom:212.115000px;}
.yf1{bottom:214.635000px;}
.y19d{bottom:215.355000px;}
.y126{bottom:217.515000px;}
.y10d{bottom:222.915000px;}
.y1e4{bottom:223.635000px;}
.y14c{bottom:227.235000px;}
.y20f{bottom:227.595000px;}
.y38{bottom:227.925000px;}
.y1be{bottom:227.955000px;}
.y83{bottom:229.395000px;}
.yf0{bottom:231.915000px;}
.y19c{bottom:232.635000px;}
.y125{bottom:234.435000px;}
.yb5{bottom:237.690000px;}
.y10c{bottom:240.195000px;}
.y1e3{bottom:240.915000px;}
.y14b{bottom:244.155000px;}
.y20e{bottom:244.515000px;}
.y37{bottom:244.875000px;}
.y1bd{bottom:245.595000px;}
.y82{bottom:246.675000px;}
.y124{bottom:248.475000px;}
.yef{bottom:249.195000px;}
.y19b{bottom:249.915000px;}
.y10b{bottom:257.475000px;}
.y14a{bottom:258.195000px;}
.y20d{bottom:261.795000px;}
.y1bc{bottom:262.515000px;}
.y81{bottom:263.955000px;}
.yee{bottom:266.475000px;}
.y19a{bottom:267.195000px;}
.y36{bottom:271.155000px;}
.y15f{bottom:274.425000px;}
.y10a{bottom:274.785000px;}
.y1e2{bottom:275.505000px;}
.y20c{bottom:279.105000px;}
.y1bb{bottom:279.825000px;}
.y80{bottom:280.905000px;}
.yed{bottom:283.785000px;}
.y199{bottom:284.505000px;}
.y35{bottom:286.635000px;}
.y15e{bottom:288.105000px;}
.y109{bottom:292.065000px;}
.y1e1{bottom:292.785000px;}
.y20b{bottom:296.385000px;}
.y1ba{bottom:297.105000px;}
.y7f{bottom:298.185000px;}
.yf{bottom:300.345000px;}
.yec{bottom:301.065000px;}
.y34{bottom:302.115000px;}
.y198{bottom:307.545000px;}
.y108{bottom:308.985000px;}
.y1e0{bottom:310.065000px;}
.y20a{bottom:313.665000px;}
.y1b9{bottom:314.385000px;}
.y7e{bottom:315.465000px;}
.y1e{bottom:317.235000px;}
.y33{bottom:317.595000px;}
.yeb{bottom:318.345000px;}
.y107{bottom:322.665000px;}
.yb2{bottom:324.825000px;}
.y197{bottom:325.545000px;}
.y1df{bottom:327.345000px;}
.y209{bottom:330.945000px;}
.y1b8{bottom:331.665000px;}
.y7d{bottom:332.745000px;}
.y32{bottom:333.075000px;}
.yea{bottom:335.265000px;}
.y1d{bottom:341.355000px;}
.y1de{bottom:344.265000px;}
.y196{bottom:347.145000px;}
.y208{bottom:348.225000px;}
.y31{bottom:348.555000px;}
.y1b7{bottom:348.945000px;}
.y7c{bottom:350.025000px;}
.ye9{bottom:361.545000px;}
.y1b6{bottom:362.985000px;}
.y30{bottom:364.035000px;}
.y195{bottom:364.425000px;}
.y207{bottom:365.505000px;}
.y1c{bottom:365.835000px;}
.y7b{bottom:367.305000px;}
.ye8{bottom:378.825000px;}
.y2f{bottom:379.545000px;}
.y1b5{bottom:380.985000px;}
.y194{bottom:381.705000px;}
.y206{bottom:382.785000px;}
.y7a{bottom:384.585000px;}
.y1b{bottom:389.985000px;}
.yb0{bottom:394.665000px;}
.y2e{bottom:395.385000px;}
.y1dd{bottom:395.745000px;}
.ye7{bottom:396.105000px;}
.y193{bottom:398.985000px;}
.y205{bottom:400.065000px;}
.y79{bottom:401.865000px;}
.y2d{bottom:410.865000px;}
.ye6{bottom:413.430000px;}
.y1a{bottom:414.105000px;}
.yaf{bottom:416.310000px;}
.y1b4{bottom:417.030000px;}
.y204{bottom:417.390000px;}
.y78{bottom:419.190000px;}
.y1dc{bottom:422.430000px;}
.y2c{bottom:426.345000px;}
.ye5{bottom:430.710000px;}
.y192{bottom:433.590000px;}
.y203{bottom:434.670000px;}
.y77{bottom:436.470000px;}
.y19{bottom:438.225000px;}
.y1db{bottom:439.710000px;}
.y2b{bottom:441.825000px;}
.yae{bottom:442.590000px;}
.ye4{bottom:447.990000px;}
.y191{bottom:450.510000px;}
.y202{bottom:451.590000px;}
.y76{bottom:453.750000px;}
.y1b3{bottom:456.270000px;}
.y1da{bottom:456.990000px;}
.y2a{bottom:457.305000px;}
.yad{bottom:459.870000px;}
.y18{bottom:462.345000px;}
.y190{bottom:464.550000px;}
.ye3{bottom:465.270000px;}
.y201{bottom:468.870000px;}
.y75{bottom:470.670000px;}
.y29{bottom:472.785000px;}
.y1b2{bottom:473.550000px;}
.y1d9{bottom:474.270000px;}
.yac{bottom:477.150000px;}
.ye2{bottom:482.550000px;}
.y200{bottom:486.150000px;}
.y17{bottom:486.465000px;}
.y74{bottom:487.950000px;}
.y28{bottom:488.265000px;}
.y1b1{bottom:490.830000px;}
.y1d8{bottom:491.550000px;}
.yab{bottom:494.430000px;}
.y179{bottom:495.870000px;}
.ye1{bottom:499.830000px;}
.y1ff{bottom:503.430000px;}
.y27{bottom:503.790000px;}
.y73{bottom:505.230000px;}
.y1b0{bottom:508.110000px;}
.y1d7{bottom:508.830000px;}
.y178{bottom:509.910000px;}
.y16{bottom:510.630000px;}
.yaa{bottom:511.710000px;}
.y123{bottom:515.310000px;}
.ye0{bottom:517.110000px;}
.y26{bottom:519.270000px;}
.y1fe{bottom:520.710000px;}
.y72{bottom:522.510000px;}
.y1d6{bottom:522.870000px;}
.y1af{bottom:525.390000px;}
.y177{bottom:527.910000px;}
.ya9{bottom:528.990000px;}
.y122{bottom:529.710000px;}
.ydf{bottom:534.390000px;}
.y15{bottom:534.750000px;}
.y25{bottom:535.110000px;}
.y1fd{bottom:538.020000px;}
.y71{bottom:539.820000px;}
.y1d5{bottom:540.900000px;}
.y1ae{bottom:542.340000px;}
.y176{bottom:545.940000px;}
.ya8{bottom:546.300000px;}
.y121{bottom:547.740000px;}
.y24{bottom:550.590000px;}
.yde{bottom:551.340000px;}
.y1fc{bottom:555.300000px;}
.y70{bottom:557.100000px;}
.y14{bottom:558.870000px;}
.y1d4{bottom:558.900000px;}
.y1ad{bottom:559.260000px;}
.y15d{bottom:562.140000px;}
.ya7{bottom:563.580000px;}
.y175{bottom:563.940000px;}
.y120{bottom:565.380000px;}
.y23{bottom:566.070000px;}
.ydd{bottom:568.620000px;}
.y149{bottom:569.340000px;}
.y1fb{bottom:572.580000px;}
.y1ac{bottom:573.300000px;}
.y6f{bottom:574.380000px;}
.y15c{bottom:576.180000px;}
.y1d3{bottom:576.900000px;}
.ya6{bottom:580.860000px;}
.y22{bottom:581.550000px;}
.y174{bottom:581.940000px;}
.y13{bottom:582.990000px;}
.y11f{bottom:583.380000px;}
.ydc{bottom:585.900000px;}
.y148{bottom:587.340000px;}
.y1fa{bottom:589.860000px;}
.y6e{bottom:591.660000px;}
.y15b{bottom:594.180000px;}
.y1d2{bottom:594.900000px;}
.y21{bottom:597.030000px;}
.ya5{bottom:598.140000px;}
.y11e{bottom:601.380000px;}
.ydb{bottom:603.180000px;}
.y173{bottom:603.540000px;}
.y147{bottom:605.340000px;}
.y12{bottom:607.110000px;}
.y1f9{bottom:607.140000px;}
.y6d{bottom:608.940000px;}
.y15a{bottom:612.180000px;}
.y20{bottom:612.510000px;}
.ya4{bottom:615.420000px;}
.y1d1{bottom:616.500000px;}
.yda{bottom:620.460000px;}
.y172{bottom:620.820000px;}
.y146{bottom:623.340000px;}
.y1f8{bottom:624.420000px;}
.y6c{bottom:626.220000px;}
.y11{bottom:631.230000px;}
.ya3{bottom:632.340000px;}
.y159{bottom:633.780000px;}
.y1d0{bottom:634.140000px;}
.yd9{bottom:637.380000px;}
.y11d{bottom:640.620000px;}
.y1f7{bottom:641.340000px;}
.y1f{bottom:643.140000px;}
.y6b{bottom:643.500000px;}
.y145{bottom:644.940000px;}
.y171{bottom:647.460000px;}
.ya2{bottom:649.620000px;}
.y158{bottom:651.060000px;}
.y1cf{bottom:651.420000px;}
.y10{bottom:655.380000px;}
.y214{bottom:657.540000px;}
.y11c{bottom:657.900000px;}
.y1f6{bottom:658.620000px;}
.y6a{bottom:660.780000px;}
.y144{bottom:662.580000px;}
.yd8{bottom:663.660000px;}
.y170{bottom:664.740000px;}
.ya1{bottom:666.900000px;}
.y105{bottom:668.340000px;}
.y11b{bottom:675.210000px;}
.y1f5{bottom:675.930000px;}
.y143{bottom:679.890000px;}
.yd7{bottom:680.970000px;}
.y16f{bottom:682.050000px;}
.y213{bottom:683.850000px;}
.ya0{bottom:684.210000px;}
.y157{bottom:685.650000px;}
.y69{bottom:686.370000px;}
.y104{bottom:686.385000px;}
.y11a{bottom:692.490000px;}
.y1f4{bottom:693.210000px;}
.y16e{bottom:696.105000px;}
.y142{bottom:697.170000px;}
.yd6{bottom:698.250000px;}
.y68{bottom:700.410000px;}
.y9f{bottom:701.490000px;}
.y156{bottom:702.570000px;}
.y1ce{bottom:702.930000px;}
.y103{bottom:704.385000px;}
.y119{bottom:709.770000px;}
.y1f3{bottom:710.490000px;}
.y16d{bottom:714.105000px;}
.y141{bottom:714.450000px;}
.yd5{bottom:715.530000px;}
.y155{bottom:716.250000px;}
.y1cd{bottom:716.985000px;}
.y9e{bottom:718.770000px;}
.y100{bottom:722.385000px;}
.y118{bottom:727.050000px;}
.y1f2{bottom:727.770000px;}
.y140{bottom:731.010000px;}
.yd4{bottom:732.810000px;}
.y1cc{bottom:734.985000px;}
.y16c{bottom:735.690000px;}
.y9d{bottom:736.050000px;}
.y117{bottom:744.330000px;}
.y18f{bottom:745.050000px;}
.yd3{bottom:750.090000px;}
.y1cb{bottom:752.985000px;}
.y9c{bottom:753.330000px;}
.y13f{bottom:757.650000px;}
.y18d{bottom:759.105000px;}
.y116{bottom:761.250000px;}
.y16b{bottom:762.330000px;}
.yd2{bottom:767.010000px;}
.y9b{bottom:770.610000px;}
.y1ca{bottom:770.985000px;}
.y115{bottom:774.930000px;}
.yff{bottom:778.890000px;}
.y16a{bottom:779.610000px;}
.y18b{bottom:780.345000px;}
.yd1{bottom:784.290000px;}
.y9a{bottom:787.890000px;}
.y13e{bottom:792.210000px;}
.y1c9{bottom:792.570000px;}
.yfe{bottom:796.170000px;}
.y169{bottom:796.890000px;}
.y189{bottom:800.505000px;}
.yd0{bottom:801.615000px;}
.y99{bottom:805.215000px;}
.y13d{bottom:809.535000px;}
.y1c8{bottom:810.255000px;}
.yfd{bottom:813.495000px;}
.y168{bottom:813.855000px;}
.y1f1{bottom:814.215000px;}
.y1ab{bottom:817.815000px;}
.y187{bottom:820.710000px;}
.y98{bottom:822.495000px;}
.y13b{bottom:823.590000px;}
.y167{bottom:827.535000px;}
.ycf{bottom:828.255000px;}
.yfc{bottom:830.415000px;}
.y1f0{bottom:831.495000px;}
.y1aa{bottom:831.870000px;}
.y97{bottom:839.415000px;}
.y186{bottom:844.455000px;}
.y1c7{bottom:844.815000px;}
.yce{bottom:845.535000px;}
.yfb{bottom:847.695000px;}
.y1ef{bottom:848.415000px;}
.y1a9{bottom:849.870000px;}
.y139{bottom:853.830000px;}
.y96{bottom:856.695000px;}
.y185{bottom:862.095000px;}
.ycd{bottom:862.815000px;}
.yfa{bottom:864.615000px;}
.y1ee{bottom:865.695000px;}
.y1a8{bottom:867.870000px;}
.y95{bottom:873.975000px;}
.y184{bottom:879.375000px;}
.ycc{bottom:880.095000px;}
.y1ed{bottom:882.975000px;}
.y1a7{bottom:885.870000px;}
.y138{bottom:887.295000px;}
.y94{bottom:891.255000px;}
.y183{bottom:896.655000px;}
.ycb{bottom:897.015000px;}
.y1ec{bottom:900.255000px;}
.y1a6{bottom:903.870000px;}
.y137{bottom:904.935000px;}
.y1c6{bottom:905.295000px;}
.y93{bottom:908.535000px;}
.y182{bottom:913.935000px;}
.y1eb{bottom:917.535000px;}
.y1c5{bottom:918.975000px;}
.y136{bottom:922.215000px;}
.yca{bottom:923.655000px;}
.y1a5{bottom:925.455000px;}
.y92{bottom:925.815000px;}
.y181{bottom:931.215000px;}
.y67{bottom:934.845000px;}
.y135{bottom:939.165000px;}
.yc9{bottom:940.965000px;}
.y91{bottom:943.125000px;}
.y180{bottom:948.165000px;}
.y66{bottom:952.125000px;}
.y134{bottom:956.445000px;}
.yc8{bottom:958.245000px;}
.yf9{bottom:960.045000px;}
.y90{bottom:960.405000px;}
.y17f{bottom:962.565000px;}
.ye{bottom:967.965000px;}
.y65{bottom:969.405000px;}
.yd{bottom:973.005000px;}
.y133{bottom:973.725000px;}
.yc7{bottom:974.805000px;}
.y8f{bottom:977.685000px;}
.y64{bottom:986.685000px;}
.y132{bottom:991.005000px;}
.y8e{bottom:994.965000px;}
.y154{bottom:996.045000px;}
.yc{bottom:997.485000px;}
.yc4{bottom:998.565000px;}
.y63{bottom:1003.965000px;}
.y8d{bottom:1012.245000px;}
.y131{bottom:1014.045000px;}
.yb{bottom:1014.765000px;}
.y17e{bottom:1015.485000px;}
.y62{bottom:1021.245000px;}
.ya{bottom:1024.845000px;}
.y8c{bottom:1029.165000px;}
.y130{bottom:1032.045000px;}
.y17d{bottom:1033.485000px;}
.y61{bottom:1038.165000px;}
.y9{bottom:1044.285000px;}
.y8b{bottom:1046.085000px;}
.y12f{bottom:1050.045000px;}
.y17c{bottom:1055.085000px;}
.y60{bottom:1055.445000px;}
.y12e{bottom:1068.090000px;}
.y8{bottom:1072.050000px;}
.y5f{bottom:1072.770000px;}
.y5c{bottom:1075.320000px;}
.yc3{bottom:1085.370000px;}
.yf8{bottom:1089.690000px;}
.y5e{bottom:1090.050000px;}
.y6{bottom:1108.050000px;}
.y1{bottom:1123.530000px;}
.h15{height:5.650313px;}
.h25{height:16.920000px;}
.h26{height:16.950000px;}
.h1d{height:17.265000px;}
.h28{height:17.266500px;}
.h23{height:17.275500px;}
.h24{height:17.280000px;}
.h18{height:17.310000px;}
.h22{height:17.311500px;}
.h21{height:17.316000px;}
.h2d{height:19.065000px;}
.h2a{height:19.425000px;}
.h2b{height:19.461000px;}
.h2c{height:20.505000px;}
.h16{height:27.720000px;}
.h27{height:29.145000px;}
.h13{height:29.678906px;}
.h29{height:34.185000px;}
.h20{height:34.545000px;}
.h12{height:35.332031px;}
.ha{height:38.158594px;}
.hd{height:40.985156px;}
.hc{height:42.086250px;}
.h1a{height:43.322344px;}
.he{height:53.677969px;}
.h14{height:55.147500px;}
.h7{height:58.050000px;}
.h6{height:59.357813px;}
.h10{height:60.155156px;}
.hf{height:60.952500px;}
.h1f{height:62.163910px;}
.h17{height:63.565031px;}
.h8{height:63.577969px;}
.h5{height:65.010937px;}
.h3{height:65.884219px;}
.h9{height:66.543750px;}
.h1c{height:68.791500px;}
.h19{height:69.105000px;}
.h2{height:84.990000px;}
.h1e{height:86.070000px;}
.h1b{height:86.400000px;}
.h4{height:116.640000px;}
.h11{height:202.005000px;}
.hb{height:664.725000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w18{width:44.640000px;}
.w25{width:48.981000px;}
.w3d{width:50.421000px;}
.w32{width:55.461000px;}
.w31{width:59.796000px;}
.w38{width:60.141000px;}
.w1e{width:63.750000px;}
.wd{width:68.781000px;}
.w16{width:69.105000px;}
.wb{width:73.470000px;}
.w24{width:77.796000px;}
.wc{width:78.876000px;}
.w2f{width:79.590000px;}
.w2d{width:87.156000px;}
.wf{width:91.470000px;}
.w19{width:97.596000px;}
.w10{width:98.676000px;}
.w2e{width:100.461000px;}
.w17{width:100.470000px;}
.w3b{width:104.112000px;}
.w1f{width:104.436000px;}
.w2{width:105.142500px;}
.w2b{width:108.000000px;}
.w11{width:110.205000px;}
.w29{width:110.550000px;}
.w36{width:113.436000px;}
.w27{width:113.472000px;}
.w34{width:115.992000px;}
.wa{width:117.030000px;}
.w20{width:119.910000px;}
.w3c{width:127.836000px;}
.w15{width:128.232000px;}
.w4{width:132.502500px;}
.w22{width:137.925000px;}
.w35{width:140.070000px;}
.w23{width:141.870000px;}
.w28{width:142.245000px;}
.w1b{width:146.901000px;}
.w39{width:153.435000px;}
.w1c{width:154.515000px;}
.w2a{width:157.395000px;}
.w3a{width:162.435000px;}
.w6{width:163.080000px;}
.w30{width:166.035000px;}
.w33{width:169.635000px;}
.we{width:171.765000px;}
.w7{width:172.125000px;}
.w26{width:174.315000px;}
.w21{width:181.155000px;}
.w8{width:184.035000px;}
.w9{width:184.395000px;}
.w1d{width:185.835000px;}
.w12{width:198.435000px;}
.w2c{width:200.235000px;}
.w13{width:204.915000px;}
.w14{width:205.635000px;}
.w37{width:211.035000px;}
.w1a{width:238.065000px;}
.w5{width:596.745000px;}
.w3{width:631.305000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x22{left:6.876000px;}
.x1a{left:8.295000px;}
.x59{left:9.720000px;}
.x38{left:12.240000px;}
.x15{left:14.386500px;}
.x18{left:16.186500px;}
.x4{left:17.625000px;}
.x17{left:19.426500px;}
.x31{left:21.945000px;}
.x2e{left:24.150000px;}
.x16{left:26.266500px;}
.x7d{left:28.125000px;}
.x1e{left:29.146500px;}
.x32{left:31.710000px;}
.x6{left:33.105000px;}
.x75{left:35.670000px;}
.x3b{left:37.830000px;}
.x3c{left:41.430000px;}
.x76{left:42.510000px;}
.x10{left:43.906500px;}
.x71{left:46.425000px;}
.x1d{left:47.542500px;}
.x51{left:48.600000px;}
.x11{left:50.782500px;}
.x14{left:53.302500px;}
.xf{left:55.102500px;}
.x20{left:57.262500px;}
.x52{left:58.725000px;}
.x5f{left:61.230000px;}
.x1b{left:62.295000px;}
.x1f{left:66.265500px;}
.x70{left:71.310000px;}
.x4c{left:73.845000px;}
.x1{left:78.529500px;}
.x5e{left:83.190000px;}
.x53{left:85.350000px;}
.x7{left:86.436000px;}
.x27{left:89.329500px;}
.x13{left:92.905500px;}
.x40{left:94.710000px;}
.x2{left:96.145500px;}
.x21{left:102.985500px;}
.x1c{left:106.945500px;}
.x2b{left:113.436000px;}
.x12{left:124.585500px;}
.x25{left:140.472000px;}
.x5{left:145.860000px;}
.x3{left:183.690000px;}
.x6c{left:186.570000px;}
.x43{left:200.235000px;}
.x36{left:209.610000px;}
.xb{left:217.875000px;}
.x19{left:218.970000px;}
.x5b{left:226.545000px;}
.x46{left:234.105000px;}
.x89{left:243.465000px;}
.x3e{left:244.545000px;}
.xc{left:246.705000px;}
.x35{left:248.145000px;}
.x72{left:252.105000px;}
.x4a{left:253.905000px;}
.x79{left:256.065000px;}
.x42{left:259.665000px;}
.x28{left:262.185000px;}
.x24{left:265.065000px;}
.x7b{left:267.585000px;}
.x7e{left:269.025000px;}
.x6b{left:272.985000px;}
.x2c{left:276.585000px;}
.x61{left:284.145000px;}
.x87{left:288.465000px;}
.x86{left:296.385000px;}
.x62{left:300.345000px;}
.x67{left:302.505000px;}
.x7f{left:303.585000px;}
.x7c{left:305.385000px;}
.x63{left:311.550000px;}
.x66{left:312.630000px;}
.x81{left:319.830000px;}
.x85{left:322.710000px;}
.x47{left:324.510000px;}
.x78{left:325.950000px;}
.x34{left:327.390000px;}
.x6d{left:329.550000px;}
.x6a{left:330.630000px;}
.x4f{left:335.310000px;}
.x4e{left:341.070000px;}
.x5c{left:347.190000px;}
.x26{left:348.270000px;}
.x55{left:349.710000px;}
.x56{left:351.150000px;}
.x57{left:362.310000px;}
.x5a{left:365.550000px;}
.x7a{left:366.990000px;}
.x37{left:382.110000px;}
.x2d{left:394.350000px;}
.x8a{left:409.860000px;}
.x48{left:425.700000px;}
.x58{left:426.780000px;}
.x50{left:431.460000px;}
.x6e{left:440.820000px;}
.x88{left:442.620000px;}
.x3f{left:443.700000px;}
.x29{left:446.940000px;}
.x44{left:450.900000px;}
.x73{left:453.060000px;}
.x64{left:454.140000px;}
.x82{left:460.620000px;}
.x2f{left:468.540000px;}
.x49{left:471.420000px;}
.x39{left:474.300000px;}
.x68{left:477.540000px;}
.x4b{left:492.705000px;}
.x83{left:522.585000px;}
.x5d{left:529.065000px;}
.x65{left:532.665000px;}
.x8b{left:538.425000px;}
.x74{left:540.945000px;}
.xd{left:544.170000px;}
.xa{left:545.250000px;}
.x30{left:548.145000px;}
.x3a{left:573.705000px;}
.x45{left:579.870000px;}
.x80{left:595.335000px;}
.x6f{left:598.950000px;}
.x41{left:608.655000px;}
.x69{left:618.735000px;}
.x84{left:622.695000px;}
.x2a{left:632.070000px;}
.x54{left:636.735000px;}
.x77{left:638.895000px;}
.x60{left:641.775000px;}
.x4d{left:646.455000px;}
.x3d{left:649.335000px;}
.x23{left:665.925000px;}
.x33{left:669.525000px;}
.x9{left:766.050000px;}
.x8{left:791.970000px;}
.xe{left:807.090000px;}
@media print{
.v4{vertical-align:-62.720000pt;}
.v5{vertical-align:-61.440000pt;}
.v3{vertical-align:-53.866667pt;}
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lsc{letter-spacing:-1.280000pt;}
.ls15{letter-spacing:-1.264000pt;}
.lsf{letter-spacing:-0.848000pt;}
.ls17{letter-spacing:-0.832000pt;}
.ls16{letter-spacing:-0.768000pt;}
.ls7{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.560000pt;}
.ls14{letter-spacing:-0.450667pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.079467pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.017920pt;}
.ls19{letter-spacing:0.028587pt;}
.lsd{letter-spacing:0.106667pt;}
.ls1a{letter-spacing:0.124587pt;}
.ls11{letter-spacing:0.145920pt;}
.ls9{letter-spacing:0.414933pt;}
.ls3{letter-spacing:0.439040pt;}
.lse{letter-spacing:0.450667pt;}
.ls0{letter-spacing:0.640000pt;}
.ls1{letter-spacing:0.746667pt;}
.ls4{letter-spacing:0.960000pt;}
.ls1f{letter-spacing:8.320000pt;}
.ls1e{letter-spacing:9.600000pt;}
.ls1d{letter-spacing:14.622720pt;}
.ls12{letter-spacing:21.280000pt;}
.ls10{letter-spacing:41.374720pt;}
.ls1c{letter-spacing:41.502720pt;}
.ls1b{letter-spacing:131.200000pt;}
.ls13{letter-spacing:131.306667pt;}
.ls20{letter-spacing:156.928000pt;}
.ls18{letter-spacing:184.960000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws6{word-spacing:-13.854933pt;}
.ws7{word-spacing:-13.457920pt;}
.ws2{word-spacing:-13.440000pt;}
.wsd{word-spacing:-12.989333pt;}
.wsc{word-spacing:-12.592000pt;}
.wse{word-spacing:-12.176000pt;}
.ws5{word-spacing:-12.160000pt;}
.ws9{word-spacing:-11.600000pt;}
.wsa{word-spacing:-10.880000pt;}
.ws3{word-spacing:-9.920000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws1{word-spacing:-8.640000pt;}
.ws8{word-spacing:-7.936000pt;}
.wsb{word-spacing:0.000000pt;}
._30{margin-left:-6.940587pt;}
._31{margin-left:-5.800960pt;}
._2f{margin-left:-4.061440pt;}
._5{margin-left:-2.831360pt;}
._3{margin-left:-1.884160pt;}
._4{margin-left:-0.975360pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._6{width:4.428373pt;}
._b{width:5.699413pt;}
._8{width:6.604800pt;}
._7{width:7.831040pt;}
._9{width:9.451093pt;}
._a{width:10.882560pt;}
._c{width:12.362240pt;}
._34{width:14.694400pt;}
._1d{width:15.889920pt;}
._33{width:17.149440pt;}
._32{width:18.465280pt;}
._d{width:19.950080pt;}
._e{width:21.611520pt;}
._37{width:22.830933pt;}
._22{width:23.866880pt;}
._21{width:25.328640pt;}
._35{width:26.659840pt;}
._36{width:27.609600pt;}
._20{width:28.794880pt;}
._2d{width:30.543360pt;}
._10{width:33.638400pt;}
._15{width:35.591680pt;}
._14{width:36.531200pt;}
._19{width:37.911040pt;}
._1e{width:39.319040pt;}
._1f{width:40.883200pt;}
._11{width:50.304000pt;}
._1b{width:55.784960pt;}
._1a{width:57.369600pt;}
._2e{width:71.393280pt;}
._27{width:74.252800pt;}
._16{width:84.887040pt;}
._17{width:85.934080pt;}
._2a{width:94.642347pt;}
._18{width:98.567680pt;}
._12{width:103.162880pt;}
._13{width:104.465920pt;}
._2c{width:118.919680pt;}
._26{width:155.427840pt;}
._24{width:161.144320pt;}
._29{width:171.151360pt;}
._23{width:179.041280pt;}
._f{width:189.209600pt;}
._28{width:215.774720pt;}
._25{width:225.574400pt;}
._2b{width:245.501440pt;}
._1c{width:280.652800pt;}
.fs6{font-size:5.120000pt;}
.fsa{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs8{font-size:48.640000pt;}
.fs3{font-size:51.200000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.240000pt;}
.fsb{font-size:74.368000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y4f{bottom:2.556000pt;}
.y102{bottom:3.186667pt;}
.yb1{bottom:3.200000pt;}
.yba{bottom:3.506667pt;}
.y163{bottom:3.510667pt;}
.yc2{bottom:3.516000pt;}
.y45{bottom:3.520000pt;}
.y106{bottom:3.546667pt;}
.y112{bottom:3.548000pt;}
.y5{bottom:3.840000pt;}
.y5d{bottom:4.773333pt;}
.y188{bottom:5.106667pt;}
.y18c{bottom:5.426667pt;}
.y18a{bottom:5.466667pt;}
.y1a0{bottom:6.066667pt;}
.y18e{bottom:6.386667pt;}
.y2{bottom:8.960000pt;}
.y4e{bottom:9.596000pt;}
.y13a{bottom:13.426667pt;}
.y13c{bottom:13.746667pt;}
.y5b{bottom:14.076000pt;}
.y101{bottom:18.546667pt;}
.yc6{bottom:18.560000pt;}
.yb9{bottom:18.866667pt;}
.yc1{bottom:18.876000pt;}
.y44{bottom:18.880000pt;}
.y4{bottom:20.800000pt;}
.y5a{bottom:27.836000pt;}
.y43{bottom:33.920000pt;}
.ybd{bottom:34.226667pt;}
.yc0{bottom:34.236000pt;}
.yb4{bottom:34.240000pt;}
.yb8{bottom:34.253333pt;}
.y4d{bottom:35.836000pt;}
.y3{bottom:42.560000pt;}
.y59{bottom:43.228000pt;}
.y4c{bottom:46.428000pt;}
.y42{bottom:49.280000pt;}
.ybf{bottom:49.310667pt;}
.ybc{bottom:49.586667pt;}
.yb3{bottom:49.600000pt;}
.yb7{bottom:49.613333pt;}
.y7{bottom:51.232000pt;}
.y58{bottom:57.310667pt;}
.y4b{bottom:57.950667pt;}
.y41{bottom:64.640000pt;}
.yc5{bottom:64.680000pt;}
.yb6{bottom:64.973333pt;}
.y4a{bottom:69.470667pt;}
.y57{bottom:71.390667pt;}
.y40{bottom:80.000000pt;}
.y56{bottom:82.590667pt;}
.y166{bottom:83.876000pt;}
.y12d{bottom:86.112000pt;}
.y46{bottom:86.756000pt;}
.ybe{bottom:87.396000pt;}
.y55{bottom:88.350667pt;}
.y49{bottom:88.990667pt;}
.yf7{bottom:90.912000pt;}
.y114{bottom:91.236000pt;}
.y1ea{bottom:91.552000pt;}
.y1a4{bottom:92.832000pt;}
.y153{bottom:94.432000pt;}
.y212{bottom:94.752000pt;}
.y3f{bottom:95.400000pt;}
.y8a{bottom:96.352000pt;}
.y165{bottom:99.876000pt;}
.y12c{bottom:101.472000pt;}
.y54{bottom:102.430667pt;}
.yf6{bottom:106.272000pt;}
.y1c4{bottom:106.912000pt;}
.y113{bottom:107.236000pt;}
.y1a3{bottom:108.192000pt;}
.y152{bottom:109.792000pt;}
.y211{bottom:110.112000pt;}
.y3e{bottom:110.760000pt;}
.y89{bottom:111.712000pt;}
.y164{bottom:115.876000pt;}
.y53{bottom:116.190667pt;}
.y12b{bottom:116.832000pt;}
.y1c3{bottom:119.396000pt;}
.yf5{bottom:121.312000pt;}
.y1e9{bottom:122.272000pt;}
.y1a2{bottom:123.232000pt;}
.y111{bottom:123.236000pt;}
.y151{bottom:125.152000pt;}
.y210{bottom:125.472000pt;}
.y3d{bottom:126.120000pt;}
.y88{bottom:127.104000pt;}
.y52{bottom:129.950667pt;}
.y162{bottom:131.916000pt;}
.y12a{bottom:132.224000pt;}
.y1c2{bottom:135.440000pt;}
.y1a1{bottom:136.080000pt;}
.yf4{bottom:136.706667pt;}
.y1e8{bottom:137.346667pt;}
.y110{bottom:139.280000pt;}
.y150{bottom:140.866667pt;}
.y3c{bottom:141.480000pt;}
.y87{bottom:142.466667pt;}
.y51{bottom:143.710667pt;}
.y48{bottom:144.350667pt;}
.y17b{bottom:147.266667pt;}
.y129{bottom:147.586667pt;}
.y161{bottom:147.920000pt;}
.ybb{bottom:149.200000pt;}
.y1c1{bottom:151.440000pt;}
.yf3{bottom:152.066667pt;}
.y1e7{bottom:152.706667pt;}
.y19f{bottom:153.680000pt;}
.y47{bottom:153.950667pt;}
.y10f{bottom:155.280000pt;}
.y14f{bottom:156.226667pt;}
.y3b{bottom:156.840000pt;}
.y50{bottom:157.177333pt;}
.y86{bottom:157.826667pt;}
.y17a{bottom:159.426667pt;}
.y128{bottom:162.946667pt;}
.yf2{bottom:167.106667pt;}
.y1c0{bottom:167.440000pt;}
.y1e6{bottom:168.066667pt;}
.y14e{bottom:171.586667pt;}
.y3a{bottom:172.200000pt;}
.y85{bottom:173.186667pt;}
.y10e{bottom:174.466667pt;}
.y19e{bottom:175.746667pt;}
.y127{bottom:177.986667pt;}
.y160{bottom:182.786667pt;}
.y1e5{bottom:183.426667pt;}
.y1bf{bottom:183.440000pt;}
.y14d{bottom:186.946667pt;}
.y39{bottom:187.560000pt;}
.y84{bottom:188.546667pt;}
.yf1{bottom:190.786667pt;}
.y19d{bottom:191.426667pt;}
.y126{bottom:193.346667pt;}
.y10d{bottom:198.146667pt;}
.y1e4{bottom:198.786667pt;}
.y14c{bottom:201.986667pt;}
.y20f{bottom:202.306667pt;}
.y38{bottom:202.600000pt;}
.y1be{bottom:202.626667pt;}
.y83{bottom:203.906667pt;}
.yf0{bottom:206.146667pt;}
.y19c{bottom:206.786667pt;}
.y125{bottom:208.386667pt;}
.yb5{bottom:211.280000pt;}
.y10c{bottom:213.506667pt;}
.y1e3{bottom:214.146667pt;}
.y14b{bottom:217.026667pt;}
.y20e{bottom:217.346667pt;}
.y37{bottom:217.666667pt;}
.y1bd{bottom:218.306667pt;}
.y82{bottom:219.266667pt;}
.y124{bottom:220.866667pt;}
.yef{bottom:221.506667pt;}
.y19b{bottom:222.146667pt;}
.y10b{bottom:228.866667pt;}
.y14a{bottom:229.506667pt;}
.y20d{bottom:232.706667pt;}
.y1bc{bottom:233.346667pt;}
.y81{bottom:234.626667pt;}
.yee{bottom:236.866667pt;}
.y19a{bottom:237.506667pt;}
.y36{bottom:241.026667pt;}
.y15f{bottom:243.933333pt;}
.y10a{bottom:244.253333pt;}
.y1e2{bottom:244.893333pt;}
.y20c{bottom:248.093333pt;}
.y1bb{bottom:248.733333pt;}
.y80{bottom:249.693333pt;}
.yed{bottom:252.253333pt;}
.y199{bottom:252.893333pt;}
.y35{bottom:254.786667pt;}
.y15e{bottom:256.093333pt;}
.y109{bottom:259.613333pt;}
.y1e1{bottom:260.253333pt;}
.y20b{bottom:263.453333pt;}
.y1ba{bottom:264.093333pt;}
.y7f{bottom:265.053333pt;}
.yf{bottom:266.973333pt;}
.yec{bottom:267.613333pt;}
.y34{bottom:268.546667pt;}
.y198{bottom:273.373333pt;}
.y108{bottom:274.653333pt;}
.y1e0{bottom:275.613333pt;}
.y20a{bottom:278.813333pt;}
.y1b9{bottom:279.453333pt;}
.y7e{bottom:280.413333pt;}
.y1e{bottom:281.986667pt;}
.y33{bottom:282.306667pt;}
.yeb{bottom:282.973333pt;}
.y107{bottom:286.813333pt;}
.yb2{bottom:288.733333pt;}
.y197{bottom:289.373333pt;}
.y1df{bottom:290.973333pt;}
.y209{bottom:294.173333pt;}
.y1b8{bottom:294.813333pt;}
.y7d{bottom:295.773333pt;}
.y32{bottom:296.066667pt;}
.yea{bottom:298.013333pt;}
.y1d{bottom:303.426667pt;}
.y1de{bottom:306.013333pt;}
.y196{bottom:308.573333pt;}
.y208{bottom:309.533333pt;}
.y31{bottom:309.826667pt;}
.y1b7{bottom:310.173333pt;}
.y7c{bottom:311.133333pt;}
.ye9{bottom:321.373333pt;}
.y1b6{bottom:322.653333pt;}
.y30{bottom:323.586667pt;}
.y195{bottom:323.933333pt;}
.y207{bottom:324.893333pt;}
.y1c{bottom:325.186667pt;}
.y7b{bottom:326.493333pt;}
.ye8{bottom:336.733333pt;}
.y2f{bottom:337.373333pt;}
.y1b5{bottom:338.653333pt;}
.y194{bottom:339.293333pt;}
.y206{bottom:340.253333pt;}
.y7a{bottom:341.853333pt;}
.y1b{bottom:346.653333pt;}
.yb0{bottom:350.813333pt;}
.y2e{bottom:351.453333pt;}
.y1dd{bottom:351.773333pt;}
.ye7{bottom:352.093333pt;}
.y193{bottom:354.653333pt;}
.y205{bottom:355.613333pt;}
.y79{bottom:357.213333pt;}
.y2d{bottom:365.213333pt;}
.ye6{bottom:367.493333pt;}
.y1a{bottom:368.093333pt;}
.yaf{bottom:370.053333pt;}
.y1b4{bottom:370.693333pt;}
.y204{bottom:371.013333pt;}
.y78{bottom:372.613333pt;}
.y1dc{bottom:375.493333pt;}
.y2c{bottom:378.973333pt;}
.ye5{bottom:382.853333pt;}
.y192{bottom:385.413333pt;}
.y203{bottom:386.373333pt;}
.y77{bottom:387.973333pt;}
.y19{bottom:389.533333pt;}
.y1db{bottom:390.853333pt;}
.y2b{bottom:392.733333pt;}
.yae{bottom:393.413333pt;}
.ye4{bottom:398.213333pt;}
.y191{bottom:400.453333pt;}
.y202{bottom:401.413333pt;}
.y76{bottom:403.333333pt;}
.y1b3{bottom:405.573333pt;}
.y1da{bottom:406.213333pt;}
.y2a{bottom:406.493333pt;}
.yad{bottom:408.773333pt;}
.y18{bottom:410.973333pt;}
.y190{bottom:412.933333pt;}
.ye3{bottom:413.573333pt;}
.y201{bottom:416.773333pt;}
.y75{bottom:418.373333pt;}
.y29{bottom:420.253333pt;}
.y1b2{bottom:420.933333pt;}
.y1d9{bottom:421.573333pt;}
.yac{bottom:424.133333pt;}
.ye2{bottom:428.933333pt;}
.y200{bottom:432.133333pt;}
.y17{bottom:432.413333pt;}
.y74{bottom:433.733333pt;}
.y28{bottom:434.013333pt;}
.y1b1{bottom:436.293333pt;}
.y1d8{bottom:436.933333pt;}
.yab{bottom:439.493333pt;}
.y179{bottom:440.773333pt;}
.ye1{bottom:444.293333pt;}
.y1ff{bottom:447.493333pt;}
.y27{bottom:447.813333pt;}
.y73{bottom:449.093333pt;}
.y1b0{bottom:451.653333pt;}
.y1d7{bottom:452.293333pt;}
.y178{bottom:453.253333pt;}
.y16{bottom:453.893333pt;}
.yaa{bottom:454.853333pt;}
.y123{bottom:458.053333pt;}
.ye0{bottom:459.653333pt;}
.y26{bottom:461.573333pt;}
.y1fe{bottom:462.853333pt;}
.y72{bottom:464.453333pt;}
.y1d6{bottom:464.773333pt;}
.y1af{bottom:467.013333pt;}
.y177{bottom:469.253333pt;}
.ya9{bottom:470.213333pt;}
.y122{bottom:470.853333pt;}
.ydf{bottom:475.013333pt;}
.y15{bottom:475.333333pt;}
.y25{bottom:475.653333pt;}
.y1fd{bottom:478.240000pt;}
.y71{bottom:479.840000pt;}
.y1d5{bottom:480.800000pt;}
.y1ae{bottom:482.080000pt;}
.y176{bottom:485.280000pt;}
.ya8{bottom:485.600000pt;}
.y121{bottom:486.880000pt;}
.y24{bottom:489.413333pt;}
.yde{bottom:490.080000pt;}
.y1fc{bottom:493.600000pt;}
.y70{bottom:495.200000pt;}
.y14{bottom:496.773333pt;}
.y1d4{bottom:496.800000pt;}
.y1ad{bottom:497.120000pt;}
.y15d{bottom:499.680000pt;}
.ya7{bottom:500.960000pt;}
.y175{bottom:501.280000pt;}
.y120{bottom:502.560000pt;}
.y23{bottom:503.173333pt;}
.ydd{bottom:505.440000pt;}
.y149{bottom:506.080000pt;}
.y1fb{bottom:508.960000pt;}
.y1ac{bottom:509.600000pt;}
.y6f{bottom:510.560000pt;}
.y15c{bottom:512.160000pt;}
.y1d3{bottom:512.800000pt;}
.ya6{bottom:516.320000pt;}
.y22{bottom:516.933333pt;}
.y174{bottom:517.280000pt;}
.y13{bottom:518.213333pt;}
.y11f{bottom:518.560000pt;}
.ydc{bottom:520.800000pt;}
.y148{bottom:522.080000pt;}
.y1fa{bottom:524.320000pt;}
.y6e{bottom:525.920000pt;}
.y15b{bottom:528.160000pt;}
.y1d2{bottom:528.800000pt;}
.y21{bottom:530.693333pt;}
.ya5{bottom:531.680000pt;}
.y11e{bottom:534.560000pt;}
.ydb{bottom:536.160000pt;}
.y173{bottom:536.480000pt;}
.y147{bottom:538.080000pt;}
.y12{bottom:539.653333pt;}
.y1f9{bottom:539.680000pt;}
.y6d{bottom:541.280000pt;}
.y15a{bottom:544.160000pt;}
.y20{bottom:544.453333pt;}
.ya4{bottom:547.040000pt;}
.y1d1{bottom:548.000000pt;}
.yda{bottom:551.520000pt;}
.y172{bottom:551.840000pt;}
.y146{bottom:554.080000pt;}
.y1f8{bottom:555.040000pt;}
.y6c{bottom:556.640000pt;}
.y11{bottom:561.093333pt;}
.ya3{bottom:562.080000pt;}
.y159{bottom:563.360000pt;}
.y1d0{bottom:563.680000pt;}
.yd9{bottom:566.560000pt;}
.y11d{bottom:569.440000pt;}
.y1f7{bottom:570.080000pt;}
.y1f{bottom:571.680000pt;}
.y6b{bottom:572.000000pt;}
.y145{bottom:573.280000pt;}
.y171{bottom:575.520000pt;}
.ya2{bottom:577.440000pt;}
.y158{bottom:578.720000pt;}
.y1cf{bottom:579.040000pt;}
.y10{bottom:582.560000pt;}
.y214{bottom:584.480000pt;}
.y11c{bottom:584.800000pt;}
.y1f6{bottom:585.440000pt;}
.y6a{bottom:587.360000pt;}
.y144{bottom:588.960000pt;}
.yd8{bottom:589.920000pt;}
.y170{bottom:590.880000pt;}
.ya1{bottom:592.800000pt;}
.y105{bottom:594.080000pt;}
.y11b{bottom:600.186667pt;}
.y1f5{bottom:600.826667pt;}
.y143{bottom:604.346667pt;}
.yd7{bottom:605.306667pt;}
.y16f{bottom:606.266667pt;}
.y213{bottom:607.866667pt;}
.ya0{bottom:608.186667pt;}
.y157{bottom:609.466667pt;}
.y69{bottom:610.106667pt;}
.y104{bottom:610.120000pt;}
.y11a{bottom:615.546667pt;}
.y1f4{bottom:616.186667pt;}
.y16e{bottom:618.760000pt;}
.y142{bottom:619.706667pt;}
.yd6{bottom:620.666667pt;}
.y68{bottom:622.586667pt;}
.y9f{bottom:623.546667pt;}
.y156{bottom:624.506667pt;}
.y1ce{bottom:624.826667pt;}
.y103{bottom:626.120000pt;}
.y119{bottom:630.906667pt;}
.y1f3{bottom:631.546667pt;}
.y16d{bottom:634.760000pt;}
.y141{bottom:635.066667pt;}
.yd5{bottom:636.026667pt;}
.y155{bottom:636.666667pt;}
.y1cd{bottom:637.320000pt;}
.y9e{bottom:638.906667pt;}
.y100{bottom:642.120000pt;}
.y118{bottom:646.266667pt;}
.y1f2{bottom:646.906667pt;}
.y140{bottom:649.786667pt;}
.yd4{bottom:651.386667pt;}
.y1cc{bottom:653.320000pt;}
.y16c{bottom:653.946667pt;}
.y9d{bottom:654.266667pt;}
.y117{bottom:661.626667pt;}
.y18f{bottom:662.266667pt;}
.yd3{bottom:666.746667pt;}
.y1cb{bottom:669.320000pt;}
.y9c{bottom:669.626667pt;}
.y13f{bottom:673.466667pt;}
.y18d{bottom:674.760000pt;}
.y116{bottom:676.666667pt;}
.y16b{bottom:677.626667pt;}
.yd2{bottom:681.786667pt;}
.y9b{bottom:684.986667pt;}
.y1ca{bottom:685.320000pt;}
.y115{bottom:688.826667pt;}
.yff{bottom:692.346667pt;}
.y16a{bottom:692.986667pt;}
.y18b{bottom:693.640000pt;}
.yd1{bottom:697.146667pt;}
.y9a{bottom:700.346667pt;}
.y13e{bottom:704.186667pt;}
.y1c9{bottom:704.506667pt;}
.yfe{bottom:707.706667pt;}
.y169{bottom:708.346667pt;}
.y189{bottom:711.560000pt;}
.yd0{bottom:712.546667pt;}
.y99{bottom:715.746667pt;}
.y13d{bottom:719.586667pt;}
.y1c8{bottom:720.226667pt;}
.yfd{bottom:723.106667pt;}
.y168{bottom:723.426667pt;}
.y1f1{bottom:723.746667pt;}
.y1ab{bottom:726.946667pt;}
.y187{bottom:729.520000pt;}
.y98{bottom:731.106667pt;}
.y13b{bottom:732.080000pt;}
.y167{bottom:735.586667pt;}
.ycf{bottom:736.226667pt;}
.yfc{bottom:738.146667pt;}
.y1f0{bottom:739.106667pt;}
.y1aa{bottom:739.440000pt;}
.y97{bottom:746.146667pt;}
.y186{bottom:750.626667pt;}
.y1c7{bottom:750.946667pt;}
.yce{bottom:751.586667pt;}
.yfb{bottom:753.506667pt;}
.y1ef{bottom:754.146667pt;}
.y1a9{bottom:755.440000pt;}
.y139{bottom:758.960000pt;}
.y96{bottom:761.506667pt;}
.y185{bottom:766.306667pt;}
.ycd{bottom:766.946667pt;}
.yfa{bottom:768.546667pt;}
.y1ee{bottom:769.506667pt;}
.y1a8{bottom:771.440000pt;}
.y95{bottom:776.866667pt;}
.y184{bottom:781.666667pt;}
.ycc{bottom:782.306667pt;}
.y1ed{bottom:784.866667pt;}
.y1a7{bottom:787.440000pt;}
.y138{bottom:788.706667pt;}
.y94{bottom:792.226667pt;}
.y183{bottom:797.026667pt;}
.ycb{bottom:797.346667pt;}
.y1ec{bottom:800.226667pt;}
.y1a6{bottom:803.440000pt;}
.y137{bottom:804.386667pt;}
.y1c6{bottom:804.706667pt;}
.y93{bottom:807.586667pt;}
.y182{bottom:812.386667pt;}
.y1eb{bottom:815.586667pt;}
.y1c5{bottom:816.866667pt;}
.y136{bottom:819.746667pt;}
.yca{bottom:821.026667pt;}
.y1a5{bottom:822.626667pt;}
.y92{bottom:822.946667pt;}
.y181{bottom:827.746667pt;}
.y67{bottom:830.973333pt;}
.y135{bottom:834.813333pt;}
.yc9{bottom:836.413333pt;}
.y91{bottom:838.333333pt;}
.y180{bottom:842.813333pt;}
.y66{bottom:846.333333pt;}
.y134{bottom:850.173333pt;}
.yc8{bottom:851.773333pt;}
.yf9{bottom:853.373333pt;}
.y90{bottom:853.693333pt;}
.y17f{bottom:855.613333pt;}
.ye{bottom:860.413333pt;}
.y65{bottom:861.693333pt;}
.yd{bottom:864.893333pt;}
.y133{bottom:865.533333pt;}
.yc7{bottom:866.493333pt;}
.y8f{bottom:869.053333pt;}
.y64{bottom:877.053333pt;}
.y132{bottom:880.893333pt;}
.y8e{bottom:884.413333pt;}
.y154{bottom:885.373333pt;}
.yc{bottom:886.653333pt;}
.yc4{bottom:887.613333pt;}
.y63{bottom:892.413333pt;}
.y8d{bottom:899.773333pt;}
.y131{bottom:901.373333pt;}
.yb{bottom:902.013333pt;}
.y17e{bottom:902.653333pt;}
.y62{bottom:907.773333pt;}
.ya{bottom:910.973333pt;}
.y8c{bottom:914.813333pt;}
.y130{bottom:917.373333pt;}
.y17d{bottom:918.653333pt;}
.y61{bottom:922.813333pt;}
.y9{bottom:928.253333pt;}
.y8b{bottom:929.853333pt;}
.y12f{bottom:933.373333pt;}
.y17c{bottom:937.853333pt;}
.y60{bottom:938.173333pt;}
.y12e{bottom:949.413333pt;}
.y8{bottom:952.933333pt;}
.y5f{bottom:953.573333pt;}
.y5c{bottom:955.840000pt;}
.yc3{bottom:964.773333pt;}
.yf8{bottom:968.613333pt;}
.y5e{bottom:968.933333pt;}
.y6{bottom:984.933333pt;}
.y1{bottom:998.693333pt;}
.h15{height:5.022500pt;}
.h25{height:15.040000pt;}
.h26{height:15.066667pt;}
.h1d{height:15.346667pt;}
.h28{height:15.348000pt;}
.h23{height:15.356000pt;}
.h24{height:15.360000pt;}
.h18{height:15.386667pt;}
.h22{height:15.388000pt;}
.h21{height:15.392000pt;}
.h2d{height:16.946667pt;}
.h2a{height:17.266667pt;}
.h2b{height:17.298667pt;}
.h2c{height:18.226667pt;}
.h16{height:24.640000pt;}
.h27{height:25.906667pt;}
.h13{height:26.381250pt;}
.h29{height:30.386667pt;}
.h20{height:30.706667pt;}
.h12{height:31.406250pt;}
.ha{height:33.918750pt;}
.hd{height:36.431250pt;}
.hc{height:37.410000pt;}
.h1a{height:38.508750pt;}
.he{height:47.713750pt;}
.h14{height:49.020000pt;}
.h7{height:51.600000pt;}
.h6{height:52.762500pt;}
.h10{height:53.471250pt;}
.hf{height:54.180000pt;}
.h1f{height:55.256809pt;}
.h17{height:56.502250pt;}
.h8{height:56.513750pt;}
.h5{height:57.787500pt;}
.h3{height:58.563750pt;}
.h9{height:59.150000pt;}
.h1c{height:61.148000pt;}
.h19{height:61.426667pt;}
.h2{height:75.546667pt;}
.h1e{height:76.506667pt;}
.h1b{height:76.800000pt;}
.h4{height:103.680000pt;}
.h11{height:179.560000pt;}
.hb{height:590.866667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w18{width:39.680000pt;}
.w25{width:43.538667pt;}
.w3d{width:44.818667pt;}
.w32{width:49.298667pt;}
.w31{width:53.152000pt;}
.w38{width:53.458667pt;}
.w1e{width:56.666667pt;}
.wd{width:61.138667pt;}
.w16{width:61.426667pt;}
.wb{width:65.306667pt;}
.w24{width:69.152000pt;}
.wc{width:70.112000pt;}
.w2f{width:70.746667pt;}
.w2d{width:77.472000pt;}
.wf{width:81.306667pt;}
.w19{width:86.752000pt;}
.w10{width:87.712000pt;}
.w2e{width:89.298667pt;}
.w17{width:89.306667pt;}
.w3b{width:92.544000pt;}
.w1f{width:92.832000pt;}
.w2{width:93.460000pt;}
.w2b{width:96.000000pt;}
.w11{width:97.960000pt;}
.w29{width:98.266667pt;}
.w36{width:100.832000pt;}
.w27{width:100.864000pt;}
.w34{width:103.104000pt;}
.wa{width:104.026667pt;}
.w20{width:106.586667pt;}
.w3c{width:113.632000pt;}
.w15{width:113.984000pt;}
.w4{width:117.780000pt;}
.w22{width:122.600000pt;}
.w35{width:124.506667pt;}
.w23{width:126.106667pt;}
.w28{width:126.440000pt;}
.w1b{width:130.578667pt;}
.w39{width:136.386667pt;}
.w1c{width:137.346667pt;}
.w2a{width:139.906667pt;}
.w3a{width:144.386667pt;}
.w6{width:144.960000pt;}
.w30{width:147.586667pt;}
.w33{width:150.786667pt;}
.we{width:152.680000pt;}
.w7{width:153.000000pt;}
.w26{width:154.946667pt;}
.w21{width:161.026667pt;}
.w8{width:163.586667pt;}
.w9{width:163.906667pt;}
.w1d{width:165.186667pt;}
.w12{width:176.386667pt;}
.w2c{width:177.986667pt;}
.w13{width:182.146667pt;}
.w14{width:182.786667pt;}
.w37{width:187.586667pt;}
.w1a{width:211.613333pt;}
.w5{width:530.440000pt;}
.w3{width:561.160000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x22{left:6.112000pt;}
.x1a{left:7.373333pt;}
.x59{left:8.640000pt;}
.x38{left:10.880000pt;}
.x15{left:12.788000pt;}
.x18{left:14.388000pt;}
.x4{left:15.666667pt;}
.x17{left:17.268000pt;}
.x31{left:19.506667pt;}
.x2e{left:21.466667pt;}
.x16{left:23.348000pt;}
.x7d{left:25.000000pt;}
.x1e{left:25.908000pt;}
.x32{left:28.186667pt;}
.x6{left:29.426667pt;}
.x75{left:31.706667pt;}
.x3b{left:33.626667pt;}
.x3c{left:36.826667pt;}
.x76{left:37.786667pt;}
.x10{left:39.028000pt;}
.x71{left:41.266667pt;}
.x1d{left:42.260000pt;}
.x51{left:43.200000pt;}
.x11{left:45.140000pt;}
.x14{left:47.380000pt;}
.xf{left:48.980000pt;}
.x20{left:50.900000pt;}
.x52{left:52.200000pt;}
.x5f{left:54.426667pt;}
.x1b{left:55.373333pt;}
.x1f{left:58.902667pt;}
.x70{left:63.386667pt;}
.x4c{left:65.640000pt;}
.x1{left:69.804000pt;}
.x5e{left:73.946667pt;}
.x53{left:75.866667pt;}
.x7{left:76.832000pt;}
.x27{left:79.404000pt;}
.x13{left:82.582667pt;}
.x40{left:84.186667pt;}
.x2{left:85.462667pt;}
.x21{left:91.542667pt;}
.x1c{left:95.062667pt;}
.x2b{left:100.832000pt;}
.x12{left:110.742667pt;}
.x25{left:124.864000pt;}
.x5{left:129.653333pt;}
.x3{left:163.280000pt;}
.x6c{left:165.840000pt;}
.x43{left:177.986667pt;}
.x36{left:186.320000pt;}
.xb{left:193.666667pt;}
.x19{left:194.640000pt;}
.x5b{left:201.373333pt;}
.x46{left:208.093333pt;}
.x89{left:216.413333pt;}
.x3e{left:217.373333pt;}
.xc{left:219.293333pt;}
.x35{left:220.573333pt;}
.x72{left:224.093333pt;}
.x4a{left:225.693333pt;}
.x79{left:227.613333pt;}
.x42{left:230.813333pt;}
.x28{left:233.053333pt;}
.x24{left:235.613333pt;}
.x7b{left:237.853333pt;}
.x7e{left:239.133333pt;}
.x6b{left:242.653333pt;}
.x2c{left:245.853333pt;}
.x61{left:252.573333pt;}
.x87{left:256.413333pt;}
.x86{left:263.453333pt;}
.x62{left:266.973333pt;}
.x67{left:268.893333pt;}
.x7f{left:269.853333pt;}
.x7c{left:271.453333pt;}
.x63{left:276.933333pt;}
.x66{left:277.893333pt;}
.x81{left:284.293333pt;}
.x85{left:286.853333pt;}
.x47{left:288.453333pt;}
.x78{left:289.733333pt;}
.x34{left:291.013333pt;}
.x6d{left:292.933333pt;}
.x6a{left:293.893333pt;}
.x4f{left:298.053333pt;}
.x4e{left:303.173333pt;}
.x5c{left:308.613333pt;}
.x26{left:309.573333pt;}
.x55{left:310.853333pt;}
.x56{left:312.133333pt;}
.x57{left:322.053333pt;}
.x5a{left:324.933333pt;}
.x7a{left:326.213333pt;}
.x37{left:339.653333pt;}
.x2d{left:350.533333pt;}
.x8a{left:364.320000pt;}
.x48{left:378.400000pt;}
.x58{left:379.360000pt;}
.x50{left:383.520000pt;}
.x6e{left:391.840000pt;}
.x88{left:393.440000pt;}
.x3f{left:394.400000pt;}
.x29{left:397.280000pt;}
.x44{left:400.800000pt;}
.x73{left:402.720000pt;}
.x64{left:403.680000pt;}
.x82{left:409.440000pt;}
.x2f{left:416.480000pt;}
.x49{left:419.040000pt;}
.x39{left:421.600000pt;}
.x68{left:424.480000pt;}
.x4b{left:437.960000pt;}
.x83{left:464.520000pt;}
.x5d{left:470.280000pt;}
.x65{left:473.480000pt;}
.x8b{left:478.600000pt;}
.x74{left:480.840000pt;}
.xd{left:483.706667pt;}
.xa{left:484.666667pt;}
.x30{left:487.240000pt;}
.x3a{left:509.960000pt;}
.x45{left:515.440000pt;}
.x80{left:529.186667pt;}
.x6f{left:532.400000pt;}
.x41{left:541.026667pt;}
.x69{left:549.986667pt;}
.x84{left:553.506667pt;}
.x2a{left:561.840000pt;}
.x54{left:565.986667pt;}
.x77{left:567.906667pt;}
.x60{left:570.466667pt;}
.x4d{left:574.626667pt;}
.x3d{left:577.186667pt;}
.x23{left:591.933333pt;}
.x33{left:595.133333pt;}
.x9{left:680.933333pt;}
.x8{left:703.973333pt;}
.xe{left:717.413333pt;}
}




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