
    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_29073a742be7acd6146588bf.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_945863c711093bb47ea1add5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_36e832264c4255b769f8c2c4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_2c6bb6b01894d223113650bf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_84c71611291bf5561b775851.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_862360f61d8aad2d37cb708e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c72fc73a6ceb6e31a58ac6f0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_54dc753cb901dedef5b2a0c8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f70e2a17c54190b54f7519a9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.973000;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_a5fcd5aa8bd1e9bc708c971d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.837891;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);}
.v3{vertical-align:-1.265400px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.265400px;}
.v1{vertical-align:23.976000px;}
.ls1{letter-spacing:-3.330000px;}
.ls4{letter-spacing:-2.664000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000600px;}
.ls8{letter-spacing:0.016200px;}
.ls5{letter-spacing:1.639800px;}
.ls6{letter-spacing:3.504600px;}
.ls3{letter-spacing:3.832800px;}
.ls7{letter-spacing:14.468400px;}
.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;}
}
.ws12{word-spacing:-27.000000px;}
.ws7c{word-spacing:-21.000000px;}
.ws83{word-spacing:-19.500000px;}
.ws4a{word-spacing:-18.000000px;}
.ws41{word-spacing:-16.344000px;}
.ws86{word-spacing:-14.688000px;}
.ws85{word-spacing:-14.328000px;}
.ws82{word-spacing:-11.544000px;}
.ws84{word-spacing:-11.388000px;}
.ws40{word-spacing:-10.494000px;}
.ws71{word-spacing:-8.136000px;}
.ws1c{word-spacing:-4.536000px;}
.ws73{word-spacing:-3.960000px;}
.ws28{word-spacing:-3.528000px;}
.ws6a{word-spacing:-3.024000px;}
.ws2d{word-spacing:-2.952000px;}
.ws38{word-spacing:-2.880000px;}
.ws52{word-spacing:-2.808000px;}
.ws74{word-spacing:-2.736000px;}
.ws4c{word-spacing:-2.592000px;}
.ws50{word-spacing:-2.520000px;}
.ws5f{word-spacing:-2.232000px;}
.ws10{word-spacing:-2.208000px;}
.ws57{word-spacing:-2.160000px;}
.ws55{word-spacing:-2.088000px;}
.ws2a{word-spacing:-1.944000px;}
.ws77{word-spacing:-1.872000px;}
.ws3c{word-spacing:-1.800000px;}
.ws7d{word-spacing:-1.656000px;}
.ws34{word-spacing:-1.584000px;}
.ws39{word-spacing:-1.512000px;}
.ws2e{word-spacing:-1.368000px;}
.ws72{word-spacing:-1.296000px;}
.ws53{word-spacing:-1.224000px;}
.ws33{word-spacing:-1.152000px;}
.ws3d{word-spacing:-1.008000px;}
.ws5c{word-spacing:-0.936000px;}
.ws45{word-spacing:-0.792000px;}
.ws48{word-spacing:-0.720000px;}
.ws3f{word-spacing:-0.648000px;}
.ws49{word-spacing:-0.576000px;}
.ws79{word-spacing:-0.504000px;}
.ws22{word-spacing:-0.432000px;}
.ws56{word-spacing:-0.360000px;}
.ws5a{word-spacing:-0.288000px;}
.ws6c{word-spacing:-0.144000px;}
.ws4f{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
.ws21{word-spacing:0.072000px;}
.ws70{word-spacing:0.144000px;}
.ws3a{word-spacing:0.360000px;}
.ws42{word-spacing:0.432000px;}
.ws32{word-spacing:0.504000px;}
.ws5d{word-spacing:0.576000px;}
.ws36{word-spacing:0.648000px;}
.ws78{word-spacing:0.720000px;}
.ws37{word-spacing:0.792000px;}
.ws35{word-spacing:0.864000px;}
.ws3b{word-spacing:1.008000px;}
.ws27{word-spacing:1.080000px;}
.ws66{word-spacing:1.152000px;}
.ws5e{word-spacing:1.224000px;}
.ws67{word-spacing:1.296000px;}
.ws2c{word-spacing:1.368000px;}
.ws14{word-spacing:1.512000px;}
.ws4b{word-spacing:1.584000px;}
.wsb{word-spacing:1.656000px;}
.ws63{word-spacing:1.728000px;}
.ws51{word-spacing:1.872000px;}
.ws3e{word-spacing:1.944000px;}
.ws81{word-spacing:2.016000px;}
.ws25{word-spacing:2.160000px;}
.ws23{word-spacing:2.232000px;}
.ws26{word-spacing:2.304000px;}
.ws1f{word-spacing:2.376000px;}
.ws7{word-spacing:2.448000px;}
.ws76{word-spacing:2.520000px;}
.ws58{word-spacing:2.664000px;}
.ws29{word-spacing:2.808000px;}
.ws8{word-spacing:2.880000px;}
.ws1d{word-spacing:2.952000px;}
.ws1e{word-spacing:3.024000px;}
.ws4d{word-spacing:3.096000px;}
.ws65{word-spacing:3.168000px;}
.ws61{word-spacing:3.312000px;}
.ws11{word-spacing:3.330000px;}
.ws13{word-spacing:3.444000px;}
.ws68{word-spacing:3.744000px;}
.ws5b{word-spacing:3.816000px;}
.ws24{word-spacing:4.032000px;}
.ws1b{word-spacing:4.104000px;}
.ws17{word-spacing:4.176000px;}
.ws64{word-spacing:4.392000px;}
.ws15{word-spacing:4.464000px;}
.ws2f{word-spacing:4.608000px;}
.wsc{word-spacing:4.680000px;}
.ws31{word-spacing:4.752000px;}
.ws7a{word-spacing:4.824000px;}
.ws20{word-spacing:5.112000px;}
.ws7b{word-spacing:5.256000px;}
.ws30{word-spacing:5.400000px;}
.ws43{word-spacing:5.616000px;}
.ws6b{word-spacing:5.688000px;}
.ws75{word-spacing:5.760000px;}
.ws80{word-spacing:6.192000px;}
.ws59{word-spacing:6.336000px;}
.ws46{word-spacing:6.624000px;}
.ws1a{word-spacing:6.696000px;}
.ws62{word-spacing:6.768000px;}
.ws16{word-spacing:6.912000px;}
.ws7f{word-spacing:7.272000px;}
.ws6{word-spacing:7.560000px;}
.ws69{word-spacing:7.632000px;}
.ws19{word-spacing:7.848000px;}
.wsd{word-spacing:7.992000px;}
.wsa{word-spacing:8.208000px;}
.ws1{word-spacing:8.352000px;}
.wsf{word-spacing:8.712000px;}
.ws47{word-spacing:8.856000px;}
.ws2b{word-spacing:8.928000px;}
.ws18{word-spacing:9.576000px;}
.ws4e{word-spacing:9.864000px;}
.ws60{word-spacing:10.008000px;}
.ws54{word-spacing:10.152000px;}
.ws44{word-spacing:10.368000px;}
.ws6d{word-spacing:10.728000px;}
.ws9{word-spacing:10.944000px;}
.ws6f{word-spacing:11.808000px;}
.ws2{word-spacing:13.032000px;}
.ws4{word-spacing:13.320000px;}
.ws6e{word-spacing:14.472000px;}
.wse{word-spacing:15.048000px;}
.ws7e{word-spacing:15.120000px;}
.ws3{word-spacing:18.936000px;}
.ws5{word-spacing:21.096000px;}
.ws87{word-spacing:134.550600px;}
.ws88{word-spacing:199.656000px;}
._1f{margin-left:-19.996800px;}
._1b{margin-left:-18.746400px;}
._11{margin-left:-17.116800px;}
._20{margin-left:-16.093200px;}
._10{margin-left:-11.880000px;}
._12{margin-left:-9.914400px;}
._1d{margin-left:-8.841600px;}
._15{margin-left:-7.694400px;}
._6{margin-left:-6.595200px;}
._f{margin-left:-5.541000px;}
._0{margin-left:-4.226400px;}
._7{margin-left:-2.808000px;}
._5{margin-left:-1.252800px;}
._3{width:1.224000px;}
._4{width:2.692800px;}
._e{width:3.996000px;}
._2{width:5.097600px;}
._8{width:6.789600px;}
._a{width:8.409600px;}
._9{width:9.432000px;}
._13{width:10.584000px;}
._1a{width:11.757600px;}
._1c{width:13.608000px;}
._b{width:14.990400px;}
._1{width:16.740000px;}
._16{width:19.281600px;}
._17{width:21.240000px;}
._d{width:22.428000px;}
._c{width:23.896800px;}
._19{width:36.000000px;}
._1e{width:40.680000px;}
._18{width:63.576000px;}
._14{width:64.800000px;}
._22{width:105.763800px;}
._21{width:1395.367200px;}
.fc0{color:rgb(35,31,32);}
.fcb{color:rgb(18,83,148);}
.fc1{color:rgb(40,85,125);}
.fc3{color:rgb(244,140,60);}
.fc5{color:rgb(89,194,91);}
.fca{color:rgb(192,35,134);}
.fc4{color:transparent;}
.fc8{color:rgb(188,183,27);}
.fcd{color:rgb(247,19,46);}
.fc6{color:rgb(105,201,243);}
.fc7{color:rgb(72,176,231);}
.fc2{color:rgb(61,155,159);}
.fc9{color:rgb(0,169,159);}
.fcc{color:rgb(246,132,31);}
.fs6{font-size:41.976000px;}
.fs7{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs8{font-size:78.000000px;}
.fs5{font-size:84.000000px;}
.fs3{font-size:90.000000px;}
.fs2{font-size:96.000000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y189{bottom:74.079600px;}
.y50{bottom:74.684850px;}
.y1b3{bottom:103.249800px;}
.yfb{bottom:106.299150px;}
.y9b{bottom:109.054950px;}
.y16b{bottom:109.229100px;}
.yc6{bottom:125.749800px;}
.y142{bottom:127.113300px;}
.y1c6{bottom:127.249800px;}
.yfa{bottom:127.299150px;}
.y1a8{bottom:129.929250px;}
.y188{bottom:130.829100px;}
.y9a{bottom:131.554950px;}
.y16a{bottom:131.729100px;}
.yea{bottom:138.699150px;}
.yc5{bottom:148.249800px;}
.yf9{bottom:148.299150px;}
.y141{bottom:149.613300px;}
.y1c5{bottom:149.749800px;}
.y1a7{bottom:152.429250px;}
.y99{bottom:154.054950px;}
.y169{bottom:154.229100px;}
.ye9{bottom:154.899150px;}
.y259{bottom:158.627850px;}
.y74{bottom:159.154350px;}
.y121{bottom:161.749950px;}
.yc4{bottom:170.749800px;}
.y140{bottom:172.113300px;}
.y1a6{bottom:174.929250px;}
.y187{bottom:175.829100px;}
.y98{bottom:176.554950px;}
.y168{bottom:176.729100px;}
.yf8{bottom:180.154950px;}
.y258{bottom:180.977850px;}
.y73{bottom:181.654350px;}
.y120{bottom:184.249950px;}
.y237{bottom:184.481550px;}
.yc3{bottom:193.249800px;}
.y13f{bottom:194.613300px;}
.y1a5{bottom:197.429250px;}
.y186{bottom:198.329100px;}
.y97{bottom:199.054950px;}
.y167{bottom:199.229100px;}
.yf7{bottom:202.654950px;}
.y257{bottom:203.477850px;}
.y72{bottom:204.154350px;}
.y11f{bottom:206.749950px;}
.y203{bottom:214.181550px;}
.y1b2{bottom:215.749800px;}
.y13e{bottom:217.113300px;}
.y1c4{bottom:217.249800px;}
.y1a4{bottom:219.929250px;}
.y96{bottom:221.554950px;}
.y166{bottom:221.729100px;}
.yf6{bottom:225.154950px;}
.y71{bottom:226.654350px;}
.y256{bottom:227.958300px;}
.y11e{bottom:229.249950px;}
.y107{bottom:237.754950px;}
.y1b1{bottom:238.249800px;}
.y13d{bottom:239.613300px;}
.y1c3{bottom:239.749800px;}
.y21c{bottom:239.785800px;}
.y1a3{bottom:242.429250px;}
.y185{bottom:243.329100px;}
.y1f5{bottom:243.881400px;}
.y95{bottom:244.054950px;}
.y165{bottom:244.229100px;}
.yf5{bottom:247.654950px;}
.y70{bottom:249.154350px;}
.y11d{bottom:251.749950px;}
.y255{bottom:252.438750px;}
.y106{bottom:260.254950px;}
.yc2{bottom:260.749800px;}
.y13c{bottom:262.113300px;}
.y1a2{bottom:264.929250px;}
.y1f4{bottom:266.381400px;}
.y94{bottom:266.554950px;}
.y164{bottom:266.729100px;}
.yf4{bottom:270.154950px;}
.y6f{bottom:271.654350px;}
.y11c{bottom:274.249950px;}
.y254{bottom:274.938750px;}
.y105{bottom:282.754950px;}
.yc1{bottom:283.249800px;}
.y13b{bottom:284.613300px;}
.ye8{bottom:287.313300px;}
.y1a1{bottom:287.429250px;}
.y1f3{bottom:288.881400px;}
.y93{bottom:289.054950px;}
.y163{bottom:289.229100px;}
.y6e{bottom:294.154350px;}
.y11b{bottom:296.749950px;}
.y253{bottom:299.419200px;}
.y202{bottom:300.581700px;}
.y104{bottom:305.254950px;}
.yc0{bottom:305.749800px;}
.y13a{bottom:307.113300px;}
.y1c2{bottom:307.249800px;}
.ye7{bottom:309.813300px;}
.y1a0{bottom:309.929250px;}
.y184{bottom:310.829100px;}
.y1f2{bottom:311.381400px;}
.y92{bottom:311.554950px;}
.yf3{bottom:315.154950px;}
.y6d{bottom:316.654350px;}
.y11a{bottom:319.249950px;}
.y215{bottom:322.181550px;}
.y3d{bottom:322.849800px;}
.y201{bottom:323.081700px;}
.y252{bottom:323.899650px;}
.y103{bottom:327.754950px;}
.ybf{bottom:328.249800px;}
.y139{bottom:329.613300px;}
.y1c1{bottom:329.749800px;}
.ye6{bottom:332.313300px;}
.y19f{bottom:332.429250px;}
.y162{bottom:333.329100px;}
.y1f1{bottom:333.881400px;}
.y91{bottom:334.054950px;}
.yf2{bottom:337.654950px;}
.y6c{bottom:339.154350px;}
.y236{bottom:341.981550px;}
.y214{bottom:343.781550px;}
.y200{bottom:345.581700px;}
.y251{bottom:348.380100px;}
.y3c{bottom:349.849800px;}
.ybe{bottom:350.749800px;}
.y138{bottom:352.113300px;}
.y180{bottom:352.344900px;}
.ye5{bottom:354.813300px;}
.y19e{bottom:354.929250px;}
.y183{bottom:355.829100px;}
.y1f0{bottom:356.381400px;}
.ya1{bottom:356.554950px;}
.yf1{bottom:360.154950px;}
.y213{bottom:365.381700px;}
.y1ff{bottom:368.081700px;}
.y250{bottom:370.880100px;}
.ybd{bottom:373.249800px;}
.y137{bottom:374.613300px;}
.y3b{bottom:376.849800px;}
.y19d{bottom:377.429250px;}
.y161{bottom:378.329100px;}
.y1ef{bottom:378.881400px;}
.ya0{bottom:379.054950px;}
.y16{bottom:383.149800px;}
.y119{bottom:386.749950px;}
.y212{bottom:386.981550px;}
.y1fe{bottom:390.581700px;}
.y102{bottom:393.454950px;}
.y219{bottom:394.982700px;}
.y24f{bottom:395.360550px;}
.ybc{bottom:395.749800px;}
.y136{bottom:397.113300px;}
.y1c0{bottom:397.249800px;}
.y17f{bottom:397.344900px;}
.ye4{bottom:399.813300px;}
.y1ee{bottom:401.381400px;}
.y90{bottom:401.554950px;}
.y15{bottom:404.749800px;}
.yf0{bottom:405.154950px;}
.y6b{bottom:406.654350px;}
.y211{bottom:408.581700px;}
.y118{bottom:409.249950px;}
.y1d1{bottom:410.381550px;}
.y1fd{bottom:413.081700px;}
.ybb{bottom:418.249800px;}
.y101{bottom:418.654950px;}
.y135{bottom:419.613300px;}
.y24e{bottom:419.841000px;}
.y17e{bottom:419.844900px;}
.y19c{bottom:421.529250px;}
.ye3{bottom:422.313300px;}
.y160{bottom:423.329100px;}
.y8f{bottom:424.054950px;}
.y6a{bottom:429.154350px;}
.y3a{bottom:430.849650px;}
.y4d{bottom:430.860000px;}
.y210{bottom:431.081700px;}
.y117{bottom:431.749950px;}
.y1b0{bottom:440.749800px;}
.y100{bottom:441.154950px;}
.y14a{bottom:442.113300px;}
.y24d{bottom:444.321600px;}
.ye2{bottom:444.813300px;}
.y1ed{bottom:446.381400px;}
.y8e{bottom:446.554950px;}
.y69{bottom:451.654350px;}
.y20f{bottom:453.581700px;}
.y116{bottom:454.249950px;}
.y235{bottom:454.481550px;}
.y29{bottom:460.980450px;}
.y1af{bottom:463.249800px;}
.yff{bottom:463.654950px;}
.y1fc{bottom:464.381550px;}
.y134{bottom:464.613300px;}
.y19b{bottom:464.729250px;}
.y1bf{bottom:464.749800px;}
.y17d{bottom:464.844900px;}
.y24c{bottom:466.821600px;}
.ye1{bottom:467.313300px;}
.y15f{bottom:468.329100px;}
.y1ec{bottom:468.881400px;}
.yc8{bottom:469.054950px;}
.yef{bottom:470.854950px;}
.y68{bottom:474.154350px;}
.y20e{bottom:476.081700px;}
.y14{bottom:476.749800px;}
.y115{bottom:476.749950px;}
.y39{bottom:484.849650px;}
.y4c{bottom:484.860000px;}
.yba{bottom:485.749800px;}
.yfe{bottom:486.154950px;}
.y1ab{bottom:487.113300px;}
.y1be{bottom:487.249800px;}
.y21b{bottom:488.526000px;}
.y182{bottom:490.829100px;}
.y24b{bottom:491.302050px;}
.y9f{bottom:491.554950px;}
.yee{bottom:493.354950px;}
.y67{bottom:496.654350px;}
.y13{bottom:498.349800px;}
.yb9{bottom:508.249800px;}
.yfd{bottom:508.654950px;}
.y19a{bottom:508.829250px;}
.y149{bottom:509.613300px;}
.y8d{bottom:514.054950px;}
.y24a{bottom:515.782500px;}
.yed{bottom:515.854950px;}
.y1e9{bottom:516.581550px;}
.y66{bottom:519.154350px;}
.y12{bottom:519.949800px;}
.y20d{bottom:521.081700px;}
.y17c{bottom:530.544900px;}
.yb8{bottom:530.749800px;}
.yfc{bottom:531.154950px;}
.y133{bottom:532.113300px;}
.y28{bottom:532.980450px;}
.ye0{bottom:534.813300px;}
.y15e{bottom:535.829100px;}
.y8c{bottom:536.554950px;}
.y249{bottom:538.282500px;}
.yec{bottom:538.354950px;}
.y38{bottom:538.849650px;}
.y4b{bottom:538.860000px;}
.y1e8{bottom:539.081550px;}
.y11{bottom:541.549800px;}
.y65{bottom:541.654350px;}
.y20c{bottom:543.581700px;}
.y114{bottom:544.249950px;}
.y17b{bottom:553.044900px;}
.yb7{bottom:553.249800px;}
.y199{bottom:553.829250px;}
.y27{bottom:554.580450px;}
.y132{bottom:554.613300px;}
.y1bd{bottom:554.749800px;}
.ydf{bottom:557.313300px;}
.y8b{bottom:559.054950px;}
.yeb{bottom:560.854950px;}
.y1e7{bottom:561.581550px;}
.y248{bottom:562.762950px;}
.y10{bottom:563.149800px;}
.y64{bottom:564.154350px;}
.y113{bottom:566.749950px;}
.y17a{bottom:575.544900px;}
.yb6{bottom:575.749800px;}
.y26{bottom:576.180450px;}
.y131{bottom:577.113300px;}
.y1bc{bottom:577.249800px;}
.yde{bottom:579.813300px;}
.y15d{bottom:580.829100px;}
.y8a{bottom:581.554950px;}
.y1e6{bottom:584.081550px;}
.yf{bottom:584.749800px;}
.y63{bottom:586.654350px;}
.y247{bottom:587.243400px;}
.y112{bottom:589.249950px;}
.y234{bottom:589.481550px;}
.y37{bottom:592.849650px;}
.y4a{bottom:592.860000px;}
.y25{bottom:597.780450px;}
.y179{bottom:598.044900px;}
.y1ae{bottom:598.249800px;}
.y130{bottom:599.613300px;}
.y22e{bottom:601.551300px;}
.y15c{bottom:603.329100px;}
.y89{bottom:604.054950px;}
.y1e5{bottom:606.581550px;}
.y62{bottom:609.154350px;}
.y246{bottom:609.743400px;}
.y111{bottom:611.749950px;}
.y24{bottom:619.380450px;}
.y198{bottom:619.529250px;}
.y36{bottom:619.849650px;}
.y49{bottom:619.860000px;}
.y178{bottom:620.544900px;}
.y1ad{bottom:620.749800px;}
.y148{bottom:622.113300px;}
.y20b{bottom:623.681700px;}
.ydd{bottom:624.813300px;}
.y88{bottom:626.554950px;}
.y1e4{bottom:629.081550px;}
.y61{bottom:631.654350px;}
.y245{bottom:634.223850px;}
.y110{bottom:634.249950px;}
.y177{bottom:643.044900px;}
.yb5{bottom:643.249800px;}
.y12f{bottom:644.613300px;}
.y1bb{bottom:644.749800px;}
.y20a{bottom:646.181700px;}
.y35{bottom:646.849650px;}
.y48{bottom:646.860000px;}
.ydc{bottom:647.313300px;}
.y15b{bottom:648.329100px;}
.y87{bottom:649.054950px;}
.ye{bottom:649.549800px;}
.y1e3{bottom:651.581550px;}
.y60{bottom:654.154350px;}
.y10f{bottom:656.749950px;}
.y244{bottom:658.704300px;}
.y197{bottom:662.729250px;}
.yb4{bottom:665.749800px;}
.y147{bottom:667.113300px;}
.y209{bottom:668.681700px;}
.ydb{bottom:669.813300px;}
.y86{bottom:671.554950px;}
.yd{bottom:672.049800px;}
.y34{bottom:673.849650px;}
.y47{bottom:673.860000px;}
.y1e2{bottom:674.081550px;}
.y10e{bottom:679.249950px;}
.y243{bottom:683.184750px;}
.y23{bottom:684.180450px;}
.y196{bottom:684.329250px;}
.y176{bottom:687.144900px;}
.yb3{bottom:688.249800px;}
.y12e{bottom:689.613300px;}
.y1fb{bottom:691.181700px;}
.y22d{bottom:692.081550px;}
.yda{bottom:692.313300px;}
.y181{bottom:693.329100px;}
.y85{bottom:694.054950px;}
.yc{bottom:694.549800px;}
.y33{bottom:700.849650px;}
.y46{bottom:700.860000px;}
.y242{bottom:705.684750px;}
.y22{bottom:705.780450px;}
.yb2{bottom:710.749800px;}
.y146{bottom:712.113300px;}
.y1ba{bottom:712.249800px;}
.y1fa{bottom:713.681700px;}
.y22c{bottom:714.581550px;}
.yd9{bottom:714.813300px;}
.y15a{bottom:715.829100px;}
.y84{bottom:716.554950px;}
.yb{bottom:717.049800px;}
.y5f{bottom:721.654350px;}
.y21{bottom:727.380450px;}
.y195{bottom:727.529250px;}
.y32{bottom:727.849650px;}
.y45{bottom:727.860000px;}
.y241{bottom:730.165350px;}
.y175{bottom:730.344900px;}
.yb1{bottom:733.249800px;}
.y145{bottom:734.613300px;}
.y1f9{bottom:736.181700px;}
.y22b{bottom:737.081550px;}
.yd8{bottom:737.313300px;}
.y159{bottom:738.329100px;}
.y83{bottom:739.054950px;}
.ya{bottom:739.549800px;}
.y1e1{bottom:739.781550px;}
.y21a{bottom:741.518100px;}
.y5e{bottom:744.154350px;}
.y20{bottom:748.980450px;}
.y10d{bottom:752.149950px;}
.y240{bottom:754.645800px;}
.y31{bottom:754.849650px;}
.y44{bottom:754.860000px;}
.yb0{bottom:755.749800px;}
.y1d0{bottom:755.981550px;}
.y12d{bottom:757.113300px;}
.y22a{bottom:759.581550px;}
.yd7{bottom:759.813300px;}
.y158{bottom:760.829100px;}
.y82{bottom:761.554950px;}
.y9{bottom:762.049800px;}
.y1e0{bottom:762.281550px;}
.y5d{bottom:766.654350px;}
.y233{bottom:769.481550px;}
.y1f{bottom:770.580450px;}
.y174{bottom:774.444900px;}
.y10c{bottom:774.649800px;}
.yaf{bottom:778.249800px;}
.y23f{bottom:779.126250px;}
.y12c{bottom:779.613300px;}
.y1b9{bottom:779.749800px;}
.y208{bottom:781.181550px;}
.y30{bottom:781.849800px;}
.y43{bottom:781.860000px;}
.y229{bottom:782.081550px;}
.yd6{bottom:782.313300px;}
.y157{bottom:783.329100px;}
.y81{bottom:784.054950px;}
.y1df{bottom:784.781550px;}
.y218{bottom:787.102500px;}
.y5c{bottom:789.154350px;}
.y1e{bottom:792.180300px;}
.y194{bottom:792.329250px;}
.y10b{bottom:797.149800px;}
.yae{bottom:800.749800px;}
.y12b{bottom:802.113300px;}
.y1b7{bottom:802.249800px;}
.y1b8{bottom:802.566150px;}
.y23e{bottom:803.606700px;}
.y1f8{bottom:803.681550px;}
.y228{bottom:804.581550px;}
.yd5{bottom:804.813300px;}
.y156{bottom:805.829100px;}
.y80{bottom:806.554950px;}
.y1de{bottom:807.281550px;}
.y5b{bottom:811.654350px;}
.y1cf{bottom:813.581700px;}
.y193{bottom:813.929250px;}
.y173{bottom:819.444900px;}
.y10a{bottom:819.649800px;}
.yad{bottom:823.249800px;}
.y144{bottom:824.613300px;}
.y23d{bottom:826.106700px;}
.y207{bottom:826.181550px;}
.y227{bottom:827.081550px;}
.yd4{bottom:827.313300px;}
.y155{bottom:828.329100px;}
.y7f{bottom:829.054950px;}
.y8{bottom:829.549800px;}
.y1dd{bottom:829.781550px;}
.y5a{bottom:834.154350px;}
.y192{bottom:835.529250px;}
.y2f{bottom:835.849800px;}
.y42{bottom:835.860000px;}
.y1ce{bottom:836.081700px;}
.yac{bottom:845.749800px;}
.y12a{bottom:847.113300px;}
.y1f7{bottom:848.681550px;}
.y226{bottom:849.581550px;}
.yd3{bottom:849.813300px;}
.y23c{bottom:850.587150px;}
.y154{bottom:850.829100px;}
.y9e{bottom:851.554950px;}
.y7{bottom:852.049800px;}
.y1dc{bottom:852.281550px;}
.y59{bottom:856.654350px;}
.y1d{bottom:856.980450px;}
.y191{bottom:857.129250px;}
.y1cd{bottom:858.581700px;}
.y2e{bottom:862.849800px;}
.y41{bottom:862.860000px;}
.y109{bottom:867.349950px;}
.yab{bottom:868.249800px;}
.y143{bottom:869.613300px;}
.y1b6{bottom:869.749800px;}
.y206{bottom:871.181550px;}
.y225{bottom:872.081550px;}
.yd2{bottom:872.313300px;}
.y153{bottom:873.329100px;}
.y1d8{bottom:873.881400px;}
.yc7{bottom:874.054950px;}
.y6{bottom:874.549800px;}
.y1c{bottom:878.580450px;}
.y190{bottom:878.729250px;}
.y1cc{bottom:881.081700px;}
.y2d{bottom:889.849800px;}
.y40{bottom:889.860000px;}
.yaa{bottom:890.749800px;}
.y1aa{bottom:892.113300px;}
.y1b5{bottom:892.249800px;}
.y1f6{bottom:893.681550px;}
.y224{bottom:894.581550px;}
.yd1{bottom:894.813300px;}
.y152{bottom:895.829100px;}
.y1d7{bottom:896.381400px;}
.y7e{bottom:896.554950px;}
.y5{bottom:897.049800px;}
.y1db{bottom:897.281550px;}
.y1b{bottom:900.180300px;}
.y18f{bottom:900.329100px;}
.y58{bottom:901.654350px;}
.y1cb{bottom:903.581700px;}
.y232{bottom:904.481550px;}
.y172{bottom:906.744900px;}
.ya9{bottom:913.249800px;}
.y129{bottom:914.613300px;}
.y2c{bottom:916.849800px;}
.y3f{bottom:916.860000px;}
.y223{bottom:917.081550px;}
.yd0{bottom:917.313300px;}
.y151{bottom:918.329100px;}
.y1d6{bottom:918.881400px;}
.y7d{bottom:919.054950px;}
.y4{bottom:919.549800px;}
.y1da{bottom:919.781550px;}
.y1a{bottom:921.780450px;}
.y18e{bottom:922.829100px;}
.y1ca{bottom:926.081700px;}
.y231{bottom:926.981550px;}
.y23b{bottom:928.781550px;}
.ya8{bottom:935.749800px;}
.y128{bottom:937.113300px;}
.y1b4{bottom:937.249800px;}
.y222{bottom:939.581550px;}
.ycf{bottom:939.813300px;}
.y150{bottom:940.829100px;}
.y1d5{bottom:941.381400px;}
.y7c{bottom:941.554950px;}
.y3{bottom:942.049800px;}
.y19{bottom:943.380450px;}
.y18d{bottom:945.329100px;}
.y1c9{bottom:948.581700px;}
.y171{bottom:949.944900px;}
.y205{bottom:951.281550px;}
.y23a{bottom:957.581550px;}
.y108{bottom:958.249800px;}
.y127{bottom:959.613300px;}
.y221{bottom:962.081550px;}
.y1eb{bottom:963.881400px;}
.y7b{bottom:964.054950px;}
.y2{bottom:964.549800px;}
.y18{bottom:964.980450px;}
.y57{bottom:967.354350px;}
.y2b{bottom:970.849800px;}
.y3e{bottom:970.860000px;}
.y1d9{bottom:971.081550px;}
.y170{bottom:971.545050px;}
.y21d{bottom:972.656850px;}
.y204{bottom:973.781550px;}
.y239{bottom:980.081550px;}
.y1ac{bottom:980.749800px;}
.y126{bottom:982.113300px;}
.y220{bottom:984.581550px;}
.yce{bottom:984.813300px;}
.y14f{bottom:985.829100px;}
.y1ea{bottom:986.381550px;}
.y7a{bottom:986.554950px;}
.y56{bottom:988.954350px;}
.y18c{bottom:989.429100px;}
.y230{bottom:994.481550px;}
.y1c8{bottom:999.881700px;}
.y238{bottom:1002.581550px;}
.ya7{bottom:1003.249800px;}
.y125{bottom:1004.613300px;}
.y21f{bottom:1007.081550px;}
.y17{bottom:1008.180300px;}
.y1{bottom:1008.649800px;}
.y1d4{bottom:1008.881550px;}
.y9d{bottom:1009.054950px;}
.y55{bottom:1014.454350px;}
.ya6{bottom:1025.749800px;}
.y1a9{bottom:1027.113300px;}
.y217{bottom:1027.122450px;}
.ycd{bottom:1029.813300px;}
.y14e{bottom:1030.829100px;}
.y1d3{bottom:1031.381550px;}
.y9c{bottom:1031.554950px;}
.y18b{bottom:1032.629100px;}
.y16f{bottom:1036.345050px;}
.y54{bottom:1039.954350px;}
.ya5{bottom:1048.249800px;}
.y124{bottom:1049.613300px;}
.ycc{bottom:1052.313300px;}
.y14d{bottom:1053.329100px;}
.y79{bottom:1054.054950px;}
.y18a{bottom:1054.229100px;}
.y22f{bottom:1060.181550px;}
.y53{bottom:1065.454350px;}
.ya4{bottom:1070.749800px;}
.y123{bottom:1072.113300px;}
.y21e{bottom:1072.781550px;}
.y2a{bottom:1073.449800px;}
.y216{bottom:1074.581550px;}
.ycb{bottom:1074.813300px;}
.y78{bottom:1076.554950px;}
.y1d2{bottom:1082.681550px;}
.y52{bottom:1090.954350px;}
.ya3{bottom:1093.249800px;}
.y122{bottom:1094.613300px;}
.yca{bottom:1097.313300px;}
.y14c{bottom:1098.329100px;}
.y77{bottom:1099.054950px;}
.y16e{bottom:1101.145050px;}
.y51{bottom:1116.454350px;}
.y76{bottom:1121.554950px;}
.y16d{bottom:1122.744900px;}
.ya2{bottom:1138.249800px;}
.y1c7{bottom:1140.281550px;}
.yc9{bottom:1142.313300px;}
.y14b{bottom:1143.329100px;}
.y75{bottom:1144.054950px;}
.y16c{bottom:1144.345050px;}
.y4f{bottom:1196.166450px;}
.y4e{bottom:1214.166450px;}
.he{height:37.520508px;}
.hd{height:38.664000px;}
.h8{height:41.689453px;}
.hf{height:47.381836px;}
.h11{height:49.992188px;}
.h3{height:50.027344px;}
.h12{height:51.257587px;}
.hc{height:51.552000px;}
.h9{height:58.324219px;}
.h13{height:58.365234px;}
.h7{height:62.534180px;}
.h4{height:63.175781px;}
.ha{height:63.949219px;}
.h10{height:69.278320px;}
.hb{height:74.607422px;}
.h6{height:78.969727px;}
.h5{height:85.265625px;}
.h2{height:95.923828px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x22{left:73.700850px;}
.x2e{left:89.291400px;}
.x2d{left:96.041400px;}
.x21{left:97.072950px;}
.x23{left:99.212550px;}
.x1{left:127.559100px;}
.x16{left:154.559100px;}
.x12{left:161.574750px;}
.x11{left:164.338650px;}
.xc{left:165.826800px;}
.x28{left:170.078700px;}
.x19{left:172.842450px;}
.xb{left:178.582650px;}
.xe{left:191.338500px;}
.xd{left:192.826800px;}
.xf{left:195.590550px;}
.x1a{left:199.842450px;}
.x3{left:204.094500px;}
.x1d{left:216.850350px;}
.x13{left:218.338650px;}
.x1c{left:226.842600px;}
.x2c{left:253.499100px;}
.x1b{left:257.881950px;}
.x6{left:283.457400px;}
.x29{left:321.023550px;}
.x2a{left:333.775050px;}
.x27{left:346.619550px;}
.x20{left:350.198250px;}
.x18{left:394.120800px;}
.x2{left:397.697100px;}
.x15{left:417.461550px;}
.x25{left:419.880450px;}
.x14{left:437.456700px;}
.x10{left:438.518250px;}
.x8{left:441.956700px;}
.xa{left:443.018250px;}
.x1f{left:446.456700px;}
.x1e{left:463.464600px;}
.x7{left:492.578550px;}
.x26{left:510.236250px;}
.x9{left:545.979300px;}
.x2b{left:556.684350px;}
.x24{left:583.937100px;}
.x5{left:676.151550px;}
.x4{left:681.776550px;}
.x17{left:765.354300px;}
@media print{
.v3{vertical-align:-1.124800pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.124800pt;}
.v1{vertical-align:21.312000pt;}
.ls1{letter-spacing:-2.960000pt;}
.ls4{letter-spacing:-2.368000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000533pt;}
.ls8{letter-spacing:0.014400pt;}
.ls5{letter-spacing:1.457600pt;}
.ls6{letter-spacing:3.115200pt;}
.ls3{letter-spacing:3.406933pt;}
.ls7{letter-spacing:12.860800pt;}
.ws12{word-spacing:-24.000000pt;}
.ws7c{word-spacing:-18.666667pt;}
.ws83{word-spacing:-17.333333pt;}
.ws4a{word-spacing:-16.000000pt;}
.ws41{word-spacing:-14.528000pt;}
.ws86{word-spacing:-13.056000pt;}
.ws85{word-spacing:-12.736000pt;}
.ws82{word-spacing:-10.261333pt;}
.ws84{word-spacing:-10.122667pt;}
.ws40{word-spacing:-9.328000pt;}
.ws71{word-spacing:-7.232000pt;}
.ws1c{word-spacing:-4.032000pt;}
.ws73{word-spacing:-3.520000pt;}
.ws28{word-spacing:-3.136000pt;}
.ws6a{word-spacing:-2.688000pt;}
.ws2d{word-spacing:-2.624000pt;}
.ws38{word-spacing:-2.560000pt;}
.ws52{word-spacing:-2.496000pt;}
.ws74{word-spacing:-2.432000pt;}
.ws4c{word-spacing:-2.304000pt;}
.ws50{word-spacing:-2.240000pt;}
.ws5f{word-spacing:-1.984000pt;}
.ws10{word-spacing:-1.962667pt;}
.ws57{word-spacing:-1.920000pt;}
.ws55{word-spacing:-1.856000pt;}
.ws2a{word-spacing:-1.728000pt;}
.ws77{word-spacing:-1.664000pt;}
.ws3c{word-spacing:-1.600000pt;}
.ws7d{word-spacing:-1.472000pt;}
.ws34{word-spacing:-1.408000pt;}
.ws39{word-spacing:-1.344000pt;}
.ws2e{word-spacing:-1.216000pt;}
.ws72{word-spacing:-1.152000pt;}
.ws53{word-spacing:-1.088000pt;}
.ws33{word-spacing:-1.024000pt;}
.ws3d{word-spacing:-0.896000pt;}
.ws5c{word-spacing:-0.832000pt;}
.ws45{word-spacing:-0.704000pt;}
.ws48{word-spacing:-0.640000pt;}
.ws3f{word-spacing:-0.576000pt;}
.ws49{word-spacing:-0.512000pt;}
.ws79{word-spacing:-0.448000pt;}
.ws22{word-spacing:-0.384000pt;}
.ws56{word-spacing:-0.320000pt;}
.ws5a{word-spacing:-0.256000pt;}
.ws6c{word-spacing:-0.128000pt;}
.ws4f{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
.ws21{word-spacing:0.064000pt;}
.ws70{word-spacing:0.128000pt;}
.ws3a{word-spacing:0.320000pt;}
.ws42{word-spacing:0.384000pt;}
.ws32{word-spacing:0.448000pt;}
.ws5d{word-spacing:0.512000pt;}
.ws36{word-spacing:0.576000pt;}
.ws78{word-spacing:0.640000pt;}
.ws37{word-spacing:0.704000pt;}
.ws35{word-spacing:0.768000pt;}
.ws3b{word-spacing:0.896000pt;}
.ws27{word-spacing:0.960000pt;}
.ws66{word-spacing:1.024000pt;}
.ws5e{word-spacing:1.088000pt;}
.ws67{word-spacing:1.152000pt;}
.ws2c{word-spacing:1.216000pt;}
.ws14{word-spacing:1.344000pt;}
.ws4b{word-spacing:1.408000pt;}
.wsb{word-spacing:1.472000pt;}
.ws63{word-spacing:1.536000pt;}
.ws51{word-spacing:1.664000pt;}
.ws3e{word-spacing:1.728000pt;}
.ws81{word-spacing:1.792000pt;}
.ws25{word-spacing:1.920000pt;}
.ws23{word-spacing:1.984000pt;}
.ws26{word-spacing:2.048000pt;}
.ws1f{word-spacing:2.112000pt;}
.ws7{word-spacing:2.176000pt;}
.ws76{word-spacing:2.240000pt;}
.ws58{word-spacing:2.368000pt;}
.ws29{word-spacing:2.496000pt;}
.ws8{word-spacing:2.560000pt;}
.ws1d{word-spacing:2.624000pt;}
.ws1e{word-spacing:2.688000pt;}
.ws4d{word-spacing:2.752000pt;}
.ws65{word-spacing:2.816000pt;}
.ws61{word-spacing:2.944000pt;}
.ws11{word-spacing:2.960000pt;}
.ws13{word-spacing:3.061333pt;}
.ws68{word-spacing:3.328000pt;}
.ws5b{word-spacing:3.392000pt;}
.ws24{word-spacing:3.584000pt;}
.ws1b{word-spacing:3.648000pt;}
.ws17{word-spacing:3.712000pt;}
.ws64{word-spacing:3.904000pt;}
.ws15{word-spacing:3.968000pt;}
.ws2f{word-spacing:4.096000pt;}
.wsc{word-spacing:4.160000pt;}
.ws31{word-spacing:4.224000pt;}
.ws7a{word-spacing:4.288000pt;}
.ws20{word-spacing:4.544000pt;}
.ws7b{word-spacing:4.672000pt;}
.ws30{word-spacing:4.800000pt;}
.ws43{word-spacing:4.992000pt;}
.ws6b{word-spacing:5.056000pt;}
.ws75{word-spacing:5.120000pt;}
.ws80{word-spacing:5.504000pt;}
.ws59{word-spacing:5.632000pt;}
.ws46{word-spacing:5.888000pt;}
.ws1a{word-spacing:5.952000pt;}
.ws62{word-spacing:6.016000pt;}
.ws16{word-spacing:6.144000pt;}
.ws7f{word-spacing:6.464000pt;}
.ws6{word-spacing:6.720000pt;}
.ws69{word-spacing:6.784000pt;}
.ws19{word-spacing:6.976000pt;}
.wsd{word-spacing:7.104000pt;}
.wsa{word-spacing:7.296000pt;}
.ws1{word-spacing:7.424000pt;}
.wsf{word-spacing:7.744000pt;}
.ws47{word-spacing:7.872000pt;}
.ws2b{word-spacing:7.936000pt;}
.ws18{word-spacing:8.512000pt;}
.ws4e{word-spacing:8.768000pt;}
.ws60{word-spacing:8.896000pt;}
.ws54{word-spacing:9.024000pt;}
.ws44{word-spacing:9.216000pt;}
.ws6d{word-spacing:9.536000pt;}
.ws9{word-spacing:9.728000pt;}
.ws6f{word-spacing:10.496000pt;}
.ws2{word-spacing:11.584000pt;}
.ws4{word-spacing:11.840000pt;}
.ws6e{word-spacing:12.864000pt;}
.wse{word-spacing:13.376000pt;}
.ws7e{word-spacing:13.440000pt;}
.ws3{word-spacing:16.832000pt;}
.ws5{word-spacing:18.752000pt;}
.ws87{word-spacing:119.600533pt;}
.ws88{word-spacing:177.472000pt;}
._1f{margin-left:-17.774933pt;}
._1b{margin-left:-16.663467pt;}
._11{margin-left:-15.214933pt;}
._20{margin-left:-14.305067pt;}
._10{margin-left:-10.560000pt;}
._12{margin-left:-8.812800pt;}
._1d{margin-left:-7.859200pt;}
._15{margin-left:-6.839467pt;}
._6{margin-left:-5.862400pt;}
._f{margin-left:-4.925333pt;}
._0{margin-left:-3.756800pt;}
._7{margin-left:-2.496000pt;}
._5{margin-left:-1.113600pt;}
._3{width:1.088000pt;}
._4{width:2.393600pt;}
._e{width:3.552000pt;}
._2{width:4.531200pt;}
._8{width:6.035200pt;}
._a{width:7.475200pt;}
._9{width:8.384000pt;}
._13{width:9.408000pt;}
._1a{width:10.451200pt;}
._1c{width:12.096000pt;}
._b{width:13.324800pt;}
._1{width:14.880000pt;}
._16{width:17.139200pt;}
._17{width:18.880000pt;}
._d{width:19.936000pt;}
._c{width:21.241600pt;}
._19{width:32.000000pt;}
._1e{width:36.160000pt;}
._18{width:56.512000pt;}
._14{width:57.600000pt;}
._22{width:94.012267pt;}
._21{width:1240.326400pt;}
.fs6{font-size:37.312000pt;}
.fs7{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs8{font-size:69.333333pt;}
.fs5{font-size:74.666667pt;}
.fs3{font-size:80.000000pt;}
.fs2{font-size:85.333333pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y189{bottom:65.848533pt;}
.y50{bottom:66.386533pt;}
.y1b3{bottom:91.777600pt;}
.yfb{bottom:94.488133pt;}
.y9b{bottom:96.937733pt;}
.y16b{bottom:97.092533pt;}
.yc6{bottom:111.777600pt;}
.y142{bottom:112.989600pt;}
.y1c6{bottom:113.110933pt;}
.yfa{bottom:113.154800pt;}
.y1a8{bottom:115.492667pt;}
.y188{bottom:116.292533pt;}
.y9a{bottom:116.937733pt;}
.y16a{bottom:117.092533pt;}
.yea{bottom:123.288133pt;}
.yc5{bottom:131.777600pt;}
.yf9{bottom:131.821467pt;}
.y141{bottom:132.989600pt;}
.y1c5{bottom:133.110933pt;}
.y1a7{bottom:135.492667pt;}
.y99{bottom:136.937733pt;}
.y169{bottom:137.092533pt;}
.ye9{bottom:137.688133pt;}
.y259{bottom:141.002533pt;}
.y74{bottom:141.470533pt;}
.y121{bottom:143.777733pt;}
.yc4{bottom:151.777600pt;}
.y140{bottom:152.989600pt;}
.y1a6{bottom:155.492667pt;}
.y187{bottom:156.292533pt;}
.y98{bottom:156.937733pt;}
.y168{bottom:157.092533pt;}
.yf8{bottom:160.137733pt;}
.y258{bottom:160.869200pt;}
.y73{bottom:161.470533pt;}
.y120{bottom:163.777733pt;}
.y237{bottom:163.983600pt;}
.yc3{bottom:171.777600pt;}
.y13f{bottom:172.989600pt;}
.y1a5{bottom:175.492667pt;}
.y186{bottom:176.292533pt;}
.y97{bottom:176.937733pt;}
.y167{bottom:177.092533pt;}
.yf7{bottom:180.137733pt;}
.y257{bottom:180.869200pt;}
.y72{bottom:181.470533pt;}
.y11f{bottom:183.777733pt;}
.y203{bottom:190.383600pt;}
.y1b2{bottom:191.777600pt;}
.y13e{bottom:192.989600pt;}
.y1c4{bottom:193.110933pt;}
.y1a4{bottom:195.492667pt;}
.y96{bottom:196.937733pt;}
.y166{bottom:197.092533pt;}
.yf6{bottom:200.137733pt;}
.y71{bottom:201.470533pt;}
.y256{bottom:202.629600pt;}
.y11e{bottom:203.777733pt;}
.y107{bottom:211.337733pt;}
.y1b1{bottom:211.777600pt;}
.y13d{bottom:212.989600pt;}
.y1c3{bottom:213.110933pt;}
.y21c{bottom:213.142933pt;}
.y1a3{bottom:215.492667pt;}
.y185{bottom:216.292533pt;}
.y1f5{bottom:216.783467pt;}
.y95{bottom:216.937733pt;}
.y165{bottom:217.092533pt;}
.yf5{bottom:220.137733pt;}
.y70{bottom:221.470533pt;}
.y11d{bottom:223.777733pt;}
.y255{bottom:224.390000pt;}
.y106{bottom:231.337733pt;}
.yc2{bottom:231.777600pt;}
.y13c{bottom:232.989600pt;}
.y1a2{bottom:235.492667pt;}
.y1f4{bottom:236.783467pt;}
.y94{bottom:236.937733pt;}
.y164{bottom:237.092533pt;}
.yf4{bottom:240.137733pt;}
.y6f{bottom:241.470533pt;}
.y11c{bottom:243.777733pt;}
.y254{bottom:244.390000pt;}
.y105{bottom:251.337733pt;}
.yc1{bottom:251.777600pt;}
.y13b{bottom:252.989600pt;}
.ye8{bottom:255.389600pt;}
.y1a1{bottom:255.492667pt;}
.y1f3{bottom:256.783467pt;}
.y93{bottom:256.937733pt;}
.y163{bottom:257.092533pt;}
.y6e{bottom:261.470533pt;}
.y11b{bottom:263.777733pt;}
.y253{bottom:266.150400pt;}
.y202{bottom:267.183733pt;}
.y104{bottom:271.337733pt;}
.yc0{bottom:271.777600pt;}
.y13a{bottom:272.989600pt;}
.y1c2{bottom:273.110933pt;}
.ye7{bottom:275.389600pt;}
.y1a0{bottom:275.492667pt;}
.y184{bottom:276.292533pt;}
.y1f2{bottom:276.783467pt;}
.y92{bottom:276.937733pt;}
.yf3{bottom:280.137733pt;}
.y6d{bottom:281.470533pt;}
.y11a{bottom:283.777733pt;}
.y215{bottom:286.383600pt;}
.y3d{bottom:286.977600pt;}
.y201{bottom:287.183733pt;}
.y252{bottom:287.910800pt;}
.y103{bottom:291.337733pt;}
.ybf{bottom:291.777600pt;}
.y139{bottom:292.989600pt;}
.y1c1{bottom:293.110933pt;}
.ye6{bottom:295.389600pt;}
.y19f{bottom:295.492667pt;}
.y162{bottom:296.292533pt;}
.y1f1{bottom:296.783467pt;}
.y91{bottom:296.937733pt;}
.yf2{bottom:300.137733pt;}
.y6c{bottom:301.470533pt;}
.y236{bottom:303.983600pt;}
.y214{bottom:305.583600pt;}
.y200{bottom:307.183733pt;}
.y251{bottom:309.671200pt;}
.y3c{bottom:310.977600pt;}
.ybe{bottom:311.777600pt;}
.y138{bottom:312.989600pt;}
.y180{bottom:313.195467pt;}
.ye5{bottom:315.389600pt;}
.y19e{bottom:315.492667pt;}
.y183{bottom:316.292533pt;}
.y1f0{bottom:316.783467pt;}
.ya1{bottom:316.937733pt;}
.yf1{bottom:320.137733pt;}
.y213{bottom:324.783733pt;}
.y1ff{bottom:327.183733pt;}
.y250{bottom:329.671200pt;}
.ybd{bottom:331.777600pt;}
.y137{bottom:332.989600pt;}
.y3b{bottom:334.977600pt;}
.y19d{bottom:335.492667pt;}
.y161{bottom:336.292533pt;}
.y1ef{bottom:336.783467pt;}
.ya0{bottom:336.937733pt;}
.y16{bottom:340.577600pt;}
.y119{bottom:343.777733pt;}
.y212{bottom:343.983600pt;}
.y1fe{bottom:347.183733pt;}
.y102{bottom:349.737733pt;}
.y219{bottom:351.095733pt;}
.y24f{bottom:351.431600pt;}
.ybc{bottom:351.777600pt;}
.y136{bottom:352.989600pt;}
.y1c0{bottom:353.110933pt;}
.y17f{bottom:353.195467pt;}
.ye4{bottom:355.389600pt;}
.y1ee{bottom:356.783467pt;}
.y90{bottom:356.937733pt;}
.y15{bottom:359.777600pt;}
.yf0{bottom:360.137733pt;}
.y6b{bottom:361.470533pt;}
.y211{bottom:363.183733pt;}
.y118{bottom:363.777733pt;}
.y1d1{bottom:364.783600pt;}
.y1fd{bottom:367.183733pt;}
.ybb{bottom:371.777600pt;}
.y101{bottom:372.137733pt;}
.y135{bottom:372.989600pt;}
.y24e{bottom:373.192000pt;}
.y17e{bottom:373.195467pt;}
.y19c{bottom:374.692667pt;}
.ye3{bottom:375.389600pt;}
.y160{bottom:376.292533pt;}
.y8f{bottom:376.937733pt;}
.y6a{bottom:381.470533pt;}
.y3a{bottom:382.977467pt;}
.y4d{bottom:382.986667pt;}
.y210{bottom:383.183733pt;}
.y117{bottom:383.777733pt;}
.y1b0{bottom:391.777600pt;}
.y100{bottom:392.137733pt;}
.y14a{bottom:392.989600pt;}
.y24d{bottom:394.952533pt;}
.ye2{bottom:395.389600pt;}
.y1ed{bottom:396.783467pt;}
.y8e{bottom:396.937733pt;}
.y69{bottom:401.470533pt;}
.y20f{bottom:403.183733pt;}
.y116{bottom:403.777733pt;}
.y235{bottom:403.983600pt;}
.y29{bottom:409.760400pt;}
.y1af{bottom:411.777600pt;}
.yff{bottom:412.137733pt;}
.y1fc{bottom:412.783600pt;}
.y134{bottom:412.989600pt;}
.y19b{bottom:413.092667pt;}
.y1bf{bottom:413.110933pt;}
.y17d{bottom:413.195467pt;}
.y24c{bottom:414.952533pt;}
.ye1{bottom:415.389600pt;}
.y15f{bottom:416.292533pt;}
.y1ec{bottom:416.783467pt;}
.yc8{bottom:416.937733pt;}
.yef{bottom:418.537733pt;}
.y68{bottom:421.470533pt;}
.y20e{bottom:423.183733pt;}
.y14{bottom:423.777600pt;}
.y115{bottom:423.777733pt;}
.y39{bottom:430.977467pt;}
.y4c{bottom:430.986667pt;}
.yba{bottom:431.777600pt;}
.yfe{bottom:432.137733pt;}
.y1ab{bottom:432.989600pt;}
.y1be{bottom:433.110933pt;}
.y21b{bottom:434.245333pt;}
.y182{bottom:436.292533pt;}
.y24b{bottom:436.712933pt;}
.y9f{bottom:436.937733pt;}
.yee{bottom:438.537733pt;}
.y67{bottom:441.470533pt;}
.y13{bottom:442.977600pt;}
.yb9{bottom:451.777600pt;}
.yfd{bottom:452.137733pt;}
.y19a{bottom:452.292667pt;}
.y149{bottom:452.989600pt;}
.y8d{bottom:456.937733pt;}
.y24a{bottom:458.473333pt;}
.yed{bottom:458.537733pt;}
.y1e9{bottom:459.183600pt;}
.y66{bottom:461.470533pt;}
.y12{bottom:462.177600pt;}
.y20d{bottom:463.183733pt;}
.y17c{bottom:471.595467pt;}
.yb8{bottom:471.777600pt;}
.yfc{bottom:472.137733pt;}
.y133{bottom:472.989600pt;}
.y28{bottom:473.760400pt;}
.ye0{bottom:475.389600pt;}
.y15e{bottom:476.292533pt;}
.y8c{bottom:476.937733pt;}
.y249{bottom:478.473333pt;}
.yec{bottom:478.537733pt;}
.y38{bottom:478.977467pt;}
.y4b{bottom:478.986667pt;}
.y1e8{bottom:479.183600pt;}
.y11{bottom:481.377600pt;}
.y65{bottom:481.470533pt;}
.y20c{bottom:483.183733pt;}
.y114{bottom:483.777733pt;}
.y17b{bottom:491.595467pt;}
.yb7{bottom:491.777600pt;}
.y199{bottom:492.292667pt;}
.y27{bottom:492.960400pt;}
.y132{bottom:492.989600pt;}
.y1bd{bottom:493.110933pt;}
.ydf{bottom:495.389600pt;}
.y8b{bottom:496.937733pt;}
.yeb{bottom:498.537733pt;}
.y1e7{bottom:499.183600pt;}
.y248{bottom:500.233733pt;}
.y10{bottom:500.577600pt;}
.y64{bottom:501.470533pt;}
.y113{bottom:503.777733pt;}
.y17a{bottom:511.595467pt;}
.yb6{bottom:511.777600pt;}
.y26{bottom:512.160400pt;}
.y131{bottom:512.989600pt;}
.y1bc{bottom:513.110933pt;}
.yde{bottom:515.389600pt;}
.y15d{bottom:516.292533pt;}
.y8a{bottom:516.937733pt;}
.y1e6{bottom:519.183600pt;}
.yf{bottom:519.777600pt;}
.y63{bottom:521.470533pt;}
.y247{bottom:521.994133pt;}
.y112{bottom:523.777733pt;}
.y234{bottom:523.983600pt;}
.y37{bottom:526.977467pt;}
.y4a{bottom:526.986667pt;}
.y25{bottom:531.360400pt;}
.y179{bottom:531.595467pt;}
.y1ae{bottom:531.777600pt;}
.y130{bottom:532.989600pt;}
.y22e{bottom:534.712267pt;}
.y15c{bottom:536.292533pt;}
.y89{bottom:536.937733pt;}
.y1e5{bottom:539.183600pt;}
.y62{bottom:541.470533pt;}
.y246{bottom:541.994133pt;}
.y111{bottom:543.777733pt;}
.y24{bottom:550.560400pt;}
.y198{bottom:550.692667pt;}
.y36{bottom:550.977467pt;}
.y49{bottom:550.986667pt;}
.y178{bottom:551.595467pt;}
.y1ad{bottom:551.777600pt;}
.y148{bottom:552.989600pt;}
.y20b{bottom:554.383733pt;}
.ydd{bottom:555.389600pt;}
.y88{bottom:556.937733pt;}
.y1e4{bottom:559.183600pt;}
.y61{bottom:561.470533pt;}
.y245{bottom:563.754533pt;}
.y110{bottom:563.777733pt;}
.y177{bottom:571.595467pt;}
.yb5{bottom:571.777600pt;}
.y12f{bottom:572.989600pt;}
.y1bb{bottom:573.110933pt;}
.y20a{bottom:574.383733pt;}
.y35{bottom:574.977467pt;}
.y48{bottom:574.986667pt;}
.ydc{bottom:575.389600pt;}
.y15b{bottom:576.292533pt;}
.y87{bottom:576.937733pt;}
.ye{bottom:577.377600pt;}
.y1e3{bottom:579.183600pt;}
.y60{bottom:581.470533pt;}
.y10f{bottom:583.777733pt;}
.y244{bottom:585.514933pt;}
.y197{bottom:589.092667pt;}
.yb4{bottom:591.777600pt;}
.y147{bottom:592.989600pt;}
.y209{bottom:594.383733pt;}
.ydb{bottom:595.389600pt;}
.y86{bottom:596.937733pt;}
.yd{bottom:597.377600pt;}
.y34{bottom:598.977467pt;}
.y47{bottom:598.986667pt;}
.y1e2{bottom:599.183600pt;}
.y10e{bottom:603.777733pt;}
.y243{bottom:607.275333pt;}
.y23{bottom:608.160400pt;}
.y196{bottom:608.292667pt;}
.y176{bottom:610.795467pt;}
.yb3{bottom:611.777600pt;}
.y12e{bottom:612.989600pt;}
.y1fb{bottom:614.383733pt;}
.y22d{bottom:615.183600pt;}
.yda{bottom:615.389600pt;}
.y181{bottom:616.292533pt;}
.y85{bottom:616.937733pt;}
.yc{bottom:617.377600pt;}
.y33{bottom:622.977467pt;}
.y46{bottom:622.986667pt;}
.y242{bottom:627.275333pt;}
.y22{bottom:627.360400pt;}
.yb2{bottom:631.777600pt;}
.y146{bottom:632.989600pt;}
.y1ba{bottom:633.110933pt;}
.y1fa{bottom:634.383733pt;}
.y22c{bottom:635.183600pt;}
.yd9{bottom:635.389600pt;}
.y15a{bottom:636.292533pt;}
.y84{bottom:636.937733pt;}
.yb{bottom:637.377600pt;}
.y5f{bottom:641.470533pt;}
.y21{bottom:646.560400pt;}
.y195{bottom:646.692667pt;}
.y32{bottom:646.977467pt;}
.y45{bottom:646.986667pt;}
.y241{bottom:649.035867pt;}
.y175{bottom:649.195467pt;}
.yb1{bottom:651.777600pt;}
.y145{bottom:652.989600pt;}
.y1f9{bottom:654.383733pt;}
.y22b{bottom:655.183600pt;}
.yd8{bottom:655.389600pt;}
.y159{bottom:656.292533pt;}
.y83{bottom:656.937733pt;}
.ya{bottom:657.377600pt;}
.y1e1{bottom:657.583600pt;}
.y21a{bottom:659.127200pt;}
.y5e{bottom:661.470533pt;}
.y20{bottom:665.760400pt;}
.y10d{bottom:668.577733pt;}
.y240{bottom:670.796267pt;}
.y31{bottom:670.977467pt;}
.y44{bottom:670.986667pt;}
.yb0{bottom:671.777600pt;}
.y1d0{bottom:671.983600pt;}
.y12d{bottom:672.989600pt;}
.y22a{bottom:675.183600pt;}
.yd7{bottom:675.389600pt;}
.y158{bottom:676.292533pt;}
.y82{bottom:676.937733pt;}
.y9{bottom:677.377600pt;}
.y1e0{bottom:677.583600pt;}
.y5d{bottom:681.470533pt;}
.y233{bottom:683.983600pt;}
.y1f{bottom:684.960400pt;}
.y174{bottom:688.395467pt;}
.y10c{bottom:688.577600pt;}
.yaf{bottom:691.777600pt;}
.y23f{bottom:692.556667pt;}
.y12c{bottom:692.989600pt;}
.y1b9{bottom:693.110933pt;}
.y208{bottom:694.383600pt;}
.y30{bottom:694.977600pt;}
.y43{bottom:694.986667pt;}
.y229{bottom:695.183600pt;}
.yd6{bottom:695.389600pt;}
.y157{bottom:696.292533pt;}
.y81{bottom:696.937733pt;}
.y1df{bottom:697.583600pt;}
.y218{bottom:699.646667pt;}
.y5c{bottom:701.470533pt;}
.y1e{bottom:704.160267pt;}
.y194{bottom:704.292667pt;}
.y10b{bottom:708.577600pt;}
.yae{bottom:711.777600pt;}
.y12b{bottom:712.989600pt;}
.y1b7{bottom:713.110933pt;}
.y1b8{bottom:713.392133pt;}
.y23e{bottom:714.317067pt;}
.y1f8{bottom:714.383600pt;}
.y228{bottom:715.183600pt;}
.yd5{bottom:715.389600pt;}
.y156{bottom:716.292533pt;}
.y80{bottom:716.937733pt;}
.y1de{bottom:717.583600pt;}
.y5b{bottom:721.470533pt;}
.y1cf{bottom:723.183733pt;}
.y193{bottom:723.492667pt;}
.y173{bottom:728.395467pt;}
.y10a{bottom:728.577600pt;}
.yad{bottom:731.777600pt;}
.y144{bottom:732.989600pt;}
.y23d{bottom:734.317067pt;}
.y207{bottom:734.383600pt;}
.y227{bottom:735.183600pt;}
.yd4{bottom:735.389600pt;}
.y155{bottom:736.292533pt;}
.y7f{bottom:736.937733pt;}
.y8{bottom:737.377600pt;}
.y1dd{bottom:737.583600pt;}
.y5a{bottom:741.470533pt;}
.y192{bottom:742.692667pt;}
.y2f{bottom:742.977600pt;}
.y42{bottom:742.986667pt;}
.y1ce{bottom:743.183733pt;}
.yac{bottom:751.777600pt;}
.y12a{bottom:752.989600pt;}
.y1f7{bottom:754.383600pt;}
.y226{bottom:755.183600pt;}
.yd3{bottom:755.389600pt;}
.y23c{bottom:756.077467pt;}
.y154{bottom:756.292533pt;}
.y9e{bottom:756.937733pt;}
.y7{bottom:757.377600pt;}
.y1dc{bottom:757.583600pt;}
.y59{bottom:761.470533pt;}
.y1d{bottom:761.760400pt;}
.y191{bottom:761.892667pt;}
.y1cd{bottom:763.183733pt;}
.y2e{bottom:766.977600pt;}
.y41{bottom:766.986667pt;}
.y109{bottom:770.977733pt;}
.yab{bottom:771.777600pt;}
.y143{bottom:772.989600pt;}
.y1b6{bottom:773.110933pt;}
.y206{bottom:774.383600pt;}
.y225{bottom:775.183600pt;}
.yd2{bottom:775.389600pt;}
.y153{bottom:776.292533pt;}
.y1d8{bottom:776.783467pt;}
.yc7{bottom:776.937733pt;}
.y6{bottom:777.377600pt;}
.y1c{bottom:780.960400pt;}
.y190{bottom:781.092667pt;}
.y1cc{bottom:783.183733pt;}
.y2d{bottom:790.977600pt;}
.y40{bottom:790.986667pt;}
.yaa{bottom:791.777600pt;}
.y1aa{bottom:792.989600pt;}
.y1b5{bottom:793.110933pt;}
.y1f6{bottom:794.383600pt;}
.y224{bottom:795.183600pt;}
.yd1{bottom:795.389600pt;}
.y152{bottom:796.292533pt;}
.y1d7{bottom:796.783467pt;}
.y7e{bottom:796.937733pt;}
.y5{bottom:797.377600pt;}
.y1db{bottom:797.583600pt;}
.y1b{bottom:800.160267pt;}
.y18f{bottom:800.292533pt;}
.y58{bottom:801.470533pt;}
.y1cb{bottom:803.183733pt;}
.y232{bottom:803.983600pt;}
.y172{bottom:805.995467pt;}
.ya9{bottom:811.777600pt;}
.y129{bottom:812.989600pt;}
.y2c{bottom:814.977600pt;}
.y3f{bottom:814.986667pt;}
.y223{bottom:815.183600pt;}
.yd0{bottom:815.389600pt;}
.y151{bottom:816.292533pt;}
.y1d6{bottom:816.783467pt;}
.y7d{bottom:816.937733pt;}
.y4{bottom:817.377600pt;}
.y1da{bottom:817.583600pt;}
.y1a{bottom:819.360400pt;}
.y18e{bottom:820.292533pt;}
.y1ca{bottom:823.183733pt;}
.y231{bottom:823.983600pt;}
.y23b{bottom:825.583600pt;}
.ya8{bottom:831.777600pt;}
.y128{bottom:832.989600pt;}
.y1b4{bottom:833.110933pt;}
.y222{bottom:835.183600pt;}
.ycf{bottom:835.389600pt;}
.y150{bottom:836.292533pt;}
.y1d5{bottom:836.783467pt;}
.y7c{bottom:836.937733pt;}
.y3{bottom:837.377600pt;}
.y19{bottom:838.560400pt;}
.y18d{bottom:840.292533pt;}
.y1c9{bottom:843.183733pt;}
.y171{bottom:844.395467pt;}
.y205{bottom:845.583600pt;}
.y23a{bottom:851.183600pt;}
.y108{bottom:851.777600pt;}
.y127{bottom:852.989600pt;}
.y221{bottom:855.183600pt;}
.y1eb{bottom:856.783467pt;}
.y7b{bottom:856.937733pt;}
.y2{bottom:857.377600pt;}
.y18{bottom:857.760400pt;}
.y57{bottom:859.870533pt;}
.y2b{bottom:862.977600pt;}
.y3e{bottom:862.986667pt;}
.y1d9{bottom:863.183600pt;}
.y170{bottom:863.595600pt;}
.y21d{bottom:864.583867pt;}
.y204{bottom:865.583600pt;}
.y239{bottom:871.183600pt;}
.y1ac{bottom:871.777600pt;}
.y126{bottom:872.989600pt;}
.y220{bottom:875.183600pt;}
.yce{bottom:875.389600pt;}
.y14f{bottom:876.292533pt;}
.y1ea{bottom:876.783600pt;}
.y7a{bottom:876.937733pt;}
.y56{bottom:879.070533pt;}
.y18c{bottom:879.492533pt;}
.y230{bottom:883.983600pt;}
.y1c8{bottom:888.783733pt;}
.y238{bottom:891.183600pt;}
.ya7{bottom:891.777600pt;}
.y125{bottom:892.989600pt;}
.y21f{bottom:895.183600pt;}
.y17{bottom:896.160267pt;}
.y1{bottom:896.577600pt;}
.y1d4{bottom:896.783600pt;}
.y9d{bottom:896.937733pt;}
.y55{bottom:901.737200pt;}
.ya6{bottom:911.777600pt;}
.y1a9{bottom:912.989600pt;}
.y217{bottom:912.997733pt;}
.ycd{bottom:915.389600pt;}
.y14e{bottom:916.292533pt;}
.y1d3{bottom:916.783600pt;}
.y9c{bottom:916.937733pt;}
.y18b{bottom:917.892533pt;}
.y16f{bottom:921.195600pt;}
.y54{bottom:924.403867pt;}
.ya5{bottom:931.777600pt;}
.y124{bottom:932.989600pt;}
.ycc{bottom:935.389600pt;}
.y14d{bottom:936.292533pt;}
.y79{bottom:936.937733pt;}
.y18a{bottom:937.092533pt;}
.y22f{bottom:942.383600pt;}
.y53{bottom:947.070533pt;}
.ya4{bottom:951.777600pt;}
.y123{bottom:952.989600pt;}
.y21e{bottom:953.583600pt;}
.y2a{bottom:954.177600pt;}
.y216{bottom:955.183600pt;}
.ycb{bottom:955.389600pt;}
.y78{bottom:956.937733pt;}
.y1d2{bottom:962.383600pt;}
.y52{bottom:969.737200pt;}
.ya3{bottom:971.777600pt;}
.y122{bottom:972.989600pt;}
.yca{bottom:975.389600pt;}
.y14c{bottom:976.292533pt;}
.y77{bottom:976.937733pt;}
.y16e{bottom:978.795600pt;}
.y51{bottom:992.403867pt;}
.y76{bottom:996.937733pt;}
.y16d{bottom:997.995467pt;}
.ya2{bottom:1011.777600pt;}
.y1c7{bottom:1013.583600pt;}
.yc9{bottom:1015.389600pt;}
.y14b{bottom:1016.292533pt;}
.y75{bottom:1016.937733pt;}
.y16c{bottom:1017.195600pt;}
.y4f{bottom:1063.259067pt;}
.y4e{bottom:1079.259067pt;}
.he{height:33.351562pt;}
.hd{height:34.368000pt;}
.h8{height:37.057292pt;}
.hf{height:42.117188pt;}
.h11{height:44.437500pt;}
.h3{height:44.468750pt;}
.h12{height:45.562300pt;}
.hc{height:45.824000pt;}
.h9{height:51.843750pt;}
.h13{height:51.880208pt;}
.h7{height:55.585938pt;}
.h4{height:56.156250pt;}
.ha{height:56.843750pt;}
.h10{height:61.580729pt;}
.hb{height:66.317708pt;}
.h6{height:70.195312pt;}
.h5{height:75.791667pt;}
.h2{height:85.265625pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x22{left:65.511867pt;}
.x2e{left:79.370133pt;}
.x2d{left:85.370133pt;}
.x21{left:86.287067pt;}
.x23{left:88.188933pt;}
.x1{left:113.385867pt;}
.x16{left:137.385867pt;}
.x12{left:143.622000pt;}
.x11{left:146.078800pt;}
.xc{left:147.401600pt;}
.x28{left:151.181067pt;}
.x19{left:153.637733pt;}
.xb{left:158.740133pt;}
.xe{left:170.078667pt;}
.xd{left:171.401600pt;}
.xf{left:173.858267pt;}
.x1a{left:177.637733pt;}
.x3{left:181.417333pt;}
.x1d{left:192.755867pt;}
.x13{left:194.078800pt;}
.x1c{left:201.637867pt;}
.x2c{left:225.332533pt;}
.x1b{left:229.228400pt;}
.x6{left:251.962133pt;}
.x29{left:285.354267pt;}
.x2a{left:296.688933pt;}
.x27{left:308.106267pt;}
.x20{left:311.287333pt;}
.x18{left:350.329600pt;}
.x2{left:353.508533pt;}
.x15{left:371.076933pt;}
.x25{left:373.227067pt;}
.x14{left:388.850400pt;}
.x10{left:389.794000pt;}
.x8{left:392.850400pt;}
.xa{left:393.794000pt;}
.x1f{left:396.850400pt;}
.x1e{left:411.968533pt;}
.x7{left:437.847600pt;}
.x26{left:453.543333pt;}
.x9{left:485.314933pt;}
.x2b{left:494.830533pt;}
.x24{left:519.055200pt;}
.x5{left:601.023600pt;}
.x4{left:606.023600pt;}
.x17{left:680.314933pt;}
}




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