
    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_a803a531362ff2efa22f2682.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_6651534d7c94c824a3c5f8ec.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.750000;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_4ed69bce181157e6d1451f7d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.940430;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_5f6e8f95794e036869ec306a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_23b67ed6a04a599e3e3cdce5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_524bd39703e1d5922e035d50.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_d8dd0409cbdbe9e8e4fc7417.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e4eb13adb56c487d164759d9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.908203;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_cc4d223ac275605607e522c1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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);}
.v1{vertical-align:-69.120000px;}
.v2{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:27.360000px;}
.ls24{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.460200px;}
.ls18{letter-spacing:-0.360000px;}
.ls22{letter-spacing:-0.259800px;}
.ls21{letter-spacing:-0.240600px;}
.lsf{letter-spacing:-0.206400px;}
.ls15{letter-spacing:-0.106800px;}
.lsd{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.053280px;}
.lsa{letter-spacing:0.106800px;}
.ls19{letter-spacing:0.153600px;}
.ls5{letter-spacing:0.180000px;}
.lse{letter-spacing:0.206400px;}
.ls23{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.259920px;}
.ls1{letter-spacing:0.298800px;}
.lsc{letter-spacing:0.306720px;}
.ls1c{letter-spacing:0.311760px;}
.ls28{letter-spacing:0.319680px;}
.ls2{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.431760px;}
.ls17{letter-spacing:0.466800px;}
.ls29{letter-spacing:0.480000px;}
.ls25{letter-spacing:0.540000px;}
.ls10{letter-spacing:0.612000px;}
.ls11{letter-spacing:0.828000px;}
.ls20{letter-spacing:0.900000px;}
.ls16{letter-spacing:0.924000px;}
.ls27{letter-spacing:1.080000px;}
.ls26{letter-spacing:1.200000px;}
.ls8{letter-spacing:2.748000px;}
.ls0{letter-spacing:2.880000px;}
.ls7{letter-spacing:3.144000px;}
.ls1d{letter-spacing:3.780000px;}
.ls1f{letter-spacing:8.100000px;}
.ls1e{letter-spacing:17.460000px;}
.ls4{letter-spacing:93.060000px;}
.lsb{letter-spacing:201.036000px;}
.ls13{letter-spacing:822.576000px;}
.ls12{letter-spacing:866.496000px;}
.ls1a{letter-spacing:896.760000px;}
.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;}
}
.ws0{word-spacing:-19.642080px;}
.ws14{word-spacing:-16.020000px;}
.wsd{word-spacing:-15.864000px;}
.wsa{word-spacing:-15.552000px;}
.wse{word-spacing:-15.406800px;}
.ws1{word-spacing:-15.300000px;}
.ws3{word-spacing:-15.238800px;}
.ws13{word-spacing:-15.199800px;}
.ws7{word-spacing:-15.146400px;}
.ws10{word-spacing:-15.120000px;}
.wsf{word-spacing:-15.093600px;}
.ws4{word-spacing:-15.046800px;}
.wsb{word-spacing:-14.993280px;}
.ws9{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.wsc{word-spacing:-14.833200px;}
.ws11{word-spacing:-14.699400px;}
.ws12{word-spacing:-14.680200px;}
.ws15{word-spacing:-14.580000px;}
.ws2{word-spacing:-14.479800px;}
.ws8{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._26{margin-left:-2.550480px;}
._3{margin-left:-1.314720px;}
._1{width:1.842960px;}
._0{width:2.914560px;}
._2{width:4.384800px;}
._e{width:5.571840px;}
._b{width:6.693120px;}
._9{width:7.957680px;}
._8{width:9.561600px;}
._f{width:11.115360px;}
._11{width:12.200400px;}
._12{width:13.874640px;}
._16{width:15.990000px;}
._14{width:17.796000px;}
._15{width:19.058880px;}
._17{width:20.289360px;}
._c{width:21.642720px;}
._d{width:23.416320px;}
._1a{width:25.099200px;}
._a{width:26.294400px;}
._19{width:27.389280px;}
._18{width:28.565280px;}
._24{width:29.641440px;}
._6{width:31.074960px;}
._7{width:32.160720px;}
._13{width:33.852960px;}
._10{width:34.959600px;}
._25{width:36.095040px;}
._1d{width:37.469520px;}
._20{width:41.589360px;}
._1f{width:42.738000px;}
._1b{width:46.675920px;}
._23{width:55.705920px;}
._1c{width:77.242320px;}
._21{width:78.464880px;}
._1e{width:147.060000px;}
._22{width:270.033120px;}
._4{width:1042.896000px;}
._5{width:1141.680000px;}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(0,176,80);}
.fc3{color:rgb(34,34,34);}
.fc2{color:rgb(37,37,37);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(68,84,106);}
.fs5{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.y163{bottom:-4.860000px;}
.y0{bottom:0.000000px;}
.y7{bottom:2.700000px;}
.y10c{bottom:3.240000px;}
.y11{bottom:3.420000px;}
.ybc{bottom:3.600000px;}
.y1ba{bottom:3.630000px;}
.y17{bottom:3.780000px;}
.y104{bottom:3.825000px;}
.y6{bottom:4.140000px;}
.yb7{bottom:4.320000px;}
.yb5{bottom:4.680000px;}
.yb8{bottom:4.860000px;}
.y5{bottom:8.100000px;}
.y3{bottom:12.780000px;}
.y31{bottom:20.520000px;}
.y1b4{bottom:20.880000px;}
.y1b9{bottom:20.910000px;}
.y16{bottom:21.060000px;}
.y29{bottom:22.500000px;}
.y2{bottom:28.980000px;}
.y2c{bottom:37.980000px;}
.y15{bottom:38.160000px;}
.y1b8{bottom:38.190000px;}
.y2b{bottom:38.340000px;}
.y28{bottom:39.780000px;}
.y1b3{bottom:55.080000px;}
.y1b7{bottom:55.110000px;}
.y14{bottom:55.440000px;}
.yb{bottom:56.700000px;}
.y27{bottom:56.880000px;}
.y13{bottom:72.360000px;}
.y1b6{bottom:72.390000px;}
.y18{bottom:72.720000px;}
.ya{bottom:73.980000px;}
.y26{bottom:74.160000px;}
.y30{bottom:90.000000px;}
.y25{bottom:91.440000px;}
.y2f{bottom:107.280000px;}
.y24{bottom:108.720000px;}
.yba{bottom:112.356000px;}
.y54{bottom:116.496000px;}
.y91{bottom:123.336000px;}
.yf3{bottom:124.236000px;}
.y2e{bottom:124.380000px;}
.y23{bottom:126.000000px;}
.y12f{bottom:127.116000px;}
.y53{bottom:133.776000px;}
.y189{bottom:134.676000px;}
.yb9{bottom:135.936000px;}
.y90{bottom:140.616000px;}
.y2d{bottom:141.345000px;}
.yf2{bottom:141.516000px;}
.y22{bottom:143.145000px;}
.y12e{bottom:144.396000px;}
.y52{bottom:150.870000px;}
.y188{bottom:151.950000px;}
.y1a9{bottom:157.530000px;}
.y8f{bottom:157.890000px;}
.yb6{bottom:158.790000px;}
.y21{bottom:160.425000px;}
.y12d{bottom:161.670000px;}
.y51{bottom:168.150000px;}
.y187{bottom:169.050000px;}
.y1a8{bottom:174.810000px;}
.y8e{bottom:175.170000px;}
.yf1{bottom:176.790000px;}
.y20{bottom:177.705000px;}
.y12c{bottom:178.950000px;}
.yb4{bottom:181.650000px;}
.y50{bottom:185.430000px;}
.y186{bottom:186.330000px;}
.y18e{bottom:192.090000px;}
.y8d{bottom:192.450000px;}
.yf0{bottom:194.790000px;}
.y1f{bottom:194.985000px;}
.y12b{bottom:196.050000px;}
.y4f{bottom:202.710000px;}
.y185{bottom:203.610000px;}
.yb3{bottom:205.050000px;}
.y1a7{bottom:209.370000px;}
.y8c{bottom:209.550000px;}
.y1e{bottom:212.265000px;}
.y12a{bottom:213.330000px;}
.y4e{bottom:219.990000px;}
.y184{bottom:220.890000px;}
.y1a6{bottom:226.470000px;}
.y8b{bottom:226.830000px;}
.y1d{bottom:229.545000px;}
.y129{bottom:230.610000px;}
.yef{bottom:233.850000px;}
.y4d{bottom:237.090000px;}
.y183{bottom:238.170000px;}
.y1a5{bottom:243.750000px;}
.y8a{bottom:244.110000px;}
.y1c{bottom:246.645000px;}
.y128{bottom:247.890000px;}
.yb2{bottom:249.330000px;}
.yee{bottom:250.950000px;}
.y4c{bottom:254.370000px;}
.y182{bottom:255.270000px;}
.y1a4{bottom:261.030000px;}
.y89{bottom:261.390000px;}
.y1b{bottom:263.925000px;}
.y127{bottom:265.170000px;}
.yed{bottom:268.230000px;}
.y4b{bottom:271.650000px;}
.y181{bottom:272.550000px;}
.y15c{bottom:274.170000px;}
.y1a3{bottom:278.310000px;}
.y88{bottom:278.670000px;}
.y1a{bottom:281.205000px;}
.y126{bottom:282.450000px;}
.yec{bottom:285.510000px;}
.y4a{bottom:288.930000px;}
.y180{bottom:289.830000px;}
.yb1{bottom:290.550000px;}
.y15b{bottom:291.090000px;}
.y1a2{bottom:295.590000px;}
.y94{bottom:295.950000px;}
.y125{bottom:299.550000px;}
.yeb{bottom:302.790000px;}
.y49{bottom:306.210000px;}
.y17f{bottom:307.110000px;}
.yb0{bottom:307.830000px;}
.y15a{bottom:308.550000px;}
.y1a1{bottom:312.870000px;}
.y87{bottom:313.050000px;}
.y124{bottom:316.470000px;}
.yea{bottom:320.070000px;}
.y48{bottom:323.490000px;}
.y17e{bottom:324.030000px;}
.yaf{bottom:325.110000px;}
.y159{bottom:325.830000px;}
.y1a0{bottom:329.970000px;}
.y86{bottom:330.330000px;}
.y123{bottom:334.110000px;}
.ye9{bottom:337.350000px;}
.y47{bottom:340.590000px;}
.y17d{bottom:341.670000px;}
.yae{bottom:342.390000px;}
.y158{bottom:343.110000px;}
.y19f{bottom:347.250000px;}
.y85{bottom:347.610000px;}
.y122{bottom:351.390000px;}
.ye8{bottom:354.450000px;}
.y46{bottom:357.870000px;}
.y17c{bottom:358.770000px;}
.yad{bottom:359.715000px;}
.y157{bottom:360.435000px;}
.y19e{bottom:364.575000px;}
.y84{bottom:364.935000px;}
.y121{bottom:368.715000px;}
.ye7{bottom:371.775000px;}
.y45{bottom:375.195000px;}
.y17b{bottom:376.095000px;}
.yac{bottom:376.815000px;}
.y156{bottom:377.715000px;}
.y19d{bottom:381.855000px;}
.y83{bottom:382.215000px;}
.y120{bottom:385.995000px;}
.ye6{bottom:389.055000px;}
.y17a{bottom:393.375000px;}
.yab{bottom:394.095000px;}
.y155{bottom:394.995000px;}
.y18d{bottom:399.135000px;}
.y82{bottom:399.495000px;}
.y11f{bottom:403.095000px;}
.ye5{bottom:406.335000px;}
.y44{bottom:409.755000px;}
.y179{bottom:410.655000px;}
.yaa{bottom:411.375000px;}
.y154{bottom:412.095000px;}
.y19c{bottom:416.235000px;}
.y81{bottom:416.595000px;}
.y11e{bottom:420.375000px;}
.ye4{bottom:423.615000px;}
.y43{bottom:427.035000px;}
.y178{bottom:427.935000px;}
.ya9{bottom:428.655000px;}
.y153{bottom:429.375000px;}
.y19b{bottom:433.515000px;}
.y80{bottom:433.875000px;}
.y11d{bottom:434.595000px;}
.ye3{bottom:440.715000px;}
.y42{bottom:444.135000px;}
.y177{bottom:445.215000px;}
.ya8{bottom:445.935000px;}
.y152{bottom:446.655000px;}
.y19a{bottom:450.795000px;}
.y7f{bottom:451.155000px;}
.y11c{bottom:451.875000px;}
.ye2{bottom:457.995000px;}
.y41{bottom:461.415000px;}
.y176{bottom:462.315000px;}
.ya7{bottom:463.215000px;}
.y151{bottom:463.935000px;}
.y199{bottom:468.075000px;}
.y7e{bottom:468.435000px;}
.y11b{bottom:469.155000px;}
.ye1{bottom:475.275000px;}
.y40{bottom:478.695000px;}
.y175{bottom:479.595000px;}
.ya6{bottom:480.315000px;}
.y150{bottom:481.215000px;}
.y198{bottom:485.355000px;}
.y7d{bottom:485.715000px;}
.y11a{bottom:487.155000px;}
.ye0{bottom:492.555000px;}
.y3f{bottom:495.975000px;}
.y174{bottom:496.875000px;}
.ya5{bottom:497.595000px;}
.y14f{bottom:498.315000px;}
.y197{bottom:502.635000px;}
.y7c{bottom:502.815000px;}
.y119{bottom:505.155000px;}
.ydf{bottom:509.835000px;}
.y3e{bottom:513.255000px;}
.y173{bottom:514.155000px;}
.ya4{bottom:514.875000px;}
.y14e{bottom:515.595000px;}
.y196{bottom:519.735000px;}
.y7b{bottom:520.095000px;}
.y118{bottom:522.435000px;}
.yde{bottom:527.115000px;}
.y3d{bottom:530.355000px;}
.y172{bottom:531.435000px;}
.ya3{bottom:532.155000px;}
.y14d{bottom:532.875000px;}
.y195{bottom:537.015000px;}
.y7a{bottom:537.375000px;}
.y117{bottom:540.435000px;}
.ydd{bottom:544.215000px;}
.y3c{bottom:547.635000px;}
.y171{bottom:548.535000px;}
.ya2{bottom:549.435000px;}
.y14c{bottom:550.155000px;}
.y194{bottom:554.295000px;}
.y79{bottom:554.655000px;}
.y116{bottom:557.715000px;}
.ydc{bottom:561.495000px;}
.y3b{bottom:564.915000px;}
.y170{bottom:565.815000px;}
.ya1{bottom:566.535000px;}
.y14b{bottom:567.435000px;}
.y193{bottom:571.575000px;}
.y78{bottom:571.935000px;}
.y115{bottom:574.815000px;}
.ydb{bottom:578.775000px;}
.y3a{bottom:582.195000px;}
.y16f{bottom:583.095000px;}
.ya0{bottom:583.815000px;}
.y14a{bottom:584.715000px;}
.y77{bottom:588.855000px;}
.y93{bottom:589.215000px;}
.y114{bottom:592.815000px;}
.yda{bottom:596.055000px;}
.y39{bottom:599.475000px;}
.y16e{bottom:600.375000px;}
.y9f{bottom:601.095000px;}
.y149{bottom:601.815000px;}
.y192{bottom:606.135000px;}
.y76{bottom:606.315000px;}
.y113{bottom:610.095000px;}
.yd9{bottom:613.335000px;}
.y1b5{bottom:616.215000px;}
.y38{bottom:616.755000px;}
.y16d{bottom:617.295000px;}
.y9e{bottom:618.405000px;}
.y148{bottom:619.125000px;}
.y191{bottom:623.265000px;}
.y75{bottom:623.625000px;}
.y112{bottom:628.125000px;}
.yd8{bottom:630.645000px;}
.y37{bottom:633.885000px;}
.y16c{bottom:634.965000px;}
.y9d{bottom:635.685000px;}
.y147{bottom:636.405000px;}
.y190{bottom:640.545000px;}
.y74{bottom:640.905000px;}
.y111{bottom:645.405000px;}
.yd7{bottom:647.745000px;}
.y36{bottom:651.165000px;}
.y16b{bottom:652.065000px;}
.y9c{bottom:652.965000px;}
.y146{bottom:653.685000px;}
.y73{bottom:658.185000px;}
.y110{bottom:662.685000px;}
.yd6{bottom:665.025000px;}
.y35{bottom:668.445000px;}
.y16a{bottom:669.345000px;}
.y9b{bottom:669.705000px;}
.y145{bottom:670.965000px;}
.y72{bottom:675.465000px;}
.y10f{bottom:680.685000px;}
.yd5{bottom:682.305000px;}
.y169{bottom:684.825000px;}
.y34{bottom:685.725000px;}
.y9a{bottom:686.985000px;}
.y144{bottom:688.245000px;}
.y71{bottom:692.745000px;}
.y10e{bottom:698.685000px;}
.yd4{bottom:699.585000px;}
.y1b2{bottom:702.465000px;}
.y33{bottom:702.645000px;}
.y168{bottom:704.265000px;}
.y99{bottom:704.625000px;}
.y143{bottom:705.345000px;}
.y70{bottom:709.845000px;}
.y10d{bottom:715.965000px;}
.yd3{bottom:716.865000px;}
.y142{bottom:719.745000px;}
.y32{bottom:719.925000px;}
.y98{bottom:721.905000px;}
.y167{bottom:723.705000px;}
.y18c{bottom:726.765000px;}
.y6f{bottom:727.125000px;}
.y10b{bottom:733.245000px;}
.yd2{bottom:733.965000px;}
.y19{bottom:734.505000px;}
.y141{bottom:736.845000px;}
.y97{bottom:739.185000px;}
.y166{bottom:744.045000px;}
.y6e{bottom:744.405000px;}
.yd1{bottom:751.245000px;}
.y96{bottom:752.685000px;}
.y140{bottom:754.125000px;}
.y6d{bottom:761.685000px;}
.y165{bottom:764.205000px;}
.yd0{bottom:768.525000px;}
.y10a{bottom:769.245000px;}
.y13f{bottom:771.405000px;}
.y1b1{bottom:772.125000px;}
.y6c{bottom:778.965000px;}
.y164{bottom:783.825000px;}
.ycf{bottom:785.805000px;}
.y109{bottom:786.345000px;}
.y13e{bottom:788.685000px;}
.y1b0{bottom:793.905000px;}
.y6b{bottom:796.065000px;}
.yce{bottom:803.085000px;}
.y162{bottom:803.265000px;}
.y108{bottom:803.625000px;}
.y13d{bottom:805.965000px;}
.y1af{bottom:811.185000px;}
.y6a{bottom:813.345000px;}
.ycd{bottom:820.365000px;}
.y107{bottom:821.625000px;}
.y13c{bottom:823.065000px;}
.y161{bottom:823.425000px;}
.y1ae{bottom:828.465000px;}
.y69{bottom:830.625000px;}
.ycc{bottom:837.465000px;}
.y106{bottom:838.905000px;}
.y13b{bottom:840.345000px;}
.y1ad{bottom:845.565000px;}
.y160{bottom:846.465000px;}
.y68{bottom:847.905000px;}
.ycb{bottom:854.745000px;}
.y105{bottom:856.185000px;}
.y13a{bottom:858.345000px;}
.y1ac{bottom:862.845000px;}
.y15f{bottom:863.565000px;}
.y67{bottom:865.185000px;}
.yca{bottom:872.025000px;}
.y103{bottom:874.185000px;}
.y1ab{bottom:880.170000px;}
.y15e{bottom:880.890000px;}
.y66{bottom:882.510000px;}
.yc9{bottom:889.350000px;}
.y2a{bottom:890.430000px;}
.y102{bottom:891.510000px;}
.y139{bottom:897.450000px;}
.y15d{bottom:898.170000px;}
.y65{bottom:899.610000px;}
.yc8{bottom:906.630000px;}
.y101{bottom:908.610000px;}
.y138{bottom:914.730000px;}
.y64{bottom:916.890000px;}
.yc7{bottom:923.910000px;}
.y100{bottom:926.610000px;}
.y137{bottom:932.010000px;}
.y1aa{bottom:932.910000px;}
.y63{bottom:934.170000px;}
.yc6{bottom:941.010000px;}
.y12{bottom:942.990000px;}
.yff{bottom:943.890000px;}
.y136{bottom:949.110000px;}
.y92{bottom:951.090000px;}
.y62{bottom:951.450000px;}
.yc5{bottom:958.290000px;}
.yfe{bottom:961.170000px;}
.y135{bottom:966.390000px;}
.y61{bottom:968.730000px;}
.yc4{bottom:975.570000px;}
.yfd{bottom:979.170000px;}
.y134{bottom:983.670000px;}
.y60{bottom:986.010000px;}
.yc3{bottom:992.850000px;}
.yfc{bottom:997.170000px;}
.y133{bottom:997.890000px;}
.y95{bottom:1002.750000px;}
.y5f{bottom:1003.110000px;}
.yc2{bottom:1009.770000px;}
.yfb{bottom:1014.450000px;}
.y132{bottom:1015.170000px;}
.y5e{bottom:1020.390000px;}
.yc1{bottom:1027.410000px;}
.y10{bottom:1029.930000px;}
.yfa{bottom:1031.730000px;}
.y131{bottom:1032.450000px;}
.y5d{bottom:1037.670000px;}
.yc0{bottom:1043.790000px;}
.yf9{bottom:1049.730000px;}
.yf{bottom:1051.350000px;}
.y5c{bottom:1054.950000px;}
.yf8{bottom:1067.010000px;}
.ybf{bottom:1067.370000px;}
.ye{bottom:1068.630000px;}
.y5b{bottom:1072.230000px;}
.yf7{bottom:1084.110000px;}
.y130{bottom:1085.010000px;}
.yd{bottom:1086.270000px;}
.y18b{bottom:1089.150000px;}
.y5a{bottom:1089.510000px;}
.ybe{bottom:1090.230000px;}
.yf6{bottom:1102.110000px;}
.yc{bottom:1104.450000px;}
.y18a{bottom:1106.250000px;}
.y59{bottom:1106.610000px;}
.ybd{bottom:1112.010000px;}
.yf5{bottom:1119.390000px;}
.y58{bottom:1123.890000px;}
.y9{bottom:1127.670000px;}
.ybb{bottom:1134.540000px;}
.yf4{bottom:1136.700000px;}
.y18f{bottom:1140.840000px;}
.y57{bottom:1141.200000px;}
.y8{bottom:1144.980000px;}
.y1{bottom:1158.480000px;}
.y56{bottom:1178.820000px;}
.y4{bottom:1179.360000px;}
.y55{bottom:1196.100000px;}
.h15{height:17.100000px;}
.hc{height:17.280000px;}
.h16{height:17.316000px;}
.h13{height:18.180000px;}
.h14{height:18.360000px;}
.h6{height:20.880000px;}
.h5{height:23.400000px;}
.h7{height:36.651094px;}
.h8{height:40.500000px;}
.h12{height:41.493516px;}
.h2{height:44.280000px;}
.h10{height:51.840000px;}
.h4{height:54.421875px;}
.he{height:58.621992px;}
.h9{height:58.651172px;}
.hb{height:60.226875px;}
.h17{height:65.518594px;}
.h3{height:66.757500px;}
.h18{height:68.940000px;}
.ha{height:84.898125px;}
.hd{height:86.220000px;}
.h19{height:86.256000px;}
.h11{height:155.190000px;}
.hf{height:294.690000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w29{width:2.700000px;}
.w7{width:31.140000px;}
.w26{width:39.276000px;}
.w27{width:41.400000px;}
.w25{width:42.660000px;}
.w19{width:45.000000px;}
.w18{width:46.476000px;}
.wc{width:46.980000px;}
.w17{width:47.340000px;}
.w15{width:47.376000px;}
.w10{width:54.000000px;}
.w11{width:54.036000px;}
.w12{width:54.540000px;}
.w16{width:54.720000px;}
.w24{width:58.320000px;}
.w1a{width:58.680000px;}
.w28{width:62.460000px;}
.w1b{width:85.500000px;}
.w23{width:87.696000px;}
.wf{width:87.840000px;}
.w20{width:101.376000px;}
.w21{width:111.420000px;}
.w9{width:111.816000px;}
.w22{width:113.796000px;}
.w1c{width:126.396000px;}
.wd{width:135.756000px;}
.w1d{width:141.696000px;}
.wb{width:174.990000px;}
.w6{width:176.250000px;}
.w2a{width:181.650000px;}
.w14{width:189.030000px;}
.wa{width:203.250000px;}
.w2{width:216.570000px;}
.w5{width:225.795000px;}
.w1e{width:239.430000px;}
.w1f{width:244.110000px;}
.w4{width:269.850000px;}
.w2c{width:337.755000px;}
.w2d{width:340.275000px;}
.we{width:438.765000px;}
.w8{width:470.625000px;}
.w3{width:495.645000px;}
.w13{width:574.530000px;}
.w2b{width:678.030000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x4{left:1.260000px;}
.x2{left:4.680000px;}
.xe{left:7.020000px;}
.xb{left:8.100000px;}
.x1a{left:10.260000px;}
.x1c{left:12.240000px;}
.x27{left:14.070000px;}
.x32{left:16.020000px;}
.x18{left:17.280000px;}
.x2d{left:18.720000px;}
.x22{left:20.160000px;}
.x30{left:22.500000px;}
.x29{left:23.580000px;}
.x2f{left:25.380000px;}
.x31{left:29.160000px;}
.x4e{left:31.140000px;}
.x4b{left:33.660000px;}
.x5{left:34.920000px;}
.x47{left:39.600000px;}
.x4f{left:41.085000px;}
.x4c{left:43.605000px;}
.x44{left:46.980000px;}
.x38{left:53.865000px;}
.x3d{left:55.440000px;}
.x39{left:59.220000px;}
.x3b{left:61.230000px;}
.x3a{left:63.000000px;}
.x3c{left:64.080000px;}
.x16{left:73.620000px;}
.x19{left:76.140000px;}
.x1b{left:79.920000px;}
.x3e{left:81.180000px;}
.x1{left:90.396000px;}
.x37{left:95.445000px;}
.x7{left:108.036000px;}
.x9{left:112.716000px;}
.x41{left:115.956000px;}
.x12{left:125.136000px;}
.xf{left:135.036000px;}
.x3f{left:141.876000px;}
.x50{left:148.536000px;}
.x33{left:149.976000px;}
.x10{left:162.030000px;}
.x1d{left:169.770000px;}
.x24{left:175.170000px;}
.x13{left:178.050000px;}
.xa{left:182.370000px;}
.x48{left:216.930000px;}
.x34{left:235.470000px;}
.x49{left:256.215000px;}
.x51{left:274.539000px;}
.xc{left:283.755000px;}
.x14{left:289.875000px;}
.x4a{left:297.615000px;}
.x3{left:306.975000px;}
.xd{left:314.895000px;}
.x23{left:354.315000px;}
.x42{left:360.075000px;}
.x35{left:361.875000px;}
.x25{left:364.215000px;}
.x26{left:418.215000px;}
.x52{left:445.245000px;}
.x40{left:446.505000px;}
.x43{left:461.445000px;}
.x28{left:465.585000px;}
.x15{left:493.125000px;}
.x36{left:503.565000px;}
.x2a{left:520.305000px;}
.x2b{left:567.645000px;}
.x45{left:572.865000px;}
.x6{left:576.825000px;}
.x1e{left:608.550000px;}
.x2c{left:614.130000px;}
.x2e{left:659.130000px;}
.x17{left:668.130000px;}
.x46{left:686.670000px;}
.x1f{left:696.390000px;}
.x20{left:750.390000px;}
.x8{left:770.040000px;}
.x4d{left:774.360000px;}
.x11{left:798.840000px;}
.x21{left:804.420000px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v2{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:24.320000pt;}
.ls24{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.409067pt;}
.ls18{letter-spacing:-0.320000pt;}
.ls22{letter-spacing:-0.230933pt;}
.ls21{letter-spacing:-0.213867pt;}
.lsf{letter-spacing:-0.183467pt;}
.ls15{letter-spacing:-0.094933pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.047360pt;}
.lsa{letter-spacing:0.094933pt;}
.ls19{letter-spacing:0.136533pt;}
.ls5{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.183467pt;}
.ls23{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.231040pt;}
.ls1{letter-spacing:0.265600pt;}
.lsc{letter-spacing:0.272640pt;}
.ls1c{letter-spacing:0.277120pt;}
.ls28{letter-spacing:0.284160pt;}
.ls2{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.383787pt;}
.ls17{letter-spacing:0.414933pt;}
.ls29{letter-spacing:0.426667pt;}
.ls25{letter-spacing:0.480000pt;}
.ls10{letter-spacing:0.544000pt;}
.ls11{letter-spacing:0.736000pt;}
.ls20{letter-spacing:0.800000pt;}
.ls16{letter-spacing:0.821333pt;}
.ls27{letter-spacing:0.960000pt;}
.ls26{letter-spacing:1.066667pt;}
.ls8{letter-spacing:2.442667pt;}
.ls0{letter-spacing:2.560000pt;}
.ls7{letter-spacing:2.794667pt;}
.ls1d{letter-spacing:3.360000pt;}
.ls1f{letter-spacing:7.200000pt;}
.ls1e{letter-spacing:15.520000pt;}
.ls4{letter-spacing:82.720000pt;}
.lsb{letter-spacing:178.698667pt;}
.ls13{letter-spacing:731.178667pt;}
.ls12{letter-spacing:770.218667pt;}
.ls1a{letter-spacing:797.120000pt;}
.ws0{word-spacing:-17.459627pt;}
.ws14{word-spacing:-14.240000pt;}
.wsd{word-spacing:-14.101333pt;}
.wsa{word-spacing:-13.824000pt;}
.wse{word-spacing:-13.694933pt;}
.ws1{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.545600pt;}
.ws13{word-spacing:-13.510933pt;}
.ws7{word-spacing:-13.463467pt;}
.ws10{word-spacing:-13.440000pt;}
.wsf{word-spacing:-13.416533pt;}
.ws4{word-spacing:-13.374933pt;}
.wsb{word-spacing:-13.327360pt;}
.ws9{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.wsc{word-spacing:-13.185067pt;}
.ws11{word-spacing:-13.066133pt;}
.ws12{word-spacing:-13.049067pt;}
.ws15{word-spacing:-12.960000pt;}
.ws2{word-spacing:-12.870933pt;}
.ws8{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._26{margin-left:-2.267093pt;}
._3{margin-left:-1.168640pt;}
._1{width:1.638187pt;}
._0{width:2.590720pt;}
._2{width:3.897600pt;}
._e{width:4.952747pt;}
._b{width:5.949440pt;}
._9{width:7.073493pt;}
._8{width:8.499200pt;}
._f{width:9.880320pt;}
._11{width:10.844800pt;}
._12{width:12.333013pt;}
._16{width:14.213333pt;}
._14{width:15.818667pt;}
._15{width:16.941227pt;}
._17{width:18.034987pt;}
._c{width:19.237973pt;}
._d{width:20.814507pt;}
._1a{width:22.310400pt;}
._a{width:23.372800pt;}
._19{width:24.346027pt;}
._18{width:25.391360pt;}
._24{width:26.347947pt;}
._6{width:27.622187pt;}
._7{width:28.587307pt;}
._13{width:30.091520pt;}
._10{width:31.075200pt;}
._25{width:32.084480pt;}
._1d{width:33.306240pt;}
._20{width:36.968320pt;}
._1f{width:37.989333pt;}
._1b{width:41.489707pt;}
._23{width:49.516373pt;}
._1c{width:68.659840pt;}
._21{width:69.746560pt;}
._1e{width:130.720000pt;}
._22{width:240.029440pt;}
._4{width:927.018667pt;}
._5{width:1014.826667pt;}
.fs5{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.y163{bottom:-4.320000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:2.400000pt;}
.y10c{bottom:2.880000pt;}
.y11{bottom:3.040000pt;}
.ybc{bottom:3.200000pt;}
.y1ba{bottom:3.226667pt;}
.y17{bottom:3.360000pt;}
.y104{bottom:3.400000pt;}
.y6{bottom:3.680000pt;}
.yb7{bottom:3.840000pt;}
.yb5{bottom:4.160000pt;}
.yb8{bottom:4.320000pt;}
.y5{bottom:7.200000pt;}
.y3{bottom:11.360000pt;}
.y31{bottom:18.240000pt;}
.y1b4{bottom:18.560000pt;}
.y1b9{bottom:18.586667pt;}
.y16{bottom:18.720000pt;}
.y29{bottom:20.000000pt;}
.y2{bottom:25.760000pt;}
.y2c{bottom:33.760000pt;}
.y15{bottom:33.920000pt;}
.y1b8{bottom:33.946667pt;}
.y2b{bottom:34.080000pt;}
.y28{bottom:35.360000pt;}
.y1b3{bottom:48.960000pt;}
.y1b7{bottom:48.986667pt;}
.y14{bottom:49.280000pt;}
.yb{bottom:50.400000pt;}
.y27{bottom:50.560000pt;}
.y13{bottom:64.320000pt;}
.y1b6{bottom:64.346667pt;}
.y18{bottom:64.640000pt;}
.ya{bottom:65.760000pt;}
.y26{bottom:65.920000pt;}
.y30{bottom:80.000000pt;}
.y25{bottom:81.280000pt;}
.y2f{bottom:95.360000pt;}
.y24{bottom:96.640000pt;}
.yba{bottom:99.872000pt;}
.y54{bottom:103.552000pt;}
.y91{bottom:109.632000pt;}
.yf3{bottom:110.432000pt;}
.y2e{bottom:110.560000pt;}
.y23{bottom:112.000000pt;}
.y12f{bottom:112.992000pt;}
.y53{bottom:118.912000pt;}
.y189{bottom:119.712000pt;}
.yb9{bottom:120.832000pt;}
.y90{bottom:124.992000pt;}
.y2d{bottom:125.640000pt;}
.yf2{bottom:125.792000pt;}
.y22{bottom:127.240000pt;}
.y12e{bottom:128.352000pt;}
.y52{bottom:134.106667pt;}
.y188{bottom:135.066667pt;}
.y1a9{bottom:140.026667pt;}
.y8f{bottom:140.346667pt;}
.yb6{bottom:141.146667pt;}
.y21{bottom:142.600000pt;}
.y12d{bottom:143.706667pt;}
.y51{bottom:149.466667pt;}
.y187{bottom:150.266667pt;}
.y1a8{bottom:155.386667pt;}
.y8e{bottom:155.706667pt;}
.yf1{bottom:157.146667pt;}
.y20{bottom:157.960000pt;}
.y12c{bottom:159.066667pt;}
.yb4{bottom:161.466667pt;}
.y50{bottom:164.826667pt;}
.y186{bottom:165.626667pt;}
.y18e{bottom:170.746667pt;}
.y8d{bottom:171.066667pt;}
.yf0{bottom:173.146667pt;}
.y1f{bottom:173.320000pt;}
.y12b{bottom:174.266667pt;}
.y4f{bottom:180.186667pt;}
.y185{bottom:180.986667pt;}
.yb3{bottom:182.266667pt;}
.y1a7{bottom:186.106667pt;}
.y8c{bottom:186.266667pt;}
.y1e{bottom:188.680000pt;}
.y12a{bottom:189.626667pt;}
.y4e{bottom:195.546667pt;}
.y184{bottom:196.346667pt;}
.y1a6{bottom:201.306667pt;}
.y8b{bottom:201.626667pt;}
.y1d{bottom:204.040000pt;}
.y129{bottom:204.986667pt;}
.yef{bottom:207.866667pt;}
.y4d{bottom:210.746667pt;}
.y183{bottom:211.706667pt;}
.y1a5{bottom:216.666667pt;}
.y8a{bottom:216.986667pt;}
.y1c{bottom:219.240000pt;}
.y128{bottom:220.346667pt;}
.yb2{bottom:221.626667pt;}
.yee{bottom:223.066667pt;}
.y4c{bottom:226.106667pt;}
.y182{bottom:226.906667pt;}
.y1a4{bottom:232.026667pt;}
.y89{bottom:232.346667pt;}
.y1b{bottom:234.600000pt;}
.y127{bottom:235.706667pt;}
.yed{bottom:238.426667pt;}
.y4b{bottom:241.466667pt;}
.y181{bottom:242.266667pt;}
.y15c{bottom:243.706667pt;}
.y1a3{bottom:247.386667pt;}
.y88{bottom:247.706667pt;}
.y1a{bottom:249.960000pt;}
.y126{bottom:251.066667pt;}
.yec{bottom:253.786667pt;}
.y4a{bottom:256.826667pt;}
.y180{bottom:257.626667pt;}
.yb1{bottom:258.266667pt;}
.y15b{bottom:258.746667pt;}
.y1a2{bottom:262.746667pt;}
.y94{bottom:263.066667pt;}
.y125{bottom:266.266667pt;}
.yeb{bottom:269.146667pt;}
.y49{bottom:272.186667pt;}
.y17f{bottom:272.986667pt;}
.yb0{bottom:273.626667pt;}
.y15a{bottom:274.266667pt;}
.y1a1{bottom:278.106667pt;}
.y87{bottom:278.266667pt;}
.y124{bottom:281.306667pt;}
.yea{bottom:284.506667pt;}
.y48{bottom:287.546667pt;}
.y17e{bottom:288.026667pt;}
.yaf{bottom:288.986667pt;}
.y159{bottom:289.626667pt;}
.y1a0{bottom:293.306667pt;}
.y86{bottom:293.626667pt;}
.y123{bottom:296.986667pt;}
.ye9{bottom:299.866667pt;}
.y47{bottom:302.746667pt;}
.y17d{bottom:303.706667pt;}
.yae{bottom:304.346667pt;}
.y158{bottom:304.986667pt;}
.y19f{bottom:308.666667pt;}
.y85{bottom:308.986667pt;}
.y122{bottom:312.346667pt;}
.ye8{bottom:315.066667pt;}
.y46{bottom:318.106667pt;}
.y17c{bottom:318.906667pt;}
.yad{bottom:319.746667pt;}
.y157{bottom:320.386667pt;}
.y19e{bottom:324.066667pt;}
.y84{bottom:324.386667pt;}
.y121{bottom:327.746667pt;}
.ye7{bottom:330.466667pt;}
.y45{bottom:333.506667pt;}
.y17b{bottom:334.306667pt;}
.yac{bottom:334.946667pt;}
.y156{bottom:335.746667pt;}
.y19d{bottom:339.426667pt;}
.y83{bottom:339.746667pt;}
.y120{bottom:343.106667pt;}
.ye6{bottom:345.826667pt;}
.y17a{bottom:349.666667pt;}
.yab{bottom:350.306667pt;}
.y155{bottom:351.106667pt;}
.y18d{bottom:354.786667pt;}
.y82{bottom:355.106667pt;}
.y11f{bottom:358.306667pt;}
.ye5{bottom:361.186667pt;}
.y44{bottom:364.226667pt;}
.y179{bottom:365.026667pt;}
.yaa{bottom:365.666667pt;}
.y154{bottom:366.306667pt;}
.y19c{bottom:369.986667pt;}
.y81{bottom:370.306667pt;}
.y11e{bottom:373.666667pt;}
.ye4{bottom:376.546667pt;}
.y43{bottom:379.586667pt;}
.y178{bottom:380.386667pt;}
.ya9{bottom:381.026667pt;}
.y153{bottom:381.666667pt;}
.y19b{bottom:385.346667pt;}
.y80{bottom:385.666667pt;}
.y11d{bottom:386.306667pt;}
.ye3{bottom:391.746667pt;}
.y42{bottom:394.786667pt;}
.y177{bottom:395.746667pt;}
.ya8{bottom:396.386667pt;}
.y152{bottom:397.026667pt;}
.y19a{bottom:400.706667pt;}
.y7f{bottom:401.026667pt;}
.y11c{bottom:401.666667pt;}
.ye2{bottom:407.106667pt;}
.y41{bottom:410.146667pt;}
.y176{bottom:410.946667pt;}
.ya7{bottom:411.746667pt;}
.y151{bottom:412.386667pt;}
.y199{bottom:416.066667pt;}
.y7e{bottom:416.386667pt;}
.y11b{bottom:417.026667pt;}
.ye1{bottom:422.466667pt;}
.y40{bottom:425.506667pt;}
.y175{bottom:426.306667pt;}
.ya6{bottom:426.946667pt;}
.y150{bottom:427.746667pt;}
.y198{bottom:431.426667pt;}
.y7d{bottom:431.746667pt;}
.y11a{bottom:433.026667pt;}
.ye0{bottom:437.826667pt;}
.y3f{bottom:440.866667pt;}
.y174{bottom:441.666667pt;}
.ya5{bottom:442.306667pt;}
.y14f{bottom:442.946667pt;}
.y197{bottom:446.786667pt;}
.y7c{bottom:446.946667pt;}
.y119{bottom:449.026667pt;}
.ydf{bottom:453.186667pt;}
.y3e{bottom:456.226667pt;}
.y173{bottom:457.026667pt;}
.ya4{bottom:457.666667pt;}
.y14e{bottom:458.306667pt;}
.y196{bottom:461.986667pt;}
.y7b{bottom:462.306667pt;}
.y118{bottom:464.386667pt;}
.yde{bottom:468.546667pt;}
.y3d{bottom:471.426667pt;}
.y172{bottom:472.386667pt;}
.ya3{bottom:473.026667pt;}
.y14d{bottom:473.666667pt;}
.y195{bottom:477.346667pt;}
.y7a{bottom:477.666667pt;}
.y117{bottom:480.386667pt;}
.ydd{bottom:483.746667pt;}
.y3c{bottom:486.786667pt;}
.y171{bottom:487.586667pt;}
.ya2{bottom:488.386667pt;}
.y14c{bottom:489.026667pt;}
.y194{bottom:492.706667pt;}
.y79{bottom:493.026667pt;}
.y116{bottom:495.746667pt;}
.ydc{bottom:499.106667pt;}
.y3b{bottom:502.146667pt;}
.y170{bottom:502.946667pt;}
.ya1{bottom:503.586667pt;}
.y14b{bottom:504.386667pt;}
.y193{bottom:508.066667pt;}
.y78{bottom:508.386667pt;}
.y115{bottom:510.946667pt;}
.ydb{bottom:514.466667pt;}
.y3a{bottom:517.506667pt;}
.y16f{bottom:518.306667pt;}
.ya0{bottom:518.946667pt;}
.y14a{bottom:519.746667pt;}
.y77{bottom:523.426667pt;}
.y93{bottom:523.746667pt;}
.y114{bottom:526.946667pt;}
.yda{bottom:529.826667pt;}
.y39{bottom:532.866667pt;}
.y16e{bottom:533.666667pt;}
.y9f{bottom:534.306667pt;}
.y149{bottom:534.946667pt;}
.y192{bottom:538.786667pt;}
.y76{bottom:538.946667pt;}
.y113{bottom:542.306667pt;}
.yd9{bottom:545.186667pt;}
.y1b5{bottom:547.746667pt;}
.y38{bottom:548.226667pt;}
.y16d{bottom:548.706667pt;}
.y9e{bottom:549.693333pt;}
.y148{bottom:550.333333pt;}
.y191{bottom:554.013333pt;}
.y75{bottom:554.333333pt;}
.y112{bottom:558.333333pt;}
.yd8{bottom:560.573333pt;}
.y37{bottom:563.453333pt;}
.y16c{bottom:564.413333pt;}
.y9d{bottom:565.053333pt;}
.y147{bottom:565.693333pt;}
.y190{bottom:569.373333pt;}
.y74{bottom:569.693333pt;}
.y111{bottom:573.693333pt;}
.yd7{bottom:575.773333pt;}
.y36{bottom:578.813333pt;}
.y16b{bottom:579.613333pt;}
.y9c{bottom:580.413333pt;}
.y146{bottom:581.053333pt;}
.y73{bottom:585.053333pt;}
.y110{bottom:589.053333pt;}
.yd6{bottom:591.133333pt;}
.y35{bottom:594.173333pt;}
.y16a{bottom:594.973333pt;}
.y9b{bottom:595.293333pt;}
.y145{bottom:596.413333pt;}
.y72{bottom:600.413333pt;}
.y10f{bottom:605.053333pt;}
.yd5{bottom:606.493333pt;}
.y169{bottom:608.733333pt;}
.y34{bottom:609.533333pt;}
.y9a{bottom:610.653333pt;}
.y144{bottom:611.773333pt;}
.y71{bottom:615.773333pt;}
.y10e{bottom:621.053333pt;}
.yd4{bottom:621.853333pt;}
.y1b2{bottom:624.413333pt;}
.y33{bottom:624.573333pt;}
.y168{bottom:626.013333pt;}
.y99{bottom:626.333333pt;}
.y143{bottom:626.973333pt;}
.y70{bottom:630.973333pt;}
.y10d{bottom:636.413333pt;}
.yd3{bottom:637.213333pt;}
.y142{bottom:639.773333pt;}
.y32{bottom:639.933333pt;}
.y98{bottom:641.693333pt;}
.y167{bottom:643.293333pt;}
.y18c{bottom:646.013333pt;}
.y6f{bottom:646.333333pt;}
.y10b{bottom:651.773333pt;}
.yd2{bottom:652.413333pt;}
.y19{bottom:652.893333pt;}
.y141{bottom:654.973333pt;}
.y97{bottom:657.053333pt;}
.y166{bottom:661.373333pt;}
.y6e{bottom:661.693333pt;}
.yd1{bottom:667.773333pt;}
.y96{bottom:669.053333pt;}
.y140{bottom:670.333333pt;}
.y6d{bottom:677.053333pt;}
.y165{bottom:679.293333pt;}
.yd0{bottom:683.133333pt;}
.y10a{bottom:683.773333pt;}
.y13f{bottom:685.693333pt;}
.y1b1{bottom:686.333333pt;}
.y6c{bottom:692.413333pt;}
.y164{bottom:696.733333pt;}
.ycf{bottom:698.493333pt;}
.y109{bottom:698.973333pt;}
.y13e{bottom:701.053333pt;}
.y1b0{bottom:705.693333pt;}
.y6b{bottom:707.613333pt;}
.yce{bottom:713.853333pt;}
.y162{bottom:714.013333pt;}
.y108{bottom:714.333333pt;}
.y13d{bottom:716.413333pt;}
.y1af{bottom:721.053333pt;}
.y6a{bottom:722.973333pt;}
.ycd{bottom:729.213333pt;}
.y107{bottom:730.333333pt;}
.y13c{bottom:731.613333pt;}
.y161{bottom:731.933333pt;}
.y1ae{bottom:736.413333pt;}
.y69{bottom:738.333333pt;}
.ycc{bottom:744.413333pt;}
.y106{bottom:745.693333pt;}
.y13b{bottom:746.973333pt;}
.y1ad{bottom:751.613333pt;}
.y160{bottom:752.413333pt;}
.y68{bottom:753.693333pt;}
.ycb{bottom:759.773333pt;}
.y105{bottom:761.053333pt;}
.y13a{bottom:762.973333pt;}
.y1ac{bottom:766.973333pt;}
.y15f{bottom:767.613333pt;}
.y67{bottom:769.053333pt;}
.yca{bottom:775.133333pt;}
.y103{bottom:777.053333pt;}
.y1ab{bottom:782.373333pt;}
.y15e{bottom:783.013333pt;}
.y66{bottom:784.453333pt;}
.yc9{bottom:790.533333pt;}
.y2a{bottom:791.493333pt;}
.y102{bottom:792.453333pt;}
.y139{bottom:797.733333pt;}
.y15d{bottom:798.373333pt;}
.y65{bottom:799.653333pt;}
.yc8{bottom:805.893333pt;}
.y101{bottom:807.653333pt;}
.y138{bottom:813.093333pt;}
.y64{bottom:815.013333pt;}
.yc7{bottom:821.253333pt;}
.y100{bottom:823.653333pt;}
.y137{bottom:828.453333pt;}
.y1aa{bottom:829.253333pt;}
.y63{bottom:830.373333pt;}
.yc6{bottom:836.453333pt;}
.y12{bottom:838.213333pt;}
.yff{bottom:839.013333pt;}
.y136{bottom:843.653333pt;}
.y92{bottom:845.413333pt;}
.y62{bottom:845.733333pt;}
.yc5{bottom:851.813333pt;}
.yfe{bottom:854.373333pt;}
.y135{bottom:859.013333pt;}
.y61{bottom:861.093333pt;}
.yc4{bottom:867.173333pt;}
.yfd{bottom:870.373333pt;}
.y134{bottom:874.373333pt;}
.y60{bottom:876.453333pt;}
.yc3{bottom:882.533333pt;}
.yfc{bottom:886.373333pt;}
.y133{bottom:887.013333pt;}
.y95{bottom:891.333333pt;}
.y5f{bottom:891.653333pt;}
.yc2{bottom:897.573333pt;}
.yfb{bottom:901.733333pt;}
.y132{bottom:902.373333pt;}
.y5e{bottom:907.013333pt;}
.yc1{bottom:913.253333pt;}
.y10{bottom:915.493333pt;}
.yfa{bottom:917.093333pt;}
.y131{bottom:917.733333pt;}
.y5d{bottom:922.373333pt;}
.yc0{bottom:927.813333pt;}
.yf9{bottom:933.093333pt;}
.yf{bottom:934.533333pt;}
.y5c{bottom:937.733333pt;}
.yf8{bottom:948.453333pt;}
.ybf{bottom:948.773333pt;}
.ye{bottom:949.893333pt;}
.y5b{bottom:953.093333pt;}
.yf7{bottom:963.653333pt;}
.y130{bottom:964.453333pt;}
.yd{bottom:965.573333pt;}
.y18b{bottom:968.133333pt;}
.y5a{bottom:968.453333pt;}
.ybe{bottom:969.093333pt;}
.yf6{bottom:979.653333pt;}
.yc{bottom:981.733333pt;}
.y18a{bottom:983.333333pt;}
.y59{bottom:983.653333pt;}
.ybd{bottom:988.453333pt;}
.yf5{bottom:995.013333pt;}
.y58{bottom:999.013333pt;}
.y9{bottom:1002.373333pt;}
.ybb{bottom:1008.480000pt;}
.yf4{bottom:1010.400000pt;}
.y18f{bottom:1014.080000pt;}
.y57{bottom:1014.400000pt;}
.y8{bottom:1017.760000pt;}
.y1{bottom:1029.760000pt;}
.y56{bottom:1047.840000pt;}
.y4{bottom:1048.320000pt;}
.y55{bottom:1063.200000pt;}
.h15{height:15.200000pt;}
.hc{height:15.360000pt;}
.h16{height:15.392000pt;}
.h13{height:16.160000pt;}
.h14{height:16.320000pt;}
.h6{height:18.560000pt;}
.h5{height:20.800000pt;}
.h7{height:32.578750pt;}
.h8{height:36.000000pt;}
.h12{height:36.883125pt;}
.h2{height:39.360000pt;}
.h10{height:46.080000pt;}
.h4{height:48.375000pt;}
.he{height:52.108438pt;}
.h9{height:52.134375pt;}
.hb{height:53.535000pt;}
.h17{height:58.238750pt;}
.h3{height:59.340000pt;}
.h18{height:61.280000pt;}
.ha{height:75.465000pt;}
.hd{height:76.640000pt;}
.h19{height:76.672000pt;}
.h11{height:137.946667pt;}
.hf{height:261.946667pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w29{width:2.400000pt;}
.w7{width:27.680000pt;}
.w26{width:34.912000pt;}
.w27{width:36.800000pt;}
.w25{width:37.920000pt;}
.w19{width:40.000000pt;}
.w18{width:41.312000pt;}
.wc{width:41.760000pt;}
.w17{width:42.080000pt;}
.w15{width:42.112000pt;}
.w10{width:48.000000pt;}
.w11{width:48.032000pt;}
.w12{width:48.480000pt;}
.w16{width:48.640000pt;}
.w24{width:51.840000pt;}
.w1a{width:52.160000pt;}
.w28{width:55.520000pt;}
.w1b{width:76.000000pt;}
.w23{width:77.952000pt;}
.wf{width:78.080000pt;}
.w20{width:90.112000pt;}
.w21{width:99.040000pt;}
.w9{width:99.392000pt;}
.w22{width:101.152000pt;}
.w1c{width:112.352000pt;}
.wd{width:120.672000pt;}
.w1d{width:125.952000pt;}
.wb{width:155.546667pt;}
.w6{width:156.666667pt;}
.w2a{width:161.466667pt;}
.w14{width:168.026667pt;}
.wa{width:180.666667pt;}
.w2{width:192.506667pt;}
.w5{width:200.706667pt;}
.w1e{width:212.826667pt;}
.w1f{width:216.986667pt;}
.w4{width:239.866667pt;}
.w2c{width:300.226667pt;}
.w2d{width:302.466667pt;}
.we{width:390.013333pt;}
.w8{width:418.333333pt;}
.w3{width:440.573333pt;}
.w13{width:510.693333pt;}
.w2b{width:602.693333pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x4{left:1.120000pt;}
.x2{left:4.160000pt;}
.xe{left:6.240000pt;}
.xb{left:7.200000pt;}
.x1a{left:9.120000pt;}
.x1c{left:10.880000pt;}
.x27{left:12.506667pt;}
.x32{left:14.240000pt;}
.x18{left:15.360000pt;}
.x2d{left:16.640000pt;}
.x22{left:17.920000pt;}
.x30{left:20.000000pt;}
.x29{left:20.960000pt;}
.x2f{left:22.560000pt;}
.x31{left:25.920000pt;}
.x4e{left:27.680000pt;}
.x4b{left:29.920000pt;}
.x5{left:31.040000pt;}
.x47{left:35.200000pt;}
.x4f{left:36.520000pt;}
.x4c{left:38.760000pt;}
.x44{left:41.760000pt;}
.x38{left:47.880000pt;}
.x3d{left:49.280000pt;}
.x39{left:52.640000pt;}
.x3b{left:54.426667pt;}
.x3a{left:56.000000pt;}
.x3c{left:56.960000pt;}
.x16{left:65.440000pt;}
.x19{left:67.680000pt;}
.x1b{left:71.040000pt;}
.x3e{left:72.160000pt;}
.x1{left:80.352000pt;}
.x37{left:84.840000pt;}
.x7{left:96.032000pt;}
.x9{left:100.192000pt;}
.x41{left:103.072000pt;}
.x12{left:111.232000pt;}
.xf{left:120.032000pt;}
.x3f{left:126.112000pt;}
.x50{left:132.032000pt;}
.x33{left:133.312000pt;}
.x10{left:144.026667pt;}
.x1d{left:150.906667pt;}
.x24{left:155.706667pt;}
.x13{left:158.266667pt;}
.xa{left:162.106667pt;}
.x48{left:192.826667pt;}
.x34{left:209.306667pt;}
.x49{left:227.746667pt;}
.x51{left:244.034667pt;}
.xc{left:252.226667pt;}
.x14{left:257.666667pt;}
.x4a{left:264.546667pt;}
.x3{left:272.866667pt;}
.xd{left:279.906667pt;}
.x23{left:314.946667pt;}
.x42{left:320.066667pt;}
.x35{left:321.666667pt;}
.x25{left:323.746667pt;}
.x26{left:371.746667pt;}
.x52{left:395.773333pt;}
.x40{left:396.893333pt;}
.x43{left:410.173333pt;}
.x28{left:413.853333pt;}
.x15{left:438.333333pt;}
.x36{left:447.613333pt;}
.x2a{left:462.493333pt;}
.x2b{left:504.573333pt;}
.x45{left:509.213333pt;}
.x6{left:512.733333pt;}
.x1e{left:540.933333pt;}
.x2c{left:545.893333pt;}
.x2e{left:585.893333pt;}
.x17{left:593.893333pt;}
.x46{left:610.373333pt;}
.x1f{left:619.013333pt;}
.x20{left:667.013333pt;}
.x8{left:684.480000pt;}
.x4d{left:688.320000pt;}
.x11{left:710.080000pt;}
.x21{left:715.040000pt;}
}




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