
    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_d4ecf9f2dc23a4a018066f5f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.976562;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_855b08afb05fd28b46bab46a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_28ca7df0e14a37b9dfdb9700.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_22e5fffc5d3868f59f7c4df1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986328;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_0da9f340af0e74a2a80680bc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_075affeb124f7bb0303d6731.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1f{letter-spacing:-1.692000px;}
.ls14{letter-spacing:-1.440000px;}
.ls6{letter-spacing:-0.942000px;}
.ls5{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.486600px;}
.lsf{letter-spacing:-0.466800px;}
.ls20{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.313800px;}
.ls1e{letter-spacing:-0.250800px;}
.ls13{letter-spacing:-0.020160px;}
.lsd{letter-spacing:-0.015600px;}
.ls4{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.015600px;}
.ls2{letter-spacing:0.015840px;}
.ls3{letter-spacing:0.020160px;}
.ls1c{letter-spacing:0.032160px;}
.lse{letter-spacing:0.250800px;}
.ls1{letter-spacing:0.413280px;}
.ls19{letter-spacing:0.466800px;}
.ls15{letter-spacing:0.486600px;}
.ls16{letter-spacing:0.507000px;}
.ls10{letter-spacing:0.665280px;}
.ls0{letter-spacing:0.720000px;}
.lsc{letter-spacing:1.188000px;}
.ls12{letter-spacing:9.106560px;}
.ls11{letter-spacing:13.426560px;}
.lsa{letter-spacing:15.120000px;}
.ls17{letter-spacing:16.306560px;}
.ls9{letter-spacing:20.880000px;}
.ls1b{letter-spacing:40.786560px;}
.ls18{letter-spacing:47.986560px;}
.ls1a{letter-spacing:49.426560px;}
.ls1d{letter-spacing:78.949440px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws12{word-spacing:-60.480000px;}
.wsd{word-spacing:-15.627000px;}
.wsc{word-spacing:-15.606600px;}
.ws11{word-spacing:-15.586800px;}
.ws13{word-spacing:-15.140160px;}
.ws5{word-spacing:-15.120000px;}
.wsb{word-spacing:-15.099840px;}
.wse{word-spacing:-14.653200px;}
.ws10{word-spacing:-14.633400px;}
.ws2{word-spacing:-13.680000px;}
.ws3{word-spacing:-13.366200px;}
.ws1{word-spacing:-12.600000px;}
.wsf{word-spacing:-12.545280px;}
.ws8{word-spacing:-12.130800px;}
.ws6{word-spacing:-11.895600px;}
.ws0{word-spacing:-11.880000px;}
.ws7{word-spacing:-11.864400px;}
.ws14{word-spacing:-11.629200px;}
.wsa{word-spacing:0.000000px;}
.ws4{word-spacing:2.413080px;}
.ws9{word-spacing:12.453840px;}
._3{margin-left:-2.369027px;}
._1{margin-left:-1.131393px;}
._0{width:1.568445px;}
._2{width:3.136225px;}
._5{width:4.342633px;}
._4{width:5.947233px;}
._10{width:7.607946px;}
._e{width:8.771048px;}
._f{width:10.284190px;}
._b{width:11.686541px;}
._1b{width:13.650995px;}
._c{width:15.431048px;}
._1f{width:16.585711px;}
._12{width:17.929211px;}
._22{width:19.020179px;}
._16{width:20.098416px;}
._15{width:21.192871px;}
._20{width:22.208463px;}
._d{width:23.401986px;}
._a{width:24.886080px;}
._23{width:25.959723px;}
._9{width:27.274853px;}
._24{width:28.568090px;}
._11{width:30.530535px;}
._14{width:31.784156px;}
._6{width:32.996488px;}
._13{width:34.074836px;}
._8{width:35.123706px;}
._7{width:36.147822px;}
._2e{width:37.195200px;}
._1a{width:38.473772px;}
._21{width:40.175715px;}
._2c{width:41.312008px;}
._26{width:42.491780px;}
._38{width:43.794712px;}
._35{width:45.100353px;}
._2a{width:46.291848px;}
._29{width:47.469380px;}
._1e{width:48.696828px;}
._3b{width:49.927233px;}
._1d{width:51.158418px;}
._25{width:54.022981px;}
._27{width:55.200513px;}
._28{width:56.392008px;}
._34{width:60.888640px;}
._33{width:62.411975px;}
._37{width:64.471680px;}
._36{width:66.389313px;}
._2d{width:68.281920px;}
._2f{width:73.963655px;}
._3c{width:75.479805px;}
._1c{width:79.150593px;}
._2b{width:80.886786px;}
._3d{width:82.499208px;}
._18{width:84.413901px;}
._17{width:85.823267px;}
._19{width:87.183965px;}
._3f{width:100.661760px;}
._3a{width:101.985768px;}
._39{width:111.358021px;}
._32{width:115.538595px;}
._30{width:128.651073px;}
._31{width:129.775848px;}
._41{width:162.042915px;}
._40{width:163.135875px;}
._3e{width:261.330695px;}
.fc3{color:rgb(51,51,255);}
.fc2{color:rgb(0,0,204);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:47.520000px;}
.fs4{font-size:54.720000px;}
.fs1{font-size:60.480000px;}
.fs3{font-size:66.240000px;}
.fs5{font-size:119.520000px;}
.fs2{font-size:144.000000px;}
.y75{bottom:-7.200000px;}
.y0{bottom:0.000000px;}
.y9{bottom:2.520000px;}
.y1{bottom:5.076000px;}
.y5{bottom:5.436000px;}
.y4{bottom:6.840000px;}
.y8{bottom:16.560000px;}
.yc{bottom:19.116000px;}
.y3{bottom:20.520000px;}
.y7{bottom:30.240000px;}
.y2{bottom:34.200000px;}
.y6{bottom:43.920000px;}
.y152{bottom:83.196000px;}
.y1bb{bottom:92.196000px;}
.y11b{bottom:93.276000px;}
.yb3{bottom:93.996000px;}
.y74{bottom:94.716000px;}
.y220{bottom:96.516000px;}
.y1f2{bottom:99.036000px;}
.y182{bottom:100.476000px;}
.y151{bottom:102.996000px;}
.y24f{bottom:103.356000px;}
.y43{bottom:104.796000px;}
.ye6{bottom:105.876000px;}
.y1ba{bottom:110.196000px;}
.yb2{bottom:111.996000px;}
.y73{bottom:112.716000px;}
.y11a{bottom:113.076000px;}
.y21f{bottom:114.516000px;}
.y1f1{bottom:117.036000px;}
.y42{bottom:118.476000px;}
.y181{bottom:120.276000px;}
.y150{bottom:122.796000px;}
.ye5{bottom:123.876000px;}
.y1b9{bottom:128.556000px;}
.yb1{bottom:130.356000px;}
.y72{bottom:130.716000px;}
.y41{bottom:132.192000px;}
.y21e{bottom:132.552000px;}
.y119{bottom:132.912000px;}
.y1f0{bottom:135.072000px;}
.y24e{bottom:139.392000px;}
.y180{bottom:140.112000px;}
.ye4{bottom:142.272000px;}
.y14f{bottom:142.632000px;}
.y1b8{bottom:146.592000px;}
.yb0{bottom:148.392000px;}
.y71{bottom:148.752000px;}
.y21d{bottom:150.555000px;}
.y118{bottom:152.715000px;}
.y24d{bottom:153.075000px;}
.y1ef{bottom:153.435000px;}
.y40{bottom:159.915000px;}
.ye3{bottom:160.275000px;}
.y14e{bottom:162.435000px;}
.y1b7{bottom:164.595000px;}
.yaf{bottom:166.395000px;}
.y70{bottom:167.115000px;}
.y24c{bottom:167.475000px;}
.y21c{bottom:168.915000px;}
.y1ee{bottom:171.435000px;}
.y117{bottom:172.515000px;}
.y3f{bottom:173.595000px;}
.ye2{bottom:178.275000px;}
.y17f{bottom:179.715000px;}
.y1b6{bottom:182.955000px;}
.y14d{bottom:184.035000px;}
.yae{bottom:184.755000px;}
.y6f{bottom:185.115000px;}
.y21b{bottom:186.915000px;}
.y3e{bottom:187.995000px;}
.y1ed{bottom:189.435000px;}
.y116{bottom:192.315000px;}
.ye1{bottom:196.635000px;}
.y17e{bottom:199.515000px;}
.y1b5{bottom:200.955000px;}
.y24b{bottom:202.035000px;}
.yad{bottom:202.755000px;}
.y6e{bottom:203.115000px;}
.y3d{bottom:204.915000px;}
.y1ec{bottom:207.795000px;}
.y14c{bottom:211.395000px;}
.y115{bottom:212.115000px;}
.ye0{bottom:214.635000px;}
.y1b4{bottom:218.955000px;}
.y17d{bottom:219.315000px;}
.y3c{bottom:220.395000px;}
.yac{bottom:220.755000px;}
.y6d{bottom:221.475000px;}
.y21a{bottom:223.275000px;}
.y1eb{bottom:225.795000px;}
.y14b{bottom:229.395000px;}
.y114{bottom:231.915000px;}
.ydf{bottom:232.635000px;}
.y3b{bottom:236.235000px;}
.y24a{bottom:236.595000px;}
.y1b3{bottom:237.315000px;}
.yab{bottom:239.115000px;}
.y6c{bottom:239.475000px;}
.y219{bottom:241.275000px;}
.y1ea{bottom:243.795000px;}
.y14a{bottom:247.395000px;}
.yde{bottom:250.635000px;}
.y3a{bottom:251.715000px;}
.y113{bottom:252.075000px;}
.y249{bottom:253.875000px;}
.y1b2{bottom:255.315000px;}
.yaa{bottom:257.115000px;}
.y6b{bottom:257.475000px;}
.y17c{bottom:259.275000px;}
.y1e9{bottom:261.795000px;}
.y149{bottom:265.785000px;}
.y39{bottom:267.225000px;}
.ydd{bottom:269.025000px;}
.y248{bottom:271.185000px;}
.y112{bottom:271.905000px;}
.y1b1{bottom:273.345000px;}
.ya9{bottom:275.145000px;}
.y6a{bottom:275.865000px;}
.y218{bottom:277.665000px;}
.y17b{bottom:279.105000px;}
.y1e8{bottom:280.185000px;}
.y38{bottom:282.705000px;}
.y148{bottom:283.785000px;}
.ydc{bottom:287.025000px;}
.y247{bottom:288.105000px;}
.y111{bottom:291.705000px;}
.ya8{bottom:293.505000px;}
.y69{bottom:293.865000px;}
.y217{bottom:295.665000px;}
.y1e7{bottom:298.185000px;}
.y17a{bottom:298.905000px;}
.y147{bottom:301.785000px;}
.ydb{bottom:305.025000px;}
.y246{bottom:305.385000px;}
.y1b0{bottom:309.705000px;}
.ya7{bottom:311.505000px;}
.y68{bottom:311.865000px;}
.y216{bottom:313.665000px;}
.y1e6{bottom:316.185000px;}
.y179{bottom:318.705000px;}
.y245{bottom:319.425000px;}
.y146{bottom:320.145000px;}
.yda{bottom:323.385000px;}
.y1af{bottom:327.705000px;}
.ya6{bottom:329.505000px;}
.y67{bottom:330.225000px;}
.y110{bottom:331.305000px;}
.y215{bottom:332.025000px;}
.y37{bottom:333.105000px;}
.y145{bottom:338.145000px;}
.y178{bottom:338.505000px;}
.y244{bottom:339.585000px;}
.yd9{bottom:341.385000px;}
.y1ae{bottom:345.705000px;}
.ya5{bottom:347.505000px;}
.y66{bottom:348.225000px;}
.y214{bottom:350.025000px;}
.y36{bottom:351.105000px;}
.y243{bottom:353.265000px;}
.y1e5{bottom:355.425000px;}
.y144{bottom:356.145000px;}
.y177{bottom:358.305000px;}
.yd8{bottom:359.385000px;}
.y1ad{bottom:364.065000px;}
.ya4{bottom:365.865000px;}
.y65{bottom:366.225000px;}
.y242{bottom:366.945000px;}
.y35{bottom:369.105000px;}
.y10f{bottom:370.905000px;}
.y143{bottom:374.145000px;}
.y213{bottom:376.305000px;}
.yd7{bottom:377.745000px;}
.y176{bottom:378.105000px;}
.y241{bottom:380.985000px;}
.y1ac{bottom:382.065000px;}
.y1e4{bottom:382.425000px;}
.ya3{bottom:383.865000px;}
.y64{bottom:384.225000px;}
.y34{bottom:387.465000px;}
.y10e{bottom:390.705000px;}
.y142{bottom:392.505000px;}
.y240{bottom:394.665000px;}
.yd6{bottom:395.745000px;}
.y175{bottom:397.905000px;}
.y1ab{bottom:400.110000px;}
.y1e3{bottom:400.470000px;}
.ya2{bottom:401.910000px;}
.y33{bottom:405.510000px;}
.y63{bottom:406.230000px;}
.y23f{bottom:408.390000px;}
.y10d{bottom:410.550000px;}
.y212{bottom:412.350000px;}
.yd5{bottom:413.790000px;}
.y174{bottom:417.750000px;}
.y1aa{bottom:418.470000px;}
.y1e2{bottom:418.830000px;}
.ya1{bottom:420.270000px;}
.y23e{bottom:422.430000px;}
.y32{bottom:423.510000px;}
.y141{bottom:428.550000px;}
.y10c{bottom:430.350000px;}
.yd4{bottom:432.150000px;}
.y23d{bottom:436.110000px;}
.y1a9{bottom:436.470000px;}
.y1e1{bottom:436.830000px;}
.y173{bottom:437.550000px;}
.ya0{bottom:438.270000px;}
.y31{bottom:441.510000px;}
.y140{bottom:446.910000px;}
.y211{bottom:448.710000px;}
.y23c{bottom:449.790000px;}
.yd3{bottom:450.150000px;}
.y62{bottom:450.510000px;}
.y1a8{bottom:454.470000px;}
.y1e0{bottom:454.830000px;}
.y9f{bottom:456.270000px;}
.y172{bottom:457.710000px;}
.y30{bottom:463.830000px;}
.y13f{bottom:464.910000px;}
.y210{bottom:466.710000px;}
.yd2{bottom:468.150000px;}
.y61{bottom:468.510000px;}
.y10b{bottom:470.310000px;}
.y1a7{bottom:472.830000px;}
.y1df{bottom:473.190000px;}
.y9e{bottom:474.630000px;}
.y171{bottom:477.510000px;}
.y13e{bottom:482.910000px;}
.y20f{bottom:484.710000px;}
.yd1{bottom:486.150000px;}
.y60{bottom:486.870000px;}
.y10a{bottom:490.110000px;}
.y1a6{bottom:490.830000px;}
.y1de{bottom:491.190000px;}
.y9d{bottom:492.630000px;}
.y170{bottom:497.310000px;}
.y13d{bottom:501.270000px;}
.y20e{bottom:503.070000px;}
.y2f{bottom:504.150000px;}
.y5f{bottom:504.870000px;}
.y23b{bottom:507.750000px;}
.yd0{bottom:508.110000px;}
.y1a5{bottom:508.830000px;}
.y1dd{bottom:509.190000px;}
.y109{bottom:509.910000px;}
.y9c{bottom:510.630000px;}
.y16f{bottom:517.110000px;}
.y13c{bottom:519.270000px;}
.y20d{bottom:521.070000px;}
.y23a{bottom:521.790000px;}
.y5e{bottom:522.870000px;}
.y1dc{bottom:527.550000px;}
.y9b{bottom:528.990000px;}
.y108{bottom:529.710000px;}
.y1a4{bottom:530.790000px;}
.ycf{bottom:535.140000px;}
.y239{bottom:535.500000px;}
.y16e{bottom:536.940000px;}
.y13b{bottom:537.300000px;}
.y2e{bottom:539.100000px;}
.y5d{bottom:541.260000px;}
.y1db{bottom:545.580000px;}
.y9a{bottom:547.020000px;}
.y238{bottom:549.180000px;}
.y107{bottom:549.540000px;}
.yce{bottom:553.140000px;}
.y2d{bottom:554.580000px;}
.y13a{bottom:555.660000px;}
.y16d{bottom:556.740000px;}
.y20c{bottom:557.460000px;}
.y1a3{bottom:557.820000px;}
.y5c{bottom:559.260000px;}
.y237{bottom:563.220000px;}
.y1da{bottom:563.580000px;}
.y99{bottom:565.020000px;}
.y106{bottom:569.340000px;}
.y2c{bottom:570.060000px;}
.ycd{bottom:571.500000px;}
.y139{bottom:573.660000px;}
.y20b{bottom:575.460000px;}
.y1a2{bottom:575.820000px;}
.y16c{bottom:576.540000px;}
.y236{bottom:576.900000px;}
.y5b{bottom:577.260000px;}
.y1d9{bottom:581.580000px;}
.y98{bottom:583.020000px;}
.y105{bottom:589.140000px;}
.ycc{bottom:589.500000px;}
.y235{bottom:590.580000px;}
.y2b{bottom:591.660000px;}
.y20a{bottom:593.460000px;}
.y1a1{bottom:594.180000px;}
.y5a{bottom:595.620000px;}
.y16b{bottom:596.340000px;}
.y1d8{bottom:599.940000px;}
.y97{bottom:601.380000px;}
.y234{bottom:604.620000px;}
.y2a{bottom:607.140000px;}
.ycb{bottom:607.500000px;}
.y104{bottom:608.940000px;}
.y138{bottom:609.660000px;}
.y209{bottom:611.460000px;}
.y1a0{bottom:612.180000px;}
.y59{bottom:613.620000px;}
.y16a{bottom:616.140000px;}
.y1d7{bottom:617.940000px;}
.y233{bottom:618.300000px;}
.y96{bottom:619.380000px;}
.y29{bottom:622.620000px;}
.yca{bottom:625.860000px;}
.y137{bottom:628.020000px;}
.y208{bottom:629.820000px;}
.y19f{bottom:630.180000px;}
.y58{bottom:631.620000px;}
.y232{bottom:631.980000px;}
.y103{bottom:635.220000px;}
.y169{bottom:635.940000px;}
.y95{bottom:637.380000px;}
.y28{bottom:638.460000px;}
.yc9{bottom:643.860000px;}
.y136{bottom:646.020000px;}
.y207{bottom:647.820000px;}
.y19e{bottom:648.540000px;}
.y57{bottom:649.620000px;}
.y27{bottom:653.940000px;}
.y1d6{bottom:654.300000px;}
.y94{bottom:655.740000px;}
.y168{bottom:657.900000px;}
.y231{bottom:659.700000px;}
.yc8{bottom:661.860000px;}
.y206{bottom:665.850000px;}
.y19d{bottom:666.570000px;}
.y135{bottom:667.650000px;}
.y56{bottom:668.010000px;}
.y26{bottom:669.450000px;}
.y102{bottom:671.610000px;}
.y1d5{bottom:672.330000px;}
.y230{bottom:673.410000px;}
.y93{bottom:673.770000px;}
.yc7{bottom:680.250000px;}
.y205{bottom:684.210000px;}
.y19c{bottom:684.570000px;}
.y25{bottom:684.930000px;}
.y55{bottom:686.010000px;}
.y167{bottom:686.730000px;}
.y22f{bottom:687.450000px;}
.y101{bottom:689.610000px;}
.y1d4{bottom:690.330000px;}
.y92{bottom:691.770000px;}
.yc6{bottom:698.250000px;}
.y24{bottom:700.410000px;}
.y22e{bottom:701.130000px;}
.y204{bottom:702.210000px;}
.y19b{bottom:702.570000px;}
.y54{bottom:704.010000px;}
.y166{bottom:706.530000px;}
.y100{bottom:707.610000px;}
.y1d3{bottom:708.690000px;}
.y91{bottom:710.130000px;}
.y134{bottom:712.290000px;}
.y22d{bottom:714.810000px;}
.y23{bottom:715.890000px;}
.yc5{bottom:716.250000px;}
.y203{bottom:720.210000px;}
.y19a{bottom:720.930000px;}
.y53{bottom:722.370000px;}
.yff{bottom:725.610000px;}
.y165{bottom:726.330000px;}
.y1d2{bottom:726.690000px;}
.y90{bottom:728.130000px;}
.y133{bottom:730.290000px;}
.y22{bottom:731.370000px;}
.yc4{bottom:734.610000px;}
.y22c{bottom:738.210000px;}
.y202{bottom:738.570000px;}
.y199{bottom:738.930000px;}
.y52{bottom:740.370000px;}
.yfe{bottom:743.970000px;}
.y1d1{bottom:744.690000px;}
.y8f{bottom:746.130000px;}
.y21{bottom:746.850000px;}
.y132{bottom:748.290000px;}
.yc3{bottom:752.610000px;}
.y201{bottom:756.570000px;}
.y198{bottom:756.930000px;}
.y51{bottom:758.370000px;}
.yfd{bottom:761.970000px;}
.y20{bottom:762.690000px;}
.y1d0{bottom:763.050000px;}
.y8e{bottom:764.490000px;}
.y164{bottom:765.930000px;}
.y131{bottom:766.650000px;}
.yc2{bottom:770.610000px;}
.y200{bottom:774.570000px;}
.y197{bottom:775.290000px;}
.y50{bottom:776.730000px;}
.y1f{bottom:778.170000px;}
.yfc{bottom:779.970000px;}
.y1cf{bottom:781.050000px;}
.y8d{bottom:782.490000px;}
.y130{bottom:784.650000px;}
.y163{bottom:785.730000px;}
.yc1{bottom:788.610000px;}
.y22b{bottom:792.570000px;}
.y1ff{bottom:792.930000px;}
.y196{bottom:793.290000px;}
.y1e{bottom:793.650000px;}
.y4f{bottom:794.730000px;}
.yfb{bottom:798.330000px;}
.y1ce{bottom:799.050000px;}
.y8c{bottom:800.535000px;}
.y12f{bottom:802.695000px;}
.y162{bottom:805.935000px;}
.yc0{bottom:807.015000px;}
.y1d{bottom:809.175000px;}
.y22a{bottom:810.615000px;}
.y1fe{bottom:810.975000px;}
.y195{bottom:811.335000px;}
.y4e{bottom:812.775000px;}
.yfa{bottom:816.375000px;}
.y1cd{bottom:817.095000px;}
.y8b{bottom:818.535000px;}
.y12e{bottom:821.055000px;}
.y1c{bottom:824.655000px;}
.ybf{bottom:825.015000px;}
.y161{bottom:825.735000px;}
.y1fd{bottom:828.975000px;}
.y194{bottom:829.695000px;}
.y4d{bottom:831.135000px;}
.yf9{bottom:834.375000px;}
.y1cc{bottom:835.455000px;}
.y8a{bottom:836.895000px;}
.y12d{bottom:839.055000px;}
.y1b{bottom:840.135000px;}
.ybe{bottom:843.015000px;}
.y160{bottom:845.535000px;}
.y1fc{bottom:846.975000px;}
.y193{bottom:847.695000px;}
.y4c{bottom:849.135000px;}
.yf8{bottom:852.735000px;}
.y1cb{bottom:853.455000px;}
.y89{bottom:854.895000px;}
.y1a{bottom:855.615000px;}
.y12c{bottom:857.055000px;}
.ybd{bottom:861.375000px;}
.y229{bottom:864.975000px;}
.y15f{bottom:865.335000px;}
.y192{bottom:865.695000px;}
.y4b{bottom:867.135000px;}
.yf7{bottom:870.735000px;}
.y19{bottom:871.095000px;}
.y1ca{bottom:871.455000px;}
.y88{bottom:872.895000px;}
.y12b{bottom:875.055000px;}
.ybc{bottom:879.375000px;}
.y228{bottom:882.975000px;}
.y1fb{bottom:883.335000px;}
.y191{bottom:884.055000px;}
.y4a{bottom:885.135000px;}
.y18{bottom:886.575000px;}
.yf6{bottom:888.735000px;}
.y1c9{bottom:889.815000px;}
.y87{bottom:891.255000px;}
.y12a{bottom:893.415000px;}
.ybb{bottom:897.375000px;}
.y1fa{bottom:901.335000px;}
.y190{bottom:902.055000px;}
.y17{bottom:902.415000px;}
.y49{bottom:903.495000px;}
.y15e{bottom:904.935000px;}
.yf5{bottom:907.095000px;}
.y1c8{bottom:907.815000px;}
.y86{bottom:909.255000px;}
.y129{bottom:911.415000px;}
.yba{bottom:915.735000px;}
.y16{bottom:917.895000px;}
.y227{bottom:919.335000px;}
.y1f9{bottom:919.695000px;}
.y18f{bottom:920.055000px;}
.y48{bottom:921.495000px;}
.y15d{bottom:924.735000px;}
.yf4{bottom:925.095000px;}
.y1c7{bottom:925.815000px;}
.y85{bottom:927.255000px;}
.y128{bottom:929.415000px;}
.y15{bottom:933.405000px;}
.yb9{bottom:933.765000px;}
.y226{bottom:937.365000px;}
.y1f8{bottom:937.725000px;}
.y18e{bottom:938.085000px;}
.y47{bottom:939.525000px;}
.yf3{bottom:943.125000px;}
.y1c6{bottom:944.205000px;}
.y15c{bottom:944.565000px;}
.y84{bottom:945.645000px;}
.y127{bottom:947.805000px;}
.y14{bottom:948.885000px;}
.yb8{bottom:951.765000px;}
.y1f7{bottom:955.725000px;}
.y18d{bottom:956.445000px;}
.y46{bottom:957.885000px;}
.yf2{bottom:961.485000px;}
.y1c5{bottom:962.205000px;}
.y83{bottom:963.645000px;}
.y13{bottom:964.365000px;}
.y126{bottom:965.805000px;}
.yb7{bottom:970.125000px;}
.y225{bottom:973.725000px;}
.y1f6{bottom:974.085000px;}
.y18c{bottom:974.445000px;}
.y45{bottom:975.885000px;}
.yf1{bottom:979.485000px;}
.y12{bottom:979.845000px;}
.y1c4{bottom:980.205000px;}
.y82{bottom:981.645000px;}
.y125{bottom:983.805000px;}
.y15b{bottom:984.165000px;}
.yb6{bottom:988.125000px;}
.y224{bottom:991.725000px;}
.y1f5{bottom:992.085000px;}
.y18b{bottom:992.445000px;}
.y44{bottom:993.885000px;}
.y11{bottom:995.325000px;}
.yf0{bottom:997.485000px;}
.y81{bottom:1000.005000px;}
.y124{bottom:1002.165000px;}
.y15a{bottom:1004.325000px;}
.yb5{bottom:1009.725000px;}
.y1f4{bottom:1010.085000px;}
.y18a{bottom:1010.805000px;}
.yef{bottom:1015.485000px;}
.y80{bottom:1018.005000px;}
.y1c3{bottom:1019.445000px;}
.y123{bottom:1020.165000px;}
.y159{bottom:1024.125000px;}
.yb4{bottom:1027.005000px;}
.y223{bottom:1028.085000px;}
.y1f3{bottom:1028.445000px;}
.y189{bottom:1028.805000px;}
.y10{bottom:1029.525000px;}
.yee{bottom:1033.845000px;}
.y7f{bottom:1036.005000px;}
.y122{bottom:1038.165000px;}
.y158{bottom:1043.925000px;}
.y222{bottom:1046.085000px;}
.y1c2{bottom:1046.445000px;}
.y188{bottom:1046.805000px;}
.yed{bottom:1051.845000px;}
.y7e{bottom:1054.365000px;}
.y121{bottom:1056.525000px;}
.y157{bottom:1063.725000px;}
.y1c1{bottom:1064.445000px;}
.y187{bottom:1065.165000px;}
.yec{bottom:1069.890000px;}
.yf{bottom:1070.970000px;}
.y7d{bottom:1072.410000px;}
.y120{bottom:1074.570000px;}
.y1c0{bottom:1082.490000px;}
.y186{bottom:1083.210000px;}
.y156{bottom:1083.570000px;}
.yeb{bottom:1088.250000px;}
.y7c{bottom:1090.410000px;}
.y11f{bottom:1092.570000px;}
.y1bf{bottom:1100.850000px;}
.y185{bottom:1101.210000px;}
.y155{bottom:1103.370000px;}
.yea{bottom:1106.250000px;}
.y7b{bottom:1108.410000px;}
.y221{bottom:1108.770000px;}
.y11e{bottom:1110.570000px;}
.ye{bottom:1112.370000px;}
.y1be{bottom:1118.850000px;}
.y184{bottom:1119.570000px;}
.y154{bottom:1123.170000px;}
.ye9{bottom:1124.250000px;}
.y7a{bottom:1126.770000px;}
.y11d{bottom:1128.930000px;}
.y1bd{bottom:1136.850000px;}
.y153{bottom:1142.970000px;}
.y79{bottom:1144.770000px;}
.y183{bottom:1145.490000px;}
.ye8{bottom:1146.210000px;}
.y11c{bottom:1146.930000px;}
.yd{bottom:1153.770000px;}
.y1bc{bottom:1155.210000px;}
.y78{bottom:1162.770000px;}
.ye7{bottom:1173.210000px;}
.y77{bottom:1181.130000px;}
.y76{bottom:1200.210000px;}
.yb{bottom:1217.520000px;}
.ya{bottom:1234.800000px;}
.hc{height:33.180469px;}
.h11{height:33.528516px;}
.h10{height:34.595859px;}
.h3{height:36.150469px;}
.hb{height:38.608594px;}
.h9{height:41.227031px;}
.h6{height:42.229688px;}
.h5{height:42.672656px;}
.he{height:44.031094px;}
.hf{height:44.798906px;}
.h2{height:45.360000px;}
.h8{height:46.736719px;}
.h4{height:55.080000px;}
.hd{height:65.884219px;}
.ha{height:83.453906px;}
.h7{height:100.546875px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:193.395000px;}
.w2{width:274.785000px;}
.w1{width:892.500000px;}
.w4{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x2{left:10.800000px;}
.x1{left:57.276000px;}
.xc{left:70.236000px;}
.xb{left:81.036000px;}
.x8{left:84.996000px;}
.x20{left:102.275987px;}
.x11{left:115.955987px;}
.x14{left:124.235987px;}
.x7{left:147.672000px;}
.x22{left:158.474987px;}
.x21{left:178.274987px;}
.xd{left:181.155000px;}
.x9{left:301.065000px;}
.xa{left:390.750000px;}
.x12{left:396.509987px;}
.x4{left:424.980000px;}
.x23{left:435.779987px;}
.x6{left:439.020000px;}
.x5{left:442.260000px;}
.x10{left:446.579987px;}
.x1e{left:452.339987px;}
.x1d{left:456.299987px;}
.xf{left:457.380000px;}
.x1c{left:459.899987px;}
.x1b{left:463.859987px;}
.x16{left:465.659987px;}
.xe{left:468.180000px;}
.x19{left:471.419987px;}
.x18{left:475.739987px;}
.x3{left:481.860000px;}
.x1a{left:499.859987px;}
.x15{left:517.529987px;}
.x1f{left:572.609987px;}
.x17{left:585.569987px;}
.x13{left:822.929987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1f{letter-spacing:-1.504000pt;}
.ls14{letter-spacing:-1.280000pt;}
.ls6{letter-spacing:-0.837333pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.432533pt;}
.lsf{letter-spacing:-0.414933pt;}
.ls20{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.278933pt;}
.ls1e{letter-spacing:-0.222933pt;}
.ls13{letter-spacing:-0.017920pt;}
.lsd{letter-spacing:-0.013867pt;}
.ls4{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.013867pt;}
.ls2{letter-spacing:0.014080pt;}
.ls3{letter-spacing:0.017920pt;}
.ls1c{letter-spacing:0.028587pt;}
.lse{letter-spacing:0.222933pt;}
.ls1{letter-spacing:0.367360pt;}
.ls19{letter-spacing:0.414933pt;}
.ls15{letter-spacing:0.432533pt;}
.ls16{letter-spacing:0.450667pt;}
.ls10{letter-spacing:0.591360pt;}
.ls0{letter-spacing:0.640000pt;}
.lsc{letter-spacing:1.056000pt;}
.ls12{letter-spacing:8.094720pt;}
.ls11{letter-spacing:11.934720pt;}
.lsa{letter-spacing:13.440000pt;}
.ls17{letter-spacing:14.494720pt;}
.ls9{letter-spacing:18.560000pt;}
.ls1b{letter-spacing:36.254720pt;}
.ls18{letter-spacing:42.654720pt;}
.ls1a{letter-spacing:43.934720pt;}
.ls1d{letter-spacing:70.177280pt;}
.ws12{word-spacing:-53.760000pt;}
.wsd{word-spacing:-13.890667pt;}
.wsc{word-spacing:-13.872533pt;}
.ws11{word-spacing:-13.854933pt;}
.ws13{word-spacing:-13.457920pt;}
.ws5{word-spacing:-13.440000pt;}
.wsb{word-spacing:-13.422080pt;}
.wse{word-spacing:-13.025067pt;}
.ws10{word-spacing:-13.007467pt;}
.ws2{word-spacing:-12.160000pt;}
.ws3{word-spacing:-11.881067pt;}
.ws1{word-spacing:-11.200000pt;}
.wsf{word-spacing:-11.151360pt;}
.ws8{word-spacing:-10.782933pt;}
.ws6{word-spacing:-10.573867pt;}
.ws0{word-spacing:-10.560000pt;}
.ws7{word-spacing:-10.546133pt;}
.ws14{word-spacing:-10.337067pt;}
.wsa{word-spacing:0.000000pt;}
.ws4{word-spacing:2.144960pt;}
.ws9{word-spacing:11.070080pt;}
._3{margin-left:-2.105801pt;}
._1{margin-left:-1.005683pt;}
._0{width:1.394173pt;}
._2{width:2.787756pt;}
._5{width:3.860119pt;}
._4{width:5.286429pt;}
._10{width:6.762619pt;}
._e{width:7.796487pt;}
._f{width:9.141502pt;}
._b{width:10.388036pt;}
._1b{width:12.134218pt;}
._c{width:13.716487pt;}
._1f{width:14.742854pt;}
._12{width:15.937076pt;}
._22{width:16.906826pt;}
._16{width:17.865259pt;}
._15{width:18.838107pt;}
._20{width:19.740856pt;}
._d{width:20.801766pt;}
._a{width:22.120960pt;}
._23{width:23.075309pt;}
._9{width:24.244314pt;}
._24{width:25.393858pt;}
._11{width:27.138253pt;}
._14{width:28.252583pt;}
._6{width:29.330212pt;}
._13{width:30.288743pt;}
._8{width:31.221072pt;}
._7{width:32.131398pt;}
._2e{width:33.062400pt;}
._1a{width:34.198909pt;}
._21{width:35.711747pt;}
._2c{width:36.721785pt;}
._26{width:37.770471pt;}
._38{width:38.928633pt;}
._35{width:40.089203pt;}
._2a{width:41.148309pt;}
._29{width:42.195004pt;}
._1e{width:43.286069pt;}
._3b{width:44.379763pt;}
._1d{width:45.474149pt;}
._25{width:48.020428pt;}
._27{width:49.067123pt;}
._28{width:50.126229pt;}
._34{width:54.123236pt;}
._33{width:55.477311pt;}
._37{width:57.308160pt;}
._36{width:59.012723pt;}
._2d{width:60.695040pt;}
._2f{width:65.745471pt;}
._3c{width:67.093160pt;}
._1c{width:70.356083pt;}
._2b{width:71.899366pt;}
._3d{width:73.332629pt;}
._18{width:75.034579pt;}
._17{width:76.287348pt;}
._19{width:77.496858pt;}
._3f{width:89.477120pt;}
._3a{width:90.654016pt;}
._39{width:98.984908pt;}
._32{width:102.700973pt;}
._30{width:114.356509pt;}
._31{width:115.356309pt;}
._41{width:144.038147pt;}
._40{width:145.009667pt;}
._3e{width:232.293951pt;}
.fs0{font-size:42.240000pt;}
.fs4{font-size:48.640000pt;}
.fs1{font-size:53.760000pt;}
.fs3{font-size:58.880000pt;}
.fs5{font-size:106.240000pt;}
.fs2{font-size:128.000000pt;}
.y75{bottom:-6.400000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:2.240000pt;}
.y1{bottom:4.512000pt;}
.y5{bottom:4.832000pt;}
.y4{bottom:6.080000pt;}
.y8{bottom:14.720000pt;}
.yc{bottom:16.992000pt;}
.y3{bottom:18.240000pt;}
.y7{bottom:26.880000pt;}
.y2{bottom:30.400000pt;}
.y6{bottom:39.040000pt;}
.y152{bottom:73.952000pt;}
.y1bb{bottom:81.952000pt;}
.y11b{bottom:82.912000pt;}
.yb3{bottom:83.552000pt;}
.y74{bottom:84.192000pt;}
.y220{bottom:85.792000pt;}
.y1f2{bottom:88.032000pt;}
.y182{bottom:89.312000pt;}
.y151{bottom:91.552000pt;}
.y24f{bottom:91.872000pt;}
.y43{bottom:93.152000pt;}
.ye6{bottom:94.112000pt;}
.y1ba{bottom:97.952000pt;}
.yb2{bottom:99.552000pt;}
.y73{bottom:100.192000pt;}
.y11a{bottom:100.512000pt;}
.y21f{bottom:101.792000pt;}
.y1f1{bottom:104.032000pt;}
.y42{bottom:105.312000pt;}
.y181{bottom:106.912000pt;}
.y150{bottom:109.152000pt;}
.ye5{bottom:110.112000pt;}
.y1b9{bottom:114.272000pt;}
.yb1{bottom:115.872000pt;}
.y72{bottom:116.192000pt;}
.y41{bottom:117.504000pt;}
.y21e{bottom:117.824000pt;}
.y119{bottom:118.144000pt;}
.y1f0{bottom:120.064000pt;}
.y24e{bottom:123.904000pt;}
.y180{bottom:124.544000pt;}
.ye4{bottom:126.464000pt;}
.y14f{bottom:126.784000pt;}
.y1b8{bottom:130.304000pt;}
.yb0{bottom:131.904000pt;}
.y71{bottom:132.224000pt;}
.y21d{bottom:133.826667pt;}
.y118{bottom:135.746667pt;}
.y24d{bottom:136.066667pt;}
.y1ef{bottom:136.386667pt;}
.y40{bottom:142.146667pt;}
.ye3{bottom:142.466667pt;}
.y14e{bottom:144.386667pt;}
.y1b7{bottom:146.306667pt;}
.yaf{bottom:147.906667pt;}
.y70{bottom:148.546667pt;}
.y24c{bottom:148.866667pt;}
.y21c{bottom:150.146667pt;}
.y1ee{bottom:152.386667pt;}
.y117{bottom:153.346667pt;}
.y3f{bottom:154.306667pt;}
.ye2{bottom:158.466667pt;}
.y17f{bottom:159.746667pt;}
.y1b6{bottom:162.626667pt;}
.y14d{bottom:163.586667pt;}
.yae{bottom:164.226667pt;}
.y6f{bottom:164.546667pt;}
.y21b{bottom:166.146667pt;}
.y3e{bottom:167.106667pt;}
.y1ed{bottom:168.386667pt;}
.y116{bottom:170.946667pt;}
.ye1{bottom:174.786667pt;}
.y17e{bottom:177.346667pt;}
.y1b5{bottom:178.626667pt;}
.y24b{bottom:179.586667pt;}
.yad{bottom:180.226667pt;}
.y6e{bottom:180.546667pt;}
.y3d{bottom:182.146667pt;}
.y1ec{bottom:184.706667pt;}
.y14c{bottom:187.906667pt;}
.y115{bottom:188.546667pt;}
.ye0{bottom:190.786667pt;}
.y1b4{bottom:194.626667pt;}
.y17d{bottom:194.946667pt;}
.y3c{bottom:195.906667pt;}
.yac{bottom:196.226667pt;}
.y6d{bottom:196.866667pt;}
.y21a{bottom:198.466667pt;}
.y1eb{bottom:200.706667pt;}
.y14b{bottom:203.906667pt;}
.y114{bottom:206.146667pt;}
.ydf{bottom:206.786667pt;}
.y3b{bottom:209.986667pt;}
.y24a{bottom:210.306667pt;}
.y1b3{bottom:210.946667pt;}
.yab{bottom:212.546667pt;}
.y6c{bottom:212.866667pt;}
.y219{bottom:214.466667pt;}
.y1ea{bottom:216.706667pt;}
.y14a{bottom:219.906667pt;}
.yde{bottom:222.786667pt;}
.y3a{bottom:223.746667pt;}
.y113{bottom:224.066667pt;}
.y249{bottom:225.666667pt;}
.y1b2{bottom:226.946667pt;}
.yaa{bottom:228.546667pt;}
.y6b{bottom:228.866667pt;}
.y17c{bottom:230.466667pt;}
.y1e9{bottom:232.706667pt;}
.y149{bottom:236.253333pt;}
.y39{bottom:237.533333pt;}
.ydd{bottom:239.133333pt;}
.y248{bottom:241.053333pt;}
.y112{bottom:241.693333pt;}
.y1b1{bottom:242.973333pt;}
.ya9{bottom:244.573333pt;}
.y6a{bottom:245.213333pt;}
.y218{bottom:246.813333pt;}
.y17b{bottom:248.093333pt;}
.y1e8{bottom:249.053333pt;}
.y38{bottom:251.293333pt;}
.y148{bottom:252.253333pt;}
.ydc{bottom:255.133333pt;}
.y247{bottom:256.093333pt;}
.y111{bottom:259.293333pt;}
.ya8{bottom:260.893333pt;}
.y69{bottom:261.213333pt;}
.y217{bottom:262.813333pt;}
.y1e7{bottom:265.053333pt;}
.y17a{bottom:265.693333pt;}
.y147{bottom:268.253333pt;}
.ydb{bottom:271.133333pt;}
.y246{bottom:271.453333pt;}
.y1b0{bottom:275.293333pt;}
.ya7{bottom:276.893333pt;}
.y68{bottom:277.213333pt;}
.y216{bottom:278.813333pt;}
.y1e6{bottom:281.053333pt;}
.y179{bottom:283.293333pt;}
.y245{bottom:283.933333pt;}
.y146{bottom:284.573333pt;}
.yda{bottom:287.453333pt;}
.y1af{bottom:291.293333pt;}
.ya6{bottom:292.893333pt;}
.y67{bottom:293.533333pt;}
.y110{bottom:294.493333pt;}
.y215{bottom:295.133333pt;}
.y37{bottom:296.093333pt;}
.y145{bottom:300.573333pt;}
.y178{bottom:300.893333pt;}
.y244{bottom:301.853333pt;}
.yd9{bottom:303.453333pt;}
.y1ae{bottom:307.293333pt;}
.ya5{bottom:308.893333pt;}
.y66{bottom:309.533333pt;}
.y214{bottom:311.133333pt;}
.y36{bottom:312.093333pt;}
.y243{bottom:314.013333pt;}
.y1e5{bottom:315.933333pt;}
.y144{bottom:316.573333pt;}
.y177{bottom:318.493333pt;}
.yd8{bottom:319.453333pt;}
.y1ad{bottom:323.613333pt;}
.ya4{bottom:325.213333pt;}
.y65{bottom:325.533333pt;}
.y242{bottom:326.173333pt;}
.y35{bottom:328.093333pt;}
.y10f{bottom:329.693333pt;}
.y143{bottom:332.573333pt;}
.y213{bottom:334.493333pt;}
.yd7{bottom:335.773333pt;}
.y176{bottom:336.093333pt;}
.y241{bottom:338.653333pt;}
.y1ac{bottom:339.613333pt;}
.y1e4{bottom:339.933333pt;}
.ya3{bottom:341.213333pt;}
.y64{bottom:341.533333pt;}
.y34{bottom:344.413333pt;}
.y10e{bottom:347.293333pt;}
.y142{bottom:348.893333pt;}
.y240{bottom:350.813333pt;}
.yd6{bottom:351.773333pt;}
.y175{bottom:353.693333pt;}
.y1ab{bottom:355.653333pt;}
.y1e3{bottom:355.973333pt;}
.ya2{bottom:357.253333pt;}
.y33{bottom:360.453333pt;}
.y63{bottom:361.093333pt;}
.y23f{bottom:363.013333pt;}
.y10d{bottom:364.933333pt;}
.y212{bottom:366.533333pt;}
.yd5{bottom:367.813333pt;}
.y174{bottom:371.333333pt;}
.y1aa{bottom:371.973333pt;}
.y1e2{bottom:372.293333pt;}
.ya1{bottom:373.573333pt;}
.y23e{bottom:375.493333pt;}
.y32{bottom:376.453333pt;}
.y141{bottom:380.933333pt;}
.y10c{bottom:382.533333pt;}
.yd4{bottom:384.133333pt;}
.y23d{bottom:387.653333pt;}
.y1a9{bottom:387.973333pt;}
.y1e1{bottom:388.293333pt;}
.y173{bottom:388.933333pt;}
.ya0{bottom:389.573333pt;}
.y31{bottom:392.453333pt;}
.y140{bottom:397.253333pt;}
.y211{bottom:398.853333pt;}
.y23c{bottom:399.813333pt;}
.yd3{bottom:400.133333pt;}
.y62{bottom:400.453333pt;}
.y1a8{bottom:403.973333pt;}
.y1e0{bottom:404.293333pt;}
.y9f{bottom:405.573333pt;}
.y172{bottom:406.853333pt;}
.y30{bottom:412.293333pt;}
.y13f{bottom:413.253333pt;}
.y210{bottom:414.853333pt;}
.yd2{bottom:416.133333pt;}
.y61{bottom:416.453333pt;}
.y10b{bottom:418.053333pt;}
.y1a7{bottom:420.293333pt;}
.y1df{bottom:420.613333pt;}
.y9e{bottom:421.893333pt;}
.y171{bottom:424.453333pt;}
.y13e{bottom:429.253333pt;}
.y20f{bottom:430.853333pt;}
.yd1{bottom:432.133333pt;}
.y60{bottom:432.773333pt;}
.y10a{bottom:435.653333pt;}
.y1a6{bottom:436.293333pt;}
.y1de{bottom:436.613333pt;}
.y9d{bottom:437.893333pt;}
.y170{bottom:442.053333pt;}
.y13d{bottom:445.573333pt;}
.y20e{bottom:447.173333pt;}
.y2f{bottom:448.133333pt;}
.y5f{bottom:448.773333pt;}
.y23b{bottom:451.333333pt;}
.yd0{bottom:451.653333pt;}
.y1a5{bottom:452.293333pt;}
.y1dd{bottom:452.613333pt;}
.y109{bottom:453.253333pt;}
.y9c{bottom:453.893333pt;}
.y16f{bottom:459.653333pt;}
.y13c{bottom:461.573333pt;}
.y20d{bottom:463.173333pt;}
.y23a{bottom:463.813333pt;}
.y5e{bottom:464.773333pt;}
.y1dc{bottom:468.933333pt;}
.y9b{bottom:470.213333pt;}
.y108{bottom:470.853333pt;}
.y1a4{bottom:471.813333pt;}
.ycf{bottom:475.680000pt;}
.y239{bottom:476.000000pt;}
.y16e{bottom:477.280000pt;}
.y13b{bottom:477.600000pt;}
.y2e{bottom:479.200000pt;}
.y5d{bottom:481.120000pt;}
.y1db{bottom:484.960000pt;}
.y9a{bottom:486.240000pt;}
.y238{bottom:488.160000pt;}
.y107{bottom:488.480000pt;}
.yce{bottom:491.680000pt;}
.y2d{bottom:492.960000pt;}
.y13a{bottom:493.920000pt;}
.y16d{bottom:494.880000pt;}
.y20c{bottom:495.520000pt;}
.y1a3{bottom:495.840000pt;}
.y5c{bottom:497.120000pt;}
.y237{bottom:500.640000pt;}
.y1da{bottom:500.960000pt;}
.y99{bottom:502.240000pt;}
.y106{bottom:506.080000pt;}
.y2c{bottom:506.720000pt;}
.ycd{bottom:508.000000pt;}
.y139{bottom:509.920000pt;}
.y20b{bottom:511.520000pt;}
.y1a2{bottom:511.840000pt;}
.y16c{bottom:512.480000pt;}
.y236{bottom:512.800000pt;}
.y5b{bottom:513.120000pt;}
.y1d9{bottom:516.960000pt;}
.y98{bottom:518.240000pt;}
.y105{bottom:523.680000pt;}
.ycc{bottom:524.000000pt;}
.y235{bottom:524.960000pt;}
.y2b{bottom:525.920000pt;}
.y20a{bottom:527.520000pt;}
.y1a1{bottom:528.160000pt;}
.y5a{bottom:529.440000pt;}
.y16b{bottom:530.080000pt;}
.y1d8{bottom:533.280000pt;}
.y97{bottom:534.560000pt;}
.y234{bottom:537.440000pt;}
.y2a{bottom:539.680000pt;}
.ycb{bottom:540.000000pt;}
.y104{bottom:541.280000pt;}
.y138{bottom:541.920000pt;}
.y209{bottom:543.520000pt;}
.y1a0{bottom:544.160000pt;}
.y59{bottom:545.440000pt;}
.y16a{bottom:547.680000pt;}
.y1d7{bottom:549.280000pt;}
.y233{bottom:549.600000pt;}
.y96{bottom:550.560000pt;}
.y29{bottom:553.440000pt;}
.yca{bottom:556.320000pt;}
.y137{bottom:558.240000pt;}
.y208{bottom:559.840000pt;}
.y19f{bottom:560.160000pt;}
.y58{bottom:561.440000pt;}
.y232{bottom:561.760000pt;}
.y103{bottom:564.640000pt;}
.y169{bottom:565.280000pt;}
.y95{bottom:566.560000pt;}
.y28{bottom:567.520000pt;}
.yc9{bottom:572.320000pt;}
.y136{bottom:574.240000pt;}
.y207{bottom:575.840000pt;}
.y19e{bottom:576.480000pt;}
.y57{bottom:577.440000pt;}
.y27{bottom:581.280000pt;}
.y1d6{bottom:581.600000pt;}
.y94{bottom:582.880000pt;}
.y168{bottom:584.800000pt;}
.y231{bottom:586.400000pt;}
.yc8{bottom:588.320000pt;}
.y206{bottom:591.866667pt;}
.y19d{bottom:592.506667pt;}
.y135{bottom:593.466667pt;}
.y56{bottom:593.786667pt;}
.y26{bottom:595.066667pt;}
.y102{bottom:596.986667pt;}
.y1d5{bottom:597.626667pt;}
.y230{bottom:598.586667pt;}
.y93{bottom:598.906667pt;}
.yc7{bottom:604.666667pt;}
.y205{bottom:608.186667pt;}
.y19c{bottom:608.506667pt;}
.y25{bottom:608.826667pt;}
.y55{bottom:609.786667pt;}
.y167{bottom:610.426667pt;}
.y22f{bottom:611.066667pt;}
.y101{bottom:612.986667pt;}
.y1d4{bottom:613.626667pt;}
.y92{bottom:614.906667pt;}
.yc6{bottom:620.666667pt;}
.y24{bottom:622.586667pt;}
.y22e{bottom:623.226667pt;}
.y204{bottom:624.186667pt;}
.y19b{bottom:624.506667pt;}
.y54{bottom:625.786667pt;}
.y166{bottom:628.026667pt;}
.y100{bottom:628.986667pt;}
.y1d3{bottom:629.946667pt;}
.y91{bottom:631.226667pt;}
.y134{bottom:633.146667pt;}
.y22d{bottom:635.386667pt;}
.y23{bottom:636.346667pt;}
.yc5{bottom:636.666667pt;}
.y203{bottom:640.186667pt;}
.y19a{bottom:640.826667pt;}
.y53{bottom:642.106667pt;}
.yff{bottom:644.986667pt;}
.y165{bottom:645.626667pt;}
.y1d2{bottom:645.946667pt;}
.y90{bottom:647.226667pt;}
.y133{bottom:649.146667pt;}
.y22{bottom:650.106667pt;}
.yc4{bottom:652.986667pt;}
.y22c{bottom:656.186667pt;}
.y202{bottom:656.506667pt;}
.y199{bottom:656.826667pt;}
.y52{bottom:658.106667pt;}
.yfe{bottom:661.306667pt;}
.y1d1{bottom:661.946667pt;}
.y8f{bottom:663.226667pt;}
.y21{bottom:663.866667pt;}
.y132{bottom:665.146667pt;}
.yc3{bottom:668.986667pt;}
.y201{bottom:672.506667pt;}
.y198{bottom:672.826667pt;}
.y51{bottom:674.106667pt;}
.yfd{bottom:677.306667pt;}
.y20{bottom:677.946667pt;}
.y1d0{bottom:678.266667pt;}
.y8e{bottom:679.546667pt;}
.y164{bottom:680.826667pt;}
.y131{bottom:681.466667pt;}
.yc2{bottom:684.986667pt;}
.y200{bottom:688.506667pt;}
.y197{bottom:689.146667pt;}
.y50{bottom:690.426667pt;}
.y1f{bottom:691.706667pt;}
.yfc{bottom:693.306667pt;}
.y1cf{bottom:694.266667pt;}
.y8d{bottom:695.546667pt;}
.y130{bottom:697.466667pt;}
.y163{bottom:698.426667pt;}
.yc1{bottom:700.986667pt;}
.y22b{bottom:704.506667pt;}
.y1ff{bottom:704.826667pt;}
.y196{bottom:705.146667pt;}
.y1e{bottom:705.466667pt;}
.y4f{bottom:706.426667pt;}
.yfb{bottom:709.626667pt;}
.y1ce{bottom:710.266667pt;}
.y8c{bottom:711.586667pt;}
.y12f{bottom:713.506667pt;}
.y162{bottom:716.386667pt;}
.yc0{bottom:717.346667pt;}
.y1d{bottom:719.266667pt;}
.y22a{bottom:720.546667pt;}
.y1fe{bottom:720.866667pt;}
.y195{bottom:721.186667pt;}
.y4e{bottom:722.466667pt;}
.yfa{bottom:725.666667pt;}
.y1cd{bottom:726.306667pt;}
.y8b{bottom:727.586667pt;}
.y12e{bottom:729.826667pt;}
.y1c{bottom:733.026667pt;}
.ybf{bottom:733.346667pt;}
.y161{bottom:733.986667pt;}
.y1fd{bottom:736.866667pt;}
.y194{bottom:737.506667pt;}
.y4d{bottom:738.786667pt;}
.yf9{bottom:741.666667pt;}
.y1cc{bottom:742.626667pt;}
.y8a{bottom:743.906667pt;}
.y12d{bottom:745.826667pt;}
.y1b{bottom:746.786667pt;}
.ybe{bottom:749.346667pt;}
.y160{bottom:751.586667pt;}
.y1fc{bottom:752.866667pt;}
.y193{bottom:753.506667pt;}
.y4c{bottom:754.786667pt;}
.yf8{bottom:757.986667pt;}
.y1cb{bottom:758.626667pt;}
.y89{bottom:759.906667pt;}
.y1a{bottom:760.546667pt;}
.y12c{bottom:761.826667pt;}
.ybd{bottom:765.666667pt;}
.y229{bottom:768.866667pt;}
.y15f{bottom:769.186667pt;}
.y192{bottom:769.506667pt;}
.y4b{bottom:770.786667pt;}
.yf7{bottom:773.986667pt;}
.y19{bottom:774.306667pt;}
.y1ca{bottom:774.626667pt;}
.y88{bottom:775.906667pt;}
.y12b{bottom:777.826667pt;}
.ybc{bottom:781.666667pt;}
.y228{bottom:784.866667pt;}
.y1fb{bottom:785.186667pt;}
.y191{bottom:785.826667pt;}
.y4a{bottom:786.786667pt;}
.y18{bottom:788.066667pt;}
.yf6{bottom:789.986667pt;}
.y1c9{bottom:790.946667pt;}
.y87{bottom:792.226667pt;}
.y12a{bottom:794.146667pt;}
.ybb{bottom:797.666667pt;}
.y1fa{bottom:801.186667pt;}
.y190{bottom:801.826667pt;}
.y17{bottom:802.146667pt;}
.y49{bottom:803.106667pt;}
.y15e{bottom:804.386667pt;}
.yf5{bottom:806.306667pt;}
.y1c8{bottom:806.946667pt;}
.y86{bottom:808.226667pt;}
.y129{bottom:810.146667pt;}
.yba{bottom:813.986667pt;}
.y16{bottom:815.906667pt;}
.y227{bottom:817.186667pt;}
.y1f9{bottom:817.506667pt;}
.y18f{bottom:817.826667pt;}
.y48{bottom:819.106667pt;}
.y15d{bottom:821.986667pt;}
.yf4{bottom:822.306667pt;}
.y1c7{bottom:822.946667pt;}
.y85{bottom:824.226667pt;}
.y128{bottom:826.146667pt;}
.y15{bottom:829.693333pt;}
.yb9{bottom:830.013333pt;}
.y226{bottom:833.213333pt;}
.y1f8{bottom:833.533333pt;}
.y18e{bottom:833.853333pt;}
.y47{bottom:835.133333pt;}
.yf3{bottom:838.333333pt;}
.y1c6{bottom:839.293333pt;}
.y15c{bottom:839.613333pt;}
.y84{bottom:840.573333pt;}
.y127{bottom:842.493333pt;}
.y14{bottom:843.453333pt;}
.yb8{bottom:846.013333pt;}
.y1f7{bottom:849.533333pt;}
.y18d{bottom:850.173333pt;}
.y46{bottom:851.453333pt;}
.yf2{bottom:854.653333pt;}
.y1c5{bottom:855.293333pt;}
.y83{bottom:856.573333pt;}
.y13{bottom:857.213333pt;}
.y126{bottom:858.493333pt;}
.yb7{bottom:862.333333pt;}
.y225{bottom:865.533333pt;}
.y1f6{bottom:865.853333pt;}
.y18c{bottom:866.173333pt;}
.y45{bottom:867.453333pt;}
.yf1{bottom:870.653333pt;}
.y12{bottom:870.973333pt;}
.y1c4{bottom:871.293333pt;}
.y82{bottom:872.573333pt;}
.y125{bottom:874.493333pt;}
.y15b{bottom:874.813333pt;}
.yb6{bottom:878.333333pt;}
.y224{bottom:881.533333pt;}
.y1f5{bottom:881.853333pt;}
.y18b{bottom:882.173333pt;}
.y44{bottom:883.453333pt;}
.y11{bottom:884.733333pt;}
.yf0{bottom:886.653333pt;}
.y81{bottom:888.893333pt;}
.y124{bottom:890.813333pt;}
.y15a{bottom:892.733333pt;}
.yb5{bottom:897.533333pt;}
.y1f4{bottom:897.853333pt;}
.y18a{bottom:898.493333pt;}
.yef{bottom:902.653333pt;}
.y80{bottom:904.893333pt;}
.y1c3{bottom:906.173333pt;}
.y123{bottom:906.813333pt;}
.y159{bottom:910.333333pt;}
.yb4{bottom:912.893333pt;}
.y223{bottom:913.853333pt;}
.y1f3{bottom:914.173333pt;}
.y189{bottom:914.493333pt;}
.y10{bottom:915.133333pt;}
.yee{bottom:918.973333pt;}
.y7f{bottom:920.893333pt;}
.y122{bottom:922.813333pt;}
.y158{bottom:927.933333pt;}
.y222{bottom:929.853333pt;}
.y1c2{bottom:930.173333pt;}
.y188{bottom:930.493333pt;}
.yed{bottom:934.973333pt;}
.y7e{bottom:937.213333pt;}
.y121{bottom:939.133333pt;}
.y157{bottom:945.533333pt;}
.y1c1{bottom:946.173333pt;}
.y187{bottom:946.813333pt;}
.yec{bottom:951.013333pt;}
.yf{bottom:951.973333pt;}
.y7d{bottom:953.253333pt;}
.y120{bottom:955.173333pt;}
.y1c0{bottom:962.213333pt;}
.y186{bottom:962.853333pt;}
.y156{bottom:963.173333pt;}
.yeb{bottom:967.333333pt;}
.y7c{bottom:969.253333pt;}
.y11f{bottom:971.173333pt;}
.y1bf{bottom:978.533333pt;}
.y185{bottom:978.853333pt;}
.y155{bottom:980.773333pt;}
.yea{bottom:983.333333pt;}
.y7b{bottom:985.253333pt;}
.y221{bottom:985.573333pt;}
.y11e{bottom:987.173333pt;}
.ye{bottom:988.773333pt;}
.y1be{bottom:994.533333pt;}
.y184{bottom:995.173333pt;}
.y154{bottom:998.373333pt;}
.ye9{bottom:999.333333pt;}
.y7a{bottom:1001.573333pt;}
.y11d{bottom:1003.493333pt;}
.y1bd{bottom:1010.533333pt;}
.y153{bottom:1015.973333pt;}
.y79{bottom:1017.573333pt;}
.y183{bottom:1018.213333pt;}
.ye8{bottom:1018.853333pt;}
.y11c{bottom:1019.493333pt;}
.yd{bottom:1025.573333pt;}
.y1bc{bottom:1026.853333pt;}
.y78{bottom:1033.573333pt;}
.ye7{bottom:1042.853333pt;}
.y77{bottom:1049.893333pt;}
.y76{bottom:1066.853333pt;}
.yb{bottom:1082.240000pt;}
.ya{bottom:1097.600000pt;}
.hc{height:29.493750pt;}
.h11{height:29.803125pt;}
.h10{height:30.751875pt;}
.h3{height:32.133750pt;}
.hb{height:34.318750pt;}
.h9{height:36.646250pt;}
.h6{height:37.537500pt;}
.h5{height:37.931250pt;}
.he{height:39.138750pt;}
.hf{height:39.821250pt;}
.h2{height:40.320000pt;}
.h8{height:41.543750pt;}
.h4{height:48.960000pt;}
.hd{height:58.563750pt;}
.ha{height:74.181250pt;}
.h7{height:89.375000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:171.906667pt;}
.w2{width:244.253333pt;}
.w1{width:793.333333pt;}
.w4{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x2{left:9.600000pt;}
.x1{left:50.912000pt;}
.xc{left:62.432000pt;}
.xb{left:72.032000pt;}
.x8{left:75.552000pt;}
.x20{left:90.911988pt;}
.x11{left:103.071988pt;}
.x14{left:110.431988pt;}
.x7{left:131.264000pt;}
.x22{left:140.866655pt;}
.x21{left:158.466655pt;}
.xd{left:161.026667pt;}
.x9{left:267.613333pt;}
.xa{left:347.333333pt;}
.x12{left:352.453322pt;}
.x4{left:377.760000pt;}
.x23{left:387.359988pt;}
.x6{left:390.240000pt;}
.x5{left:393.120000pt;}
.x10{left:396.959988pt;}
.x1e{left:402.079988pt;}
.x1d{left:405.599988pt;}
.xf{left:406.560000pt;}
.x1c{left:408.799988pt;}
.x1b{left:412.319988pt;}
.x16{left:413.919988pt;}
.xe{left:416.160000pt;}
.x19{left:419.039988pt;}
.x18{left:422.879988pt;}
.x3{left:428.320000pt;}
.x1a{left:444.319988pt;}
.x15{left:460.026655pt;}
.x1f{left:508.986655pt;}
.x17{left:520.506655pt;}
.x13{left:731.493322pt;}
}




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