
    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_8cf695b3da05b6769c785191.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_d67e01d74ec885619aeb517a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.102539;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_b2e2fcf5f6b39aba84070885.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_86102e67e179c8b40810ba78.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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:17.988271px;}
.ls2{letter-spacing:17.988316px;}
.ls5{letter-spacing:18.000000px;}
.ls8{letter-spacing:18.000023px;}
.ls4{letter-spacing:24.750000px;}
.ls6{letter-spacing:27.000000px;}
.ls7{letter-spacing:28.477250px;}
.ls1{letter-spacing:33.750000px;}
.lsd{letter-spacing:36.000000px;}
.ls9{letter-spacing:58.500000px;}
.lsa{letter-spacing:90.000000px;}
.lsb{letter-spacing:184.500000px;}
.lsc{letter-spacing:342.000000px;}
.lse{letter-spacing:837.000000px;}
.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;}
}
.ws36{word-spacing:-20.999999px;}
.ws2{word-spacing:-18.000000px;}
.ws2b{word-spacing:-15.000000px;}
.ws37{word-spacing:-0.000101px;}
.ws27{word-spacing:-0.000035px;}
.ws3d{word-spacing:-0.000034px;}
.ws19{word-spacing:-0.000023px;}
.ws58{word-spacing:-0.000014px;}
.ws12{word-spacing:-0.000012px;}
.ws4d{word-spacing:-0.000001px;}
.ws0{word-spacing:0.000000px;}
.ws1{word-spacing:0.000002px;}
.ws4f{word-spacing:0.000008px;}
.wsc{word-spacing:0.000011px;}
.ws11{word-spacing:0.000022px;}
.ws46{word-spacing:0.000033px;}
.ws1d{word-spacing:4.499965px;}
.ws13{word-spacing:4.499967px;}
.ws17{word-spacing:4.499977px;}
.ws34{word-spacing:4.499978px;}
.ws5{word-spacing:4.499988px;}
.ws31{word-spacing:4.499998px;}
.ws20{word-spacing:4.499999px;}
.ws4{word-spacing:4.500000px;}
.ws2e{word-spacing:4.500002px;}
.ws2a{word-spacing:4.500010px;}
.ws1a{word-spacing:4.500011px;}
.ws1b{word-spacing:4.500022px;}
.ws4a{word-spacing:8.982340px;}
.ws4b{word-spacing:8.982533px;}
.ws4c{word-spacing:8.987663px;}
.ws15{word-spacing:8.999966px;}
.ws25{word-spacing:8.999977px;}
.ws74{word-spacing:8.999986px;}
.ws14{word-spacing:8.999988px;}
.ws18{word-spacing:8.999998px;}
.ws7{word-spacing:8.999999px;}
.ws3{word-spacing:9.000002px;}
.wsd{word-spacing:9.000011px;}
.ws28{word-spacing:9.000022px;}
.ws53{word-spacing:13.499966px;}
.wse{word-spacing:13.499977px;}
.ws1c{word-spacing:13.499988px;}
.ws22{word-spacing:13.499998px;}
.ws6{word-spacing:13.500000px;}
.ws3c{word-spacing:13.500003px;}
.ws41{word-spacing:13.500010px;}
.ws23{word-spacing:13.500022px;}
.ws30{word-spacing:17.999977px;}
.ws1f{word-spacing:17.999988px;}
.ws47{word-spacing:17.999997px;}
.wsb{word-spacing:17.999999px;}
.ws3e{word-spacing:18.000011px;}
.ws39{word-spacing:18.000023px;}
.ws6f{word-spacing:22.324229px;}
.ws1e{word-spacing:22.499977px;}
.ws21{word-spacing:22.499986px;}
.ws16{word-spacing:22.499988px;}
.ws70{word-spacing:22.499989px;}
.ws49{word-spacing:22.499997px;}
.ws48{word-spacing:22.499999px;}
.ws9{word-spacing:22.500000px;}
.ws24{word-spacing:22.500003px;}
.ws3f{word-spacing:22.500010px;}
.ws42{word-spacing:22.500012px;}
.ws26{word-spacing:26.999978px;}
.ws29{word-spacing:26.999988px;}
.ws45{word-spacing:26.999997px;}
.ws8{word-spacing:27.000000px;}
.ws6e{word-spacing:27.000003px;}
.ws69{word-spacing:27.000011px;}
.ws33{word-spacing:27.000022px;}
.ws2c{word-spacing:31.499977px;}
.ws2d{word-spacing:31.499988px;}
.wsa{word-spacing:31.500000px;}
.ws2f{word-spacing:31.500002px;}
.ws38{word-spacing:35.999977px;}
.ws35{word-spacing:35.999988px;}
.ws10{word-spacing:36.000000px;}
.ws3a{word-spacing:40.499977px;}
.ws44{word-spacing:40.499988px;}
.ws3b{word-spacing:40.500000px;}
.ws40{word-spacing:40.500022px;}
.ws52{word-spacing:44.999963px;}
.ws65{word-spacing:44.999966px;}
.ws4e{word-spacing:44.999978px;}
.ws51{word-spacing:44.999999px;}
.ws43{word-spacing:45.000000px;}
.ws5c{word-spacing:49.500000px;}
.ws6b{word-spacing:53.999977px;}
.ws32{word-spacing:54.000000px;}
.ws63{word-spacing:67.499999px;}
.ws5a{word-spacing:72.000000px;}
.ws6a{word-spacing:76.499998px;}
.ws59{word-spacing:76.499999px;}
.ws5d{word-spacing:99.000000px;}
.ws67{word-spacing:121.500000px;}
.ws68{word-spacing:126.000000px;}
.ws61{word-spacing:130.499989px;}
.ws62{word-spacing:130.500000px;}
.ws5f{word-spacing:166.499988px;}
.ws60{word-spacing:166.500000px;}
.ws6d{word-spacing:324.000000px;}
.ws6c{word-spacing:324.000010px;}
.ws75{word-spacing:328.499986px;}
.ws56{word-spacing:332.999998px;}
.ws57{word-spacing:333.000000px;}
.ws5b{word-spacing:481.500000px;}
.ws54{word-spacing:512.999989px;}
.ws55{word-spacing:513.000000px;}
.ws5e{word-spacing:787.500000px;}
.ws72{word-spacing:791.999988px;}
.ws71{word-spacing:814.500000px;}
.ws66{word-spacing:832.500023px;}
.ws64{word-spacing:850.500000px;}
.ws50{word-spacing:1912.500000px;}
.ws73{word-spacing:1925.999988px;}
.wsf{word-spacing:2042.435034px;}
._38{margin-left:-17.156174px;}
._1{margin-left:-11.697983px;}
._0{margin-left:-10.687500px;}
._2{margin-left:-8.787181px;}
._2d{margin-left:-7.136448px;}
._3{margin-left:-5.800760px;}
._a{margin-left:-4.675784px;}
._7{margin-left:-3.515645px;}
._6{margin-left:-2.109399px;}
._27{width:4.675771px;}
._5{width:8.552690px;}
._9{width:17.543146px;}
._22{width:18.632850px;}
._8{width:19.687545px;}
._e{width:22.500001px;}
._d{width:27.000001px;}
._2e{width:28.447339px;}
._29{width:30.091847px;}
._b{width:31.500002px;}
._f{width:36.000002px;}
._21{width:40.500002px;}
._25{width:44.085974px;}
._c{width:45.457007px;}
._4{width:47.314371px;}
._26{width:49.500000px;}
._23{width:54.000000px;}
._2b{width:57.726579px;}
._2a{width:59.273418px;}
._2c{width:63.000001px;}
._2f{width:67.500000px;}
._3d{width:72.843881px;}
._28{width:76.500000px;}
._37{width:80.156174px;}
._36{width:81.843792px;}
._24{width:84.023438px;}
._31{width:89.156174px;}
._30{width:90.843792px;}
._3c{width:94.500022px;}
._35{width:108.000020px;}
._3b{width:144.000001px;}
._34{width:189.000000px;}
._3e{width:351.000002px;}
._32{width:503.999988px;}
._33{width:809.999999px;}
._3a{width:855.000000px;}
._1b{width:870.571797px;}
._39{width:873.000023px;}
._1e{width:1147.673316px;}
._1f{width:1191.513160px;}
._19{width:1229.552220px;}
._1c{width:1309.708474px;}
._1a{width:1315.227983px;}
._15{width:1583.013139px;}
._18{width:1589.446754px;}
._17{width:1701.489722px;}
._20{width:1831.040505px;}
._10{width:1863.138160px;}
._16{width:1880.048319px;}
._14{width:1987.415504px;}
._12{width:2023.239723px;}
._11{width:2024.892045px;}
._1d{width:2075.200660px;}
._13{width:2111.200660px;}
.fc1{color:rgb(17,85,204);}
.fc2{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:59.999999px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:81.000000px;}
.fs8{font-size:83.999997px;}
.fs4{font-size:96.000003px;}
.fs2{font-size:108.000000px;}
.fs3{font-size:119.999997px;}
.fs0{font-size:144.000000px;}
.fs1{font-size:156.000006px;}
.y0{bottom:0.000000px;}
.y5e{bottom:59.456538px;}
.y18{bottom:59.456913px;}
.yed{bottom:59.458008px;}
.y25d{bottom:59.460933px;}
.y2ad{bottom:113.976563px;}
.y272{bottom:115.335938px;}
.y246{bottom:116.021478px;}
.y28f{bottom:117.427733px;}
.y5d{bottom:118.475092px;}
.y195{bottom:119.522467px;}
.y18c{bottom:120.568358px;}
.y1ab{bottom:123.571283px;}
.yc9{bottom:127.253903px;}
.y16d{bottom:128.378902px;}
.y289{bottom:132.427733px;}
.y1f8{bottom:133.473637px;}
.ydb{bottom:133.475092px;}
.yec{bottom:134.522467px;}
.y229{bottom:134.525392px;}
.y257{bottom:135.568358px;}
.y131{bottom:137.522467px;}
.y122{bottom:137.879887px;}
.y1cb{bottom:139.022467px;}
.y27b{bottom:140.800778px;}
.y1c1{bottom:141.571283px;}
.y245{bottom:141.896478px;}
.y106{bottom:143.299808px;}
.y2ac{bottom:145.019528px;}
.y271{bottom:146.378902px;}
.yb4{bottom:147.427733px;}
.ye2{bottom:148.475092px;}
.y28e{bottom:148.476563px;}
.y282{bottom:149.519528px;}
.y5c{bottom:149.522467px;}
.y194{bottom:150.571283px;}
.y18b{bottom:151.617187px;}
.y179{bottom:153.568358px;}
.y1aa{bottom:154.617187px;}
.yc8{bottom:158.299808px;}
.y16c{bottom:159.427733px;}
.y288{bottom:163.476563px;}
.y1f7{bottom:164.519528px;}
.yda{bottom:164.522467px;}
.yeb{bottom:165.568358px;}
.y228{bottom:165.571283px;}
.ya5{bottom:166.617187px;}
.y1d8{bottom:167.522467px;}
.y244{bottom:167.765628px;}
.y130{bottom:168.571283px;}
.y121{bottom:168.925777px;}
.y159{bottom:169.253903px;}
.y1ca{bottom:170.068358px;}
.y27a{bottom:171.843742px;}
.y1c0{bottom:172.617187px;}
.y105{bottom:174.347168px;}
.y2ab{bottom:176.068358px;}
.y270{bottom:177.427733px;}
.y21e{bottom:178.473637px;}
.yb3{bottom:178.475092px;}
.ye1{bottom:179.522467px;}
.y28d{bottom:179.525392px;}
.y281{bottom:180.568358px;}
.y5b{bottom:180.569827px;}
.y75{bottom:181.617187px;}
.y18a{bottom:182.663092px;}
.y178{bottom:184.617187px;}
.y210{bottom:185.068358px;}
.y1a9{bottom:185.666017px;}
.yc7{bottom:189.348637px;}
.y16b{bottom:190.476563px;}
.y29a{bottom:193.476563px;}
.y95{bottom:193.784183px;}
.y287{bottom:194.519528px;}
.y1f6{bottom:195.568358px;}
.yd9{bottom:195.569827px;}
.y142{bottom:195.571283px;}
.yea{bottom:196.617187px;}
.ya4{bottom:197.664548px;}
.y1d7{bottom:198.568358px;}
.y120{bottom:199.974607px;}
.y158{bottom:200.302733px;}
.y1c9{bottom:201.117187px;}
.y279{bottom:202.892573px;}
.y1bf{bottom:203.666017px;}
.y104{bottom:205.394528px;}
.y2aa{bottom:207.117187px;}
.y26f{bottom:208.476563px;}
.y243{bottom:208.640628px;}
.y21d{bottom:209.519528px;}
.yb2{bottom:209.522467px;}
.ye0{bottom:210.569827px;}
.y28c{bottom:210.574223px;}
.y5a{bottom:211.617187px;}
.y256{bottom:212.663092px;}
.y74{bottom:212.664548px;}
.y12f{bottom:214.617187px;}
.y177{bottom:215.666017px;}
.y20f{bottom:216.117187px;}
.y16a{bottom:221.522467px;}
.ya{bottom:221.691106px;}
.y299{bottom:224.525392px;}
.y81{bottom:226.617187px;}
.ya3{bottom:228.711908px;}
.y157{bottom:231.348637px;}
.y1a8{bottom:231.711908px;}
.y1c8{bottom:232.163092px;}
.y278{bottom:233.941403px;}
.y242{bottom:234.515628px;}
.y1be{bottom:234.711908px;}
.y103{bottom:236.441888px;}
.yc6{bottom:237.769046px;}
.y2a9{bottom:238.166017px;}
.y26e{bottom:239.519528px;}
.y94{bottom:239.831543px;}
.y21c{bottom:240.568358px;}
.yb1{bottom:240.569828px;}
.ydf{bottom:241.617187px;}
.yb7{bottom:242.664548px;}
.y193{bottom:242.666017px;}
.y1d6{bottom:243.117187px;}
.y73{bottom:243.711908px;}
.y12e{bottom:245.663092px;}
.y11f{bottom:246.021967px;}
.y176{bottom:246.711908px;}
.y169{bottom:252.568358px;}
.y298{bottom:255.574223px;}
.y280{bottom:257.660152px;}
.y234{bottom:257.663092px;}
.y59{bottom:257.664548px;}
.y255{bottom:258.714848px;}
.y189{bottom:259.757812px;}
.ya2{bottom:259.759283px;}
.y23c{bottom:261.708983px;}
.y20e{bottom:262.163092px;}
.y156{bottom:262.394528px;}
.y1c7{bottom:263.211908px;}
.y277{bottom:264.990233px;}
.y1bd{bottom:265.760738px;}
.y102{bottom:267.489262px;}
.y2a8{bottom:269.214848px;}
.y26d{bottom:270.568358px;}
.yb0{bottom:271.617187px;}
.y141{bottom:272.663092px;}
.yde{bottom:272.664548px;}
.y1f5{bottom:272.666017px;}
.ye9{bottom:273.711908px;}
.y1d5{bottom:274.166017px;}
.y72{bottom:274.759283px;}
.y12d{bottom:276.711908px;}
.y11e{bottom:277.069342px;}
.y1a7{bottom:277.757812px;}
.y168{bottom:283.617187px;}
.y93{bottom:285.878167px;}
.y297{bottom:286.617187px;}
.y25c{bottom:287.666017px;}
.y233{bottom:288.708983px;}
.y58{bottom:288.711908px;}
.y254{bottom:289.760738px;}
.y188{bottom:290.806642px;}
.y175{bottom:292.760738px;}
.y20d{bottom:293.208983px;}
.y155{bottom:293.443357px;}
.y1bc{bottom:296.806642px;}
.y2a7{bottom:300.257812px;}
.y26c{bottom:301.617187px;}
.y286{bottom:302.660152px;}
.y21b{bottom:302.663092px;}
.yc5{bottom:302.664548px;}
.yd8{bottom:303.711908px;}
.y1f4{bottom:303.714848px;}
.y227{bottom:304.757812px;}
.ye8{bottom:304.759283px;}
.y1d4{bottom:305.211908px;}
.y71{bottom:305.806642px;}
.y12c{bottom:307.757812px;}
.y23b{bottom:307.760738px;}
.y11d{bottom:308.116702px;}
.y1a6{bottom:308.806642px;}
.y276{bottom:311.039063px;}
.y101{bottom:313.538092px;}
.y167{bottom:314.666017px;}
.y92{bottom:316.925542px;}
.y2af{bottom:317.666017px;}
.y140{bottom:318.711908px;}
.y25b{bottom:318.714848px;}
.y9{bottom:319.580751px;}
.y232{bottom:319.757812px;}
.y57{bottom:319.759283px;}
.y192{bottom:319.760738px;}
.y253{bottom:320.806642px;}
.y241{bottom:323.806642px;}
.y20c{bottom:324.257812px;}
.y43{bottom:324.401362px;}
.y154{bottom:325.989262px;}
.y1bb{bottom:327.855473px;}
.y2a6{bottom:331.306642px;}
.y26b{bottom:332.666017px;}
.y21a{bottom:333.708983px;}
.yaf{bottom:333.711908px;}
.y27f{bottom:334.757812px;}
.yd7{bottom:334.759283px;}
.y1f3{bottom:334.760738px;}
.ye7{bottom:335.806642px;}
.y70{bottom:336.854002px;}
.y187{bottom:336.855473px;}
.y12b{bottom:338.806642px;}
.y11c{bottom:339.164062px;}
.y1a5{bottom:339.855473px;}
.y100{bottom:344.583983px;}
.y166{bottom:345.711908px;}
.y91{bottom:347.972903px;}
.y296{bottom:348.714848px;}
.y25a{bottom:349.757812px;}
.y13f{bottom:349.759283px;}
.y56{bottom:350.806642px;}
.y1d3{bottom:351.260738px;}
.ya1{bottom:351.854002px;}
.y252{bottom:351.855473px;}
.y240{bottom:354.852533px;}
.y20b{bottom:355.306642px;}
.y2a5{bottom:362.355473px;}
.y26a{bottom:363.714848px;}
.y219{bottom:364.757812px;}
.yae{bottom:364.759283px;}
.y2f{bottom:365.806642px;}
.y226{bottom:366.855473px;}
.y6f{bottom:367.901363px;}
.y275{bottom:369.087892px;}
.y12a{bottom:369.852533px;}
.y23a{bottom:369.855473px;}
.y42{bottom:370.448738px;}
.y1a4{bottom:370.901363px;}
.y8{bottom:371.326356px;}
.y1ba{bottom:373.901363px;}
.yff{bottom:375.632812px;}
.y165{bottom:376.757812px;}
.y90{bottom:379.020262px;}
.y295{bottom:379.757812px;}
.y13e{bottom:380.806642px;}
.y231{bottom:381.852533px;}
.y55{bottom:381.854002px;}
.ye6{bottom:381.855473px;}
.y1d2{bottom:382.306642px;}
.ya0{bottom:382.901363px;}
.y251{bottom:382.904303px;}
.y11b{bottom:385.212892px;}
.y23f{bottom:385.898438px;}
.y1ea{bottom:385.901363px;}
.y20a{bottom:386.352533px;}
.y153{bottom:389.583983px;}
.y2a4{bottom:393.398438px;}
.y291{bottom:394.757812px;}
.yad{bottom:395.806642px;}
.yd6{bottom:396.854002px;}
.y1f2{bottom:396.855473px;}
.y6e{bottom:398.948738px;}
.y129{bottom:400.901363px;}
.y239{bottom:400.904303px;}
.y1b9{bottom:404.947268px;}
.y41{bottom:405.996098px;}
.yfe{bottom:406.678717px;}
.y164{bottom:407.806642px;}
.y294{bottom:410.806642px;}
.y2e{bottom:411.854002px;}
.y259{bottom:411.855473px;}
.y225{bottom:412.898438px;}
.y80{bottom:412.901363px;}
.y1d1{bottom:413.355473px;}
.y186{bottom:413.947268px;}
.y9f{bottom:413.948738px;}
.y250{bottom:413.950193px;}
.y1c6{bottom:414.401363px;}
.y174{bottom:415.901363px;}
.y11a{bottom:416.258783px;}
.y23e{bottom:416.947268px;}
.y1a3{bottom:416.950193px;}
.y152{bottom:420.632812px;}
.y2a3{bottom:424.447268px;}
.y8f{bottom:425.068358px;}
.y269{bottom:425.806642px;}
.y218{bottom:426.852533px;}
.yac{bottom:426.854002px;}
.y285{bottom:426.855473px;}
.yd5{bottom:427.901363px;}
.y54{bottom:427.901738px;}
.y1f1{bottom:427.904303px;}
.y6d{bottom:429.996098px;}
.y209{bottom:430.898438px;}
.y238{bottom:431.950193px;}
.y1b8{bottom:435.996098px;}
.yfd{bottom:437.727533px;}
.y163{bottom:438.855473px;}
.y40{bottom:441.543457px;}
.yc4{bottom:441.854002px;}
.y293{bottom:441.855473px;}
.y258{bottom:442.898438px;}
.y2d{bottom:442.901363px;}
.y224{bottom:443.947268px;}
.y7f{bottom:443.948738px;}
.y191{bottom:443.950193px;}
.y9e{bottom:444.996098px;}
.y128{bottom:446.948738px;}
.y119{bottom:447.307613px;}
.y151{bottom:451.678717px;}
.y2a2{bottom:455.496098px;}
.y8e{bottom:456.115717px;}
.y268{bottom:456.855473px;}
.y217{bottom:457.898438px;}
.yab{bottom:457.901363px;}
.ye5{bottom:458.947268px;}
.yd4{bottom:458.948738px;}
.y53{bottom:458.949098px;}
.y28b{bottom:458.953117px;}
.y1d0{bottom:459.401363px;}
.y24f{bottom:459.996098px;}
.y6c{bottom:461.043457px;}
.y1e9{bottom:461.496098px;}
.y208{bottom:461.947268px;}
.y173{bottom:461.950193px;}
.y1a2{bottom:462.996098px;}
.y1b7{bottom:467.041988px;}
.y7{bottom:467.269218px;}
.yfc{bottom:468.773438px;}
.y162{bottom:469.901363px;}
.yc3{bottom:472.901363px;}
.y292{bottom:472.904303px;}
.y1f0{bottom:473.947268px;}
.y2c{bottom:473.948738px;}
.y7e{bottom:474.996098px;}
.y185{bottom:476.041988px;}
.y3f{bottom:477.090818px;}
.y127{bottom:477.996098px;}
.y118{bottom:478.353518px;}
.y150{bottom:482.727533px;}
.y8d{bottom:487.163092px;}
.y267{bottom:487.898438px;}
.y216{bottom:488.947268px;}
.yaa{bottom:488.948738px;}
.y13d{bottom:488.950192px;}
.yd3{bottom:489.996098px;}
.y52{bottom:489.996458px;}
.y9d{bottom:491.043458px;}
.y6b{bottom:492.090818px;}
.y172{bottom:492.996098px;}
.y1a1{bottom:494.041988px;}
.yfb{bottom:499.822268px;}
.y161{bottom:500.947268px;}
.y1cf{bottom:503.947268px;}
.yc2{bottom:503.948738px;}
.y2ae{bottom:503.953118px;}
.y2b{bottom:504.996098px;}
.y230{bottom:506.041988px;}
.yb6{bottom:506.043458px;}
.y190{bottom:506.044928px;}
.y184{bottom:507.090818px;}
.y1e8{bottom:507.541988px;}
.y126{bottom:509.043458px;}
.y237{bottom:509.044928px;}
.y117{bottom:509.402348px;}
.y3e{bottom:512.638177px;}
.y1b6{bottom:513.090818px;}
.y14f{bottom:513.773438px;}
.y6{bottom:513.840228px;}
.y2a1{bottom:517.593742px;}
.y8c{bottom:518.210452px;}
.y266{bottom:518.947268px;}
.y13c{bottom:519.996098px;}
.ye4{bottom:521.041988px;}
.y7d{bottom:521.043458px;}
.y223{bottom:521.044927px;}
.y9c{bottom:522.090818px;}
.y207{bottom:524.041988px;}
.yfa{bottom:530.868158px;}
.y160{bottom:531.996098px;}
.yc1{bottom:534.996098px;}
.y2a{bottom:536.043458px;}
.y1c5{bottom:536.044928px;}
.y24e{bottom:537.087893px;}
.y6a{bottom:538.138178px;}
.y1e7{bottom:538.590818px;}
.y171{bottom:539.044928px;}
.y1a0{bottom:540.090818px;}
.y116{bottom:540.448238px;}
.y1b5{bottom:544.136723px;}
.y14e{bottom:544.822268px;}
.y2a0{bottom:548.636723px;}
.y8b{bottom:549.257812px;}
.y265{bottom:549.996098px;}
.y284{bottom:551.039063px;}
.y215{bottom:551.041988px;}
.ya9{bottom:551.043458px;}
.y13b{bottom:551.044928px;}
.y7c{bottom:552.090818px;}
.y22f{bottom:552.093742px;}
.y183{bottom:553.136723px;}
.y206{bottom:555.087893px;}
.y125{bottom:555.090818px;}
.y3d{bottom:558.685552px;}
.yf9{bottom:561.916988px;}
.y15f{bottom:563.044928px;}
.y1ce{bottom:566.041988px;}
.yc0{bottom:566.043458px;}
.y28a{bottom:566.044928px;}
.y29{bottom:567.090818px;}
.y27e{bottom:567.093742px;}
.y24d{bottom:568.136723px;}
.y9b{bottom:568.138178px;}
.y69{bottom:569.185552px;}
.y1e6{bottom:569.636723px;}
.y19f{bottom:571.136723px;}
.y115{bottom:571.497068px;}
.y29f{bottom:579.685552px;}
.y264{bottom:581.044928px;}
.y8a{bottom:582.084967px;}
.y222{bottom:582.087893px;}
.ya8{bottom:582.090818px;}
.y18f{bottom:583.136723px;}
.yd2{bottom:583.138178px;}
.y22e{bottom:583.139648px;}
.y205{bottom:586.136723px;}
.y17{bottom:587.327812px;}
.y1b4{bottom:590.185552px;}
.yf8{bottom:592.962893px;}
.y15e{bottom:594.090818px;}
.ybf{bottom:597.090818px;}
.y214{bottom:597.093742px;}
.y1c4{bottom:598.136723px;}
.y28{bottom:598.138178px;}
.y9a{bottom:599.185552px;}
.y19e{bottom:602.185552px;}
.y3c{bottom:604.732912px;}
.y14d{bottom:606.916988px;}
.y29e{bottom:610.734367px;}
.y263{bottom:612.093742px;}
.y1ef{bottom:613.136723px;}
.ya7{bottom:613.138178px;}
.y124{bottom:613.139648px;}
.yd1{bottom:614.185552px;}
.y68{bottom:615.232912px;}
.y1e5{bottom:615.685552px;}
.y204{bottom:617.185552px;}
.y114{bottom:617.542973px;}
.y1b3{bottom:621.234367px;}
.y15d{bottom:625.136723px;}
.y13a{bottom:628.136723px;}
.ybe{bottom:628.138178px;}
.y213{bottom:628.139648px;}
.y27{bottom:629.185552px;}
.y24c{bottom:630.231442px;}
.y99{bottom:630.232912px;}
.y182{bottom:630.234367px;}
.y19d{bottom:633.234367px;}
.y16{bottom:633.374992px;}
.y14c{bottom:637.962893px;}
.yf7{bottom:639.011723px;}
.y3b{bottom:640.280273px;}
.y29d{bottom:641.777348px;}
.y290{bottom:643.136723px;}
.ya6{bottom:644.185552px;}
.yd0{bottom:645.232912px;}
.y67{bottom:646.280273px;}
.y1e4{bottom:646.734367px;}
.y203{bottom:648.231442px;}
.y113{bottom:648.588863px;}
.y15c{bottom:656.185552px;}
.ybd{bottom:659.185552px;}
.y26{bottom:660.232912px;}
.y18e{bottom:660.234367px;}
.y24b{bottom:661.277348px;}
.y181{bottom:661.280273px;}
.y19c{bottom:664.280273px;}
.y1b2{bottom:667.280273px;}
.y14b{bottom:669.011723px;}
.y262{bottom:674.185552px;}
.y221{bottom:675.231442px;}
.y51{bottom:675.232912px;}
.y3a{bottom:675.827633px;}
.y98{bottom:676.280273px;}
.y66{bottom:677.327633px;}
.y1e3{bottom:677.780273px;}
.y202{bottom:679.277348px;}
.y15{bottom:679.422367px;}
.y112{bottom:679.637692px;}
.yf6{bottom:685.057613px;}
.y15b{bottom:688.731442px;}
.y139{bottom:690.231442px;}
.ybc{bottom:690.232912px;}
.y1ee{bottom:690.234367px;}
.y27d{bottom:691.277348px;}
.y25{bottom:691.280273px;}
.y24a{bottom:692.326178px;}
.y89{bottom:692.327633px;}
.y180{bottom:692.329102px;}
.y19b{bottom:695.326178px;}
.y1b1{bottom:698.326178px;}
.y14a{bottom:700.057613px;}
.y29c{bottom:703.874992px;}
.y123{bottom:705.232912px;}
.y212{bottom:705.234367px;}
.y220{bottom:706.277348px;}
.y50{bottom:706.280273px;}
.ycf{bottom:707.327633px;}
.y65{bottom:708.374992px;}
.y1e2{bottom:708.826178px;}
.y201{bottom:710.326178px;}
.y111{bottom:710.683598px;}
.y39{bottom:711.374992px;}
.yf5{bottom:716.104988px;}
.y138{bottom:721.280273px;}
.y1ed{bottom:721.283198px;}
.y18d{bottom:722.326178px;}
.y97{bottom:722.327633px;}
.y88{bottom:723.374992px;}
.y14{bottom:725.469907px;}
.y19a{bottom:726.374992px;}
.y1b0{bottom:729.374992px;}
.y149{bottom:731.106442px;}
.y29b{bottom:735.978519px;}
.y261{bottom:736.277348px;}
.ybb{bottom:736.280273px;}
.y21f{bottom:737.326178px;}
.y4f{bottom:737.327633px;}
.yce{bottom:738.374992px;}
.y64{bottom:739.422367px;}
.y1e1{bottom:739.874992px;}
.y110{bottom:741.732428px;}
.y38{bottom:746.922367px;}
.yf4{bottom:747.152348px;}
.y137{bottom:752.326178px;}
.y1ec{bottom:752.329102px;}
.y283{bottom:752.332027px;}
.yb5{bottom:753.374992px;}
.y249{bottom:754.420897px;}
.y87{bottom:754.422367px;}
.y200{bottom:754.874992px;}
.y199{bottom:757.423822px;}
.y1af{bottom:760.420897px;}
.y148{bottom:762.152348px;}
.y211{bottom:767.326178px;}
.yba{bottom:767.327633px;}
.y4e{bottom:768.374992px;}
.y17f{bottom:769.420897px;}
.ycd{bottom:769.422367px;}
.y13{bottom:771.517088px;}
.yf3{bottom:778.199708px;}
.y37{bottom:782.469727px;}
.y24{bottom:783.374992px;}
.ye3{bottom:784.422367px;}
.y23d{bottom:784.423822px;}
.y63{bottom:785.469727px;}
.y1e0{bottom:785.923822px;}
.y10f{bottom:787.779787px;}
.y198{bottom:788.469727px;}
.y1ae{bottom:791.469727px;}
.y147{bottom:793.201178px;}
.yb9{bottom:798.374992px;}
.y274{bottom:799.417973px;}
.y1ff{bottom:799.420897px;}
.y4d{bottom:799.422367px;}
.y1c3{bottom:799.423822px;}
.y17e{bottom:800.469727px;}
.y248{bottom:800.472652px;}
.yf2{bottom:809.247068px;}
.y136{bottom:814.420897px;}
.y23{bottom:814.422367px;}
.y1eb{bottom:814.423822px;}
.ycc{bottom:815.469727px;}
.y27c{bottom:815.472652px;}
.y62{bottom:816.517088px;}
.y1df{bottom:816.969727px;}
.y12{bottom:817.564448px;}
.y36{bottom:818.017088px;}
.y10e{bottom:818.827148px;}
.y1ad{bottom:822.515618px;}
.y146{bottom:824.247068px;}
.yb8{bottom:829.422367px;}
.y1cd{bottom:829.423822px;}
.y1fe{bottom:830.466802px;}
.y4c{bottom:830.469727px;}
.y17d{bottom:831.515618px;}
.y86{bottom:831.517088px;}
.y247{bottom:831.518558px;}
.y197{bottom:834.518558px;}
.yf1{bottom:840.294427px;}
.ydd{bottom:845.469727px;}
.y236{bottom:845.472652px;}
.ycb{bottom:846.517088px;}
.y61{bottom:847.564448px;}
.y1de{bottom:848.018558px;}
.y35{bottom:849.064447px;}
.y10d{bottom:849.874508px;}
.y145{bottom:855.295898px;}
.y5{bottom:856.388030px;}
.y22{bottom:860.469727px;}
.y260{bottom:860.472652px;}
.y1fd{bottom:861.515618px;}
.y4b{bottom:861.517088px;}
.y1c2{bottom:861.518558px;}
.y85{bottom:862.564448px;}
.y11{bottom:863.612003px;}
.yf0{bottom:871.341802px;}
.y135{bottom:876.515617px;}
.ydc{bottom:876.517088px;}
.y235{bottom:876.518558px;}
.y1dd{bottom:879.064448px;}
.y196{bottom:880.564448px;}
.y10c{bottom:882.701662px;}
.y144{bottom:886.341802px;}
.y1cc{bottom:891.515617px;}
.y21{bottom:891.517088px;}
.y7b{bottom:892.564448px;}
.y34{bottom:895.111822px;}
.y60{bottom:896.611823px;}
.yef{bottom:902.389162px;}
.y96{bottom:907.564448px;}
.y4a{bottom:907.564822px;}
.y84{bottom:908.611823px;}
.y17c{bottom:908.613277px;}
.y10{bottom:909.659182px;}
.y1dc{bottom:910.113277px;}
.y10b{bottom:917.629402px;}
.y143{bottom:919.763666px;}
.y20{bottom:922.564448px;}
.y1fc{bottom:923.610352px;}
.yca{bottom:923.611823px;}
.y1ac{bottom:923.613277px;}
.y4{bottom:923.657315px;}
.y134{bottom:938.610352px;}
.y7a{bottom:938.611823px;}
.y49{bottom:938.612183px;}
.y22d{bottom:938.613277px;}
.y83{bottom:939.659182px;}
.y33{bottom:941.159182px;}
.y10a{bottom:950.777348px;}
.yee{bottom:950.811040px;}
.y1f{bottom:953.611823px;}
.y170{bottom:953.613277px;}
.y1fb{bottom:954.656242px;}
.y5f{bottom:954.659182px;}
.yf{bottom:955.706543px;}
.y79{bottom:969.659182px;}
.y48{bottom:969.659542px;}
.y22c{bottom:969.662107px;}
.y1db{bottom:972.208012px;}
.y32{bottom:976.706543px;}
.y109{bottom:981.824708px;}
.y25f{bottom:984.656242px;}
.y1e{bottom:984.659182px;}
.y1fa{bottom:985.705073px;}
.y82{bottom:985.706543px;}
.y17b{bottom:985.708012px;}
.y3{bottom:990.926606px;}
.y133{bottom:1000.705079px;}
.y78{bottom:1000.706543px;}
.y47{bottom:1000.706908px;}
.y22b{bottom:1000.708008px;}
.y273{bottom:1000.710938px;}
.ye{bottom:1001.754090px;}
.y31{bottom:1012.253905px;}
.y16f{bottom:1015.705079px;}
.y1d{bottom:1015.706543px;}
.y17a{bottom:1016.753905px;}
.y1da{bottom:1018.253905px;}
.y108{bottom:1027.872071px;}
.y77{bottom:1031.753905px;}
.y46{bottom:1031.754273px;}
.y1c{bottom:1046.753905px;}
.yd{bottom:1047.801270px;}
.y2{bottom:1058.195904px;}
.y107{bottom:1060.699219px;}
.y132{bottom:1062.799804px;}
.y76{bottom:1062.801270px;}
.y45{bottom:1062.801636px;}
.y1f9{bottom:1062.802734px;}
.y1d9{bottom:1064.302734px;}
.y1b{bottom:1077.801270px;}
.y16e{bottom:1077.802734px;}
.y30{bottom:1093.848633px;}
.yc{bottom:1093.848725px;}
.y44{bottom:1093.848999px;}
.y22a{bottom:1093.851562px;}
.y1a{bottom:1108.848633px;}
.y25e{bottom:1108.851562px;}
.y1{bottom:1123.091412px;}
.y15a{bottom:1139.894530px;}
.y19{bottom:1139.895996px;}
.yb{bottom:1139.896179px;}
.hf{height:41.660155px;}
.hc{height:49.992188px;}
.ha{height:53.789061px;}
.h7{height:63.949219px;}
.h8{height:64.546875px;}
.hb{height:72.615234px;}
.hd{height:75.304685px;}
.h6{height:86.062503px;}
.h4{height:95.923828px;}
.h9{height:105.924315px;}
.he{height:105.925785px;}
.h5{height:107.578122px;}
.h1{height:127.898438px;}
.h3{height:138.328130px;}
.h2{height:138.556646px;}
.h0{height:1263.000000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x3{left:149.290032px;}
.x4{left:172.553549px;}
.x8{left:175.818902px;}
.x2{left:186.993736px;}
.x9{left:202.818902px;}
.x5{left:286.805913px;}
.x1{left:298.544667px;}
.x6{left:371.337883px;}
.xa{left:771.620038px;}
.x7{left:779.117117px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:15.989574pt;}
.ls2{letter-spacing:15.989614pt;}
.ls5{letter-spacing:16.000000pt;}
.ls8{letter-spacing:16.000020pt;}
.ls4{letter-spacing:22.000000pt;}
.ls6{letter-spacing:24.000000pt;}
.ls7{letter-spacing:25.313111pt;}
.ls1{letter-spacing:30.000000pt;}
.lsd{letter-spacing:32.000000pt;}
.ls9{letter-spacing:52.000000pt;}
.lsa{letter-spacing:80.000000pt;}
.lsb{letter-spacing:164.000000pt;}
.lsc{letter-spacing:304.000000pt;}
.lse{letter-spacing:744.000000pt;}
.ws36{word-spacing:-18.666666pt;}
.ws2{word-spacing:-16.000000pt;}
.ws2b{word-spacing:-13.333333pt;}
.ws37{word-spacing:-0.000090pt;}
.ws27{word-spacing:-0.000031pt;}
.ws3d{word-spacing:-0.000030pt;}
.ws19{word-spacing:-0.000020pt;}
.ws58{word-spacing:-0.000012pt;}
.ws12{word-spacing:-0.000010pt;}
.ws4d{word-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
.ws1{word-spacing:0.000002pt;}
.ws4f{word-spacing:0.000007pt;}
.wsc{word-spacing:0.000010pt;}
.ws11{word-spacing:0.000020pt;}
.ws46{word-spacing:0.000030pt;}
.ws1d{word-spacing:3.999969pt;}
.ws13{word-spacing:3.999970pt;}
.ws17{word-spacing:3.999979pt;}
.ws34{word-spacing:3.999980pt;}
.ws5{word-spacing:3.999990pt;}
.ws31{word-spacing:3.999998pt;}
.ws20{word-spacing:3.999999pt;}
.ws4{word-spacing:4.000000pt;}
.ws2e{word-spacing:4.000002pt;}
.ws2a{word-spacing:4.000009pt;}
.ws1a{word-spacing:4.000010pt;}
.ws1b{word-spacing:4.000020pt;}
.ws4a{word-spacing:7.984302pt;}
.ws4b{word-spacing:7.984474pt;}
.ws4c{word-spacing:7.989034pt;}
.ws15{word-spacing:7.999970pt;}
.ws25{word-spacing:7.999980pt;}
.ws74{word-spacing:7.999988pt;}
.ws14{word-spacing:7.999990pt;}
.ws18{word-spacing:7.999998pt;}
.ws7{word-spacing:8.000000pt;}
.ws3{word-spacing:8.000002pt;}
.wsd{word-spacing:8.000010pt;}
.ws28{word-spacing:8.000020pt;}
.ws53{word-spacing:11.999970pt;}
.wse{word-spacing:11.999980pt;}
.ws1c{word-spacing:11.999990pt;}
.ws22{word-spacing:11.999998pt;}
.ws6{word-spacing:12.000000pt;}
.ws3c{word-spacing:12.000002pt;}
.ws41{word-spacing:12.000009pt;}
.ws23{word-spacing:12.000020pt;}
.ws30{word-spacing:15.999980pt;}
.ws1f{word-spacing:15.999990pt;}
.ws47{word-spacing:15.999998pt;}
.wsb{word-spacing:16.000000pt;}
.ws3e{word-spacing:16.000010pt;}
.ws39{word-spacing:16.000020pt;}
.ws6f{word-spacing:19.843759pt;}
.ws1e{word-spacing:19.999980pt;}
.ws21{word-spacing:19.999988pt;}
.ws16{word-spacing:19.999989pt;}
.ws70{word-spacing:19.999990pt;}
.ws49{word-spacing:19.999998pt;}
.ws48{word-spacing:19.999999pt;}
.ws9{word-spacing:20.000000pt;}
.ws24{word-spacing:20.000002pt;}
.ws3f{word-spacing:20.000009pt;}
.ws42{word-spacing:20.000010pt;}
.ws26{word-spacing:23.999980pt;}
.ws29{word-spacing:23.999990pt;}
.ws45{word-spacing:23.999998pt;}
.ws8{word-spacing:24.000000pt;}
.ws6e{word-spacing:24.000003pt;}
.ws69{word-spacing:24.000010pt;}
.ws33{word-spacing:24.000020pt;}
.ws2c{word-spacing:27.999980pt;}
.ws2d{word-spacing:27.999990pt;}
.wsa{word-spacing:28.000000pt;}
.ws2f{word-spacing:28.000002pt;}
.ws38{word-spacing:31.999979pt;}
.ws35{word-spacing:31.999990pt;}
.ws10{word-spacing:32.000000pt;}
.ws3a{word-spacing:35.999980pt;}
.ws44{word-spacing:35.999990pt;}
.ws3b{word-spacing:36.000000pt;}
.ws40{word-spacing:36.000020pt;}
.ws52{word-spacing:39.999968pt;}
.ws65{word-spacing:39.999970pt;}
.ws4e{word-spacing:39.999980pt;}
.ws51{word-spacing:39.999999pt;}
.ws43{word-spacing:40.000000pt;}
.ws5c{word-spacing:44.000000pt;}
.ws6b{word-spacing:47.999980pt;}
.ws32{word-spacing:48.000000pt;}
.ws63{word-spacing:60.000000pt;}
.ws5a{word-spacing:64.000000pt;}
.ws6a{word-spacing:67.999999pt;}
.ws59{word-spacing:68.000000pt;}
.ws5d{word-spacing:88.000000pt;}
.ws67{word-spacing:108.000000pt;}
.ws68{word-spacing:112.000000pt;}
.ws61{word-spacing:115.999990pt;}
.ws62{word-spacing:116.000000pt;}
.ws5f{word-spacing:147.999990pt;}
.ws60{word-spacing:148.000000pt;}
.ws6d{word-spacing:288.000000pt;}
.ws6c{word-spacing:288.000009pt;}
.ws75{word-spacing:291.999988pt;}
.ws56{word-spacing:295.999998pt;}
.ws57{word-spacing:296.000000pt;}
.ws5b{word-spacing:428.000000pt;}
.ws54{word-spacing:455.999990pt;}
.ws55{word-spacing:456.000000pt;}
.ws5e{word-spacing:700.000000pt;}
.ws72{word-spacing:703.999990pt;}
.ws71{word-spacing:724.000000pt;}
.ws66{word-spacing:740.000020pt;}
.ws64{word-spacing:756.000000pt;}
.ws50{word-spacing:1700.000000pt;}
.ws73{word-spacing:1711.999990pt;}
.wsf{word-spacing:1815.497808pt;}
._38{margin-left:-15.249932pt;}
._1{margin-left:-10.398207pt;}
._0{margin-left:-9.500000pt;}
._2{margin-left:-7.810828pt;}
._2d{margin-left:-6.343509pt;}
._3{margin-left:-5.156231pt;}
._a{margin-left:-4.156253pt;}
._7{margin-left:-3.125018pt;}
._6{margin-left:-1.875022pt;}
._27{width:4.156241pt;}
._5{width:7.602391pt;}
._9{width:15.593907pt;}
._22{width:16.562533pt;}
._8{width:17.500040pt;}
._e{width:20.000001pt;}
._d{width:24.000000pt;}
._2e{width:25.286523pt;}
._29{width:26.748309pt;}
._b{width:28.000002pt;}
._f{width:32.000002pt;}
._21{width:36.000002pt;}
._25{width:39.187532pt;}
._c{width:40.406229pt;}
._4{width:42.057219pt;}
._26{width:44.000000pt;}
._23{width:48.000000pt;}
._2b{width:51.312514pt;}
._2a{width:52.687483pt;}
._2c{width:56.000000pt;}
._2f{width:60.000000pt;}
._3d{width:64.750117pt;}
._28{width:68.000000pt;}
._37{width:71.249933pt;}
._36{width:72.750037pt;}
._24{width:74.687500pt;}
._31{width:79.249933pt;}
._30{width:80.750037pt;}
._3c{width:84.000020pt;}
._35{width:96.000018pt;}
._3b{width:128.000001pt;}
._34{width:168.000000pt;}
._3e{width:312.000002pt;}
._32{width:447.999989pt;}
._33{width:719.999999pt;}
._3a{width:760.000000pt;}
._1b{width:773.841597pt;}
._39{width:776.000020pt;}
._1e{width:1020.154058pt;}
._1f{width:1059.122809pt;}
._19{width:1092.935307pt;}
._1c{width:1164.185311pt;}
._1a{width:1169.091540pt;}
._15{width:1407.122790pt;}
._18{width:1412.841559pt;}
._17{width:1512.435308pt;}
._20{width:1627.591560pt;}
._10{width:1656.122809pt;}
._16{width:1671.154061pt;}
._14{width:1766.591559pt;}
._12{width:1798.435309pt;}
._11{width:1799.904040pt;}
._1d{width:1844.622809pt;}
._13{width:1876.622809pt;}
.fs6{font-size:53.333332pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:72.000000pt;}
.fs8{font-size:74.666664pt;}
.fs4{font-size:85.333336pt;}
.fs2{font-size:96.000000pt;}
.fs3{font-size:106.666664pt;}
.fs0{font-size:128.000000pt;}
.fs1{font-size:138.666672pt;}
.y0{bottom:0.000000pt;}
.y5e{bottom:52.850256pt;}
.y18{bottom:52.850590pt;}
.yed{bottom:52.851563pt;}
.y25d{bottom:52.854163pt;}
.y2ad{bottom:101.312500pt;}
.y272{bottom:102.520833pt;}
.y246{bottom:103.130203pt;}
.y28f{bottom:104.380207pt;}
.y5d{bottom:105.311193pt;}
.y195{bottom:106.242193pt;}
.y18c{bottom:107.171873pt;}
.y1ab{bottom:109.841140pt;}
.yc9{bottom:113.114580pt;}
.y16d{bottom:114.114580pt;}
.y289{bottom:117.713540pt;}
.y1f8{bottom:118.643233pt;}
.ydb{bottom:118.644527pt;}
.yec{bottom:119.575527pt;}
.y229{bottom:119.578127pt;}
.y257{bottom:120.505207pt;}
.y131{bottom:122.242193pt;}
.y122{bottom:122.559900pt;}
.y1cb{bottom:123.575527pt;}
.y27b{bottom:125.156247pt;}
.y1c1{bottom:125.841140pt;}
.y245{bottom:126.130203pt;}
.y106{bottom:127.377607pt;}
.y2ac{bottom:128.906247pt;}
.y271{bottom:130.114580pt;}
.yb4{bottom:131.046873pt;}
.ye2{bottom:131.977860pt;}
.y28e{bottom:131.979167pt;}
.y282{bottom:132.906247pt;}
.y5c{bottom:132.908860pt;}
.y194{bottom:133.841140pt;}
.y18b{bottom:134.770833pt;}
.y179{bottom:136.505207pt;}
.y1aa{bottom:137.437500pt;}
.yc8{bottom:140.710940pt;}
.y16c{bottom:141.713540pt;}
.y288{bottom:145.312500pt;}
.y1f7{bottom:146.239580pt;}
.yda{bottom:146.242193pt;}
.yeb{bottom:147.171873pt;}
.y228{bottom:147.174473pt;}
.ya5{bottom:148.104167pt;}
.y1d8{bottom:148.908860pt;}
.y244{bottom:149.125003pt;}
.y130{bottom:149.841140pt;}
.y121{bottom:150.156247pt;}
.y159{bottom:150.447913pt;}
.y1ca{bottom:151.171873pt;}
.y27a{bottom:152.749993pt;}
.y1c0{bottom:153.437500pt;}
.y105{bottom:154.975260pt;}
.y2ab{bottom:156.505207pt;}
.y270{bottom:157.713540pt;}
.y21e{bottom:158.643233pt;}
.yb3{bottom:158.644527pt;}
.ye1{bottom:159.575527pt;}
.y28d{bottom:159.578127pt;}
.y281{bottom:160.505207pt;}
.y5b{bottom:160.506513pt;}
.y75{bottom:161.437500pt;}
.y18a{bottom:162.367193pt;}
.y178{bottom:164.104167pt;}
.y210{bottom:164.505207pt;}
.y1a9{bottom:165.036460pt;}
.yc7{bottom:168.309900pt;}
.y16b{bottom:169.312500pt;}
.y29a{bottom:171.979167pt;}
.y95{bottom:172.252607pt;}
.y287{bottom:172.906247pt;}
.y1f6{bottom:173.838540pt;}
.yd9{bottom:173.839847pt;}
.y142{bottom:173.841140pt;}
.yea{bottom:174.770833pt;}
.ya4{bottom:175.701820pt;}
.y1d7{bottom:176.505207pt;}
.y120{bottom:177.755207pt;}
.y158{bottom:178.046873pt;}
.y1c9{bottom:178.770833pt;}
.y279{bottom:180.348953pt;}
.y1bf{bottom:181.036460pt;}
.y104{bottom:182.572913pt;}
.y2aa{bottom:184.104167pt;}
.y26f{bottom:185.312500pt;}
.y243{bottom:185.458336pt;}
.y21d{bottom:186.239580pt;}
.yb2{bottom:186.242193pt;}
.ye0{bottom:187.173180pt;}
.y28c{bottom:187.177087pt;}
.y5a{bottom:188.104167pt;}
.y256{bottom:189.033860pt;}
.y74{bottom:189.035153pt;}
.y12f{bottom:190.770833pt;}
.y177{bottom:191.703127pt;}
.y20f{bottom:192.104167pt;}
.y16a{bottom:196.908860pt;}
.ya{bottom:197.058761pt;}
.y299{bottom:199.578127pt;}
.y81{bottom:201.437500pt;}
.ya3{bottom:203.299473pt;}
.y157{bottom:205.643233pt;}
.y1a8{bottom:205.966140pt;}
.y1c8{bottom:206.367193pt;}
.y278{bottom:207.947913pt;}
.y242{bottom:208.458336pt;}
.y1be{bottom:208.632807pt;}
.y103{bottom:210.170567pt;}
.yc6{bottom:211.350263pt;}
.y2a9{bottom:211.703127pt;}
.y26e{bottom:212.906247pt;}
.y94{bottom:213.183593pt;}
.y21c{bottom:213.838540pt;}
.yb1{bottom:213.839847pt;}
.ydf{bottom:214.770833pt;}
.yb7{bottom:215.701820pt;}
.y193{bottom:215.703127pt;}
.y1d6{bottom:216.104167pt;}
.y73{bottom:216.632807pt;}
.y12e{bottom:218.367193pt;}
.y11f{bottom:218.686193pt;}
.y176{bottom:219.299473pt;}
.y169{bottom:224.505207pt;}
.y298{bottom:227.177087pt;}
.y280{bottom:229.031247pt;}
.y234{bottom:229.033860pt;}
.y59{bottom:229.035153pt;}
.y255{bottom:229.968753pt;}
.y189{bottom:230.895833pt;}
.ya2{bottom:230.897140pt;}
.y23c{bottom:232.630207pt;}
.y20e{bottom:233.033860pt;}
.y156{bottom:233.239580pt;}
.y1c7{bottom:233.966140pt;}
.y277{bottom:235.546873pt;}
.y1bd{bottom:236.231767pt;}
.y102{bottom:237.768233pt;}
.y2a8{bottom:239.302087pt;}
.y26d{bottom:240.505207pt;}
.yb0{bottom:241.437500pt;}
.y141{bottom:242.367193pt;}
.yde{bottom:242.368487pt;}
.y1f5{bottom:242.369793pt;}
.ye9{bottom:243.299473pt;}
.y1d5{bottom:243.703127pt;}
.y72{bottom:244.230473pt;}
.y12d{bottom:245.966140pt;}
.y11e{bottom:246.283860pt;}
.y1a7{bottom:246.895833pt;}
.y168{bottom:252.104167pt;}
.y93{bottom:254.113927pt;}
.y297{bottom:254.770833pt;}
.y25c{bottom:255.703127pt;}
.y233{bottom:256.630207pt;}
.y58{bottom:256.632807pt;}
.y254{bottom:257.565100pt;}
.y188{bottom:258.494793pt;}
.y175{bottom:260.231767pt;}
.y20d{bottom:260.630207pt;}
.y155{bottom:260.838539pt;}
.y1bc{bottom:263.828127pt;}
.y2a7{bottom:266.895833pt;}
.y26c{bottom:268.104167pt;}
.y286{bottom:269.031247pt;}
.y21b{bottom:269.033860pt;}
.yc5{bottom:269.035153pt;}
.yd8{bottom:269.966140pt;}
.y1f4{bottom:269.968753pt;}
.y227{bottom:270.895833pt;}
.ye8{bottom:270.897140pt;}
.y1d4{bottom:271.299473pt;}
.y71{bottom:271.828127pt;}
.y12c{bottom:273.562500pt;}
.y23b{bottom:273.565100pt;}
.y11d{bottom:273.881513pt;}
.y1a6{bottom:274.494793pt;}
.y276{bottom:276.479167pt;}
.y101{bottom:278.700527pt;}
.y167{bottom:279.703127pt;}
.y92{bottom:281.711593pt;}
.y2af{bottom:282.369793pt;}
.y140{bottom:283.299473pt;}
.y25b{bottom:283.302087pt;}
.y9{bottom:284.071779pt;}
.y232{bottom:284.229167pt;}
.y57{bottom:284.230473pt;}
.y192{bottom:284.231767pt;}
.y253{bottom:285.161460pt;}
.y241{bottom:287.828127pt;}
.y20c{bottom:288.229167pt;}
.y43{bottom:288.356766pt;}
.y154{bottom:289.768233pt;}
.y1bb{bottom:291.427087pt;}
.y2a6{bottom:294.494793pt;}
.y26b{bottom:295.703127pt;}
.y21a{bottom:296.630207pt;}
.yaf{bottom:296.632807pt;}
.y27f{bottom:297.562500pt;}
.yd7{bottom:297.563807pt;}
.y1f3{bottom:297.565100pt;}
.ye7{bottom:298.494793pt;}
.y70{bottom:299.425780pt;}
.y187{bottom:299.427087pt;}
.y12b{bottom:301.161460pt;}
.y11c{bottom:301.479167pt;}
.y1a5{bottom:302.093753pt;}
.y100{bottom:306.296873pt;}
.y166{bottom:307.299473pt;}
.y91{bottom:309.309247pt;}
.y296{bottom:309.968753pt;}
.y25a{bottom:310.895833pt;}
.y13f{bottom:310.897140pt;}
.y56{bottom:311.828127pt;}
.y1d3{bottom:312.231767pt;}
.ya1{bottom:312.759113pt;}
.y252{bottom:312.760420pt;}
.y240{bottom:315.424473pt;}
.y20b{bottom:315.828127pt;}
.y2a5{bottom:322.093753pt;}
.y26a{bottom:323.302087pt;}
.y219{bottom:324.229167pt;}
.yae{bottom:324.230473pt;}
.y2f{bottom:325.161460pt;}
.y226{bottom:326.093753pt;}
.y6f{bottom:327.023433pt;}
.y275{bottom:328.078127pt;}
.y12a{bottom:328.757807pt;}
.y23a{bottom:328.760420pt;}
.y42{bottom:329.287767pt;}
.y1a4{bottom:329.690100pt;}
.y8{bottom:330.067872pt;}
.y1ba{bottom:332.356767pt;}
.yff{bottom:333.895833pt;}
.y165{bottom:334.895833pt;}
.y90{bottom:336.906900pt;}
.y295{bottom:337.562500pt;}
.y13e{bottom:338.494793pt;}
.y231{bottom:339.424473pt;}
.y55{bottom:339.425780pt;}
.ye6{bottom:339.427087pt;}
.y1d2{bottom:339.828127pt;}
.ya0{bottom:340.356767pt;}
.y251{bottom:340.359380pt;}
.y11b{bottom:342.411460pt;}
.y23f{bottom:343.020833pt;}
.y1ea{bottom:343.023433pt;}
.y20a{bottom:343.424473pt;}
.y153{bottom:346.296873pt;}
.y2a4{bottom:349.687500pt;}
.y291{bottom:350.895833pt;}
.yad{bottom:351.828127pt;}
.yd6{bottom:352.759113pt;}
.y1f2{bottom:352.760420pt;}
.y6e{bottom:354.621100pt;}
.y129{bottom:356.356767pt;}
.y239{bottom:356.359380pt;}
.y1b9{bottom:359.953127pt;}
.y41{bottom:360.885420pt;}
.yfe{bottom:361.492193pt;}
.y164{bottom:362.494793pt;}
.y294{bottom:365.161460pt;}
.y2e{bottom:366.092447pt;}
.y259{bottom:366.093753pt;}
.y225{bottom:367.020833pt;}
.y80{bottom:367.023433pt;}
.y1d1{bottom:367.427087pt;}
.y186{bottom:367.953127pt;}
.y9f{bottom:367.954433pt;}
.y250{bottom:367.955727pt;}
.y1c6{bottom:368.356767pt;}
.y174{bottom:369.690100pt;}
.y11a{bottom:370.007807pt;}
.y23e{bottom:370.619793pt;}
.y1a3{bottom:370.622393pt;}
.y152{bottom:373.895833pt;}
.y2a3{bottom:377.286460pt;}
.y8f{bottom:377.838540pt;}
.y269{bottom:378.494793pt;}
.y218{bottom:379.424473pt;}
.yac{bottom:379.425780pt;}
.y285{bottom:379.427087pt;}
.yd5{bottom:380.356767pt;}
.y54{bottom:380.357100pt;}
.y1f1{bottom:380.359380pt;}
.y6d{bottom:382.218753pt;}
.y209{bottom:383.020833pt;}
.y238{bottom:383.955727pt;}
.y1b8{bottom:387.552087pt;}
.yfd{bottom:389.091140pt;}
.y163{bottom:390.093753pt;}
.y40{bottom:392.483073pt;}
.yc4{bottom:392.759113pt;}
.y293{bottom:392.760420pt;}
.y258{bottom:393.687500pt;}
.y2d{bottom:393.690100pt;}
.y224{bottom:394.619793pt;}
.y7f{bottom:394.621100pt;}
.y191{bottom:394.622393pt;}
.y9e{bottom:395.552087pt;}
.y128{bottom:397.287767pt;}
.y119{bottom:397.606767pt;}
.y151{bottom:401.492193pt;}
.y2a2{bottom:404.885420pt;}
.y8e{bottom:405.436193pt;}
.y268{bottom:406.093753pt;}
.y217{bottom:407.020833pt;}
.yab{bottom:407.023433pt;}
.ye5{bottom:407.953127pt;}
.yd4{bottom:407.954433pt;}
.y53{bottom:407.954753pt;}
.y28b{bottom:407.958327pt;}
.y1d0{bottom:408.356767pt;}
.y24f{bottom:408.885420pt;}
.y6c{bottom:409.816407pt;}
.y1e9{bottom:410.218753pt;}
.y208{bottom:410.619793pt;}
.y173{bottom:410.622393pt;}
.y1a2{bottom:411.552087pt;}
.y1b7{bottom:415.148433pt;}
.y7{bottom:415.350416pt;}
.yfc{bottom:416.687500pt;}
.y162{bottom:417.690100pt;}
.yc3{bottom:420.356767pt;}
.y292{bottom:420.359380pt;}
.y1f0{bottom:421.286460pt;}
.y2c{bottom:421.287767pt;}
.y7e{bottom:422.218753pt;}
.y185{bottom:423.148433pt;}
.y3f{bottom:424.080727pt;}
.y127{bottom:424.885420pt;}
.y118{bottom:425.203127pt;}
.y150{bottom:429.091140pt;}
.y8d{bottom:433.033860pt;}
.y267{bottom:433.687500pt;}
.y216{bottom:434.619793pt;}
.yaa{bottom:434.621100pt;}
.y13d{bottom:434.622393pt;}
.yd3{bottom:435.552087pt;}
.y52{bottom:435.552407pt;}
.y9d{bottom:436.483073pt;}
.y6b{bottom:437.414060pt;}
.y172{bottom:438.218753pt;}
.y1a1{bottom:439.148433pt;}
.yfb{bottom:444.286460pt;}
.y161{bottom:445.286460pt;}
.y1cf{bottom:447.953127pt;}
.yc2{bottom:447.954433pt;}
.y2ae{bottom:447.958327pt;}
.y2b{bottom:448.885420pt;}
.y230{bottom:449.815100pt;}
.yb6{bottom:449.816407pt;}
.y190{bottom:449.817713pt;}
.y184{bottom:450.747393pt;}
.y1e8{bottom:451.148433pt;}
.y126{bottom:452.483073pt;}
.y237{bottom:452.484380pt;}
.y117{bottom:452.802087pt;}
.y3e{bottom:455.678379pt;}
.y1b6{bottom:456.080727pt;}
.y14f{bottom:456.687500pt;}
.y6{bottom:456.746870pt;}
.y2a1{bottom:460.083327pt;}
.y8c{bottom:460.631513pt;}
.y266{bottom:461.286460pt;}
.y13c{bottom:462.218753pt;}
.ye4{bottom:463.148433pt;}
.y7d{bottom:463.149740pt;}
.y223{bottom:463.151046pt;}
.y9c{bottom:464.080727pt;}
.y207{bottom:465.815100pt;}
.yfa{bottom:471.882807pt;}
.y160{bottom:472.885420pt;}
.yc1{bottom:475.552087pt;}
.y2a{bottom:476.483073pt;}
.y1c5{bottom:476.484380pt;}
.y24e{bottom:477.411460pt;}
.y6a{bottom:478.345047pt;}
.y1e7{bottom:478.747393pt;}
.y171{bottom:479.151047pt;}
.y1a0{bottom:480.080727pt;}
.y116{bottom:480.398433pt;}
.y1b5{bottom:483.677087pt;}
.y14e{bottom:484.286460pt;}
.y2a0{bottom:487.677087pt;}
.y8b{bottom:488.229167pt;}
.y265{bottom:488.885420pt;}
.y284{bottom:489.812500pt;}
.y215{bottom:489.815100pt;}
.ya9{bottom:489.816407pt;}
.y13b{bottom:489.817713pt;}
.y7c{bottom:490.747393pt;}
.y22f{bottom:490.749993pt;}
.y183{bottom:491.677087pt;}
.y206{bottom:493.411460pt;}
.y125{bottom:493.414061pt;}
.y3d{bottom:496.609379pt;}
.yf9{bottom:499.481767pt;}
.y15f{bottom:500.484380pt;}
.y1ce{bottom:503.148433pt;}
.yc0{bottom:503.149740pt;}
.y28a{bottom:503.151047pt;}
.y29{bottom:504.080727pt;}
.y27e{bottom:504.083327pt;}
.y24d{bottom:505.010420pt;}
.y9b{bottom:505.011713pt;}
.y69{bottom:505.942713pt;}
.y1e6{bottom:506.343753pt;}
.y19f{bottom:507.677087pt;}
.y115{bottom:507.997393pt;}
.y29f{bottom:515.276047pt;}
.y264{bottom:516.484380pt;}
.y8a{bottom:517.408859pt;}
.y222{bottom:517.411460pt;}
.ya8{bottom:517.414060pt;}
.y18f{bottom:518.343753pt;}
.yd2{bottom:518.345047pt;}
.y22e{bottom:518.346353pt;}
.y205{bottom:521.010420pt;}
.y17{bottom:522.069167pt;}
.y1b4{bottom:524.609380pt;}
.yf8{bottom:527.078127pt;}
.y15e{bottom:528.080727pt;}
.ybf{bottom:530.747393pt;}
.y214{bottom:530.749993pt;}
.y1c4{bottom:531.677087pt;}
.y28{bottom:531.678380pt;}
.y9a{bottom:532.609380pt;}
.y19e{bottom:535.276047pt;}
.y3c{bottom:537.540367pt;}
.y14d{bottom:539.481767pt;}
.y29e{bottom:542.874993pt;}
.y263{bottom:544.083327pt;}
.y1ef{bottom:545.010420pt;}
.ya7{bottom:545.011713pt;}
.y124{bottom:545.013020pt;}
.yd1{bottom:545.942713pt;}
.y68{bottom:546.873700pt;}
.y1e5{bottom:547.276047pt;}
.y204{bottom:548.609380pt;}
.y114{bottom:548.927087pt;}
.y1b3{bottom:552.208327pt;}
.y15d{bottom:555.677087pt;}
.y13a{bottom:558.343753pt;}
.ybe{bottom:558.345047pt;}
.y213{bottom:558.346353pt;}
.y27{bottom:559.276047pt;}
.y24c{bottom:560.205727pt;}
.y99{bottom:560.207033pt;}
.y182{bottom:560.208327pt;}
.y19d{bottom:562.874993pt;}
.y16{bottom:562.999993pt;}
.y14c{bottom:567.078127pt;}
.yf7{bottom:568.010420pt;}
.y3b{bottom:569.138020pt;}
.y29d{bottom:570.468753pt;}
.y290{bottom:571.677087pt;}
.ya6{bottom:572.609380pt;}
.yd0{bottom:573.540367pt;}
.y67{bottom:574.471353pt;}
.y1e4{bottom:574.874993pt;}
.y203{bottom:576.205727pt;}
.y113{bottom:576.523433pt;}
.y15c{bottom:583.276046pt;}
.ybd{bottom:585.942713pt;}
.y26{bottom:586.873700pt;}
.y18e{bottom:586.874993pt;}
.y24b{bottom:587.802087pt;}
.y181{bottom:587.804687pt;}
.y19c{bottom:590.471353pt;}
.y1b2{bottom:593.138020pt;}
.y14b{bottom:594.677087pt;}
.y262{bottom:599.276047pt;}
.y221{bottom:600.205727pt;}
.y51{bottom:600.207033pt;}
.y3a{bottom:600.735673pt;}
.y98{bottom:601.138020pt;}
.y66{bottom:602.069007pt;}
.y1e3{bottom:602.471353pt;}
.y202{bottom:603.802087pt;}
.y15{bottom:603.930993pt;}
.y112{bottom:604.122393pt;}
.yf6{bottom:608.940100pt;}
.y15b{bottom:612.205726pt;}
.y139{bottom:613.539060pt;}
.ybc{bottom:613.540367pt;}
.y1ee{bottom:613.541660pt;}
.y27d{bottom:614.468753pt;}
.y25{bottom:614.471353pt;}
.y24a{bottom:615.401047pt;}
.y89{bottom:615.402340pt;}
.y180{bottom:615.403647pt;}
.y19b{bottom:618.067713pt;}
.y1b1{bottom:620.734380pt;}
.y14a{bottom:622.273433pt;}
.y29c{bottom:625.666660pt;}
.y123{bottom:626.873700pt;}
.y212{bottom:626.874993pt;}
.y220{bottom:627.802087pt;}
.y50{bottom:627.804687pt;}
.ycf{bottom:628.735673pt;}
.y65{bottom:629.666660pt;}
.y1e2{bottom:630.067713pt;}
.y201{bottom:631.401047pt;}
.y111{bottom:631.718753pt;}
.y39{bottom:632.333327pt;}
.yf5{bottom:636.537767pt;}
.y138{bottom:641.138020pt;}
.y1ed{bottom:641.140620pt;}
.y18d{bottom:642.067713pt;}
.y97{bottom:642.069007pt;}
.y88{bottom:642.999993pt;}
.y14{bottom:644.862140pt;}
.y19a{bottom:645.666660pt;}
.y1b0{bottom:648.333327pt;}
.y149{bottom:649.872393pt;}
.y29b{bottom:654.203128pt;}
.y261{bottom:654.468753pt;}
.ybb{bottom:654.471353pt;}
.y21f{bottom:655.401047pt;}
.y4f{bottom:655.402340pt;}
.yce{bottom:656.333327pt;}
.y64{bottom:657.264327pt;}
.y1e1{bottom:657.666660pt;}
.y110{bottom:659.317713pt;}
.y38{bottom:663.930993pt;}
.yf4{bottom:664.135420pt;}
.y137{bottom:668.734380pt;}
.y1ec{bottom:668.736980pt;}
.y283{bottom:668.739580pt;}
.yb5{bottom:669.666660pt;}
.y249{bottom:670.596353pt;}
.y87{bottom:670.597660pt;}
.y200{bottom:670.999993pt;}
.y199{bottom:673.265620pt;}
.y1af{bottom:675.929687pt;}
.y148{bottom:677.468753pt;}
.y211{bottom:682.067713pt;}
.yba{bottom:682.069007pt;}
.y4e{bottom:682.999993pt;}
.y17f{bottom:683.929687pt;}
.ycd{bottom:683.930993pt;}
.y13{bottom:685.792967pt;}
.yf3{bottom:691.733073pt;}
.y37{bottom:695.528647pt;}
.y24{bottom:696.333327pt;}
.ye3{bottom:697.264327pt;}
.y23d{bottom:697.265620pt;}
.y63{bottom:698.195313pt;}
.y1e0{bottom:698.598953pt;}
.y10f{bottom:700.248700pt;}
.y198{bottom:700.861980pt;}
.y1ae{bottom:703.528647pt;}
.y147{bottom:705.067713pt;}
.yb9{bottom:709.666660pt;}
.y274{bottom:710.593753pt;}
.y1ff{bottom:710.596353pt;}
.y4d{bottom:710.597660pt;}
.y1c3{bottom:710.598953pt;}
.y17e{bottom:711.528647pt;}
.y248{bottom:711.531247pt;}
.yf2{bottom:719.330727pt;}
.y136{bottom:723.929687pt;}
.y23{bottom:723.930993pt;}
.y1eb{bottom:723.932287pt;}
.ycc{bottom:724.861980pt;}
.y27c{bottom:724.864580pt;}
.y62{bottom:725.792967pt;}
.y1df{bottom:726.195313pt;}
.y12{bottom:726.723953pt;}
.y36{bottom:727.126300pt;}
.y10e{bottom:727.846353pt;}
.y1ad{bottom:731.124993pt;}
.y146{bottom:732.664060pt;}
.yb8{bottom:737.264327pt;}
.y1cd{bottom:737.265620pt;}
.y1fe{bottom:738.192713pt;}
.y4c{bottom:738.195313pt;}
.y17d{bottom:739.124993pt;}
.y86{bottom:739.126300pt;}
.y247{bottom:739.127607pt;}
.y197{bottom:741.794273pt;}
.yf1{bottom:746.928380pt;}
.ydd{bottom:751.528647pt;}
.y236{bottom:751.531247pt;}
.ycb{bottom:752.459633pt;}
.y61{bottom:753.390621pt;}
.y1de{bottom:753.794273pt;}
.y35{bottom:754.723953pt;}
.y10d{bottom:755.444007pt;}
.y145{bottom:760.263020pt;}
.y5{bottom:761.233804pt;}
.y22{bottom:764.861980pt;}
.y260{bottom:764.864580pt;}
.y1fd{bottom:765.791660pt;}
.y4b{bottom:765.792967pt;}
.y1c2{bottom:765.794273pt;}
.y85{bottom:766.723953pt;}
.y11{bottom:767.655113pt;}
.yf0{bottom:774.526047pt;}
.y135{bottom:779.124993pt;}
.ydc{bottom:779.126300pt;}
.y235{bottom:779.127607pt;}
.y1dd{bottom:781.390620pt;}
.y196{bottom:782.723954pt;}
.y10c{bottom:784.623699pt;}
.y144{bottom:787.859380pt;}
.y1cc{bottom:792.458327pt;}
.y21{bottom:792.459633pt;}
.y7b{bottom:793.390620pt;}
.y34{bottom:795.654953pt;}
.y60{bottom:796.988287pt;}
.yef{bottom:802.123700pt;}
.y96{bottom:806.723953pt;}
.y4a{bottom:806.724287pt;}
.y84{bottom:807.654953pt;}
.y17c{bottom:807.656247pt;}
.y10{bottom:808.585940pt;}
.y1dc{bottom:808.989580pt;}
.y10b{bottom:815.670579pt;}
.y143{bottom:817.567703pt;}
.y20{bottom:820.057287pt;}
.y1fc{bottom:820.986980pt;}
.yca{bottom:820.988287pt;}
.y1ac{bottom:820.989580pt;}
.y4{bottom:821.028724pt;}
.y134{bottom:834.320313pt;}
.y7a{bottom:834.321620pt;}
.y49{bottom:834.321940pt;}
.y22d{bottom:834.322913pt;}
.y83{bottom:835.252607pt;}
.y33{bottom:836.585940pt;}
.y10a{bottom:845.135420pt;}
.yee{bottom:845.165369pt;}
.y1f{bottom:847.654953pt;}
.y170{bottom:847.656247pt;}
.y1fb{bottom:848.583327pt;}
.y5f{bottom:848.585939pt;}
.yf{bottom:849.516927pt;}
.y79{bottom:861.919273pt;}
.y48{bottom:861.919593pt;}
.y22c{bottom:861.921873pt;}
.y1db{bottom:864.184900pt;}
.y32{bottom:868.183593pt;}
.y109{bottom:872.733073pt;}
.y25f{bottom:875.249993pt;}
.y1e{bottom:875.252607pt;}
.y1fa{bottom:876.182287pt;}
.y82{bottom:876.183593pt;}
.y17b{bottom:876.184900pt;}
.y3{bottom:880.823650pt;}
.y133{bottom:889.515625pt;}
.y78{bottom:889.516927pt;}
.y47{bottom:889.517252pt;}
.y22b{bottom:889.518229pt;}
.y273{bottom:889.520833pt;}
.ye{bottom:890.448080pt;}
.y31{bottom:899.781249pt;}
.y16f{bottom:902.848959pt;}
.y1d{bottom:902.850260pt;}
.y17a{bottom:903.781249pt;}
.y1da{bottom:905.114583pt;}
.y108{bottom:913.664063pt;}
.y77{bottom:917.114583pt;}
.y46{bottom:917.114909pt;}
.y1c{bottom:930.447916pt;}
.yd{bottom:931.378907pt;}
.y2{bottom:940.618582pt;}
.y107{bottom:942.843750pt;}
.y132{bottom:944.710937pt;}
.y76{bottom:944.712240pt;}
.y45{bottom:944.712565pt;}
.y1f9{bottom:944.713541pt;}
.y1d9{bottom:946.046875pt;}
.y1b{bottom:958.045573pt;}
.y16e{bottom:958.046875pt;}
.y30{bottom:972.309896pt;}
.yc{bottom:972.309977pt;}
.y44{bottom:972.310221pt;}
.y22a{bottom:972.312500pt;}
.y1a{bottom:985.643229pt;}
.y25e{bottom:985.645833pt;}
.y1{bottom:998.303477pt;}
.y15a{bottom:1013.239583pt;}
.y19{bottom:1013.240885pt;}
.yb{bottom:1013.241048pt;}
.hf{height:37.031249pt;}
.hc{height:44.437500pt;}
.ha{height:47.812499pt;}
.h7{height:56.843750pt;}
.h8{height:57.375000pt;}
.hb{height:64.546875pt;}
.hd{height:66.937498pt;}
.h6{height:76.500002pt;}
.h4{height:85.265625pt;}
.h9{height:94.154947pt;}
.he{height:94.156253pt;}
.h5{height:95.624998pt;}
.h1{height:113.687500pt;}
.h3{height:122.958338pt;}
.h2{height:123.161463pt;}
.h0{height:1122.666667pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x3{left:132.702251pt;}
.x4{left:153.380932pt;}
.x8{left:156.283468pt;}
.x2{left:166.216654pt;}
.x9{left:180.283468pt;}
.x5{left:254.938589pt;}
.x1{left:265.373037pt;}
.x6{left:330.078118pt;}
.xa{left:685.884478pt;}
.x7{left:692.548548pt;}
}




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