
    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_975dc22ad0a5967279820b1d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_7b6070c7d6c5f8e58395f0e7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_b2d0abe4c8da27bcd12280a0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.138184;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_9d6573d7f9edecc8ede1a3c3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_c943601845796a9ee28bfd4c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.065430;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_8b1c6bb964b1bd5c08c9d002.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.087402;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_aa260b242baa21c6f2d4e6b4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.087402;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v2{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.120000px;}
.v1{vertical-align:20.880000px;}
.ls21{letter-spacing:-0.990000px;}
.ls1d{letter-spacing:-0.672000px;}
.lsd{letter-spacing:-0.648000px;}
.ls10{letter-spacing:-0.618000px;}
.ls5{letter-spacing:-0.396000px;}
.ls20{letter-spacing:-0.270000px;}
.lsc{letter-spacing:-0.233400px;}
.ls9{letter-spacing:-0.226200px;}
.ls1e{letter-spacing:-0.216000px;}
.ls1a{letter-spacing:-0.198000px;}
.ls3{letter-spacing:-0.172800px;}
.ls16{letter-spacing:-0.103800px;}
.ls18{letter-spacing:-0.094800px;}
.ls6{letter-spacing:-0.085200px;}
.ls23{letter-spacing:-0.054000px;}
.ls0{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.023040px;}
.ls4{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.078480px;}
.lsa{letter-spacing:0.106800px;}
.lse{letter-spacing:0.120000px;}
.ls1f{letter-spacing:0.126000px;}
.lsf{letter-spacing:0.138240px;}
.ls7{letter-spacing:0.172800px;}
.ls19{letter-spacing:0.216000px;}
.ls13{letter-spacing:0.246000px;}
.ls1c{letter-spacing:0.324000px;}
.ls1{letter-spacing:0.360000px;}
.ls22{letter-spacing:0.450000px;}
.lsb{letter-spacing:2.167200px;}
.ls17{letter-spacing:2.707200px;}
.ls12{letter-spacing:3.960000px;}
.ls14{letter-spacing:5.587200px;}
.ls1b{letter-spacing:11.347200px;}
.ls11{letter-spacing:24.307200px;}
.ls8{letter-spacing:203.457600px;}
.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;}
}
.ws4{word-spacing:-18.532800px;}
.wsb{word-spacing:-14.932800px;}
.wsa{word-spacing:-14.679600px;}
.ws5{word-spacing:-14.572800px;}
.ws9{word-spacing:-12.316200px;}
.ws14{word-spacing:-12.204000px;}
.ws13{word-spacing:-12.006000px;}
.wsd{word-spacing:-11.911680px;}
.ws6{word-spacing:-11.880000px;}
.ws15{word-spacing:-11.826000px;}
.ws12{word-spacing:-11.664000px;}
.ws3{word-spacing:-11.484000px;}
.ws7{word-spacing:-10.612800px;}
.ws8{word-spacing:-10.527600px;}
.wsc{word-spacing:-9.187200px;}
.ws2{word-spacing:-7.992000px;}
.ws1{word-spacing:-7.920000px;}
.ws0{word-spacing:0.000000px;}
.wse{word-spacing:174.138000px;}
.wsf{word-spacing:174.198000px;}
.ws11{word-spacing:174.456000px;}
.ws10{word-spacing:175.158000px;}
._13{margin-left:-77.783640px;}
._19{margin-left:-4.338720px;}
._5{margin-left:-3.146400px;}
._0{margin-left:-1.562400px;}
._2{width:1.296000px;}
._1{width:2.304000px;}
._3{width:3.600000px;}
._4{width:4.932000px;}
._12{width:5.948400px;}
._6{width:7.182000px;}
._10{width:8.339520px;}
._14{width:9.737280px;}
._11{width:11.260800px;}
._c{width:12.906000px;}
._b{width:13.932000px;}
._9{width:15.552000px;}
._8{width:16.898400px;}
._1a{width:17.920080px;}
._7{width:19.062000px;}
._15{width:20.895840px;}
._e{width:22.244400px;}
._d{width:23.490000px;}
._1b{width:25.475040px;}
._20{width:26.496000px;}
._21{width:28.147680px;}
._1e{width:29.437920px;}
._1d{width:30.708000px;}
._1c{width:32.590080px;}
._a{width:33.966000px;}
._f{width:36.198720px;}
._16{width:96.244320px;}
._1f{width:187.074000px;}
._18{width:204.427200px;}
._17{width:205.567200px;}
.fc5{color:rgb(0,112,192);}
.fc4{color:rgb(5,99,193);}
.fc1{color:rgb(38,90,63);}
.fc3{color:rgb(89,89,89);}
.fc2{color:rgb(17,17,17);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fsd{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fsc{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fsf{font-size:54.144000px;}
.fse{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fsb{font-size:84.240000px;}
.fs9{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.fsa{font-size:102.240000px;}
.fs6{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y67{bottom:4.860000px;}
.y11d{bottom:16.815000px;}
.y136{bottom:16.890000px;}
.y3c{bottom:27.900000px;}
.y6{bottom:35.925007px;}
.y4d{bottom:37.260000px;}
.y11c{bottom:43.170000px;}
.y135{bottom:43.230000px;}
.y3b{bottom:44.460000px;}
.y4c{bottom:52.020000px;}
.y3a{bottom:61.230000px;}
.y5{bottom:66.525004px;}
.y4b{bottom:71.310000px;}
.y113{bottom:77.370000px;}
.y12c{bottom:77.430000px;}
.y39{bottom:77.790000px;}
.y25{bottom:78.516000px;}
.y4a{bottom:86.070000px;}
.y69{bottom:87.696000px;}
.y24{bottom:89.136000px;}
.y38{bottom:94.350000px;}
.y4{bottom:97.125005px;}
.y49{bottom:100.830000px;}
.y114{bottom:103.470000px;}
.y37{bottom:111.090000px;}
.y12d{bottom:115.665000px;}
.y48{bottom:120.090000px;}
.y36{bottom:127.650000px;}
.y115{bottom:129.570000px;}
.y47{bottom:134.850000px;}
.y22{bottom:139.264499px;}
.y35{bottom:144.210000px;}
.y65{bottom:152.670000px;}
.y12e{bottom:153.870000px;}
.y46{bottom:154.110000px;}
.y116{bottom:155.625000px;}
.yec{bottom:155.730000px;}
.y34{bottom:160.950000px;}
.y13a{bottom:164.010000px;}
.y111{bottom:169.050000px;}
.y64{bottom:169.230000px;}
.y192{bottom:170.670000px;}
.y101{bottom:172.290000px;}
.y45{bottom:173.370000px;}
.y33{bottom:177.510000px;}
.y117{bottom:181.725000px;}
.y139{bottom:184.350000px;}
.y63{bottom:185.790000px;}
.y191{bottom:187.230000px;}
.y44{bottom:188.130000px;}
.yeb{bottom:188.850000px;}
.y12f{bottom:192.090000px;}
.y32{bottom:194.070000px;}
.y19{bottom:196.933500px;}
.y15d{bottom:196.950000px;}
.yea{bottom:202.350000px;}
.y62{bottom:202.530000px;}
.y43{bottom:202.890000px;}
.y190{bottom:203.790000px;}
.y138{bottom:204.690000px;}
.y91{bottom:205.590000px;}
.y118{bottom:207.825000px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y31{bottom:210.810000px;}
.y140{bottom:212.610000px;}
.y15c{bottom:213.690000px;}
.y42{bottom:218.190000px;}
.y90{bottom:218.910000px;}
.y61{bottom:219.090000px;}
.y18f{bottom:220.530000px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y137{bottom:225.030000px;}
.y30{bottom:227.370000px;}
.y15b{bottom:230.250000px;}
.y130{bottom:230.325000px;}
.y13f{bottom:232.950000px;}
.y119{bottom:233.925000px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y60{bottom:235.650000px;}
.y18e{bottom:237.090000px;}
.y5f{bottom:238.710000px;}
.y41{bottom:238.890000px;}
.ye9{bottom:240.870000px;}
.y12a{bottom:241.950000px;}
.y2f{bottom:243.930000px;}
.ybe{bottom:245.370000px;}
.y110{bottom:246.450000px;}
.y15a{bottom:246.810000px;}
.y5e{bottom:252.390000px;}
.y100{bottom:253.290000px;}
.y40{bottom:253.650000px;}
.yb8{bottom:256.530000px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y11a{bottom:260.025000px;}
.y2e{bottom:260.670000px;}
.y3d{bottom:260.850000px;}
.ye8{bottom:261.030000px;}
.y129{bottom:262.110000px;}
.y10f{bottom:263.010000px;}
.y159{bottom:263.550000px;}
.ybd{bottom:265.530000px;}
.y3f{bottom:268.410000px;}
.y131{bottom:268.530000px;}
.y5d{bottom:268.950000px;}
.y18d{bottom:270.390000px;}
.y10a{bottom:272.010000px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.yff{bottom:273.450000px;}
.yb7{bottom:276.870000px;}
.y158{bottom:280.110000px;}
.ye7{bottom:281.370000px;}
.y2d{bottom:281.730000px;}
.y128{bottom:282.450000px;}
.y3e{bottom:283.170000px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y5c{bottom:285.510000px;}
.ybc{bottom:285.870000px;}
.y11b{bottom:286.125000px;}
.y18c{bottom:286.950000px;}
.y109{bottom:288.570000px;}
.yfe{bottom:293.790000px;}
.y10e{bottom:294.870000px;}
.y112{bottom:295.020000px;}
.y157{bottom:296.670000px;}
.yb6{bottom:297.030000px;}
.ye6{bottom:301.710000px;}
.y108{bottom:302.070000px;}
.y5b{bottom:302.250000px;}
.y127{bottom:302.790000px;}
.y18b{bottom:303.510000px;}
.ybb{bottom:306.210000px;}
.y132{bottom:306.750000px;}
.y103{bottom:309.990000px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y156{bottom:313.410000px;}
.yfd{bottom:314.130000px;}
.y5a{bottom:318.810000px;}
.y18a{bottom:320.250000px;}
.ye5{bottom:322.050000px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y126{bottom:323.130000px;}
.yba{bottom:326.550000px;}
.y155{bottom:330.015000px;}
.yb5{bottom:334.515000px;}
.y59{bottom:335.415000px;}
.y189{bottom:336.855000px;}
.ye4{bottom:342.435000px;}
.y125{bottom:343.515000px;}
.y133{bottom:344.985000px;}
.y154{bottom:346.575000px;}
.yb9{bottom:346.935000px;}
.y10{bottom:348.133500px;}
.y58{bottom:352.155000px;}
.y188{bottom:353.415000px;}
.yfb{bottom:354.855000px;}
.yfc{bottom:358.635000px;}
.ye3{bottom:362.775000px;}
.y153{bottom:363.315000px;}
.y124{bottom:363.855000px;}
.y8f{bottom:367.275000px;}
.y57{bottom:368.715000px;}
.y187{bottom:370.155000px;}
.yfa{bottom:375.195000px;}
.y152{bottom:379.875000px;}
.ye2{bottom:382.935000px;}
.y134{bottom:383.190000px;}
.y56{bottom:385.275000px;}
.y186{bottom:386.715000px;}
.yf{bottom:386.785499px;}
.y8e{bottom:387.615000px;}
.yb4{bottom:390.855000px;}
.y123{bottom:392.295000px;}
.yf9{bottom:395.355000px;}
.y151{bottom:396.435000px;}
.y55{bottom:402.015000px;}
.ye1{bottom:403.275000px;}
.y8d{bottom:407.775000px;}
.ye{bottom:408.044999px;}
.y122{bottom:408.855000px;}
.yb3{bottom:411.195000px;}
.y150{bottom:412.995000px;}
.yf8{bottom:415.695000px;}
.y185{bottom:420.015000px;}
.y54{bottom:421.635000px;}
.ye0{bottom:423.615000px;}
.y8c{bottom:428.115000px;}
.y14f{bottom:429.735000px;}
.yb2{bottom:431.355000px;}
.y102{bottom:431.895000px;}
.y193{bottom:433.695000px;}
.y53{bottom:434.955000px;}
.yf7{bottom:436.035000px;}
.y184{bottom:436.575000px;}
.y121{bottom:440.715000px;}
.y12b{bottom:441.720000px;}
.ydf{bottom:443.955000px;}
.y14e{bottom:446.295000px;}
.y8b{bottom:448.455000px;}
.yb1{bottom:451.695000px;}
.y183{bottom:453.135000px;}
.yf6{bottom:456.375000px;}
.y52{bottom:459.795000px;}
.y107{bottom:460.155000px;}
.y14d{bottom:462.855000px;}
.yde{bottom:464.295000px;}
.y8a{bottom:468.795000px;}
.y182{bottom:469.875000px;}
.yb0{bottom:472.035000px;}
.yf5{bottom:476.715000px;}
.y14c{bottom:479.595000px;}
.y50{bottom:480.135000px;}
.y51{bottom:483.915000px;}
.ydd{bottom:484.635000px;}
.y181{bottom:486.435000px;}
.y89{bottom:489.135000px;}
.yaf{bottom:492.375000px;}
.y14b{bottom:496.155000px;}
.yf4{bottom:497.055000px;}
.y4f{bottom:500.475000px;}
.yd{bottom:502.864502px;}
.y180{bottom:502.995000px;}
.ydc{bottom:504.795000px;}
.y88{bottom:509.475000px;}
.yae{bottom:512.715000px;}
.yf3{bottom:517.215000px;}
.y17f{bottom:519.735000px;}
.y4e{bottom:520.815000px;}
.yc{bottom:520.864502px;}
.ydb{bottom:525.135000px;}
.y14a{bottom:529.455000px;}
.y87{bottom:529.635000px;}
.yad{bottom:533.055000px;}
.y106{bottom:534.315000px;}
.y17e{bottom:536.295000px;}
.y2c{bottom:536.475000px;}
.yf2{bottom:537.555000px;}
.yb{bottom:538.864499px;}
.yda{bottom:545.475000px;}
.y149{bottom:546.015000px;}
.y86{bottom:549.975000px;}
.y17d{bottom:552.855000px;}
.yac{bottom:553.215000px;}
.ya{bottom:556.864499px;}
.yf1{bottom:557.895000px;}
.y13e{bottom:561.675000px;}
.y148{bottom:562.575000px;}
.yd9{bottom:565.815000px;}
.y17c{bottom:569.595000px;}
.y85{bottom:570.315000px;}
.yab{bottom:573.555000px;}
.yf0{bottom:578.235000px;}
.y147{bottom:579.315000px;}
.yd7{bottom:586.155000px;}
.yd8{bottom:589.935000px;}
.y84{bottom:590.655000px;}
.yaa{bottom:593.895000px;}
.y146{bottom:595.905000px;}
.yef{bottom:598.605000px;}
.y17b{bottom:602.745000px;}
.yd5{bottom:606.525000px;}
.yd6{bottom:610.305000px;}
.y83{bottom:611.025000px;}
.y145{bottom:612.465000px;}
.ya9{bottom:614.265000px;}
.y13d{bottom:618.945000px;}
.y17a{bottom:619.485000px;}
.y10d{bottom:624.525000px;}
.yd4{bottom:626.685000px;}
.y144{bottom:629.205000px;}
.y82{bottom:631.365000px;}
.ya8{bottom:634.605000px;}
.yee{bottom:635.865000px;}
.y179{bottom:636.045000px;}
.y13c{bottom:639.105000px;}
.y10c{bottom:644.865000px;}
.y9{bottom:645.510000px;}
.y143{bottom:645.765000px;}
.yd3{bottom:647.025000px;}
.y81{bottom:651.525000px;}
.y178{bottom:652.605000px;}
.ya7{bottom:654.945000px;}
.y142{bottom:662.325000px;}
.y8{bottom:666.771000px;}
.yd2{bottom:667.365000px;}
.y177{bottom:669.165000px;}
.y80{bottom:671.865000px;}
.ya6{bottom:675.105000px;}
.y13b{bottom:676.545000px;}
.y176{bottom:685.905000px;}
.yd1{bottom:687.705000px;}
.y7e{bottom:692.205000px;}
.ya5{bottom:695.445000px;}
.y7f{bottom:695.985000px;}
.y141{bottom:696.885000px;}
.y175{bottom:702.465000px;}
.yd0{bottom:708.045000px;}
.y7d{bottom:712.545000px;}
.ya4{bottom:715.785000px;}
.yed{bottom:716.325000px;}
.y174{bottom:719.025000px;}
.y7{bottom:726.298500px;}
.ycf{bottom:728.385000px;}
.y7c{bottom:732.885000px;}
.y173{bottom:735.765000px;}
.ya3{bottom:736.125000px;}
.y10b{bottom:736.665000px;}
.yce{bottom:748.725000px;}
.y172{bottom:752.325000px;}
.y3{bottom:752.599495px;}
.y7b{bottom:753.225000px;}
.ya2{bottom:756.465000px;}
.ycd{bottom:768.885000px;}
.y7a{bottom:773.385000px;}
.ya1{bottom:776.805000px;}
.y171{bottom:785.625000px;}
.ycc{bottom:789.225000px;}
.y79{bottom:793.725000px;}
.ya0{bottom:797.145000px;}
.y170{bottom:802.185000px;}
.ycb{bottom:809.565000px;}
.y78{bottom:814.065000px;}
.y9f{bottom:817.305000px;}
.y16f{bottom:818.745000px;}
.y77{bottom:834.405000px;}
.y16e{bottom:835.485000px;}
.y9e{bottom:837.645000px;}
.yca{bottom:838.545000px;}
.y16d{bottom:852.045000px;}
.y76{bottom:854.745000px;}
.y2b{bottom:855.105000px;}
.yc9{bottom:856.905000px;}
.y9d{bottom:857.985000px;}
.y120{bottom:868.470000px;}
.y16c{bottom:868.650000px;}
.y75{bottom:875.130000px;}
.yc8{bottom:875.490000px;}
.y9c{bottom:878.370000px;}
.y2{bottom:879.369000px;}
.y16b{bottom:885.390000px;}
.y11f{bottom:888.630000px;}
.yc7{bottom:893.850000px;}
.y74{bottom:895.470000px;}
.y9b{bottom:898.710000px;}
.y2a{bottom:900.150000px;}
.y16a{bottom:901.950000px;}
.yc6{bottom:912.390000px;}
.y73{bottom:915.630000px;}
.y169{bottom:918.510000px;}
.y9a{bottom:919.050000px;}
.y29{bottom:931.470000px;}
.y168{bottom:935.250000px;}
.y72{bottom:935.970000px;}
.y99{bottom:939.210000px;}
.yc5{bottom:940.290000px;}
.y167{bottom:951.810000px;}
.y71{bottom:956.310000px;}
.y98{bottom:959.550000px;}
.yc4{bottom:960.630000px;}
.y28{bottom:962.970000px;}
.y1{bottom:966.726000px;}
.y166{bottom:968.370000px;}
.y70{bottom:976.650000px;}
.y97{bottom:979.890000px;}
.y105{bottom:980.430000px;}
.yc3{bottom:980.790000px;}
.y165{bottom:985.110000px;}
.y6f{bottom:996.990000px;}
.y96{bottom:1000.230000px;}
.yc2{bottom:1001.130000px;}
.y164{bottom:1001.670000px;}
.y66{bottom:1010.130000px;}
.y27{bottom:1011.930000px;}
.y6e{bottom:1017.330000px;}
.y163{bottom:1018.230000px;}
.y95{bottom:1020.570000px;}
.y104{bottom:1021.110000px;}
.yc1{bottom:1021.470000px;}
.y162{bottom:1034.970000px;}
.y6d{bottom:1037.490000px;}
.y26{bottom:1037.850000px;}
.y94{bottom:1040.910000px;}
.yc0{bottom:1041.810000px;}
.y161{bottom:1051.530000px;}
.y6c{bottom:1057.830000px;}
.y92{bottom:1061.070000px;}
.y93{bottom:1064.850000px;}
.y160{bottom:1068.090000px;}
.y6b{bottom:1078.170000px;}
.ybf{bottom:1079.070000px;}
.y11e{bottom:1081.950000px;}
.y15f{bottom:1084.830000px;}
.y6a{bottom:1098.510000px;}
.y15e{bottom:1101.390000px;}
.y23{bottom:1131.840000px;}
.y68{bottom:1164.060000px;}
.h1a{height:17.625000px;}
.ha{height:31.324219px;}
.h7{height:32.130000px;}
.h18{height:34.746328px;}
.h17{height:36.336094px;}
.h15{height:40.843828px;}
.h14{height:41.974453px;}
.h1b{height:45.060117px;}
.h11{height:45.720703px;}
.h6{height:45.900000px;}
.h12{height:46.933594px;}
.h19{height:46.986328px;}
.h1f{height:47.111625px;}
.h3{height:48.195000px;}
.h1c{height:51.998203px;}
.h2{height:55.080000px;}
.h13{height:56.084062px;}
.h1d{height:57.571875px;}
.hb{height:57.636562px;}
.hf{height:73.298672px;}
.h5{height:78.030000px;}
.hc{height:81.078047px;}
.hd{height:86.564531px;}
.he{height:88.960781px;}
.h4{height:119.055004px;}
.h9{height:145.940977px;}
.h10{height:294.510000px;}
.h1e{height:307.080000px;}
.h20{height:404.100000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.h16{height:1263.044910px;}
.h8{height:1263.060000px;}
.w5{width:12.780000px;}
.w4{width:329.595000px;}
.w6{width:338.115000px;}
.wa{width:594.720000px;}
.w9{width:623.160000px;}
.w2{width:637.794021px;}
.w8{width:664.290000px;}
.w0{width:892.912500px;}
.w7{width:892.957500px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:4.131000px;}
.x12{left:10.791000px;}
.x32{left:20.085000px;}
.x33{left:46.545000px;}
.x54{left:53.025000px;}
.x34{left:65.550000px;}
.x55{left:69.870000px;}
.x35{left:84.600000px;}
.x56{left:86.730000px;}
.x6d{left:91.410000px;}
.x1{left:102.045000px;}
.x36{left:103.650000px;}
.x4e{left:105.270000px;}
.x2{left:106.297500px;}
.x11{left:111.456000px;}
.x2c{left:116.496000px;}
.x57{left:120.390000px;}
.x37{left:122.655000px;}
.x13{left:133.236000px;}
.x31{left:134.820000px;}
.x2f{left:136.116000px;}
.x58{left:137.235000px;}
.x38{left:141.690000px;}
.x7{left:147.636000px;}
.x53{left:149.040000px;}
.x28{left:152.647500px;}
.x59{left:154.080000px;}
.x39{left:160.740000px;}
.x29{left:164.190000px;}
.x6{left:171.570000px;}
.x3a{left:179.790000px;}
.x5a{left:187.740000px;}
.x5{left:196.410000px;}
.x3b{left:198.795000px;}
.x4{left:203.484001px;}
.x5b{left:204.585000px;}
.x51{left:208.110000px;}
.x8{left:218.550000px;}
.x5c{left:221.400000px;}
.x3c{left:236.880000px;}
.x5d{left:238.245000px;}
.x26{left:241.207500px;}
.x19{left:249.667500px;}
.x27{left:252.750000px;}
.x1a{left:255.450000px;}
.x5e{left:271.905000px;}
.x3d{left:274.935000px;}
.x2d{left:286.972500px;}
.x5f{left:288.750000px;}
.x3e{left:293.970000px;}
.xa{left:296.895000px;}
.x2e{left:298.515000px;}
.x60{left:305.610000px;}
.x9{left:313.095000px;}
.x10{left:322.455000px;}
.x3f{left:332.025000px;}
.x1d{left:333.052500px;}
.x1e{left:338.835000px;}
.x40{left:351.075000px;}
.x61{left:356.115000px;}
.x41{left:370.110000px;}
.x62{left:372.930000px;}
.x1b{left:385.072500px;}
.x42{left:389.130000px;}
.x1c{left:390.855000px;}
.x63{left:406.620000px;}
.x43{left:408.165000px;}
.x64{left:423.435000px;}
.x44{left:427.215000px;}
.xc{left:436.035000px;}
.x65{left:440.280000px;}
.x45{left:446.220000px;}
.xd{left:448.815000px;}
.x3{left:454.959000px;}
.x66{left:457.125000px;}
.x46{left:465.270000px;}
.x67{left:473.940000px;}
.x47{left:484.305000px;}
.x68{left:490.785000px;}
.x21{left:495.442500px;}
.x22{left:501.225000px;}
.x48{left:503.355000px;}
.x69{left:507.630000px;}
.x49{left:522.360000px;}
.x6a{left:524.445000px;}
.x4a{left:541.410000px;}
.x6b{left:558.150000px;}
.x4b{left:560.445000px;}
.x6c{left:574.995000px;}
.x4c{left:579.450000px;}
.x1f{left:595.522500px;}
.x4d{left:598.500000px;}
.x20{left:601.305000px;}
.x16{left:669.390000px;}
.x4f{left:674.227500px;}
.x50{left:685.770000px;}
.xe{left:687.007500px;}
.xf{left:692.790000px;}
.x24{left:726.427500px;}
.x2a{left:731.287500px;}
.x25{left:737.970000px;}
.x2b{left:742.830000px;}
.x52{left:744.090000px;}
.x14{left:745.687500px;}
.x15{left:751.470000px;}
.x23{left:756.510000px;}
.x30{left:758.310000px;}
.x6e{left:775.387500px;}
.x17{left:781.147500px;}
.x18{left:786.930000px;}
@media print{
.v2{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.440000pt;}
.v1{vertical-align:18.560000pt;}
.ls21{letter-spacing:-0.880000pt;}
.ls1d{letter-spacing:-0.597333pt;}
.lsd{letter-spacing:-0.576000pt;}
.ls10{letter-spacing:-0.549333pt;}
.ls5{letter-spacing:-0.352000pt;}
.ls20{letter-spacing:-0.240000pt;}
.lsc{letter-spacing:-0.207467pt;}
.ls9{letter-spacing:-0.201067pt;}
.ls1e{letter-spacing:-0.192000pt;}
.ls1a{letter-spacing:-0.176000pt;}
.ls3{letter-spacing:-0.153600pt;}
.ls16{letter-spacing:-0.092267pt;}
.ls18{letter-spacing:-0.084267pt;}
.ls6{letter-spacing:-0.075733pt;}
.ls23{letter-spacing:-0.048000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.020480pt;}
.ls4{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.069760pt;}
.lsa{letter-spacing:0.094933pt;}
.lse{letter-spacing:0.106667pt;}
.ls1f{letter-spacing:0.112000pt;}
.lsf{letter-spacing:0.122880pt;}
.ls7{letter-spacing:0.153600pt;}
.ls19{letter-spacing:0.192000pt;}
.ls13{letter-spacing:0.218667pt;}
.ls1c{letter-spacing:0.288000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls22{letter-spacing:0.400000pt;}
.lsb{letter-spacing:1.926400pt;}
.ls17{letter-spacing:2.406400pt;}
.ls12{letter-spacing:3.520000pt;}
.ls14{letter-spacing:4.966400pt;}
.ls1b{letter-spacing:10.086400pt;}
.ls11{letter-spacing:21.606400pt;}
.ls8{letter-spacing:180.851200pt;}
.ws4{word-spacing:-16.473600pt;}
.wsb{word-spacing:-13.273600pt;}
.wsa{word-spacing:-13.048533pt;}
.ws5{word-spacing:-12.953600pt;}
.ws9{word-spacing:-10.947733pt;}
.ws14{word-spacing:-10.848000pt;}
.ws13{word-spacing:-10.672000pt;}
.wsd{word-spacing:-10.588160pt;}
.ws6{word-spacing:-10.560000pt;}
.ws15{word-spacing:-10.512000pt;}
.ws12{word-spacing:-10.368000pt;}
.ws3{word-spacing:-10.208000pt;}
.ws7{word-spacing:-9.433600pt;}
.ws8{word-spacing:-9.357867pt;}
.wsc{word-spacing:-8.166400pt;}
.ws2{word-spacing:-7.104000pt;}
.ws1{word-spacing:-7.040000pt;}
.ws0{word-spacing:0.000000pt;}
.wse{word-spacing:154.789333pt;}
.wsf{word-spacing:154.842667pt;}
.ws11{word-spacing:155.072000pt;}
.ws10{word-spacing:155.696000pt;}
._13{margin-left:-69.141013pt;}
._19{margin-left:-3.856640pt;}
._5{margin-left:-2.796800pt;}
._0{margin-left:-1.388800pt;}
._2{width:1.152000pt;}
._1{width:2.048000pt;}
._3{width:3.200000pt;}
._4{width:4.384000pt;}
._12{width:5.287467pt;}
._6{width:6.384000pt;}
._10{width:7.412907pt;}
._14{width:8.655360pt;}
._11{width:10.009600pt;}
._c{width:11.472000pt;}
._b{width:12.384000pt;}
._9{width:13.824000pt;}
._8{width:15.020800pt;}
._1a{width:15.928960pt;}
._7{width:16.944000pt;}
._15{width:18.574080pt;}
._e{width:19.772800pt;}
._d{width:20.880000pt;}
._1b{width:22.644480pt;}
._20{width:23.552000pt;}
._21{width:25.020160pt;}
._1e{width:26.167040pt;}
._1d{width:27.296000pt;}
._1c{width:28.968960pt;}
._a{width:30.192000pt;}
._f{width:32.176640pt;}
._16{width:85.550507pt;}
._1f{width:166.288000pt;}
._18{width:181.713067pt;}
._17{width:182.726400pt;}
.fs7{font-size:32.000000pt;}
.fsd{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fsc{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fsf{font-size:48.128000pt;}
.fse{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fsb{font-size:74.880000pt;}
.fs9{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.fsa{font-size:90.880000pt;}
.fs6{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y67{bottom:4.320000pt;}
.y11d{bottom:14.946667pt;}
.y136{bottom:15.013333pt;}
.y3c{bottom:24.800000pt;}
.y6{bottom:31.933340pt;}
.y4d{bottom:33.120000pt;}
.y11c{bottom:38.373333pt;}
.y135{bottom:38.426667pt;}
.y3b{bottom:39.520000pt;}
.y4c{bottom:46.240000pt;}
.y3a{bottom:54.426667pt;}
.y5{bottom:59.133337pt;}
.y4b{bottom:63.386667pt;}
.y113{bottom:68.773333pt;}
.y12c{bottom:68.826667pt;}
.y39{bottom:69.146667pt;}
.y25{bottom:69.792000pt;}
.y4a{bottom:76.506667pt;}
.y69{bottom:77.952000pt;}
.y24{bottom:79.232000pt;}
.y38{bottom:83.866667pt;}
.y4{bottom:86.333337pt;}
.y49{bottom:89.626667pt;}
.y114{bottom:91.973333pt;}
.y37{bottom:98.746667pt;}
.y12d{bottom:102.813333pt;}
.y48{bottom:106.746667pt;}
.y36{bottom:113.466667pt;}
.y115{bottom:115.173333pt;}
.y47{bottom:119.866667pt;}
.y22{bottom:123.790666pt;}
.y35{bottom:128.186667pt;}
.y65{bottom:135.706667pt;}
.y12e{bottom:136.773333pt;}
.y46{bottom:136.986667pt;}
.y116{bottom:138.333333pt;}
.yec{bottom:138.426667pt;}
.y34{bottom:143.066667pt;}
.y13a{bottom:145.786667pt;}
.y111{bottom:150.266667pt;}
.y64{bottom:150.426667pt;}
.y192{bottom:151.706667pt;}
.y101{bottom:153.146667pt;}
.y45{bottom:154.106667pt;}
.y33{bottom:157.786667pt;}
.y117{bottom:161.533333pt;}
.y139{bottom:163.866667pt;}
.y63{bottom:165.146667pt;}
.y191{bottom:166.426667pt;}
.y44{bottom:167.226667pt;}
.yeb{bottom:167.866667pt;}
.y12f{bottom:170.746667pt;}
.y32{bottom:172.506667pt;}
.y19{bottom:175.052000pt;}
.y15d{bottom:175.066667pt;}
.yea{bottom:179.866667pt;}
.y62{bottom:180.026667pt;}
.y43{bottom:180.346667pt;}
.y190{bottom:181.146667pt;}
.y138{bottom:181.946667pt;}
.y91{bottom:182.746667pt;}
.y118{bottom:184.733333pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y31{bottom:187.386667pt;}
.y140{bottom:188.986667pt;}
.y15c{bottom:189.946667pt;}
.y42{bottom:193.946667pt;}
.y90{bottom:194.586667pt;}
.y61{bottom:194.746667pt;}
.y18f{bottom:196.026667pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y137{bottom:200.026667pt;}
.y30{bottom:202.106667pt;}
.y15b{bottom:204.666667pt;}
.y130{bottom:204.733333pt;}
.y13f{bottom:207.066667pt;}
.y119{bottom:207.933333pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y60{bottom:209.466667pt;}
.y18e{bottom:210.746667pt;}
.y5f{bottom:212.186667pt;}
.y41{bottom:212.346667pt;}
.ye9{bottom:214.106667pt;}
.y12a{bottom:215.066667pt;}
.y2f{bottom:216.826667pt;}
.ybe{bottom:218.106667pt;}
.y110{bottom:219.066667pt;}
.y15a{bottom:219.386667pt;}
.y5e{bottom:224.346667pt;}
.y100{bottom:225.146667pt;}
.y40{bottom:225.466667pt;}
.yb8{bottom:228.026667pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y11a{bottom:231.133333pt;}
.y2e{bottom:231.706667pt;}
.y3d{bottom:231.866667pt;}
.ye8{bottom:232.026667pt;}
.y129{bottom:232.986667pt;}
.y10f{bottom:233.786667pt;}
.y159{bottom:234.266667pt;}
.ybd{bottom:236.026667pt;}
.y3f{bottom:238.586667pt;}
.y131{bottom:238.693333pt;}
.y5d{bottom:239.066667pt;}
.y18d{bottom:240.346667pt;}
.y10a{bottom:241.786667pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.yff{bottom:243.066667pt;}
.yb7{bottom:246.106667pt;}
.y158{bottom:248.986667pt;}
.ye7{bottom:250.106667pt;}
.y2d{bottom:250.426667pt;}
.y128{bottom:251.066667pt;}
.y3e{bottom:251.706667pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y5c{bottom:253.786667pt;}
.ybc{bottom:254.106667pt;}
.y11b{bottom:254.333333pt;}
.y18c{bottom:255.066667pt;}
.y109{bottom:256.506667pt;}
.yfe{bottom:261.146667pt;}
.y10e{bottom:262.106667pt;}
.y112{bottom:262.240000pt;}
.y157{bottom:263.706667pt;}
.yb6{bottom:264.026667pt;}
.ye6{bottom:268.186667pt;}
.y108{bottom:268.506667pt;}
.y5b{bottom:268.666667pt;}
.y127{bottom:269.146667pt;}
.y18b{bottom:269.786667pt;}
.ybb{bottom:272.186667pt;}
.y132{bottom:272.666667pt;}
.y103{bottom:275.546667pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y156{bottom:278.586667pt;}
.yfd{bottom:279.226667pt;}
.y5a{bottom:283.386667pt;}
.y18a{bottom:284.666667pt;}
.ye5{bottom:286.266667pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y126{bottom:287.226667pt;}
.yba{bottom:290.266667pt;}
.y155{bottom:293.346667pt;}
.yb5{bottom:297.346667pt;}
.y59{bottom:298.146667pt;}
.y189{bottom:299.426667pt;}
.ye4{bottom:304.386667pt;}
.y125{bottom:305.346667pt;}
.y133{bottom:306.653333pt;}
.y154{bottom:308.066667pt;}
.yb9{bottom:308.386667pt;}
.y10{bottom:309.452000pt;}
.y58{bottom:313.026667pt;}
.y188{bottom:314.146667pt;}
.yfb{bottom:315.426667pt;}
.yfc{bottom:318.786667pt;}
.ye3{bottom:322.466667pt;}
.y153{bottom:322.946667pt;}
.y124{bottom:323.426667pt;}
.y8f{bottom:326.466667pt;}
.y57{bottom:327.746667pt;}
.y187{bottom:329.026667pt;}
.yfa{bottom:333.506667pt;}
.y152{bottom:337.666667pt;}
.ye2{bottom:340.386667pt;}
.y134{bottom:340.613333pt;}
.y56{bottom:342.466667pt;}
.y186{bottom:343.746667pt;}
.yf{bottom:343.809333pt;}
.y8e{bottom:344.546667pt;}
.yb4{bottom:347.426667pt;}
.y123{bottom:348.706667pt;}
.yf9{bottom:351.426667pt;}
.y151{bottom:352.386667pt;}
.y55{bottom:357.346667pt;}
.ye1{bottom:358.466667pt;}
.y8d{bottom:362.466667pt;}
.ye{bottom:362.706666pt;}
.y122{bottom:363.426667pt;}
.yb3{bottom:365.506667pt;}
.y150{bottom:367.106667pt;}
.yf8{bottom:369.506667pt;}
.y185{bottom:373.346667pt;}
.y54{bottom:374.786667pt;}
.ye0{bottom:376.546667pt;}
.y8c{bottom:380.546667pt;}
.y14f{bottom:381.986667pt;}
.yb2{bottom:383.426667pt;}
.y102{bottom:383.906667pt;}
.y193{bottom:385.506667pt;}
.y53{bottom:386.626667pt;}
.yf7{bottom:387.586667pt;}
.y184{bottom:388.066667pt;}
.y121{bottom:391.746667pt;}
.y12b{bottom:392.640000pt;}
.ydf{bottom:394.626667pt;}
.y14e{bottom:396.706667pt;}
.y8b{bottom:398.626667pt;}
.yb1{bottom:401.506667pt;}
.y183{bottom:402.786667pt;}
.yf6{bottom:405.666667pt;}
.y52{bottom:408.706667pt;}
.y107{bottom:409.026667pt;}
.y14d{bottom:411.426667pt;}
.yde{bottom:412.706667pt;}
.y8a{bottom:416.706667pt;}
.y182{bottom:417.666667pt;}
.yb0{bottom:419.586667pt;}
.yf5{bottom:423.746667pt;}
.y14c{bottom:426.306667pt;}
.y50{bottom:426.786667pt;}
.y51{bottom:430.146667pt;}
.ydd{bottom:430.786667pt;}
.y181{bottom:432.386667pt;}
.y89{bottom:434.786667pt;}
.yaf{bottom:437.666667pt;}
.y14b{bottom:441.026667pt;}
.yf4{bottom:441.826667pt;}
.y4f{bottom:444.866667pt;}
.yd{bottom:446.990669pt;}
.y180{bottom:447.106667pt;}
.ydc{bottom:448.706667pt;}
.y88{bottom:452.866667pt;}
.yae{bottom:455.746667pt;}
.yf3{bottom:459.746667pt;}
.y17f{bottom:461.986667pt;}
.y4e{bottom:462.946667pt;}
.yc{bottom:462.990669pt;}
.ydb{bottom:466.786667pt;}
.y14a{bottom:470.626667pt;}
.y87{bottom:470.786667pt;}
.yad{bottom:473.826667pt;}
.y106{bottom:474.946667pt;}
.y17e{bottom:476.706667pt;}
.y2c{bottom:476.866667pt;}
.yf2{bottom:477.826667pt;}
.yb{bottom:478.990666pt;}
.yda{bottom:484.866667pt;}
.y149{bottom:485.346667pt;}
.y86{bottom:488.866667pt;}
.y17d{bottom:491.426667pt;}
.yac{bottom:491.746667pt;}
.ya{bottom:494.990666pt;}
.yf1{bottom:495.906667pt;}
.y13e{bottom:499.266667pt;}
.y148{bottom:500.066667pt;}
.yd9{bottom:502.946667pt;}
.y17c{bottom:506.306667pt;}
.y85{bottom:506.946667pt;}
.yab{bottom:509.826667pt;}
.yf0{bottom:513.986667pt;}
.y147{bottom:514.946667pt;}
.yd7{bottom:521.026667pt;}
.yd8{bottom:524.386667pt;}
.y84{bottom:525.026667pt;}
.yaa{bottom:527.906667pt;}
.y146{bottom:529.693333pt;}
.yef{bottom:532.093333pt;}
.y17b{bottom:535.773333pt;}
.yd5{bottom:539.133333pt;}
.yd6{bottom:542.493333pt;}
.y83{bottom:543.133333pt;}
.y145{bottom:544.413333pt;}
.ya9{bottom:546.013333pt;}
.y13d{bottom:550.173333pt;}
.y17a{bottom:550.653333pt;}
.y10d{bottom:555.133333pt;}
.yd4{bottom:557.053333pt;}
.y144{bottom:559.293333pt;}
.y82{bottom:561.213333pt;}
.ya8{bottom:564.093333pt;}
.yee{bottom:565.213333pt;}
.y179{bottom:565.373333pt;}
.y13c{bottom:568.093333pt;}
.y10c{bottom:573.213333pt;}
.y9{bottom:573.786667pt;}
.y143{bottom:574.013333pt;}
.yd3{bottom:575.133333pt;}
.y81{bottom:579.133333pt;}
.y178{bottom:580.093333pt;}
.ya7{bottom:582.173333pt;}
.y142{bottom:588.733333pt;}
.y8{bottom:592.685334pt;}
.yd2{bottom:593.213333pt;}
.y177{bottom:594.813333pt;}
.y80{bottom:597.213333pt;}
.ya6{bottom:600.093333pt;}
.y13b{bottom:601.373333pt;}
.y176{bottom:609.693333pt;}
.yd1{bottom:611.293333pt;}
.y7e{bottom:615.293333pt;}
.ya5{bottom:618.173333pt;}
.y7f{bottom:618.653333pt;}
.y141{bottom:619.453333pt;}
.y175{bottom:624.413333pt;}
.yd0{bottom:629.373333pt;}
.y7d{bottom:633.373333pt;}
.ya4{bottom:636.253333pt;}
.yed{bottom:636.733333pt;}
.y174{bottom:639.133333pt;}
.y7{bottom:645.598667pt;}
.ycf{bottom:647.453333pt;}
.y7c{bottom:651.453333pt;}
.y173{bottom:654.013333pt;}
.ya3{bottom:654.333333pt;}
.y10b{bottom:654.813333pt;}
.yce{bottom:665.533333pt;}
.y172{bottom:668.733333pt;}
.y3{bottom:668.977329pt;}
.y7b{bottom:669.533333pt;}
.ya2{bottom:672.413333pt;}
.ycd{bottom:683.453333pt;}
.y7a{bottom:687.453333pt;}
.ya1{bottom:690.493333pt;}
.y171{bottom:698.333333pt;}
.ycc{bottom:701.533333pt;}
.y79{bottom:705.533333pt;}
.ya0{bottom:708.573333pt;}
.y170{bottom:713.053333pt;}
.ycb{bottom:719.613333pt;}
.y78{bottom:723.613333pt;}
.y9f{bottom:726.493333pt;}
.y16f{bottom:727.773333pt;}
.y77{bottom:741.693333pt;}
.y16e{bottom:742.653333pt;}
.y9e{bottom:744.573333pt;}
.yca{bottom:745.373333pt;}
.y16d{bottom:757.373333pt;}
.y76{bottom:759.773333pt;}
.y2b{bottom:760.093333pt;}
.yc9{bottom:761.693333pt;}
.y9d{bottom:762.653333pt;}
.y120{bottom:771.973333pt;}
.y16c{bottom:772.133333pt;}
.y75{bottom:777.893333pt;}
.yc8{bottom:778.213333pt;}
.y9c{bottom:780.773333pt;}
.y2{bottom:781.661334pt;}
.y16b{bottom:787.013333pt;}
.y11f{bottom:789.893333pt;}
.yc7{bottom:794.533333pt;}
.y74{bottom:795.973333pt;}
.y9b{bottom:798.853333pt;}
.y2a{bottom:800.133333pt;}
.y16a{bottom:801.733333pt;}
.yc6{bottom:811.013333pt;}
.y73{bottom:813.893333pt;}
.y169{bottom:816.453333pt;}
.y9a{bottom:816.933333pt;}
.y29{bottom:827.973333pt;}
.y168{bottom:831.333333pt;}
.y72{bottom:831.973333pt;}
.y99{bottom:834.853333pt;}
.yc5{bottom:835.813333pt;}
.y167{bottom:846.053333pt;}
.y71{bottom:850.053333pt;}
.y98{bottom:852.933333pt;}
.yc4{bottom:853.893333pt;}
.y28{bottom:855.973333pt;}
.y1{bottom:859.312000pt;}
.y166{bottom:860.773333pt;}
.y70{bottom:868.133333pt;}
.y97{bottom:871.013333pt;}
.y105{bottom:871.493333pt;}
.yc3{bottom:871.813333pt;}
.y165{bottom:875.653333pt;}
.y6f{bottom:886.213333pt;}
.y96{bottom:889.093333pt;}
.yc2{bottom:889.893333pt;}
.y164{bottom:890.373333pt;}
.y66{bottom:897.893333pt;}
.y27{bottom:899.493333pt;}
.y6e{bottom:904.293333pt;}
.y163{bottom:905.093333pt;}
.y95{bottom:907.173333pt;}
.y104{bottom:907.653333pt;}
.yc1{bottom:907.973333pt;}
.y162{bottom:919.973333pt;}
.y6d{bottom:922.213333pt;}
.y26{bottom:922.533333pt;}
.y94{bottom:925.253333pt;}
.yc0{bottom:926.053333pt;}
.y161{bottom:934.693333pt;}
.y6c{bottom:940.293333pt;}
.y92{bottom:943.173333pt;}
.y93{bottom:946.533333pt;}
.y160{bottom:949.413333pt;}
.y6b{bottom:958.373333pt;}
.ybf{bottom:959.173333pt;}
.y11e{bottom:961.733333pt;}
.y15f{bottom:964.293333pt;}
.y6a{bottom:976.453333pt;}
.y15e{bottom:979.013333pt;}
.y23{bottom:1006.080000pt;}
.y68{bottom:1034.720000pt;}
.h1a{height:15.666667pt;}
.ha{height:27.843750pt;}
.h7{height:28.560000pt;}
.h18{height:30.885625pt;}
.h17{height:32.298750pt;}
.h15{height:36.305625pt;}
.h14{height:37.310625pt;}
.h1b{height:40.053437pt;}
.h11{height:40.640625pt;}
.h6{height:40.800000pt;}
.h12{height:41.718750pt;}
.h19{height:41.765625pt;}
.h1f{height:41.877000pt;}
.h3{height:42.840000pt;}
.h1c{height:46.220625pt;}
.h2{height:48.960000pt;}
.h13{height:49.852500pt;}
.h1d{height:51.175000pt;}
.hb{height:51.232500pt;}
.hf{height:65.154375pt;}
.h5{height:69.360000pt;}
.hc{height:72.069375pt;}
.hd{height:76.946250pt;}
.he{height:79.076250pt;}
.h4{height:105.826671pt;}
.h9{height:129.725313pt;}
.h10{height:261.786667pt;}
.h1e{height:272.960000pt;}
.h20{height:359.200000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.h16{height:1122.706587pt;}
.h8{height:1122.720000pt;}
.w5{width:11.360000pt;}
.w4{width:292.973333pt;}
.w6{width:300.546667pt;}
.wa{width:528.640000pt;}
.w9{width:553.920000pt;}
.w2{width:566.928019pt;}
.w8{width:590.480000pt;}
.w0{width:793.700000pt;}
.w7{width:793.740000pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:3.672000pt;}
.x12{left:9.592000pt;}
.x32{left:17.853333pt;}
.x33{left:41.373333pt;}
.x54{left:47.133333pt;}
.x34{left:58.266667pt;}
.x55{left:62.106667pt;}
.x35{left:75.200000pt;}
.x56{left:77.093333pt;}
.x6d{left:81.253333pt;}
.x1{left:90.706667pt;}
.x36{left:92.133333pt;}
.x4e{left:93.573333pt;}
.x2{left:94.486667pt;}
.x11{left:99.072000pt;}
.x2c{left:103.552000pt;}
.x57{left:107.013333pt;}
.x37{left:109.026667pt;}
.x13{left:118.432000pt;}
.x31{left:119.840000pt;}
.x2f{left:120.992000pt;}
.x58{left:121.986667pt;}
.x38{left:125.946667pt;}
.x7{left:131.232000pt;}
.x53{left:132.480000pt;}
.x28{left:135.686667pt;}
.x59{left:136.960000pt;}
.x39{left:142.880000pt;}
.x29{left:145.946667pt;}
.x6{left:152.506667pt;}
.x3a{left:159.813333pt;}
.x5a{left:166.880000pt;}
.x5{left:174.586667pt;}
.x3b{left:176.706667pt;}
.x4{left:180.874667pt;}
.x5b{left:181.853333pt;}
.x51{left:184.986667pt;}
.x8{left:194.266667pt;}
.x5c{left:196.800000pt;}
.x3c{left:210.560000pt;}
.x5d{left:211.773333pt;}
.x26{left:214.406667pt;}
.x19{left:221.926667pt;}
.x27{left:224.666667pt;}
.x1a{left:227.066667pt;}
.x5e{left:241.693333pt;}
.x3d{left:244.386667pt;}
.x2d{left:255.086667pt;}
.x5f{left:256.666667pt;}
.x3e{left:261.306667pt;}
.xa{left:263.906667pt;}
.x2e{left:265.346667pt;}
.x60{left:271.653333pt;}
.x9{left:278.306667pt;}
.x10{left:286.626667pt;}
.x3f{left:295.133333pt;}
.x1d{left:296.046667pt;}
.x1e{left:301.186667pt;}
.x40{left:312.066667pt;}
.x61{left:316.546667pt;}
.x41{left:328.986667pt;}
.x62{left:331.493333pt;}
.x1b{left:342.286667pt;}
.x42{left:345.893333pt;}
.x1c{left:347.426667pt;}
.x63{left:361.440000pt;}
.x43{left:362.813333pt;}
.x64{left:376.386667pt;}
.x44{left:379.746667pt;}
.xc{left:387.586667pt;}
.x65{left:391.360000pt;}
.x45{left:396.640000pt;}
.xd{left:398.946667pt;}
.x3{left:404.408000pt;}
.x66{left:406.333333pt;}
.x46{left:413.573333pt;}
.x67{left:421.280000pt;}
.x47{left:430.493333pt;}
.x68{left:436.253333pt;}
.x21{left:440.393333pt;}
.x22{left:445.533333pt;}
.x48{left:447.426667pt;}
.x69{left:451.226667pt;}
.x49{left:464.320000pt;}
.x6a{left:466.173333pt;}
.x4a{left:481.253333pt;}
.x6b{left:496.133333pt;}
.x4b{left:498.173333pt;}
.x6c{left:511.106667pt;}
.x4c{left:515.066667pt;}
.x1f{left:529.353333pt;}
.x4d{left:532.000000pt;}
.x20{left:534.493333pt;}
.x16{left:595.013333pt;}
.x4f{left:599.313333pt;}
.x50{left:609.573333pt;}
.xe{left:610.673333pt;}
.xf{left:615.813333pt;}
.x24{left:645.713333pt;}
.x2a{left:650.033333pt;}
.x25{left:655.973333pt;}
.x2b{left:660.293333pt;}
.x52{left:661.413333pt;}
.x14{left:662.833333pt;}
.x15{left:667.973333pt;}
.x23{left:672.453333pt;}
.x30{left:674.053333pt;}
.x6e{left:689.233333pt;}
.x17{left:694.353333pt;}
.x18{left:699.493333pt;}
}




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