
    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_0eb1ed435c6550e1f7bff9d2.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_1e7cdc1e9381e03a85731434.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2797fde16fd2f29dc2fb180b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.731445;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_234fb95010ef8b7a6e318522.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.751953;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_b4b49f2bf9eb9721d147c281.woff2')format("woff");}.ff5{font-family:ff5;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:0.000023px;}
.ls5{letter-spacing:22.500000px;}
.ls4{letter-spacing:36.000000px;}
.ls6{letter-spacing:40.499989px;}
.ls7{letter-spacing:40.500000px;}
.ls2{letter-spacing:64.511718px;}
.ls1{letter-spacing:84.023438px;}
.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;}
}
.ws6d{word-spacing:-49.500001px;}
.ws21{word-spacing:-43.523437px;}
.ws0{word-spacing:-41.999999px;}
.ws23{word-spacing:-40.605468px;}
.ws69{word-spacing:-39.000002px;}
.ws4c{word-spacing:-36.000000px;}
.ws7{word-spacing:-22.605503px;}
.ws2c{word-spacing:-22.605492px;}
.ws3{word-spacing:-22.605491px;}
.ws82{word-spacing:-22.605482px;}
.ws5{word-spacing:-22.605480px;}
.ws2{word-spacing:-22.605471px;}
.ws6{word-spacing:-22.605470px;}
.ws4{word-spacing:-22.605468px;}
.ws55{word-spacing:-22.605467px;}
.ws2b{word-spacing:-22.605466px;}
.ws71{word-spacing:-22.605458px;}
.ws70{word-spacing:-22.605446px;}
.ws79{word-spacing:-22.605435px;}
.ws6c{word-spacing:-21.035156px;}
.ws7a{word-spacing:-21.029974px;}
.ws4f{word-spacing:-19.522764px;}
.ws1e{word-spacing:-19.518872px;}
.ws68{word-spacing:-19.517671px;}
.ws27{word-spacing:-19.517584px;}
.ws39{word-spacing:-19.511720px;}
.ws81{word-spacing:-18.105502px;}
.ws1b{word-spacing:-18.105491px;}
.ws10{word-spacing:-18.105480px;}
.ws20{word-spacing:-18.105471px;}
.wsc{word-spacing:-18.105469px;}
.ws25{word-spacing:-18.105468px;}
.ws36{word-spacing:-18.105467px;}
.ws4b{word-spacing:-18.105457px;}
.ws7b{word-spacing:-18.105446px;}
.ws60{word-spacing:-18.105435px;}
.ws5f{word-spacing:-18.000014px;}
.ws4e{word-spacing:-18.000010px;}
.ws61{word-spacing:-18.000003px;}
.ws73{word-spacing:-18.000001px;}
.ws1{word-spacing:-18.000000px;}
.ws76{word-spacing:-17.999999px;}
.ws8{word-spacing:-17.999998px;}
.ws29{word-spacing:-17.999989px;}
.ws7c{word-spacing:-17.964839px;}
.ws89{word-spacing:-13.605502px;}
.ws40{word-spacing:-13.605492px;}
.ws26{word-spacing:-13.605491px;}
.ws11{word-spacing:-13.605481px;}
.ws32{word-spacing:-13.605470px;}
.wse{word-spacing:-13.605468px;}
.ws57{word-spacing:-13.605467px;}
.ws56{word-spacing:-13.605457px;}
.ws5a{word-spacing:-13.605435px;}
.ws33{word-spacing:-13.500011px;}
.ws47{word-spacing:-13.500001px;}
.wsb{word-spacing:-13.499999px;}
.wsf{word-spacing:-13.499997px;}
.ws48{word-spacing:-13.499966px;}
.ws8d{word-spacing:-13.330051px;}
.ws5e{word-spacing:-9.105502px;}
.ws6b{word-spacing:-9.105491px;}
.ws19{word-spacing:-9.105480px;}
.wsd{word-spacing:-9.105469px;}
.ws24{word-spacing:-9.105458px;}
.ws6a{word-spacing:-9.105446px;}
.ws84{word-spacing:-9.105435px;}
.ws64{word-spacing:-9.000034px;}
.ws28{word-spacing:-9.000022px;}
.ws1a{word-spacing:-9.000000px;}
.ws18{word-spacing:-8.999998px;}
.ws2a{word-spacing:-4.605491px;}
.ws1f{word-spacing:-4.605480px;}
.ws75{word-spacing:-4.605479px;}
.ws14{word-spacing:-4.605469px;}
.ws45{word-spacing:-4.605458px;}
.ws22{word-spacing:-4.605446px;}
.ws54{word-spacing:-4.605435px;}
.ws62{word-spacing:-4.500022px;}
.ws34{word-spacing:-4.500011px;}
.ws65{word-spacing:-4.499997px;}
.ws5b{word-spacing:-0.105491px;}
.ws16{word-spacing:-0.105480px;}
.ws37{word-spacing:-0.105471px;}
.ws1d{word-spacing:-0.105469px;}
.ws8b{word-spacing:-0.105466px;}
.ws5c{word-spacing:-0.105458px;}
.ws6f{word-spacing:-0.105446px;}
.ws53{word-spacing:-0.000036px;}
.ws38{word-spacing:-0.000022px;}
.ws9{word-spacing:0.000000px;}
.ws52{word-spacing:0.000034px;}
.wsa{word-spacing:3.023440px;}
.ws7f{word-spacing:4.394508px;}
.ws49{word-spacing:4.394518px;}
.ws43{word-spacing:4.394520px;}
.ws59{word-spacing:4.394531px;}
.ws78{word-spacing:4.394543px;}
.ws51{word-spacing:4.499978px;}
.ws63{word-spacing:4.499988px;}
.ws50{word-spacing:4.499990px;}
.ws15{word-spacing:4.499997px;}
.ws1c{word-spacing:4.500000px;}
.ws44{word-spacing:8.894509px;}
.ws35{word-spacing:8.894520px;}
.ws31{word-spacing:8.894530px;}
.ws3e{word-spacing:8.894531px;}
.ws72{word-spacing:8.894532px;}
.ws77{word-spacing:8.894554px;}
.ws4a{word-spacing:9.000033px;}
.ws13{word-spacing:13.394509px;}
.ws58{word-spacing:13.394519px;}
.ws2f{word-spacing:13.394532px;}
.ws4d{word-spacing:13.394554px;}
.ws67{word-spacing:13.499978px;}
.ws3d{word-spacing:13.500000px;}
.ws41{word-spacing:17.437500px;}
.ws3c{word-spacing:17.894509px;}
.ws5d{word-spacing:17.894520px;}
.ws2d{word-spacing:17.894530px;}
.ws30{word-spacing:17.999963px;}
.ws2e{word-spacing:17.999989px;}
.ws66{word-spacing:17.999998px;}
.ws42{word-spacing:18.000000px;}
.ws12{word-spacing:18.000002px;}
.ws74{word-spacing:22.394509px;}
.ws3a{word-spacing:22.394531px;}
.ws3b{word-spacing:22.499989px;}
.ws46{word-spacing:26.894531px;}
.ws3f{word-spacing:31.394498px;}
.ws6e{word-spacing:31.394532px;}
.ws17{word-spacing:40.394543px;}
.ws8e{word-spacing:43.417969px;}
.ws86{word-spacing:53.894520px;}
.ws88{word-spacing:58.394531px;}
.ws83{word-spacing:67.394509px;}
.ws80{word-spacing:116.894498px;}
.ws7e{word-spacing:157.394498px;}
.ws85{word-spacing:184.394543px;}
.ws87{word-spacing:238.394509px;}
.ws8c{word-spacing:256.394508px;}
.ws7d{word-spacing:260.894519px;}
.ws8a{word-spacing:1736.894531px;}
._2a{margin-left:-9.281160px;}
._2b{margin-left:-7.980377px;}
._32{margin-left:-6.609375px;}
._25{margin-left:-5.027344px;}
._17{margin-left:-3.972656px;}
._9{margin-left:-2.531250px;}
._2{margin-left:-1.300781px;}
._1c{width:18.000002px;}
._3c{width:20.531250px;}
._1e{width:22.500003px;}
._1f{width:27.000002px;}
._20{width:31.500000px;}
._1d{width:36.000000px;}
._22{width:40.500001px;}
._27{width:45.000100px;}
._21{width:49.500132px;}
._26{width:53.999994px;}
._23{width:58.500002px;}
._29{width:63.000002px;}
._34{width:67.500003px;}
._28{width:71.648526px;}
._24{width:76.499931px;}
._38{width:84.023438px;}
._36{width:89.999999px;}
._3e{width:98.999988px;}
._35{width:108.000000px;}
._3b{width:112.500011px;}
._37{width:126.000000px;}
._33{width:144.000005px;}
._2f{width:161.999908px;}
._13{width:180.224189px;}
._3a{width:202.500002px;}
._2c{width:216.000002px;}
._3d{width:229.500000px;}
._2d{width:270.000002px;}
._3f{width:283.500022px;}
._31{width:288.000002px;}
._39{width:306.000002px;}
._30{width:324.000000px;}
._2e{width:342.000000px;}
._8{width:466.149631px;}
._b{width:899.977757px;}
._5{width:1110.071618px;}
._f{width:1275.868383px;}
._11{width:1279.841042px;}
._d{width:1441.735572px;}
._e{width:1445.778539px;}
._c{width:1473.833251px;}
._4{width:1538.098859px;}
._10{width:1585.770727px;}
._1a{width:1614.915259px;}
._7{width:1769.813695px;}
._15{width:1811.825415px;}
._18{width:1833.798071px;}
._a{width:1932.341040px;}
._6{width:1933.712133px;}
._12{width:1973.649634px;}
._19{width:2003.567602px;}
._3{width:2044.911353px;}
._16{width:2075.567591px;}
._14{width:2111.673072px;}
._0{width:2159.661352px;}
._1{width:2175.727758px;}
._1b{width:2179.630100px;}
.fc6{color:rgb(68,71,70);}
.fc4{color:rgb(11,87,208);}
.fc3{color:rgb(17,85,204);}
.fc1{color:rgb(0,0,255);}
.fc5{color:rgb(31,31,31);}
.fc2{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:66.000002px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:78.000003px;}
.fs0{font-size:83.999997px;}
.y0{bottom:0.000000px;}
.y1ad{bottom:14.872550px;}
.y153{bottom:14.872559px;}
.y158{bottom:14.872560px;}
.y174{bottom:14.874022px;}
.y155{bottom:14.874024px;}
.y161{bottom:14.874028px;}
.y1cd{bottom:14.874030px;}
.y1ac{bottom:38.674804px;}
.y160{bottom:38.676269px;}
.y157{bottom:38.676270px;}
.y1b0{bottom:38.677734px;}
.yed{bottom:59.967044px;}
.y1d{bottom:59.967584px;}
.y42{bottom:59.967779px;}
.y22c{bottom:59.968499px;}
.y173{bottom:62.478515px;}
.y15f{bottom:62.479979px;}
.y172{bottom:86.282226px;}
.y15e{bottom:86.282234px;}
.y15d{bottom:110.085943px;}
.yca{bottom:113.226563px;}
.y251{bottom:116.390617px;}
.ya6{bottom:117.045413px;}
.y1a0{bottom:117.987308px;}
.y122{bottom:120.865717px;}
.yec{bottom:124.832513px;}
.y41{bottom:130.881593px;}
.y89{bottom:133.832513px;}
.y15c{bottom:133.888184px;}
.yc9{bottom:137.029538px;}
.y250{bottom:140.194342px;}
.ya5{bottom:140.849123px;}
.y18b{bottom:143.812492px;}
.y65{bottom:144.379388px;}
.y121{bottom:144.667973px;}
.y22b{bottom:145.505857px;}
.yeb{bottom:148.636237px;}
.y1b6{bottom:150.720698px;}
.y19f{bottom:153.916993px;}
.y40{bottom:154.684567px;}
.y1d2{bottom:157.006342px;}
.y88{bottom:157.635503px;}
.yc8{bottom:160.832513px;}
.y1c{bottom:162.893182px;}
.y13f{bottom:163.684567px;}
.y24f{bottom:163.998053px;}
.ya4{bottom:164.651363px;}
.y1e6{bottom:165.662108px;}
.y64{bottom:168.182378px;}
.y22a{bottom:169.309567px;}
.y18a{bottom:179.742189px;}
.y1d1{bottom:180.808598px;}
.y87{bottom:181.438478px;}
.yc7{bottom:184.635503px;}
.y120{bottom:186.471683px;}
.y13e{bottom:187.488278px;}
.y24e{bottom:187.801762px;}
.y162{bottom:188.632327px;}
.y1e5{bottom:189.464362px;}
.yea{bottom:190.438478px;}
.y229{bottom:193.113278px;}
.y3f{bottom:193.487918px;}
.y19e{bottom:194.595699px;}
.y10b{bottom:198.224857px;}
.y1b{bottom:198.440557px;}
.ya3{bottom:207.038088px;}
.y63{bottom:209.985353px;}
.y11f{bottom:210.275392px;}
.y13d{bottom:211.290533px;}
.y24d{bottom:211.605473px;}
.y1e4{bottom:213.266602px;}
.y1d0{bottom:216.738283px;}
.y228{bottom:216.914062px;}
.y3e{bottom:217.290893px;}
.y189{bottom:220.419429px;}
.y10a{bottom:222.027832px;}
.y86{bottom:223.241453px;}
.y15b{bottom:224.562009px;}
.yc6{bottom:226.438478px;}
.ye9{bottom:232.242188px;}
.y62{bottom:233.788328px;}
.y1a{bottom:233.987738px;}
.y11e{bottom:234.077633px;}
.y19d{bottom:235.272954px;}
.y24c{bottom:235.406242px;}
.y1e3{bottom:237.070312px;}
.y227{bottom:240.717773px;}
.y3d{bottom:241.093868px;}
.y109{bottom:245.830807px;}
.y85{bottom:247.044427px;}
.y13c{bottom:250.092773px;}
.yc5{bottom:250.241453px;}
.y204{bottom:255.619627px;}
.ye8{bottom:256.044427px;}
.y1cf{bottom:257.416993px;}
.y61{bottom:257.591302px;}
.y24b{bottom:259.209967px;}
.ya2{bottom:259.241453px;}
.y188{bottom:261.096674px;}
.y226{bottom:264.521483px;}
.y1cc{bottom:265.854488px;}
.y19{bottom:269.535098px;}
.y84{bottom:270.847417px;}
.y13b{bottom:273.896483px;}
.yc4{bottom:274.044427px;}
.y1e2{bottom:275.874023px;}
.y11d{bottom:275.879887px;}
.y19c{bottom:275.950199px;}
.y203{bottom:279.421867px;}
.ye7{bottom:279.848138px;}
.y3c{bottom:279.896483px;}
.y60{bottom:281.394292px;}
.y24a{bottom:283.013678px;}
.ya1{bottom:283.044427px;}
.y15a{bottom:284.069829px;}
.y108{bottom:287.633783px;}
.y225{bottom:288.322267px;}
.y83{bottom:294.650393px;}
.y13a{bottom:297.700193px;}
.yc3{bottom:297.847417px;}
.y1ce{bottom:298.095699px;}
.y1e1{bottom:299.677733px;}
.y11c{bottom:299.683598px;}
.y187{bottom:301.775384px;}
.y202{bottom:303.225592px;}
.y3b{bottom:303.699458px;}
.y18{bottom:305.082457px;}
.y5f{bottom:305.197268px;}
.y249{bottom:306.814447px;}
.ya0{bottom:306.847417px;}
.y107{bottom:311.436772px;}
.y224{bottom:312.125977px;}
.y19b{bottom:316.628909px;}
.y26a{bottom:319.209967px;}
.y139{bottom:321.502448px;}
.yc2{bottom:321.650393px;}
.y1e0{bottom:323.479987px;}
.y11b{bottom:323.487307px;}
.y201{bottom:327.029302px;}
.y3a{bottom:327.502448px;}
.y248{bottom:330.618157px;}
.y9f{bottom:330.650393px;}
.y223{bottom:335.929688px;}
.y82{bottom:336.453368px;}
.y1cb{bottom:338.772954px;}
.y17{bottom:340.629817px;}
.y186{bottom:342.454104px;}
.y138{bottom:345.304687px;}
.ye6{bottom:345.454102px;}
.y5e{bottom:347.000243px;}
.y1df{bottom:347.282227px;}
.y11a{bottom:347.289547px;}
.y269{bottom:350.258783px;}
.y200{bottom:350.831543px;}
.y39{bottom:351.305423px;}
.y106{bottom:353.239748px;}
.y247{bottom:354.421867px;}
.y19a{bottom:357.307614px;}
.y1ca{bottom:359.112299px;}
.y222{bottom:359.733398px;}
.y81{bottom:360.256342px;}
.yc1{bottom:363.453368px;}
.y16f{bottom:369.161137px;}
.ye5{bottom:369.256342px;}
.y5d{bottom:370.803217px;}
.y119{bottom:371.091803px;}
.y9e{bottom:372.453368px;}
.y38{bottom:375.108398px;}
.y16{bottom:376.177193px;}
.y246{bottom:378.225592px;}
.y1c9{bottom:379.450199px;}
.y268{bottom:381.304687px;}
.y185{bottom:383.131344px;}
.y221{bottom:383.537107px;}
.y80{bottom:384.059333px;}
.y137{bottom:384.108398px;}
.y159{bottom:384.254879px;}
.y1de{bottom:386.084468px;}
.yc0{bottom:387.256342px;}
.y1ff{bottom:389.633783px;}
.y16e{bottom:392.964848px;}
.y5c{bottom:394.606207px;}
.y105{bottom:395.042723px;}
.y9d{bottom:396.256342px;}
.y245{bottom:402.029302px;}
.y1b5{bottom:403.145512px;}
.y220{bottom:407.337892px;}
.y7f{bottom:407.862307px;}
.y136{bottom:407.910638px;}
.y1dd{bottom:409.886723px;}
.ybf{bottom:411.059333px;}
.ye4{bottom:411.060052px;}
.y15{bottom:411.724552px;}
.y267{bottom:412.353517px;}
.y1fe{bottom:413.436037px;}
.y118{bottom:413.478513px;}
.y37{bottom:413.911373px;}
.y5b{bottom:418.409183px;}
.y104{bottom:418.845698px;}
.y9c{bottom:420.059333px;}
.y1c8{bottom:420.128909px;}
.y199{bottom:422.982428px;}
.y184{bottom:423.808588px;}
.y156{bottom:424.933597px;}
.y244{bottom:425.830073px;}
.y1b4{bottom:426.949223px;}
.y21f{bottom:431.141603px;}
.y7e{bottom:431.665283px;}
.y135{bottom:431.714362px;}
.y1dc{bottom:433.690433px;}
.y16d{bottom:434.767088px;}
.ybe{bottom:434.862307px;}
.y154{bottom:436.833989px;}
.y1fd{bottom:437.238278px;}
.y36{bottom:437.714362px;}
.y117{bottom:439.265628px;}
.y5a{bottom:442.212157px;}
.y103{bottom:442.648687px;}
.y266{bottom:443.399408px;}
.y9b{bottom:443.862307px;}
.y198{bottom:446.786137px;}
.y14{bottom:447.271913px;}
.y243{bottom:449.633783px;}
.y1b3{bottom:450.752932px;}
.y21e{bottom:454.945312px;}
.y7d{bottom:455.468257px;}
.y134{bottom:455.516602px;}
.y1db{bottom:457.494142px;}
.y16c{bottom:458.569342px;}
.ybd{bottom:458.665283px;}
.ye3{bottom:458.666017px;}
.y1c7{bottom:460.807614px;}
.y35{bottom:461.517337px;}
.y102{bottom:466.451663px;}
.y9a{bottom:467.665283px;}
.y1c5{bottom:469.245123px;}
.y197{bottom:470.589847px;}
.y242{bottom:473.437492px;}
.y265{bottom:474.448238px;}
.y1b2{bottom:474.555173px;}
.y1fc{bottom:476.041988px;}
.y21d{bottom:478.746098px;}
.y133{bottom:479.320312px;}
.y1da{bottom:481.296383px;}
.y16b{bottom:482.373052px;}
.ye2{bottom:482.468258px;}
.y13{bottom:482.819273px;}
.y59{bottom:484.015133px;}
.y152{bottom:489.414549px;}
.y183{bottom:489.486322px;}
.y101{bottom:490.254638px;}
.y196{bottom:494.392088px;}
.y34{bottom:495.487062px;}
.y241{bottom:497.238277px;}
.y7c{bottom:497.271248px;}
.y1fb{bottom:499.845698px;}
.ybc{bottom:501.051273px;}
.y1c6{bottom:501.484869px;}
.y21c{bottom:502.549808px;}
.y1d9{bottom:505.098637px;}
.y264{bottom:505.494142px;}
.ye1{bottom:506.271968px;}
.y58{bottom:507.818122px;}
.y99{bottom:509.468258px;}
.y182{bottom:513.288577px;}
.y132{bottom:513.290037px;}
.y100{bottom:514.057613px;}
.y1b1{bottom:516.357428px;}
.y12{bottom:518.366633px;}
.y240{bottom:521.041988px;}
.y7b{bottom:521.074223px;}
.y1fa{bottom:523.649408px;}
.y16a{bottom:524.176762px;}
.y21b{bottom:526.353518px;}
.y116{bottom:530.074223px;}
.y57{bottom:531.632806px;}
.y98{bottom:533.271248px;}
.y195{bottom:536.194342px;}
.y263{bottom:536.542973px;}
.y181{bottom:537.090818px;}
.y1d8{bottom:539.068361px;}
.y1c4{bottom:542.162113px;}
.ybb{bottom:544.254638px;}
.y23f{bottom:544.845698px;}
.y7a{bottom:544.877197px;}
.y1f9{bottom:547.451662px;}
.y169{bottom:547.979002px;}
.ye0{bottom:548.074223px;}
.y21a{bottom:550.157228px;}
.y33{bottom:552.090818px;}
.y1af{bottom:552.287114px;}
.y115{bottom:553.877932px;}
.y11{bottom:553.914008px;}
.y151{bottom:555.090818px;}
.y56{bottom:555.526981px;}
.yff{bottom:555.860603px;}
.y97{bottom:557.074223px;}
.y194{bottom:559.998052px;}
.y180{bottom:560.894527px;}
.y1c3{bottom:562.502924px;}
.y1ae{bottom:564.190424px;}
.y262{bottom:567.588863px;}
.yba{bottom:568.057613px;}
.y23e{bottom:568.649408px;}
.y79{bottom:568.680173px;}
.y131{bottom:569.893073px;}
.y1f8{bottom:571.253902px;}
.y168{bottom:571.781242px;}
.y219{bottom:573.960938px;}
.y32{bottom:575.893792px;}
.y150{bottom:578.893073px;}
.y55{bottom:579.409058px;}
.yfe{bottom:579.663577px;}
.y96{bottom:580.877197px;}
.y1c2{bottom:582.840824px;}
.y193{bottom:583.801762px;}
.y17f{bottom:584.698238px;}
.y10{bottom:589.461368px;}
.ydf{bottom:589.877932px;}
.yb9{bottom:591.860603px;}
.y23d{bottom:592.453118px;}
.y78{bottom:592.483148px;}
.y130{bottom:593.696783px;}
.y1f7{bottom:595.057613px;}
.y1d7{bottom:595.672852px;}
.y114{bottom:595.680173px;}
.y218{bottom:597.761723px;}
.y261{bottom:598.637692px;}
.y14f{bottom:602.696783px;}
.y54{bottom:603.212032px;}
.yfd{bottom:603.466553px;}
.y95{bottom:604.680173px;}
.y167{bottom:613.584967px;}
.yde{bottom:613.680173px;}
.y31{bottom:614.696408px;}
.yb8{bottom:615.663577px;}
.y23c{bottom:616.253902px;}
.y1ab{bottom:616.769538px;}
.y12f{bottom:617.499022px;}
.y113{bottom:619.483882px;}
.yf{bottom:625.008727px;}
.y192{bottom:625.604002px;}
.y14e{bottom:626.499022px;}
.y17e{bottom:626.500492px;}
.y53{bottom:627.015008px;}
.y94{bottom:628.483148px;}
.y1aa{bottom:628.671384px;}
.y260{bottom:629.683598px;}
.y217{bottom:631.731446px;}
.y1f6{bottom:633.861322px;}
.y77{bottom:634.286137px;}
.y166{bottom:637.388678px;}
.ydd{bottom:637.483882px;}
.y30{bottom:638.499382px;}
.yb7{bottom:639.466553px;}
.y23b{bottom:640.057613px;}
.y112{bottom:643.286137px;}
.yfc{bottom:645.269527px;}
.y1c1{bottom:648.517088px;}
.y191{bottom:649.406242px;}
.y14d{bottom:650.302733px;}
.y52{bottom:650.817998px;}
.y12e{bottom:656.302733px;}
.y1f5{bottom:657.665033px;}
.y76{bottom:658.089112px;}
.ye{bottom:660.556088px;}
.y25f{bottom:660.732428px;}
.y165{bottom:661.190918px;}
.ydc{bottom:661.286137px;}
.y2f{bottom:662.302373px;}
.y23a{bottom:663.861322px;}
.y111{bottom:667.089848px;}
.y93{bottom:670.286137px;}
.y1c0{bottom:672.319342px;}
.y190{bottom:673.209968px;}
.y216{bottom:673.335938px;}
.y17d{bottom:674.106442px;}
.y51{bottom:676.381424px;}
.y12d{bottom:680.104988px;}
.y1a9{bottom:681.249028px;}
.yb6{bottom:681.269527px;}
.y1f4{bottom:681.467288px;}
.y75{bottom:681.892088px;}
.y164{bottom:684.993158px;}
.ydb{bottom:685.089848px;}
.y2e{bottom:686.105348px;}
.yfb{bottom:687.072503px;}
.y239{bottom:687.662107px;}
.y110{bottom:690.892088px;}
.y25e{bottom:691.778318px;}
.y14c{bottom:692.104988px;}
.y92{bottom:694.089112px;}
.yd{bottom:696.103448px;}
.y1bf{bottom:696.123052px;}
.y18f{bottom:697.013678px;}
.y215{bottom:697.136723px;}
.y17c{bottom:697.910152px;}
.y50{bottom:701.530882px;}
.y12c{bottom:703.907228px;}
.yb5{bottom:705.072503px;}
.y74{bottom:705.695063px;}
.yda{bottom:708.892088px;}
.yfa{bottom:710.875492px;}
.y238{bottom:711.465818px;}
.y10f{bottom:714.695798px;}
.y14b{bottom:715.908698px;}
.y91{bottom:717.892088px;}
.y1be{bottom:719.926762px;}
.y1f3{bottom:720.269527px;}
.y18e{bottom:720.815918px;}
.y214{bottom:720.940432px;}
.y17b{bottom:721.712407px;}
.y25d{bottom:722.827148px;}
.y2d{bottom:724.908698px;}
.y163{bottom:726.796867px;}
.yb4{bottom:728.875492px;}
.yc{bottom:731.650823px;}
.yd9{bottom:732.695798px;}
.yf9{bottom:734.678468px;}
.y237{bottom:735.269527px;}
.y12b{bottom:737.876951px;}
.y10e{bottom:738.498052px;}
.y14a{bottom:739.710938px;}
.y90{bottom:741.695063px;}
.y4f{bottom:743.333858px;}
.y1bd{bottom:743.729002px;}
.y1f2{bottom:744.071782px;}
.y18d{bottom:744.618158px;}
.y213{bottom:744.744142px;}
.y1a8{bottom:746.926762px;}
.y73{bottom:747.498052px;}
.y2c{bottom:748.711672px;}
.yb3{bottom:752.678468px;}
.y25c{bottom:753.873052px;}
.yd8{bottom:756.498052px;}
.yf8{bottom:758.481442px;}
.y236{bottom:759.073238px;}
.y10d{bottom:762.301762px;}
.y17a{bottom:763.514648px;}
.y8f{bottom:765.498052px;}
.y4e{bottom:767.136848px;}
.yb{bottom:767.198183px;}
.y1f1{bottom:767.874022px;}
.y212{bottom:768.547853px;}
.y1a7{bottom:770.729002px;}
.y72{bottom:771.301028px;}
.y2b{bottom:772.514648px;}
.yf7{bottom:782.284418px;}
.y149{bottom:782.680661px;}
.y235{bottom:782.876948px;}
.y25b{bottom:784.921867px;}
.y1bc{bottom:785.531242px;}
.y18c{bottom:786.421867px;}
.y8e{bottom:789.301028px;}
.y4d{bottom:790.939822px;}
.y1f0{bottom:791.677733px;}
.y211{bottom:792.351562px;}
.yb2{bottom:794.481442px;}
.y1a6{bottom:794.531242px;}
.y71{bottom:795.104002px;}
.y2a{bottom:796.317622px;}
.yd7{bottom:798.301762px;}
.y179{bottom:799.444333px;}
.ya{bottom:802.745543px;}
.y10c{bottom:804.687018px;}
.y234{bottom:806.677733px;}
.y1bb{bottom:809.334967px;}
.y8d{bottom:813.104002px;}
.y4c{bottom:814.742798px;}
.y1ef{bottom:815.481442px;}
.y25a{bottom:815.967773px;}
.y210{bottom:816.152348px;}
.yb1{bottom:818.284418px;}
.y12a{bottom:818.285152px;}
.y1a5{bottom:818.334967px;}
.y70{bottom:818.906977px;}
.yf6{bottom:824.087408px;}
.y148{bottom:824.283698px;}
.y233{bottom:830.481442px;}
.y1ba{bottom:833.138678px;}
.y29{bottom:835.120418px;}
.y8c{bottom:836.906977px;}
.y9{bottom:838.292903px;}
.y1ee{bottom:839.283698px;}
.y20f{bottom:839.956058px;}
.yd6{bottom:840.104002px;}
.y178{bottom:840.123043px;}
.yb0{bottom:842.087408px;}
.y1a4{bottom:842.138678px;}
.y6f{bottom:842.709968px;}
.y259{bottom:847.016602px;}
.yf5{bottom:847.890382px;}
.y147{bottom:848.087408px;}
.y232{bottom:854.285152px;}
.y1b9{bottom:856.940918px;}
.y4b{bottom:857.128787px;}
.y28{bottom:858.923408px;}
.y8b{bottom:860.709968px;}
.y1ed{bottom:863.085938px;}
.y20e{bottom:863.759767px;}
.yd5{bottom:863.907712px;}
.y129{bottom:865.889647px;}
.yaf{bottom:865.890382px;}
.y1a3{bottom:865.940917px;}
.yf4{bottom:871.693358px;}
.y146{bottom:871.889647px;}
.y8{bottom:873.840277px;}
.y258{bottom:878.062492px;}
.y231{bottom:878.085938px;}
.y1b8{bottom:880.743158px;}
.y177{bottom:880.801764px;}
.y27{bottom:882.726382px;}
.y6e{bottom:884.512943px;}
.y1ec{bottom:886.889647px;}
.y20d{bottom:887.560552px;}
.yd4{bottom:887.709967px;}
.y128{bottom:889.693358px;}
.y1a2{bottom:889.743158px;}
.y145{bottom:895.693358px;}
.y230{bottom:901.889647px;}
.yae{bottom:907.693358px;}
.y6d{bottom:908.315917px;}
.y257{bottom:909.111323px;}
.y7{bottom:909.387637px;}
.y4a{bottom:910.498902px;}
.y1eb{bottom:910.693358px;}
.y20c{bottom:911.364262px;}
.yd3{bottom:911.513677px;}
.yf3{bottom:913.496332px;}
.y127{bottom:913.497067px;}
.y144{bottom:919.495613px;}
.y176{bottom:921.479004px;}
.y26{bottom:921.529178px;}
.y1b7{bottom:922.546867px;}
.y22f{bottom:925.693358px;}
.yad{bottom:931.496332px;}
.y1a1{bottom:931.546867px;}
.y6c{bottom:932.118892px;}
.yd2{bottom:935.315917px;}
.yf2{bottom:937.299323px;}
.y256{bottom:940.157227px;}
.y143{bottom:943.299323px;}
.y6{bottom:944.934998px;}
.y25{bottom:945.332153px;}
.y1ea{bottom:949.497067px;}
.y8a{bottom:950.118892px;}
.y20b{bottom:950.167973px;}
.yac{bottom:955.299323px;}
.yd1{bottom:959.118892px;}
.yf1{bottom:961.102297px;}
.y175{bottom:962.156248px;}
.y49{bottom:967.102297px;}
.y24{bottom:969.135127px;}
.y255{bottom:971.206058px;}
.y1e9{bottom:973.299323px;}
.y22e{bottom:973.300777px;}
.y6b{bottom:973.921867px;}
.y126{bottom:979.101562px;}
.yab{bottom:979.102297px;}
.y5{bottom:980.482358px;}
.y142{bottom:982.103032px;}
.y20a{bottom:984.137696px;}
.yf0{bottom:984.905273px;}
.y48{bottom:990.905273px;}
.y23{bottom:992.938117px;}
.y1e8{bottom:997.101562px;}
.y6a{bottom:997.724853px;}
.yd0{bottom:1000.921875px;}
.y254{bottom:1002.251953px;}
.y171{bottom:1002.834961px;}
.yaa{bottom:1002.905274px;}
.y141{bottom:1005.905274px;}
.yef{bottom:1008.708252px;}
.y4{bottom:1016.029724px;}
.y22{bottom:1016.741090px;}
.y1e7{bottom:1020.905274px;}
.y69{bottom:1021.527832px;}
.y1d6{bottom:1024.724121px;}
.ycf{bottom:1024.724853px;}
.y209{bottom:1025.742188px;}
.ya9{bottom:1026.708252px;}
.y47{bottom:1029.708252px;}
.y140{bottom:1029.708984px;}
.y253{bottom:1033.300780px;}
.y170{bottom:1038.539062px;}
.y125{bottom:1044.708984px;}
.y1d5{bottom:1048.526367px;}
.yce{bottom:1048.527832px;}
.y208{bottom:1049.544433px;}
.yee{bottom:1050.511230px;}
.y3{bottom:1051.577088px;}
.y46{bottom:1053.511230px;}
.y21{bottom:1055.544433px;}
.y68{bottom:1063.913820px;}
.y252{bottom:1064.346679px;}
.y22d{bottom:1068.509766px;}
.ya8{bottom:1068.511230px;}
.y1d4{bottom:1072.330078px;}
.ycd{bottom:1072.330811px;}
.y207{bottom:1073.346679px;}
.y45{bottom:1077.314210px;}
.y20{bottom:1079.347411px;}
.y2{bottom:1087.124451px;}
.y124{bottom:1092.313476px;}
.ya7{bottom:1092.314210px;}
.ycc{bottom:1096.133789px;}
.y206{bottom:1097.150391px;}
.y1f{bottom:1103.150391px;}
.y67{bottom:1116.117188px;}
.y44{bottom:1116.117553px;}
.y1{bottom:1137.119567px;}
.y1e{bottom:1137.119750px;}
.y205{bottom:1137.120117px;}
.ycb{bottom:1138.519776px;}
.y1d3{bottom:1138.520509px;}
.y66{bottom:1139.920165px;}
.y43{bottom:1139.920531px;}
.y123{bottom:1139.920899px;}
.h9{height:39.552246px;}
.ha{height:39.553711px;}
.h5{height:47.437501px;}
.he{height:63.354492px;}
.hb{height:63.355957px;}
.hf{height:63.357422px;}
.h2{height:63.949219px;}
.h3{height:64.546875px;}
.h6{height:69.278323px;}
.h1{height:74.607419px;}
.h8{height:105.899415px;}
.h4{height:105.899775px;}
.h7{height:105.900150px;}
.hd{height:110.961914px;}
.hc{height:158.567871px;}
.h0{height:1263.000000px;}
.we{width:126.000000px;}
.wf{width:126.000046px;}
.w9{width:129.375000px;}
.wa{width:150.750000px;}
.w8{width:166.500046px;}
.w7{width:187.875000px;}
.w2{width:208.125000px;}
.wc{width:209.250000px;}
.wb{width:210.375047px;}
.w6{width:211.500000px;}
.w4{width:214.875000px;}
.w10{width:253.125000px;}
.wd{width:253.125045px;}
.w5{width:459.000000px;}
.w3{width:464.625000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x33{left:6.750000px;}
.x34{left:8.055176px;}
.x32{left:11.557617px;}
.x3d{left:12.695801px;}
.x27{left:14.620606px;}
.xe{left:16.875000px;}
.x13{left:20.122559px;}
.x3a{left:21.946289px;}
.x11{left:25.000488px;}
.x2d{left:26.437500px;}
.x38{left:28.445801px;}
.x36{left:31.939453px;}
.x28{left:33.477540px;}
.x2b{left:36.812988px;}
.x24{left:38.619141px;}
.x2a{left:41.748047px;}
.xc{left:42.758790px;}
.x15{left:44.534180px;}
.x2c{left:46.819337px;}
.x16{left:47.869629px;}
.x2f{left:50.431641px;}
.x29{left:52.435547px;}
.x17{left:57.875977px;}
.x3c{left:60.002930px;}
.x19{left:62.868165px;}
.x1b{left:63.874512px;}
.x1f{left:67.152832px;}
.x22{left:73.604004px;}
.x1e{left:77.440430px;}
.x31{left:79.369629px;}
.x21{left:81.940430px;}
.x10{left:82.986328px;}
.xf{left:85.500000px;}
.x1c{left:94.187988px;}
.x1d{left:96.187500px;}
.x20{left:100.687500px;}
.x3b{left:106.325684px;}
.x1{left:127.500000px;}
.xb{left:128.625000px;}
.x2{left:154.500000px;}
.x3f{left:164.625000px;}
.x3e{left:174.750000px;}
.x9{left:180.375000px;}
.x3{left:181.500000px;}
.x5{left:186.000000px;}
.x6{left:191.625000px;}
.x8{left:201.750000px;}
.x7{left:208.500000px;}
.x39{left:255.750000px;}
.x23{left:280.500000px;}
.xd{left:337.875000px;}
.x2e{left:339.000000px;}
.x18{left:341.250000px;}
.x14{left:344.625000px;}
.x35{left:382.875000px;}
.x25{left:469.500000px;}
.x37{left:510.000000px;}
.x30{left:551.625000px;}
.x1a{left:553.875000px;}
.x26{left:637.125000px;}
.xa{left:747.073421px;}
.x12{left:748.297984px;}
.x4{left:756.243375px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000020pt;}
.ls5{letter-spacing:20.000000pt;}
.ls4{letter-spacing:32.000000pt;}
.ls6{letter-spacing:35.999990pt;}
.ls7{letter-spacing:36.000000pt;}
.ls2{letter-spacing:57.343750pt;}
.ls1{letter-spacing:74.687500pt;}
.ws6d{word-spacing:-44.000001pt;}
.ws21{word-spacing:-38.687500pt;}
.ws0{word-spacing:-37.333332pt;}
.ws23{word-spacing:-36.093750pt;}
.ws69{word-spacing:-34.666668pt;}
.ws4c{word-spacing:-32.000000pt;}
.ws7{word-spacing:-20.093780pt;}
.ws2c{word-spacing:-20.093771pt;}
.ws3{word-spacing:-20.093770pt;}
.ws82{word-spacing:-20.093761pt;}
.ws5{word-spacing:-20.093760pt;}
.ws2{word-spacing:-20.093752pt;}
.ws6{word-spacing:-20.093751pt;}
.ws4{word-spacing:-20.093750pt;}
.ws55{word-spacing:-20.093749pt;}
.ws2b{word-spacing:-20.093748pt;}
.ws71{word-spacing:-20.093740pt;}
.ws70{word-spacing:-20.093730pt;}
.ws79{word-spacing:-20.093720pt;}
.ws6c{word-spacing:-18.697916pt;}
.ws7a{word-spacing:-18.693310pt;}
.ws4f{word-spacing:-17.353568pt;}
.ws1e{word-spacing:-17.350109pt;}
.ws68{word-spacing:-17.349041pt;}
.ws27{word-spacing:-17.348964pt;}
.ws39{word-spacing:-17.343751pt;}
.ws81{word-spacing:-16.093780pt;}
.ws1b{word-spacing:-16.093770pt;}
.ws10{word-spacing:-16.093760pt;}
.ws20{word-spacing:-16.093752pt;}
.wsc{word-spacing:-16.093750pt;}
.ws25{word-spacing:-16.093749pt;}
.ws36{word-spacing:-16.093748pt;}
.ws4b{word-spacing:-16.093740pt;}
.ws7b{word-spacing:-16.093730pt;}
.ws60{word-spacing:-16.093720pt;}
.ws5f{word-spacing:-16.000012pt;}
.ws4e{word-spacing:-16.000009pt;}
.ws61{word-spacing:-16.000002pt;}
.ws73{word-spacing:-16.000001pt;}
.ws1{word-spacing:-16.000000pt;}
.ws76{word-spacing:-15.999999pt;}
.ws8{word-spacing:-15.999998pt;}
.ws29{word-spacing:-15.999990pt;}
.ws7c{word-spacing:-15.968746pt;}
.ws89{word-spacing:-12.093780pt;}
.ws40{word-spacing:-12.093771pt;}
.ws26{word-spacing:-12.093770pt;}
.ws11{word-spacing:-12.093760pt;}
.ws32{word-spacing:-12.093751pt;}
.wse{word-spacing:-12.093750pt;}
.ws57{word-spacing:-12.093748pt;}
.ws56{word-spacing:-12.093740pt;}
.ws5a{word-spacing:-12.093720pt;}
.ws33{word-spacing:-12.000010pt;}
.ws47{word-spacing:-12.000001pt;}
.wsb{word-spacing:-12.000000pt;}
.wsf{word-spacing:-11.999998pt;}
.ws48{word-spacing:-11.999970pt;}
.ws8d{word-spacing:-11.848934pt;}
.ws5e{word-spacing:-8.093780pt;}
.ws6b{word-spacing:-8.093770pt;}
.ws19{word-spacing:-8.093760pt;}
.wsd{word-spacing:-8.093750pt;}
.ws24{word-spacing:-8.093740pt;}
.ws6a{word-spacing:-8.093730pt;}
.ws84{word-spacing:-8.093720pt;}
.ws64{word-spacing:-8.000030pt;}
.ws28{word-spacing:-8.000020pt;}
.ws1a{word-spacing:-8.000000pt;}
.ws18{word-spacing:-7.999998pt;}
.ws2a{word-spacing:-4.093770pt;}
.ws1f{word-spacing:-4.093760pt;}
.ws75{word-spacing:-4.093759pt;}
.ws14{word-spacing:-4.093750pt;}
.ws45{word-spacing:-4.093741pt;}
.ws22{word-spacing:-4.093730pt;}
.ws54{word-spacing:-4.093720pt;}
.ws62{word-spacing:-4.000020pt;}
.ws34{word-spacing:-4.000010pt;}
.ws65{word-spacing:-3.999997pt;}
.ws5b{word-spacing:-0.093770pt;}
.ws16{word-spacing:-0.093760pt;}
.ws37{word-spacing:-0.093752pt;}
.ws1d{word-spacing:-0.093750pt;}
.ws8b{word-spacing:-0.093748pt;}
.ws5c{word-spacing:-0.093740pt;}
.ws6f{word-spacing:-0.093730pt;}
.ws53{word-spacing:-0.000032pt;}
.ws38{word-spacing:-0.000020pt;}
.ws9{word-spacing:0.000000pt;}
.ws52{word-spacing:0.000030pt;}
.wsa{word-spacing:2.687502pt;}
.ws7f{word-spacing:3.906230pt;}
.ws49{word-spacing:3.906238pt;}
.ws43{word-spacing:3.906240pt;}
.ws59{word-spacing:3.906250pt;}
.ws78{word-spacing:3.906260pt;}
.ws51{word-spacing:3.999981pt;}
.ws63{word-spacing:3.999990pt;}
.ws50{word-spacing:3.999991pt;}
.ws15{word-spacing:3.999998pt;}
.ws1c{word-spacing:4.000000pt;}
.ws44{word-spacing:7.906230pt;}
.ws35{word-spacing:7.906240pt;}
.ws31{word-spacing:7.906249pt;}
.ws3e{word-spacing:7.906250pt;}
.ws72{word-spacing:7.906251pt;}
.ws77{word-spacing:7.906270pt;}
.ws4a{word-spacing:8.000030pt;}
.ws13{word-spacing:11.906230pt;}
.ws58{word-spacing:11.906239pt;}
.ws2f{word-spacing:11.906250pt;}
.ws4d{word-spacing:11.906270pt;}
.ws67{word-spacing:11.999981pt;}
.ws3d{word-spacing:12.000000pt;}
.ws41{word-spacing:15.500000pt;}
.ws3c{word-spacing:15.906230pt;}
.ws5d{word-spacing:15.906240pt;}
.ws2d{word-spacing:15.906249pt;}
.ws30{word-spacing:15.999968pt;}
.ws2e{word-spacing:15.999990pt;}
.ws66{word-spacing:15.999998pt;}
.ws42{word-spacing:16.000000pt;}
.ws12{word-spacing:16.000002pt;}
.ws74{word-spacing:19.906230pt;}
.ws3a{word-spacing:19.906249pt;}
.ws3b{word-spacing:19.999990pt;}
.ws46{word-spacing:23.906250pt;}
.ws3f{word-spacing:27.906220pt;}
.ws6e{word-spacing:27.906250pt;}
.ws17{word-spacing:35.906260pt;}
.ws8e{word-spacing:38.593750pt;}
.ws86{word-spacing:47.906240pt;}
.ws88{word-spacing:51.906250pt;}
.ws83{word-spacing:59.906230pt;}
.ws80{word-spacing:103.906220pt;}
.ws7e{word-spacing:139.906220pt;}
.ws85{word-spacing:163.906260pt;}
.ws87{word-spacing:211.906230pt;}
.ws8c{word-spacing:227.906230pt;}
.ws7d{word-spacing:231.906239pt;}
.ws8a{word-spacing:1543.906250pt;}
._2a{margin-left:-8.249920pt;}
._2b{margin-left:-7.093669pt;}
._32{margin-left:-5.875000pt;}
._25{margin-left:-4.468750pt;}
._17{margin-left:-3.531250pt;}
._9{margin-left:-2.250000pt;}
._2{margin-left:-1.156250pt;}
._1c{width:16.000002pt;}
._3c{width:18.250000pt;}
._1e{width:20.000002pt;}
._1f{width:24.000002pt;}
._20{width:28.000000pt;}
._1d{width:32.000000pt;}
._22{width:36.000001pt;}
._27{width:40.000089pt;}
._21{width:44.000118pt;}
._26{width:47.999995pt;}
._23{width:52.000001pt;}
._29{width:56.000001pt;}
._34{width:60.000002pt;}
._28{width:63.687578pt;}
._24{width:67.999938pt;}
._38{width:74.687500pt;}
._36{width:79.999999pt;}
._3e{width:87.999990pt;}
._35{width:96.000000pt;}
._3b{width:100.000010pt;}
._37{width:112.000000pt;}
._33{width:128.000004pt;}
._2f{width:143.999918pt;}
._13{width:160.199279pt;}
._3a{width:180.000002pt;}
._2c{width:192.000002pt;}
._3d{width:204.000000pt;}
._2d{width:240.000002pt;}
._3f{width:252.000020pt;}
._31{width:256.000002pt;}
._39{width:272.000002pt;}
._30{width:288.000000pt;}
._2e{width:304.000000pt;}
._8{width:414.355228pt;}
._b{width:799.980228pt;}
._5{width:986.730327pt;}
._f{width:1134.105229pt;}
._11{width:1137.636482pt;}
._d{width:1281.542730pt;}
._e{width:1285.136479pt;}
._c{width:1310.074001pt;}
._4{width:1367.198986pt;}
._10{width:1409.573980pt;}
._1a{width:1435.480230pt;}
._7{width:1573.167729pt;}
._15{width:1610.511480pt;}
._18{width:1630.042730pt;}
._a{width:1717.636480pt;}
._6{width:1718.855229pt;}
._12{width:1754.355230pt;}
._19{width:1780.948980pt;}
._3{width:1817.698980pt;}
._16{width:1844.948970pt;}
._14{width:1877.042730pt;}
._0{width:1919.698980pt;}
._1{width:1933.980230pt;}
._1b{width:1937.448978pt;}
.fs2{font-size:58.666668pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:69.333336pt;}
.fs0{font-size:74.666664pt;}
.y0{bottom:0.000000pt;}
.y1ad{bottom:13.220044pt;}
.y153{bottom:13.220052pt;}
.y158{bottom:13.220053pt;}
.y174{bottom:13.221353pt;}
.y155{bottom:13.221355pt;}
.y161{bottom:13.221359pt;}
.y1cd{bottom:13.221360pt;}
.y1ac{bottom:34.377604pt;}
.y160{bottom:34.378905pt;}
.y157{bottom:34.378907pt;}
.y1b0{bottom:34.380208pt;}
.yed{bottom:53.304039pt;}
.y1d{bottom:53.304519pt;}
.y42{bottom:53.304692pt;}
.y22c{bottom:53.305332pt;}
.y173{bottom:55.536457pt;}
.y15f{bottom:55.537759pt;}
.y172{bottom:76.695312pt;}
.y15e{bottom:76.695319pt;}
.y15d{bottom:97.854172pt;}
.yca{bottom:100.645833pt;}
.y251{bottom:103.458327pt;}
.ya6{bottom:104.040367pt;}
.y1a0{bottom:104.877607pt;}
.y122{bottom:107.436193pt;}
.yec{bottom:110.962233pt;}
.y41{bottom:116.339193pt;}
.y89{bottom:118.962233pt;}
.y15c{bottom:119.011719pt;}
.yc9{bottom:121.804033pt;}
.y250{bottom:124.617193pt;}
.ya5{bottom:125.199220pt;}
.y18b{bottom:127.833327pt;}
.y65{bottom:128.337233pt;}
.y121{bottom:128.593753pt;}
.y22b{bottom:129.338540pt;}
.yeb{bottom:132.121100pt;}
.y1b6{bottom:133.973953pt;}
.y19f{bottom:136.815105pt;}
.y40{bottom:137.497393pt;}
.y1d2{bottom:139.561193pt;}
.y88{bottom:140.120447pt;}
.yc8{bottom:142.962233pt;}
.y1c{bottom:144.793940pt;}
.y13f{bottom:145.497393pt;}
.y24f{bottom:145.776047pt;}
.ya4{bottom:146.356767pt;}
.y1e6{bottom:147.255207pt;}
.y64{bottom:149.495447pt;}
.y22a{bottom:150.497393pt;}
.y18a{bottom:159.770835pt;}
.y1d1{bottom:160.718753pt;}
.y87{bottom:161.278647pt;}
.yc7{bottom:164.120447pt;}
.y120{bottom:165.752607pt;}
.y13e{bottom:166.656247pt;}
.y24e{bottom:166.934900pt;}
.y162{bottom:167.673180pt;}
.y1e5{bottom:168.412767pt;}
.yea{bottom:169.278647pt;}
.y229{bottom:171.656247pt;}
.y3f{bottom:171.989260pt;}
.y19e{bottom:172.973955pt;}
.y10b{bottom:176.199873pt;}
.y1b{bottom:176.391607pt;}
.ya3{bottom:184.033856pt;}
.y63{bottom:186.653647pt;}
.y11f{bottom:186.911460pt;}
.y13d{bottom:187.813807pt;}
.y24d{bottom:188.093753pt;}
.y1e4{bottom:189.570313pt;}
.y1d0{bottom:192.656252pt;}
.y228{bottom:192.812500pt;}
.y3e{bottom:193.147460pt;}
.y189{bottom:195.928381pt;}
.y10a{bottom:197.358073pt;}
.y86{bottom:198.436847pt;}
.y15b{bottom:199.610675pt;}
.yc6{bottom:201.278647pt;}
.ye9{bottom:206.437500pt;}
.y62{bottom:207.811847pt;}
.y1a{bottom:207.989100pt;}
.y11e{bottom:208.069007pt;}
.y19d{bottom:209.131515pt;}
.y24c{bottom:209.249993pt;}
.y1e3{bottom:210.729167pt;}
.y227{bottom:213.971353pt;}
.y3d{bottom:214.305660pt;}
.y109{bottom:218.516273pt;}
.y85{bottom:219.595047pt;}
.y13c{bottom:222.304687pt;}
.yc5{bottom:222.436847pt;}
.y204{bottom:227.217447pt;}
.ye8{bottom:227.595047pt;}
.y1cf{bottom:228.815105pt;}
.y61{bottom:228.970047pt;}
.y24b{bottom:230.408860pt;}
.ya2{bottom:230.436847pt;}
.y188{bottom:232.085932pt;}
.y226{bottom:235.130207pt;}
.y1cc{bottom:236.315100pt;}
.y19{bottom:239.586753pt;}
.y84{bottom:240.753260pt;}
.y13b{bottom:243.463540pt;}
.yc4{bottom:243.595047pt;}
.y1e2{bottom:245.221353pt;}
.y11d{bottom:245.226567pt;}
.y19c{bottom:245.289065pt;}
.y203{bottom:248.374993pt;}
.ye7{bottom:248.753900pt;}
.y3c{bottom:248.796873pt;}
.y60{bottom:250.128260pt;}
.y24a{bottom:251.567713pt;}
.ya1{bottom:251.595047pt;}
.y15a{bottom:252.506515pt;}
.y108{bottom:255.674473pt;}
.y225{bottom:256.286460pt;}
.y83{bottom:261.911460pt;}
.y13a{bottom:264.622393pt;}
.yc3{bottom:264.753260pt;}
.y1ce{bottom:264.973955pt;}
.y1e1{bottom:266.380207pt;}
.y11c{bottom:266.385420pt;}
.y187{bottom:268.244785pt;}
.y202{bottom:269.533860pt;}
.y3b{bottom:269.955073pt;}
.y18{bottom:271.184407pt;}
.y5f{bottom:271.286460pt;}
.y249{bottom:272.723953pt;}
.ya0{bottom:272.753260pt;}
.y107{bottom:276.832687pt;}
.y224{bottom:277.445313pt;}
.y19b{bottom:281.447919pt;}
.y26a{bottom:283.742193pt;}
.y139{bottom:285.779953pt;}
.yc2{bottom:285.911460pt;}
.y1e0{bottom:287.537767pt;}
.y11b{bottom:287.544273pt;}
.y201{bottom:290.692713pt;}
.y3a{bottom:291.113287pt;}
.y248{bottom:293.882807pt;}
.y9f{bottom:293.911460pt;}
.y223{bottom:298.604167pt;}
.y82{bottom:299.069660pt;}
.y1cb{bottom:301.131515pt;}
.y17{bottom:302.782060pt;}
.y186{bottom:304.403648pt;}
.y138{bottom:306.937500pt;}
.ye6{bottom:307.070313pt;}
.y5e{bottom:308.444660pt;}
.y1df{bottom:308.695313pt;}
.y11a{bottom:308.701820pt;}
.y269{bottom:311.341140pt;}
.y200{bottom:311.850260pt;}
.y39{bottom:312.271487pt;}
.y106{bottom:313.990887pt;}
.y247{bottom:315.041660pt;}
.y19a{bottom:317.606768pt;}
.y1ca{bottom:319.210932pt;}
.y222{bottom:319.763020pt;}
.y81{bottom:320.227860pt;}
.yc1{bottom:323.069660pt;}
.y16f{bottom:328.143233pt;}
.ye5{bottom:328.227860pt;}
.y5d{bottom:329.602860pt;}
.y119{bottom:329.859380pt;}
.y9e{bottom:331.069660pt;}
.y38{bottom:333.429687pt;}
.y16{bottom:334.379727pt;}
.y246{bottom:336.200527pt;}
.y1c9{bottom:337.289065pt;}
.y268{bottom:338.937500pt;}
.y185{bottom:340.561195pt;}
.y221{bottom:340.921873pt;}
.y80{bottom:341.386073pt;}
.y137{bottom:341.429687pt;}
.y159{bottom:341.559892pt;}
.y1de{bottom:343.186193pt;}
.yc0{bottom:344.227860pt;}
.y1ff{bottom:346.341140pt;}
.y16e{bottom:349.302087pt;}
.y5c{bottom:350.761073pt;}
.y105{bottom:351.149087pt;}
.y9d{bottom:352.227860pt;}
.y245{bottom:357.359380pt;}
.y1b5{bottom:358.351567pt;}
.y220{bottom:362.078127pt;}
.y7f{bottom:362.544273pt;}
.y136{bottom:362.587233pt;}
.y1dd{bottom:364.343753pt;}
.ybf{bottom:365.386073pt;}
.ye4{bottom:365.386713pt;}
.y15{bottom:365.977380pt;}
.y267{bottom:366.536460pt;}
.y1fe{bottom:367.498700pt;}
.y118{bottom:367.536456pt;}
.y37{bottom:367.921220pt;}
.y5b{bottom:371.919273pt;}
.y104{bottom:372.307287pt;}
.y9c{bottom:373.386073pt;}
.y1c8{bottom:373.447919pt;}
.y199{bottom:375.984380pt;}
.y184{bottom:376.718745pt;}
.y156{bottom:377.718753pt;}
.y244{bottom:378.515620pt;}
.y1b4{bottom:379.510420pt;}
.y21f{bottom:383.236980pt;}
.y7e{bottom:383.702473pt;}
.y135{bottom:383.746100pt;}
.y1dc{bottom:385.502607pt;}
.y16d{bottom:386.459633pt;}
.ybe{bottom:386.544273pt;}
.y154{bottom:388.296879pt;}
.y1fd{bottom:388.656247pt;}
.y36{bottom:389.079433pt;}
.y117{bottom:390.458336pt;}
.y5a{bottom:393.077473pt;}
.y103{bottom:393.465500pt;}
.y266{bottom:394.132807pt;}
.y9b{bottom:394.544273pt;}
.y198{bottom:397.143233pt;}
.y14{bottom:397.575033pt;}
.y243{bottom:399.674473pt;}
.y1b3{bottom:400.669273pt;}
.y21e{bottom:404.395833pt;}
.y7d{bottom:404.860673pt;}
.y134{bottom:404.903647pt;}
.y1db{bottom:406.661460pt;}
.y16c{bottom:407.617193pt;}
.ybd{bottom:407.702473pt;}
.ye3{bottom:407.703127pt;}
.y1c7{bottom:409.606768pt;}
.y35{bottom:410.237633pt;}
.y102{bottom:414.623700pt;}
.y9a{bottom:415.702473pt;}
.y1c5{bottom:417.106776pt;}
.y197{bottom:418.302087pt;}
.y242{bottom:420.833327pt;}
.y265{bottom:421.731767pt;}
.y1b2{bottom:421.826820pt;}
.y1fc{bottom:423.148433pt;}
.y21d{bottom:425.552087pt;}
.y133{bottom:426.062500pt;}
.y1da{bottom:427.819007pt;}
.y16b{bottom:428.776047pt;}
.ye2{bottom:428.860673pt;}
.y13{bottom:429.172687pt;}
.y59{bottom:430.235673pt;}
.y152{bottom:435.035155pt;}
.y183{bottom:435.098953pt;}
.y101{bottom:435.781900pt;}
.y196{bottom:439.459633pt;}
.y34{bottom:440.432944pt;}
.y241{bottom:441.989580pt;}
.y7c{bottom:442.018887pt;}
.y1fb{bottom:444.307287pt;}
.ybc{bottom:445.378909pt;}
.y1c6{bottom:445.764328pt;}
.y21c{bottom:446.710940pt;}
.y1d9{bottom:448.976567pt;}
.y264{bottom:449.328127pt;}
.ye1{bottom:450.019527pt;}
.y58{bottom:451.393887pt;}
.y99{bottom:452.860673pt;}
.y182{bottom:456.256513pt;}
.y132{bottom:456.257811pt;}
.y100{bottom:456.940100pt;}
.y1b1{bottom:458.984380pt;}
.y12{bottom:460.770340pt;}
.y240{bottom:463.148433pt;}
.y7b{bottom:463.177087pt;}
.y1fa{bottom:465.466140pt;}
.y16a{bottom:465.934900pt;}
.y21b{bottom:467.869793pt;}
.y116{bottom:471.177087pt;}
.y57{bottom:472.562494pt;}
.y98{bottom:474.018887pt;}
.y195{bottom:476.617193pt;}
.y263{bottom:476.927087pt;}
.y181{bottom:477.414060pt;}
.y1d8{bottom:479.171877pt;}
.y1c4{bottom:481.921879pt;}
.ybb{bottom:483.781900pt;}
.y23f{bottom:484.307287pt;}
.y7a{bottom:484.335287pt;}
.y1f9{bottom:486.623700pt;}
.y169{bottom:487.092447pt;}
.ye0{bottom:487.177087pt;}
.y21a{bottom:489.028647pt;}
.y33{bottom:490.747393pt;}
.y1af{bottom:490.921879pt;}
.y115{bottom:492.335940pt;}
.y11{bottom:492.368007pt;}
.y151{bottom:493.414060pt;}
.y56{bottom:493.801761pt;}
.yff{bottom:494.098313pt;}
.y97{bottom:495.177087pt;}
.y194{bottom:497.776047pt;}
.y180{bottom:498.572913pt;}
.y1c3{bottom:500.002599pt;}
.y1ae{bottom:501.502599pt;}
.y262{bottom:504.523433pt;}
.yba{bottom:504.940100pt;}
.y23e{bottom:505.466140pt;}
.y79{bottom:505.493487pt;}
.y131{bottom:506.571620pt;}
.y1f8{bottom:507.781247pt;}
.y168{bottom:508.249993pt;}
.y219{bottom:510.187500pt;}
.y32{bottom:511.905593pt;}
.y150{bottom:514.571620pt;}
.y55{bottom:515.030273pt;}
.yfe{bottom:515.256513pt;}
.y96{bottom:516.335287pt;}
.y1c2{bottom:518.080732pt;}
.y193{bottom:518.934900pt;}
.y17f{bottom:519.731767pt;}
.y10{bottom:523.965660pt;}
.ydf{bottom:524.335940pt;}
.yb9{bottom:526.098313pt;}
.y23d{bottom:526.624993pt;}
.y78{bottom:526.651687pt;}
.y130{bottom:527.730473pt;}
.y1f7{bottom:528.940100pt;}
.y1d7{bottom:529.486980pt;}
.y114{bottom:529.493487pt;}
.y218{bottom:531.343753pt;}
.y261{bottom:532.122393pt;}
.y14f{bottom:535.730473pt;}
.y54{bottom:536.188473pt;}
.yfd{bottom:536.414713pt;}
.y95{bottom:537.493487pt;}
.y167{bottom:545.408860pt;}
.yde{bottom:545.493487pt;}
.y31{bottom:546.396807pt;}
.yb8{bottom:547.256513pt;}
.y23c{bottom:547.781247pt;}
.y1ab{bottom:548.239589pt;}
.y12f{bottom:548.888020pt;}
.y113{bottom:550.652340pt;}
.yf{bottom:555.563313pt;}
.y192{bottom:556.092447pt;}
.y14e{bottom:556.888020pt;}
.y17e{bottom:556.889327pt;}
.y53{bottom:557.346673pt;}
.y94{bottom:558.651687pt;}
.y1aa{bottom:558.819008pt;}
.y260{bottom:559.718753pt;}
.y217{bottom:561.539063pt;}
.y1f6{bottom:563.432287pt;}
.y77{bottom:563.809900pt;}
.y166{bottom:566.567713pt;}
.ydd{bottom:566.652340pt;}
.y30{bottom:567.555007pt;}
.yb7{bottom:568.414713pt;}
.y23b{bottom:568.940100pt;}
.y112{bottom:571.809900pt;}
.yfc{bottom:573.572913pt;}
.y1c1{bottom:576.459633pt;}
.y191{bottom:577.249993pt;}
.y14d{bottom:578.046873pt;}
.y52{bottom:578.504887pt;}
.y12e{bottom:583.380207pt;}
.y1f5{bottom:584.591140pt;}
.y76{bottom:584.968100pt;}
.ye{bottom:587.160967pt;}
.y25f{bottom:587.317713pt;}
.y165{bottom:587.725260pt;}
.ydc{bottom:587.809900pt;}
.y2f{bottom:588.713220pt;}
.y23a{bottom:590.098953pt;}
.y111{bottom:592.968753pt;}
.y93{bottom:595.809900pt;}
.y1c0{bottom:597.617193pt;}
.y190{bottom:598.408860pt;}
.y216{bottom:598.520833pt;}
.y17d{bottom:599.205727pt;}
.y51{bottom:601.227932pt;}
.y12d{bottom:604.537767pt;}
.y1a9{bottom:605.554692pt;}
.yb6{bottom:605.572913pt;}
.y1f4{bottom:605.748700pt;}
.y75{bottom:606.126300pt;}
.y164{bottom:608.882807pt;}
.ydb{bottom:608.968753pt;}
.y2e{bottom:609.871420pt;}
.yfb{bottom:610.731113pt;}
.y239{bottom:611.255207pt;}
.y110{bottom:614.126300pt;}
.y25e{bottom:614.914060pt;}
.y14c{bottom:615.204433pt;}
.y92{bottom:616.968100pt;}
.yd{bottom:618.758620pt;}
.y1bf{bottom:618.776047pt;}
.y18f{bottom:619.567713pt;}
.y215{bottom:619.677087pt;}
.y17c{bottom:620.364580pt;}
.y50{bottom:623.583007pt;}
.y12c{bottom:625.695313pt;}
.yb5{bottom:626.731113pt;}
.y74{bottom:627.284501pt;}
.yda{bottom:630.126300pt;}
.yfa{bottom:631.889327pt;}
.y238{bottom:632.414060pt;}
.y10f{bottom:635.285153pt;}
.y14b{bottom:636.363287pt;}
.y91{bottom:638.126300pt;}
.y1be{bottom:639.934900pt;}
.y1f3{bottom:640.239580pt;}
.y18e{bottom:640.725260pt;}
.y214{bottom:640.835940pt;}
.y17b{bottom:641.522140pt;}
.y25d{bottom:642.513020pt;}
.y2d{bottom:644.363287pt;}
.y163{bottom:646.041660pt;}
.yb4{bottom:647.889327pt;}
.yc{bottom:650.356287pt;}
.yd9{bottom:651.285153pt;}
.yf9{bottom:653.047527pt;}
.y237{bottom:653.572913pt;}
.y12b{bottom:655.890623pt;}
.y10e{bottom:656.442713pt;}
.y14a{bottom:657.520833pt;}
.y90{bottom:659.284500pt;}
.y4f{bottom:660.741207pt;}
.y1bd{bottom:661.092447pt;}
.y1f2{bottom:661.397140pt;}
.y18d{bottom:661.882807pt;}
.y213{bottom:661.994793pt;}
.y1a8{bottom:663.934900pt;}
.y73{bottom:664.442713pt;}
.y2c{bottom:665.521487pt;}
.yb3{bottom:669.047527pt;}
.y25c{bottom:670.109380pt;}
.yd8{bottom:672.442713pt;}
.yf8{bottom:674.205727pt;}
.y236{bottom:674.731767pt;}
.y10d{bottom:677.601567pt;}
.y17a{bottom:678.679687pt;}
.y8f{bottom:680.442713pt;}
.y4e{bottom:681.899420pt;}
.yb{bottom:681.953940pt;}
.y1f1{bottom:682.554687pt;}
.y212{bottom:683.153647pt;}
.y1a7{bottom:685.092447pt;}
.y72{bottom:685.600913pt;}
.y2b{bottom:686.679687pt;}
.yf7{bottom:695.363927pt;}
.y149{bottom:695.716143pt;}
.y235{bottom:695.890620pt;}
.y25b{bottom:697.708327pt;}
.y1bc{bottom:698.249993pt;}
.y18c{bottom:699.041660pt;}
.y8e{bottom:701.600913pt;}
.y4d{bottom:703.057620pt;}
.y1f0{bottom:703.713540pt;}
.y211{bottom:704.312500pt;}
.yb2{bottom:706.205727pt;}
.y1a6{bottom:706.249993pt;}
.y71{bottom:706.759113pt;}
.y2a{bottom:707.837887pt;}
.yd7{bottom:709.601567pt;}
.y179{bottom:710.617185pt;}
.ya{bottom:713.551593pt;}
.y10c{bottom:715.277349pt;}
.y234{bottom:717.046873pt;}
.y1bb{bottom:719.408860pt;}
.y8d{bottom:722.759113pt;}
.y4c{bottom:724.215820pt;}
.y1ef{bottom:724.872393pt;}
.y25a{bottom:725.304687pt;}
.y210{bottom:725.468753pt;}
.yb1{bottom:727.363927pt;}
.y12a{bottom:727.364580pt;}
.y1a5{bottom:727.408860pt;}
.y70{bottom:727.917313pt;}
.yf6{bottom:732.522140pt;}
.y148{bottom:732.696620pt;}
.y233{bottom:738.205727pt;}
.y1ba{bottom:740.567713pt;}
.y29{bottom:742.329260pt;}
.y8c{bottom:743.917313pt;}
.y9{bottom:745.149247pt;}
.y1ee{bottom:746.029953pt;}
.y20f{bottom:746.627607pt;}
.yd6{bottom:746.759113pt;}
.y178{bottom:746.776039pt;}
.yb0{bottom:748.522140pt;}
.y1a4{bottom:748.567713pt;}
.y6f{bottom:749.075527pt;}
.y259{bottom:752.903647pt;}
.yf5{bottom:753.680340pt;}
.y147{bottom:753.855473pt;}
.y232{bottom:759.364580pt;}
.y1b9{bottom:761.725260pt;}
.y4b{bottom:761.892255pt;}
.y28{bottom:763.487473pt;}
.y8b{bottom:765.075527pt;}
.y1ed{bottom:767.187500pt;}
.y20e{bottom:767.786460pt;}
.yd5{bottom:767.917967pt;}
.y129{bottom:769.679687pt;}
.yaf{bottom:769.680340pt;}
.y1a3{bottom:769.725260pt;}
.yf4{bottom:774.838540pt;}
.y146{bottom:775.013020pt;}
.y8{bottom:776.746913pt;}
.y258{bottom:780.499993pt;}
.y231{bottom:780.520833pt;}
.y1b8{bottom:782.882807pt;}
.y177{bottom:782.934901pt;}
.y27{bottom:784.645673pt;}
.y6e{bottom:786.233727pt;}
.y1ec{bottom:788.346353pt;}
.y20d{bottom:788.942713pt;}
.yd4{bottom:789.075527pt;}
.y128{bottom:790.838540pt;}
.y1a2{bottom:790.882807pt;}
.y145{bottom:796.171873pt;}
.y230{bottom:801.679687pt;}
.yae{bottom:806.838540pt;}
.y6d{bottom:807.391927pt;}
.y257{bottom:808.098953pt;}
.y7{bottom:808.344567pt;}
.y4a{bottom:809.332357pt;}
.y1eb{bottom:809.505207pt;}
.y20c{bottom:810.101567pt;}
.yd3{bottom:810.234380pt;}
.yf3{bottom:811.996740pt;}
.y127{bottom:811.997393pt;}
.y144{bottom:817.329433pt;}
.y176{bottom:819.092448pt;}
.y26{bottom:819.137047pt;}
.y1b7{bottom:820.041660pt;}
.y22f{bottom:822.838540pt;}
.yad{bottom:827.996740pt;}
.y1a1{bottom:828.041660pt;}
.y6c{bottom:828.550127pt;}
.yd2{bottom:831.391927pt;}
.yf2{bottom:833.154953pt;}
.y256{bottom:835.695313pt;}
.y143{bottom:838.488287pt;}
.y6{bottom:839.942220pt;}
.y25{bottom:840.295247pt;}
.y1ea{bottom:843.997393pt;}
.y8a{bottom:844.550127pt;}
.y20b{bottom:844.593753pt;}
.yac{bottom:849.154953pt;}
.yd1{bottom:852.550127pt;}
.yf1{bottom:854.313153pt;}
.y175{bottom:855.249999pt;}
.y49{bottom:859.646487pt;}
.y24{bottom:861.453447pt;}
.y255{bottom:863.294273pt;}
.y1e9{bottom:865.154953pt;}
.y22e{bottom:865.156247pt;}
.y6b{bottom:865.708327pt;}
.y126{bottom:870.312500pt;}
.yab{bottom:870.313153pt;}
.y5{bottom:871.539873pt;}
.y142{bottom:872.980473pt;}
.y20a{bottom:874.789063pt;}
.yf0{bottom:875.471353pt;}
.y48{bottom:880.804687pt;}
.y23{bottom:882.611660pt;}
.y1e8{bottom:886.312500pt;}
.y6a{bottom:886.866536pt;}
.yd0{bottom:889.708333pt;}
.y254{bottom:890.890625pt;}
.y171{bottom:891.408855pt;}
.yaa{bottom:891.471355pt;}
.y141{bottom:894.138021pt;}
.yef{bottom:896.629557pt;}
.y4{bottom:903.137532pt;}
.y22{bottom:903.769857pt;}
.y1e7{bottom:907.471355pt;}
.y69{bottom:908.024740pt;}
.y1d6{bottom:910.865885pt;}
.ycf{bottom:910.866536pt;}
.y209{bottom:911.770833pt;}
.ya9{bottom:912.629557pt;}
.y47{bottom:915.296224pt;}
.y140{bottom:915.296875pt;}
.y253{bottom:918.489583pt;}
.y170{bottom:923.145833pt;}
.y125{bottom:928.630208pt;}
.y1d5{bottom:932.023437pt;}
.yce{bottom:932.024740pt;}
.y208{bottom:932.928385pt;}
.yee{bottom:933.787760pt;}
.y3{bottom:934.735189pt;}
.y46{bottom:936.454427pt;}
.y21{bottom:938.261719pt;}
.y68{bottom:945.701173pt;}
.y252{bottom:946.085937pt;}
.y22d{bottom:949.786459pt;}
.ya8{bottom:949.787760pt;}
.y1d4{bottom:953.182292pt;}
.ycd{bottom:953.182943pt;}
.y207{bottom:954.085937pt;}
.y45{bottom:957.612631pt;}
.y20{bottom:959.419921pt;}
.y2{bottom:966.332845pt;}
.y124{bottom:970.945312pt;}
.ya7{bottom:970.945964pt;}
.ycc{bottom:974.341145pt;}
.y206{bottom:975.244792pt;}
.y1f{bottom:980.578125pt;}
.y67{bottom:992.104167pt;}
.y44{bottom:992.104492pt;}
.y1{bottom:1010.772948pt;}
.y1e{bottom:1010.773111pt;}
.y205{bottom:1010.773437pt;}
.ycb{bottom:1012.017578pt;}
.y1d3{bottom:1012.018230pt;}
.y66{bottom:1013.262369pt;}
.y43{bottom:1013.262695pt;}
.y123{bottom:1013.263021pt;}
.h9{height:35.157552pt;}
.ha{height:35.158855pt;}
.h5{height:42.166668pt;}
.he{height:56.315104pt;}
.hb{height:56.316407pt;}
.hf{height:56.317708pt;}
.h2{height:56.843750pt;}
.h3{height:57.375000pt;}
.h6{height:61.580732pt;}
.h1{height:66.317706pt;}
.h8{height:94.132813pt;}
.h4{height:94.133133pt;}
.h7{height:94.133467pt;}
.hd{height:98.632812pt;}
.hc{height:140.949219pt;}
.h0{height:1122.666667pt;}
.we{width:112.000000pt;}
.wf{width:112.000041pt;}
.w9{width:115.000000pt;}
.wa{width:134.000000pt;}
.w8{width:148.000041pt;}
.w7{width:167.000000pt;}
.w2{width:185.000000pt;}
.wc{width:186.000000pt;}
.wb{width:187.000041pt;}
.w6{width:188.000000pt;}
.w4{width:191.000000pt;}
.w10{width:225.000000pt;}
.wd{width:225.000040pt;}
.w5{width:408.000000pt;}
.w3{width:413.000000pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x33{left:6.000000pt;}
.x34{left:7.160156pt;}
.x32{left:10.273438pt;}
.x3d{left:11.285156pt;}
.x27{left:12.996094pt;}
.xe{left:15.000000pt;}
.x13{left:17.886719pt;}
.x3a{left:19.507812pt;}
.x11{left:22.222656pt;}
.x2d{left:23.500000pt;}
.x38{left:25.285156pt;}
.x36{left:28.390625pt;}
.x28{left:29.757813pt;}
.x2b{left:32.722656pt;}
.x24{left:34.328125pt;}
.x2a{left:37.109375pt;}
.xc{left:38.007813pt;}
.x15{left:39.585938pt;}
.x2c{left:41.617188pt;}
.x16{left:42.550781pt;}
.x2f{left:44.828125pt;}
.x29{left:46.609375pt;}
.x17{left:51.445313pt;}
.x3c{left:53.335938pt;}
.x19{left:55.882813pt;}
.x1b{left:56.777344pt;}
.x1f{left:59.691406pt;}
.x22{left:65.425781pt;}
.x1e{left:68.835938pt;}
.x31{left:70.550781pt;}
.x21{left:72.835938pt;}
.x10{left:73.765625pt;}
.xf{left:76.000000pt;}
.x1c{left:83.722656pt;}
.x1d{left:85.500000pt;}
.x20{left:89.500000pt;}
.x3b{left:94.511719pt;}
.x1{left:113.333333pt;}
.xb{left:114.333333pt;}
.x2{left:137.333333pt;}
.x3f{left:146.333333pt;}
.x3e{left:155.333333pt;}
.x9{left:160.333333pt;}
.x3{left:161.333333pt;}
.x5{left:165.333333pt;}
.x6{left:170.333333pt;}
.x8{left:179.333333pt;}
.x7{left:185.333333pt;}
.x39{left:227.333333pt;}
.x23{left:249.333333pt;}
.xd{left:300.333333pt;}
.x2e{left:301.333333pt;}
.x18{left:303.333333pt;}
.x14{left:306.333333pt;}
.x35{left:340.333333pt;}
.x25{left:417.333333pt;}
.x37{left:453.333333pt;}
.x30{left:490.333333pt;}
.x1a{left:492.333333pt;}
.x26{left:566.333333pt;}
.xa{left:664.065263pt;}
.x12{left:665.153763pt;}
.x4{left:672.216333pt;}
}




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