
    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_4c5ed5c5452af22a5eb58110.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.056152;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_ab78e0d57b15b0b7934f7ba7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.056152;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_b9d89afd4beb657ba30b3d99.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942383;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_9cb1148c95648b6dc2be048a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_036ff526877083bfc9a424f7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_226eabe583e0fcd762a59202.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_5d908f00cd161fa96ff73a5a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d40209bf22950d721c11a1fd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls8{letter-spacing:-0.936000px;}
.ls11{letter-spacing:-0.720000px;}
.ls21{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.164400px;}
.lse{letter-spacing:-0.144000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.053280px;}
.ls1e{letter-spacing:0.106800px;}
.ls14{letter-spacing:0.120000px;}
.ls18{letter-spacing:0.144000px;}
.ls19{letter-spacing:0.149760px;}
.ls1{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.256200px;}
.ls1f{letter-spacing:0.259920px;}
.ls17{letter-spacing:0.288000px;}
.ls15{letter-spacing:0.298200px;}
.ls20{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.720000px;}
.ls13{letter-spacing:6.901920px;}
.ls6{letter-spacing:9.360000px;}
.lsa{letter-spacing:18.144000px;}
.lsd{letter-spacing:21.744000px;}
.lsc{letter-spacing:33.984000px;}
.lsb{letter-spacing:38.304000px;}
.ls1d{letter-spacing:46.026720px;}
.ls12{letter-spacing:46.224000px;}
.ls1c{letter-spacing:49.626720px;}
.ls1b{letter-spacing:64.026720px;}
.ls7{letter-spacing:87.984000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws12{word-spacing:-59.760000px;}
.wse{word-spacing:-20.638200px;}
.ws10{word-spacing:-18.288000px;}
.wsd{word-spacing:-18.216000px;}
.ws11{word-spacing:-18.144000px;}
.ws7{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.856000px;}
.wsa{word-spacing:-17.784000px;}
.wsc{word-spacing:-17.712000px;}
.ws9{word-spacing:-17.064000px;}
.ws1{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.300000px;}
.ws2{word-spacing:-15.226440px;}
.ws13{word-spacing:-15.046800px;}
.ws6{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.wsf{word-spacing:-14.805840px;}
.ws5{word-spacing:-14.580000px;}
.ws3{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
._20{margin-left:-4.777920px;}
._4{margin-left:-3.744000px;}
._3{margin-left:-2.289120px;}
._0{margin-left:-1.126080px;}
._1{width:1.183680px;}
._8{width:2.262480px;}
._2{width:3.300720px;}
._c{width:4.317360px;}
._5{width:5.400000px;}
._6{width:6.448320px;}
._16{width:7.485120px;}
._7{width:8.712000px;}
._9{width:9.765600px;}
._17{width:11.016000px;}
._a{width:12.672000px;}
._b{width:14.568000px;}
._1a{width:15.624000px;}
._1b{width:16.773120px;}
._22{width:17.825760px;}
._1c{width:19.296000px;}
._13{width:20.500320px;}
._12{width:21.672000px;}
._21{width:22.683360px;}
._11{width:23.688000px;}
._10{width:24.696000px;}
._14{width:26.064000px;}
._15{width:27.144000px;}
._1f{width:28.336320px;}
._d{width:29.592000px;}
._e{width:30.672000px;}
._f{width:31.824000px;}
._19{width:33.192000px;}
._18{width:34.272000px;}
._1d{width:36.432000px;}
._1e{width:37.728000px;}
.fc2{color:transparent;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:30.240000px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs9{font-size:81.360000px;}
.fs1{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yb{bottom:3.240000px;}
.y129{bottom:5.040000px;}
.y11a{bottom:5.580000px;}
.y11d{bottom:5.760000px;}
.y10b{bottom:5.940000px;}
.y8{bottom:10.620000px;}
.ya{bottom:20.520000px;}
.y12c{bottom:21.780000px;}
.y127{bottom:26.850000px;}
.y10d{bottom:27.540000px;}
.y118{bottom:28.260000px;}
.y158{bottom:28.620000px;}
.y7{bottom:30.600000px;}
.y9{bottom:34.560000px;}
.y10f{bottom:49.140000px;}
.y111{bottom:49.185000px;}
.y116{bottom:50.760000px;}
.y6{bottom:53.820000px;}
.ye{bottom:57.600000px;}
.y5{bottom:72.720000px;}
.y3f{bottom:77.760000px;}
.yd{bottom:79.920000px;}
.y4{bottom:91.830000px;}
.y108{bottom:99.540000px;}
.y6b{bottom:101.700000px;}
.y3c{bottom:105.300000px;}
.y130{bottom:105.480000px;}
.y14d{bottom:105.840000px;}
.yee{bottom:107.640000px;}
.yc9{bottom:108.180000px;}
.y3{bottom:110.730000px;}
.y11f{bottom:112.680000px;}
.y1d7{bottom:118.800000px;}
.y3b{bottom:123.840000px;}
.y6a{bottom:124.020000px;}
.y19c{bottom:124.740000px;}
.y189{bottom:125.280000px;}
.y14c{bottom:126.540000px;}
.y1b6{bottom:126.900000px;}
.yed{bottom:128.340000px;}
.yc8{bottom:128.880000px;}
.y16d{bottom:129.420000px;}
.y2{bottom:129.810000px;}
.y99{bottom:132.840000px;}
.y1d6{bottom:136.116000px;}
.y12f{bottom:140.436000px;}
.y107{bottom:141.156000px;}
.y3a{bottom:142.596000px;}
.y188{bottom:146.016000px;}
.y69{bottom:146.376000px;}
.y14b{bottom:147.276000px;}
.y11e{bottom:147.636000px;}
.yec{bottom:149.076000px;}
.yc7{bottom:149.616000px;}
.y16c{bottom:150.150000px;}
.y39{bottom:161.130000px;}
.y19b{bottom:166.530000px;}
.y187{bottom:166.710000px;}
.y98{bottom:167.250000px;}
.y14a{bottom:167.970000px;}
.y1b5{bottom:168.510000px;}
.y68{bottom:168.870000px;}
.yeb{bottom:169.770000px;}
.yc6{bottom:170.310000px;}
.y16b{bottom:170.850000px;}
.y1d5{bottom:174.270000px;}
.y38{bottom:179.670000px;}
.y106{bottom:182.910000px;}
.y186{bottom:187.410000px;}
.y149{bottom:188.670000px;}
.y1b4{bottom:189.210000px;}
.y97{bottom:189.570000px;}
.yea{bottom:190.470000px;}
.yc5{bottom:191.010000px;}
.y67{bottom:191.190000px;}
.y16a{bottom:191.550000px;}
.y37{bottom:198.390000px;}
.y19a{bottom:208.110000px;}
.y148{bottom:209.370000px;}
.y1b3{bottom:209.910000px;}
.ye9{bottom:211.170000px;}
.yc4{bottom:211.710000px;}
.y96{bottom:211.890000px;}
.y66{bottom:213.510000px;}
.y36{bottom:219.270000px;}
.y105{bottom:224.670000px;}
.y185{bottom:229.170000px;}
.y1d4{bottom:229.710000px;}
.y147{bottom:230.070000px;}
.y1b2{bottom:230.610000px;}
.ye8{bottom:231.870000px;}
.yc3{bottom:232.410000px;}
.y169{bottom:233.130000px;}
.y95{bottom:234.210000px;}
.y65{bottom:235.830000px;}
.y35{bottom:237.810000px;}
.y1d3{bottom:246.990000px;}
.y184{bottom:249.870000px;}
.y146{bottom:250.770000px;}
.y1b1{bottom:251.310000px;}
.ye7{bottom:252.570000px;}
.yc2{bottom:253.110000px;}
.y168{bottom:253.830000px;}
.y94{bottom:256.530000px;}
.y34{bottom:256.890000px;}
.y64{bottom:258.150000px;}
.y104{bottom:266.250000px;}
.y183{bottom:270.570000px;}
.y145{bottom:271.470000px;}
.y1b0{bottom:272.010000px;}
.ye6{bottom:273.270000px;}
.yc1{bottom:273.810000px;}
.y167{bottom:274.530000px;}
.y33{bottom:275.970000px;}
.y63{bottom:280.470000px;}
.y1d2{bottom:285.150000px;}
.y182{bottom:291.270000px;}
.y199{bottom:291.630000px;}
.y144{bottom:292.170000px;}
.ye5{bottom:293.970000px;}
.yc0{bottom:294.510000px;}
.y32{bottom:295.230000px;}
.y93{bottom:298.290000px;}
.y1d1{bottom:302.430000px;}
.y62{bottom:302.790000px;}
.y103{bottom:308.010000px;}
.y198{bottom:312.330000px;}
.y143{bottom:312.870000px;}
.y1af{bottom:313.770000px;}
.ye4{bottom:314.670000px;}
.ybf{bottom:315.210000px;}
.y31{bottom:315.930000px;}
.y92{bottom:318.990000px;}
.y61{bottom:325.110000px;}
.y181{bottom:333.030000px;}
.y142{bottom:333.570000px;}
.y1ae{bottom:334.470000px;}
.ye3{bottom:335.370000px;}
.ybe{bottom:335.910000px;}
.y30{bottom:336.630000px;}
.y91{bottom:339.690000px;}
.y1d0{bottom:340.770000px;}
.y102{bottom:349.590000px;}
.y180{bottom:353.730000px;}
.y141{bottom:354.270000px;}
.y1ad{bottom:355.170000px;}
.ye2{bottom:356.070000px;}
.ybd{bottom:356.610000px;}
.y2f{bottom:357.330000px;}
.y1cf{bottom:358.050000px;}
.y90{bottom:360.390000px;}
.y60{bottom:366.870000px;}
.y101{bottom:370.290000px;}
.y197{bottom:374.430000px;}
.y140{bottom:374.970000px;}
.y1ac{bottom:375.870000px;}
.ye1{bottom:376.770000px;}
.ybc{bottom:377.310000px;}
.y2e{bottom:378.030000px;}
.y8f{bottom:381.090000px;}
.y100{bottom:391.035000px;}
.y196{bottom:395.175000px;}
.y17f{bottom:395.355000px;}
.y13f{bottom:395.715000px;}
.y1ce{bottom:396.255000px;}
.y1ab{bottom:396.615000px;}
.ye0{bottom:397.515000px;}
.ybb{bottom:398.055000px;}
.y2d{bottom:398.775000px;}
.y166{bottom:399.135000px;}
.y8e{bottom:401.835000px;}
.y5f{bottom:408.675000px;}
.yff{bottom:411.735000px;}
.y1cd{bottom:413.535000px;}
.y17e{bottom:416.055000px;}
.y13e{bottom:416.415000px;}
.ydf{bottom:418.215000px;}
.yba{bottom:418.755000px;}
.y2c{bottom:419.475000px;}
.y165{bottom:419.835000px;}
.y8d{bottom:422.535000px;}
.y17d{bottom:436.755000px;}
.y13d{bottom:437.115000px;}
.y1aa{bottom:438.375000px;}
.yde{bottom:438.915000px;}
.yb9{bottom:439.455000px;}
.y2b{bottom:440.175000px;}
.y164{bottom:440.535000px;}
.y8c{bottom:443.235000px;}
.y5e{bottom:450.255000px;}
.y1cc{bottom:451.695000px;}
.yfe{bottom:453.855000px;}
.y195{bottom:457.455000px;}
.y13c{bottom:457.815000px;}
.y1a9{bottom:459.075000px;}
.ydd{bottom:459.615000px;}
.yb8{bottom:460.155000px;}
.y2a{bottom:460.875000px;}
.y163{bottom:461.235000px;}
.y8b{bottom:463.935000px;}
.y1cb{bottom:468.975000px;}
.y5d{bottom:470.955000px;}
.y1ec{bottom:472.395000px;}
.yfd{bottom:477.255000px;}
.y13b{bottom:478.515000px;}
.y1a8{bottom:479.775000px;}
.ydc{bottom:480.315000px;}
.yb7{bottom:480.855000px;}
.y29{bottom:481.575000px;}
.y162{bottom:481.935000px;}
.y8a{bottom:484.635000px;}
.y1eb{bottom:489.675000px;}
.y5c{bottom:491.655000px;}
.y13a{bottom:499.215000px;}
.yfc{bottom:500.115000px;}
.y1a7{bottom:500.475000px;}
.ydb{bottom:501.015000px;}
.yb6{bottom:501.555000px;}
.y28{bottom:502.275000px;}
.y161{bottom:502.635000px;}
.y89{bottom:505.335000px;}
.y1ca{bottom:507.315000px;}
.y5b{bottom:512.355000px;}
.y12e{bottom:512.895000px;}
.y194{bottom:519.915000px;}
.y17c{bottom:520.095000px;}
.y1a6{bottom:521.175000px;}
.yda{bottom:521.715000px;}
.yb5{bottom:522.255000px;}
.y27{bottom:522.975000px;}
.y160{bottom:523.335000px;}
.y1c9{bottom:524.595000px;}
.y88{bottom:526.035000px;}
.y1ea{bottom:528.015000px;}
.y5a{bottom:533.055000px;}
.y12d{bottom:533.595000px;}
.y193{bottom:540.615000px;}
.y139{bottom:540.795000px;}
.yfb{bottom:541.695000px;}
.y1a5{bottom:541.875000px;}
.yd9{bottom:542.415000px;}
.yb4{bottom:542.955000px;}
.y26{bottom:543.675000px;}
.y15f{bottom:544.035000px;}
.y1e9{bottom:545.295000px;}
.y87{bottom:546.735000px;}
.y59{bottom:553.755000px;}
.y192{bottom:561.315000px;}
.y17b{bottom:561.495000px;}
.y1a4{bottom:562.395000px;}
.y1c8{bottom:562.755000px;}
.yd8{bottom:563.115000px;}
.yb3{bottom:563.655000px;}
.y25{bottom:564.375000px;}
.y86{bottom:567.435000px;}
.y12b{bottom:572.115000px;}
.y58{bottom:574.455000px;}
.y11c{bottom:578.955000px;}
.y191{bottom:582.015000px;}
.y17a{bottom:582.195000px;}
.y138{bottom:582.555000px;}
.y1a3{bottom:583.095000px;}
.yfa{bottom:583.455000px;}
.yd7{bottom:583.815000px;}
.yb2{bottom:584.355000px;}
.y24{bottom:585.075000px;}
.y15e{bottom:585.795000px;}
.y85{bottom:589.755000px;}
.y12a{bottom:594.615000px;}
.y57{bottom:595.155000px;}
.y1e8{bottom:600.735000px;}
.y1c7{bottom:601.095000px;}
.y11b{bottom:602.175000px;}
.yf9{bottom:604.155000px;}
.yd6{bottom:604.515000px;}
.yb1{bottom:605.055000px;}
.y23{bottom:605.775000px;}
.y84{bottom:612.075000px;}
.y56{bottom:615.855000px;}
.y128{bottom:617.115000px;}
.y190{bottom:623.595000px;}
.y179{bottom:623.955000px;}
.y137{bottom:624.315000px;}
.yf8{bottom:624.855000px;}
.yd5{bottom:625.215000px;}
.y119{bottom:625.395000px;}
.yb0{bottom:625.755000px;}
.y22{bottom:626.475000px;}
.y15d{bottom:627.375000px;}
.y83{bottom:634.395000px;}
.y55{bottom:636.555000px;}
.y1e7{bottom:638.895000px;}
.y1c6{bottom:639.255000px;}
.y126{bottom:639.615000px;}
.y178{bottom:644.685000px;}
.y1a2{bottom:645.585000px;}
.yd4{bottom:645.945000px;}
.yaf{bottom:646.485000px;}
.y21{bottom:647.205000px;}
.y117{bottom:648.465000px;}
.y82{bottom:656.745000px;}
.y54{bottom:657.285000px;}
.y177{bottom:665.385000px;}
.y136{bottom:665.925000px;}
.y1a1{bottom:666.285000px;}
.yd3{bottom:666.645000px;}
.yae{bottom:667.185000px;}
.y20{bottom:667.905000px;}
.y1e6{bottom:677.265000px;}
.y1c5{bottom:677.625000px;}
.y81{bottom:679.065000px;}
.y176{bottom:686.085000px;}
.y135{bottom:686.625000px;}
.y1a0{bottom:686.985000px;}
.yd2{bottom:687.345000px;}
.yad{bottom:687.885000px;}
.y1f{bottom:688.605000px;}
.y115{bottom:694.185000px;}
.y1c4{bottom:694.905000px;}
.y53{bottom:699.045000px;}
.y80{bottom:701.385000px;}
.y175{bottom:706.785000px;}
.y134{bottom:707.325000px;}
.y19f{bottom:707.685000px;}
.yd1{bottom:708.045000px;}
.y125{bottom:708.405000px;}
.yac{bottom:708.585000px;}
.y1e{bottom:709.305000px;}
.y15c{bottom:712.005000px;}
.y1e5{bottom:715.425000px;}
.y52{bottom:719.745000px;}
.y7f{bottom:723.705000px;}
.y18f{bottom:727.485000px;}
.y133{bottom:728.025000px;}
.y19e{bottom:728.385000px;}
.yd0{bottom:728.745000px;}
.yab{bottom:729.285000px;}
.y1d{bottom:730.005000px;}
.y1e4{bottom:732.705000px;}
.y1c3{bottom:733.065000px;}
.y15b{bottom:735.405000px;}
.y51{bottom:740.445000px;}
.y7e{bottom:746.205000px;}
.y174{bottom:748.545000px;}
.y124{bottom:748.725000px;}
.y19d{bottom:749.085000px;}
.ycf{bottom:749.445000px;}
.y1c{bottom:749.985000px;}
.y1c2{bottom:750.345000px;}
.y15a{bottom:758.805000px;}
.y50{bottom:761.145000px;}
.y1b{bottom:767.265000px;}
.y7d{bottom:768.525000px;}
.y18e{bottom:769.245000px;}
.y123{bottom:769.425000px;}
.y132{bottom:769.785000px;}
.yf7{bottom:770.145000px;}
.yaa{bottom:770.685000px;}
.y1e3{bottom:771.045000px;}
.y4f{bottom:781.845000px;}
.y159{bottom:782.205000px;}
.y1a{bottom:784.545000px;}
.y114{bottom:786.525000px;}
.y1e2{bottom:788.325000px;}
.y1c1{bottom:788.505000px;}
.y173{bottom:790.125000px;}
.y7c{bottom:790.845000px;}
.yce{bottom:791.025000px;}
.ya9{bottom:791.385000px;}
.y19{bottom:801.825000px;}
.y4e{bottom:802.545000px;}
.y157{bottom:805.605000px;}
.y1c0{bottom:805.785000px;}
.y172{bottom:810.825000px;}
.y122{bottom:811.185000px;}
.yf6{bottom:811.545000px;}
.ycd{bottom:811.725000px;}
.ya8{bottom:812.085000px;}
.y7b{bottom:813.165000px;}
.y18{bottom:818.925000px;}
.y4d{bottom:823.245000px;}
.y1e1{bottom:826.485000px;}
.y113{bottom:827.745000px;}
.y171{bottom:831.525000px;}
.yf5{bottom:832.245000px;}
.ycc{bottom:832.425000px;}
.ya7{bottom:832.785000px;}
.y7a{bottom:833.865000px;}
.y17{bottom:836.205000px;}
.y1e0{bottom:843.765000px;}
.y4c{bottom:843.945000px;}
.y112{bottom:844.125000px;}
.y170{bottom:852.225000px;}
.yf4{bottom:852.945000px;}
.ycb{bottom:853.125000px;}
.ya6{bottom:853.485000px;}
.y79{bottom:854.565000px;}
.y16{bottom:858.705000px;}
.y1bf{bottom:861.405000px;}
.y4b{bottom:864.645000px;}
.y16f{bottom:872.925000px;}
.yf3{bottom:873.645000px;}
.yca{bottom:873.825000px;}
.ya5{bottom:874.185000px;}
.y15{bottom:875.985000px;}
.y78{bottom:876.885000px;}
.y1df{bottom:881.925000px;}
.y14{bottom:888.045000px;}
.yf2{bottom:894.390000px;}
.ya4{bottom:894.930000px;}
.y77{bottom:899.250000px;}
.y1be{bottom:899.610000px;}
.y4a{bottom:906.270000px;}
.y13{bottom:910.590000px;}
.y16e{bottom:914.730000px;}
.y156{bottom:915.090000px;}
.y131{bottom:915.270000px;}
.ya3{bottom:915.630000px;}
.y1bd{bottom:916.890000px;}
.y1de{bottom:920.310000px;}
.y76{bottom:921.570000px;}
.y49{bottom:926.970000px;}
.y18d{bottom:935.430000px;}
.y155{bottom:935.790000px;}
.yf1{bottom:935.970000px;}
.ya2{bottom:936.330000px;}
.y12{bottom:936.870000px;}
.y75{bottom:943.890000px;}
.y48{bottom:947.670000px;}
.y110{bottom:953.610000px;}
.y1bc{bottom:955.050000px;}
.y18c{bottom:956.130000px;}
.y154{bottom:956.490000px;}
.yf0{bottom:956.670000px;}
.ya1{bottom:957.030000px;}
.y1dd{bottom:958.470000px;}
.y74{bottom:966.210000px;}
.y47{bottom:968.370000px;}
.y11{bottom:973.050000px;}
.y1dc{bottom:975.750000px;}
.y18b{bottom:976.830000px;}
.y153{bottom:977.190000px;}
.yef{bottom:977.370000px;}
.ya0{bottom:977.730000px;}
.y73{bottom:988.530000px;}
.y46{bottom:989.070000px;}
.y1bb{bottom:993.390000px;}
.y10e{bottom:997.530000px;}
.y152{bottom:997.890000px;}
.y121{bottom:998.070000px;}
.y9f{bottom:998.430000px;}
.y10{bottom:1002.930000px;}
.y45{bottom:1009.770000px;}
.y1ba{bottom:1010.670000px;}
.y72{bottom:1010.850000px;}
.y1db{bottom:1014.090000px;}
.y18a{bottom:1018.590000px;}
.y120{bottom:1018.770000px;}
.y9e{bottom:1019.130000px;}
.y44{bottom:1030.470000px;}
.y1da{bottom:1031.370000px;}
.yf{bottom:1032.630000px;}
.y71{bottom:1033.350000px;}
.y151{bottom:1039.470000px;}
.y9d{bottom:1039.830000px;}
.y1b9{bottom:1048.830000px;}
.y43{bottom:1051.170000px;}
.y70{bottom:1055.670000px;}
.yc{bottom:1056.930000px;}
.y150{bottom:1060.170000px;}
.y9c{bottom:1060.530000px;}
.y10c{bottom:1063.230000px;}
.y1{bottom:1064.850000px;}
.y1b8{bottom:1066.110000px;}
.y1d9{bottom:1069.530000px;}
.y42{bottom:1071.870000px;}
.y6f{bottom:1077.990000px;}
.y14f{bottom:1080.870000px;}
.y9b{bottom:1081.230000px;}
.y41{bottom:1092.570000px;}
.y6e{bottom:1100.310000px;}
.y14e{bottom:1101.570000px;}
.y9a{bottom:1101.930000px;}
.y1b7{bottom:1104.270000px;}
.y10a{bottom:1107.150000px;}
.y1d8{bottom:1107.690000px;}
.y6d{bottom:1122.630000px;}
.y40{bottom:1134.330000px;}
.y6c{bottom:1143.330000px;}
.y109{bottom:1146.060000px;}
.y3e{bottom:1176.480000px;}
.y3d{bottom:1197.360000px;}
.h14{height:21.600000px;}
.h1e{height:21.780000px;}
.h1b{height:22.320000px;}
.h1a{height:22.356000px;}
.h1c{height:22.500000px;}
.h20{height:22.680000px;}
.h7{height:30.077578px;}
.hc{height:32.672109px;}
.h15{height:43.200000px;}
.hd{height:43.215117px;}
.h1d{height:43.416000px;}
.h19{height:45.000000px;}
.h1f{height:45.360000px;}
.h10{height:45.377930px;}
.h6{height:47.901094px;}
.h5{height:50.218242px;}
.hf{height:52.066406px;}
.h11{height:52.417969px;}
.h3{height:55.663594px;}
.h12{height:58.835039px;}
.h13{height:59.232305px;}
.he{height:60.503906px;}
.h4{height:60.835430px;}
.hb{height:62.244492px;}
.h16{height:64.800000px;}
.h17{height:64.836000px;}
.h8{height:65.884219px;}
.h18{height:67.500000px;}
.ha{height:67.565039px;}
.h9{height:69.248320px;}
.h2{height:145.116000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w8{width:113.220000px;}
.w7{width:113.256000px;}
.wa{width:136.836000px;}
.w9{width:138.816000px;}
.wb{width:138.996000px;}
.w14{width:149.436000px;}
.w13{width:149.616000px;}
.w15{width:150.480000px;}
.we{width:152.130000px;}
.w10{width:152.280000px;}
.wf{width:152.310000px;}
.w12{width:154.650000px;}
.wd{width:156.240000px;}
.w11{width:156.990000px;}
.wc{width:190.110000px;}
.w6{width:191.370000px;}
.w2{width:223.275000px;}
.w4{width:257.610000px;}
.w3{width:284.610000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x5{left:10.620000px;}
.x8{left:16.560000px;}
.x9{left:22.500000px;}
.xb{left:49.140000px;}
.x3a{left:55.439987px;}
.xc{left:62.280000px;}
.x1{left:63.900000px;}
.x1e{left:67.319987px;}
.x1d{left:68.399987px;}
.x19{left:74.339987px;}
.x13{left:78.299987px;}
.x18{left:80.459987px;}
.x6{left:91.440000px;}
.xd{left:105.525000px;}
.x1c{left:117.935987px;}
.x10{left:133.415987px;}
.x34{left:136.295987px;}
.x1a{left:144.935987px;}
.x1f{left:167.429987px;}
.x1b{left:171.929987px;}
.xa{left:174.465000px;}
.x20{left:194.429987px;}
.x28{left:204.150000px;}
.x4{left:209.730000px;}
.x2f{left:217.470000px;}
.x36{left:222.330000px;}
.x11{left:223.589987px;}
.x17{left:226.109987px;}
.x33{left:252.389987px;}
.x22{left:256.710000px;}
.x16{left:260.489987px;}
.x2e{left:275.249987px;}
.x3{left:287.175000px;}
.x21{left:304.814987px;}
.x27{left:325.694987px;}
.x29{left:341.715000px;}
.x2d{left:346.934987px;}
.x35{left:349.994987px;}
.x15{left:360.074987px;}
.x23{left:370.875000px;}
.x37{left:377.715000px;}
.x12{left:394.454987px;}
.x14{left:429.194987px;}
.xe{left:438.194987px;}
.xf{left:446.654987px;}
.x2a{left:481.605000px;}
.x24{left:484.845000px;}
.x30{left:523.545000px;}
.x38{left:528.045000px;}
.x7{left:571.785000px;}
.x25{left:598.785000px;}
.x2b{left:672.450000px;}
.x31{left:676.410000px;}
.x39{left:678.210000px;}
.x32{left:707.729987px;}
.x26{left:712.950000px;}
.x2c{left:732.929987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls8{letter-spacing:-0.832000pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls21{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.146133pt;}
.lse{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.047360pt;}
.ls1e{letter-spacing:0.094933pt;}
.ls14{letter-spacing:0.106667pt;}
.ls18{letter-spacing:0.128000pt;}
.ls19{letter-spacing:0.133120pt;}
.ls1{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.227733pt;}
.ls1f{letter-spacing:0.231040pt;}
.ls17{letter-spacing:0.256000pt;}
.ls15{letter-spacing:0.265067pt;}
.ls20{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.640000pt;}
.ls13{letter-spacing:6.135040pt;}
.ls6{letter-spacing:8.320000pt;}
.lsa{letter-spacing:16.128000pt;}
.lsd{letter-spacing:19.328000pt;}
.lsc{letter-spacing:30.208000pt;}
.lsb{letter-spacing:34.048000pt;}
.ls1d{letter-spacing:40.912640pt;}
.ls12{letter-spacing:41.088000pt;}
.ls1c{letter-spacing:44.112640pt;}
.ls1b{letter-spacing:56.912640pt;}
.ls7{letter-spacing:78.208000pt;}
.ws12{word-spacing:-53.120000pt;}
.wse{word-spacing:-18.345067pt;}
.ws10{word-spacing:-16.256000pt;}
.wsd{word-spacing:-16.192000pt;}
.ws11{word-spacing:-16.128000pt;}
.ws7{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.872000pt;}
.wsa{word-spacing:-15.808000pt;}
.wsc{word-spacing:-15.744000pt;}
.ws9{word-spacing:-15.168000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.534613pt;}
.ws13{word-spacing:-13.374933pt;}
.ws6{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.wsf{word-spacing:-13.160747pt;}
.ws5{word-spacing:-12.960000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
._20{margin-left:-4.247040pt;}
._4{margin-left:-3.328000pt;}
._3{margin-left:-2.034773pt;}
._0{margin-left:-1.000960pt;}
._1{width:1.052160pt;}
._8{width:2.011093pt;}
._2{width:2.933973pt;}
._c{width:3.837653pt;}
._5{width:4.800000pt;}
._6{width:5.731840pt;}
._16{width:6.653440pt;}
._7{width:7.744000pt;}
._9{width:8.680533pt;}
._17{width:9.792000pt;}
._a{width:11.264000pt;}
._b{width:12.949333pt;}
._1a{width:13.888000pt;}
._1b{width:14.909440pt;}
._22{width:15.845120pt;}
._1c{width:17.152000pt;}
._13{width:18.222507pt;}
._12{width:19.264000pt;}
._21{width:20.162987pt;}
._11{width:21.056000pt;}
._10{width:21.952000pt;}
._14{width:23.168000pt;}
._15{width:24.128000pt;}
._1f{width:25.187840pt;}
._d{width:26.304000pt;}
._e{width:27.264000pt;}
._f{width:28.288000pt;}
._19{width:29.504000pt;}
._18{width:30.464000pt;}
._1d{width:32.384000pt;}
._1e{width:33.536000pt;}
.fs3{font-size:26.880000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs9{font-size:72.320000pt;}
.fs1{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:2.880000pt;}
.y129{bottom:4.480000pt;}
.y11a{bottom:4.960000pt;}
.y11d{bottom:5.120000pt;}
.y10b{bottom:5.280000pt;}
.y8{bottom:9.440000pt;}
.ya{bottom:18.240000pt;}
.y12c{bottom:19.360000pt;}
.y127{bottom:23.866667pt;}
.y10d{bottom:24.480000pt;}
.y118{bottom:25.120000pt;}
.y158{bottom:25.440000pt;}
.y7{bottom:27.200000pt;}
.y9{bottom:30.720000pt;}
.y10f{bottom:43.680000pt;}
.y111{bottom:43.720000pt;}
.y116{bottom:45.120000pt;}
.y6{bottom:47.840000pt;}
.ye{bottom:51.200000pt;}
.y5{bottom:64.640000pt;}
.y3f{bottom:69.120000pt;}
.yd{bottom:71.040000pt;}
.y4{bottom:81.626667pt;}
.y108{bottom:88.480000pt;}
.y6b{bottom:90.400000pt;}
.y3c{bottom:93.600000pt;}
.y130{bottom:93.760000pt;}
.y14d{bottom:94.080000pt;}
.yee{bottom:95.680000pt;}
.yc9{bottom:96.160000pt;}
.y3{bottom:98.426667pt;}
.y11f{bottom:100.160000pt;}
.y1d7{bottom:105.600000pt;}
.y3b{bottom:110.080000pt;}
.y6a{bottom:110.240000pt;}
.y19c{bottom:110.880000pt;}
.y189{bottom:111.360000pt;}
.y14c{bottom:112.480000pt;}
.y1b6{bottom:112.800000pt;}
.yed{bottom:114.080000pt;}
.yc8{bottom:114.560000pt;}
.y16d{bottom:115.040000pt;}
.y2{bottom:115.386667pt;}
.y99{bottom:118.080000pt;}
.y1d6{bottom:120.992000pt;}
.y12f{bottom:124.832000pt;}
.y107{bottom:125.472000pt;}
.y3a{bottom:126.752000pt;}
.y188{bottom:129.792000pt;}
.y69{bottom:130.112000pt;}
.y14b{bottom:130.912000pt;}
.y11e{bottom:131.232000pt;}
.yec{bottom:132.512000pt;}
.yc7{bottom:132.992000pt;}
.y16c{bottom:133.466667pt;}
.y39{bottom:143.226667pt;}
.y19b{bottom:148.026667pt;}
.y187{bottom:148.186667pt;}
.y98{bottom:148.666667pt;}
.y14a{bottom:149.306667pt;}
.y1b5{bottom:149.786667pt;}
.y68{bottom:150.106667pt;}
.yeb{bottom:150.906667pt;}
.yc6{bottom:151.386667pt;}
.y16b{bottom:151.866667pt;}
.y1d5{bottom:154.906667pt;}
.y38{bottom:159.706667pt;}
.y106{bottom:162.586667pt;}
.y186{bottom:166.586667pt;}
.y149{bottom:167.706667pt;}
.y1b4{bottom:168.186667pt;}
.y97{bottom:168.506667pt;}
.yea{bottom:169.306667pt;}
.yc5{bottom:169.786667pt;}
.y67{bottom:169.946667pt;}
.y16a{bottom:170.266667pt;}
.y37{bottom:176.346667pt;}
.y19a{bottom:184.986667pt;}
.y148{bottom:186.106667pt;}
.y1b3{bottom:186.586667pt;}
.ye9{bottom:187.706667pt;}
.yc4{bottom:188.186667pt;}
.y96{bottom:188.346667pt;}
.y66{bottom:189.786667pt;}
.y36{bottom:194.906667pt;}
.y105{bottom:199.706667pt;}
.y185{bottom:203.706667pt;}
.y1d4{bottom:204.186667pt;}
.y147{bottom:204.506667pt;}
.y1b2{bottom:204.986667pt;}
.ye8{bottom:206.106667pt;}
.yc3{bottom:206.586667pt;}
.y169{bottom:207.226667pt;}
.y95{bottom:208.186667pt;}
.y65{bottom:209.626667pt;}
.y35{bottom:211.386667pt;}
.y1d3{bottom:219.546667pt;}
.y184{bottom:222.106667pt;}
.y146{bottom:222.906667pt;}
.y1b1{bottom:223.386667pt;}
.ye7{bottom:224.506667pt;}
.yc2{bottom:224.986667pt;}
.y168{bottom:225.626667pt;}
.y94{bottom:228.026667pt;}
.y34{bottom:228.346667pt;}
.y64{bottom:229.466667pt;}
.y104{bottom:236.666667pt;}
.y183{bottom:240.506667pt;}
.y145{bottom:241.306667pt;}
.y1b0{bottom:241.786667pt;}
.ye6{bottom:242.906667pt;}
.yc1{bottom:243.386667pt;}
.y167{bottom:244.026667pt;}
.y33{bottom:245.306667pt;}
.y63{bottom:249.306667pt;}
.y1d2{bottom:253.466667pt;}
.y182{bottom:258.906667pt;}
.y199{bottom:259.226667pt;}
.y144{bottom:259.706667pt;}
.ye5{bottom:261.306667pt;}
.yc0{bottom:261.786667pt;}
.y32{bottom:262.426667pt;}
.y93{bottom:265.146667pt;}
.y1d1{bottom:268.826667pt;}
.y62{bottom:269.146667pt;}
.y103{bottom:273.786667pt;}
.y198{bottom:277.626667pt;}
.y143{bottom:278.106667pt;}
.y1af{bottom:278.906667pt;}
.ye4{bottom:279.706667pt;}
.ybf{bottom:280.186667pt;}
.y31{bottom:280.826667pt;}
.y92{bottom:283.546667pt;}
.y61{bottom:288.986667pt;}
.y181{bottom:296.026667pt;}
.y142{bottom:296.506667pt;}
.y1ae{bottom:297.306667pt;}
.ye3{bottom:298.106667pt;}
.ybe{bottom:298.586667pt;}
.y30{bottom:299.226667pt;}
.y91{bottom:301.946667pt;}
.y1d0{bottom:302.906667pt;}
.y102{bottom:310.746667pt;}
.y180{bottom:314.426667pt;}
.y141{bottom:314.906667pt;}
.y1ad{bottom:315.706667pt;}
.ye2{bottom:316.506667pt;}
.ybd{bottom:316.986667pt;}
.y2f{bottom:317.626667pt;}
.y1cf{bottom:318.266667pt;}
.y90{bottom:320.346667pt;}
.y60{bottom:326.106667pt;}
.y101{bottom:329.146667pt;}
.y197{bottom:332.826667pt;}
.y140{bottom:333.306667pt;}
.y1ac{bottom:334.106667pt;}
.ye1{bottom:334.906667pt;}
.ybc{bottom:335.386667pt;}
.y2e{bottom:336.026667pt;}
.y8f{bottom:338.746667pt;}
.y100{bottom:347.586667pt;}
.y196{bottom:351.266667pt;}
.y17f{bottom:351.426667pt;}
.y13f{bottom:351.746667pt;}
.y1ce{bottom:352.226667pt;}
.y1ab{bottom:352.546667pt;}
.ye0{bottom:353.346667pt;}
.ybb{bottom:353.826667pt;}
.y2d{bottom:354.466667pt;}
.y166{bottom:354.786667pt;}
.y8e{bottom:357.186667pt;}
.y5f{bottom:363.266667pt;}
.yff{bottom:365.986667pt;}
.y1cd{bottom:367.586667pt;}
.y17e{bottom:369.826667pt;}
.y13e{bottom:370.146667pt;}
.ydf{bottom:371.746667pt;}
.yba{bottom:372.226667pt;}
.y2c{bottom:372.866667pt;}
.y165{bottom:373.186667pt;}
.y8d{bottom:375.586667pt;}
.y17d{bottom:388.226667pt;}
.y13d{bottom:388.546667pt;}
.y1aa{bottom:389.666667pt;}
.yde{bottom:390.146667pt;}
.yb9{bottom:390.626667pt;}
.y2b{bottom:391.266667pt;}
.y164{bottom:391.586667pt;}
.y8c{bottom:393.986667pt;}
.y5e{bottom:400.226667pt;}
.y1cc{bottom:401.506667pt;}
.yfe{bottom:403.426667pt;}
.y195{bottom:406.626667pt;}
.y13c{bottom:406.946667pt;}
.y1a9{bottom:408.066667pt;}
.ydd{bottom:408.546667pt;}
.yb8{bottom:409.026667pt;}
.y2a{bottom:409.666667pt;}
.y163{bottom:409.986667pt;}
.y8b{bottom:412.386667pt;}
.y1cb{bottom:416.866667pt;}
.y5d{bottom:418.626667pt;}
.y1ec{bottom:419.906667pt;}
.yfd{bottom:424.226667pt;}
.y13b{bottom:425.346667pt;}
.y1a8{bottom:426.466667pt;}
.ydc{bottom:426.946667pt;}
.yb7{bottom:427.426667pt;}
.y29{bottom:428.066667pt;}
.y162{bottom:428.386667pt;}
.y8a{bottom:430.786667pt;}
.y1eb{bottom:435.266667pt;}
.y5c{bottom:437.026667pt;}
.y13a{bottom:443.746667pt;}
.yfc{bottom:444.546667pt;}
.y1a7{bottom:444.866667pt;}
.ydb{bottom:445.346667pt;}
.yb6{bottom:445.826667pt;}
.y28{bottom:446.466667pt;}
.y161{bottom:446.786667pt;}
.y89{bottom:449.186667pt;}
.y1ca{bottom:450.946667pt;}
.y5b{bottom:455.426667pt;}
.y12e{bottom:455.906667pt;}
.y194{bottom:462.146667pt;}
.y17c{bottom:462.306667pt;}
.y1a6{bottom:463.266667pt;}
.yda{bottom:463.746667pt;}
.yb5{bottom:464.226667pt;}
.y27{bottom:464.866667pt;}
.y160{bottom:465.186667pt;}
.y1c9{bottom:466.306667pt;}
.y88{bottom:467.586667pt;}
.y1ea{bottom:469.346667pt;}
.y5a{bottom:473.826667pt;}
.y12d{bottom:474.306667pt;}
.y193{bottom:480.546667pt;}
.y139{bottom:480.706667pt;}
.yfb{bottom:481.506667pt;}
.y1a5{bottom:481.666667pt;}
.yd9{bottom:482.146667pt;}
.yb4{bottom:482.626667pt;}
.y26{bottom:483.266667pt;}
.y15f{bottom:483.586667pt;}
.y1e9{bottom:484.706667pt;}
.y87{bottom:485.986667pt;}
.y59{bottom:492.226667pt;}
.y192{bottom:498.946667pt;}
.y17b{bottom:499.106667pt;}
.y1a4{bottom:499.906667pt;}
.y1c8{bottom:500.226667pt;}
.yd8{bottom:500.546667pt;}
.yb3{bottom:501.026667pt;}
.y25{bottom:501.666667pt;}
.y86{bottom:504.386667pt;}
.y12b{bottom:508.546667pt;}
.y58{bottom:510.626667pt;}
.y11c{bottom:514.626667pt;}
.y191{bottom:517.346667pt;}
.y17a{bottom:517.506667pt;}
.y138{bottom:517.826667pt;}
.y1a3{bottom:518.306667pt;}
.yfa{bottom:518.626667pt;}
.yd7{bottom:518.946667pt;}
.yb2{bottom:519.426667pt;}
.y24{bottom:520.066667pt;}
.y15e{bottom:520.706667pt;}
.y85{bottom:524.226667pt;}
.y12a{bottom:528.546667pt;}
.y57{bottom:529.026667pt;}
.y1e8{bottom:533.986667pt;}
.y1c7{bottom:534.306667pt;}
.y11b{bottom:535.266667pt;}
.yf9{bottom:537.026667pt;}
.yd6{bottom:537.346667pt;}
.yb1{bottom:537.826667pt;}
.y23{bottom:538.466667pt;}
.y84{bottom:544.066667pt;}
.y56{bottom:547.426667pt;}
.y128{bottom:548.546667pt;}
.y190{bottom:554.306667pt;}
.y179{bottom:554.626667pt;}
.y137{bottom:554.946667pt;}
.yf8{bottom:555.426667pt;}
.yd5{bottom:555.746667pt;}
.y119{bottom:555.906667pt;}
.yb0{bottom:556.226667pt;}
.y22{bottom:556.866667pt;}
.y15d{bottom:557.666667pt;}
.y83{bottom:563.906667pt;}
.y55{bottom:565.826667pt;}
.y1e7{bottom:567.906667pt;}
.y1c6{bottom:568.226667pt;}
.y126{bottom:568.546667pt;}
.y178{bottom:573.053333pt;}
.y1a2{bottom:573.853333pt;}
.yd4{bottom:574.173333pt;}
.yaf{bottom:574.653333pt;}
.y21{bottom:575.293333pt;}
.y117{bottom:576.413333pt;}
.y82{bottom:583.773333pt;}
.y54{bottom:584.253333pt;}
.y177{bottom:591.453333pt;}
.y136{bottom:591.933333pt;}
.y1a1{bottom:592.253333pt;}
.yd3{bottom:592.573333pt;}
.yae{bottom:593.053333pt;}
.y20{bottom:593.693333pt;}
.y1e6{bottom:602.013333pt;}
.y1c5{bottom:602.333333pt;}
.y81{bottom:603.613333pt;}
.y176{bottom:609.853333pt;}
.y135{bottom:610.333333pt;}
.y1a0{bottom:610.653333pt;}
.yd2{bottom:610.973333pt;}
.yad{bottom:611.453333pt;}
.y1f{bottom:612.093333pt;}
.y115{bottom:617.053333pt;}
.y1c4{bottom:617.693333pt;}
.y53{bottom:621.373333pt;}
.y80{bottom:623.453333pt;}
.y175{bottom:628.253333pt;}
.y134{bottom:628.733333pt;}
.y19f{bottom:629.053333pt;}
.yd1{bottom:629.373333pt;}
.y125{bottom:629.693333pt;}
.yac{bottom:629.853333pt;}
.y1e{bottom:630.493333pt;}
.y15c{bottom:632.893333pt;}
.y1e5{bottom:635.933333pt;}
.y52{bottom:639.773333pt;}
.y7f{bottom:643.293333pt;}
.y18f{bottom:646.653333pt;}
.y133{bottom:647.133333pt;}
.y19e{bottom:647.453333pt;}
.yd0{bottom:647.773333pt;}
.yab{bottom:648.253333pt;}
.y1d{bottom:648.893333pt;}
.y1e4{bottom:651.293333pt;}
.y1c3{bottom:651.613333pt;}
.y15b{bottom:653.693333pt;}
.y51{bottom:658.173333pt;}
.y7e{bottom:663.293333pt;}
.y174{bottom:665.373333pt;}
.y124{bottom:665.533333pt;}
.y19d{bottom:665.853333pt;}
.ycf{bottom:666.173333pt;}
.y1c{bottom:666.653333pt;}
.y1c2{bottom:666.973333pt;}
.y15a{bottom:674.493333pt;}
.y50{bottom:676.573333pt;}
.y1b{bottom:682.013333pt;}
.y7d{bottom:683.133333pt;}
.y18e{bottom:683.773333pt;}
.y123{bottom:683.933333pt;}
.y132{bottom:684.253333pt;}
.yf7{bottom:684.573333pt;}
.yaa{bottom:685.053333pt;}
.y1e3{bottom:685.373333pt;}
.y4f{bottom:694.973333pt;}
.y159{bottom:695.293333pt;}
.y1a{bottom:697.373333pt;}
.y114{bottom:699.133333pt;}
.y1e2{bottom:700.733333pt;}
.y1c1{bottom:700.893333pt;}
.y173{bottom:702.333333pt;}
.y7c{bottom:702.973333pt;}
.yce{bottom:703.133333pt;}
.ya9{bottom:703.453333pt;}
.y19{bottom:712.733333pt;}
.y4e{bottom:713.373333pt;}
.y157{bottom:716.093333pt;}
.y1c0{bottom:716.253333pt;}
.y172{bottom:720.733333pt;}
.y122{bottom:721.053333pt;}
.yf6{bottom:721.373333pt;}
.ycd{bottom:721.533333pt;}
.ya8{bottom:721.853333pt;}
.y7b{bottom:722.813333pt;}
.y18{bottom:727.933333pt;}
.y4d{bottom:731.773333pt;}
.y1e1{bottom:734.653333pt;}
.y113{bottom:735.773333pt;}
.y171{bottom:739.133333pt;}
.yf5{bottom:739.773333pt;}
.ycc{bottom:739.933333pt;}
.ya7{bottom:740.253333pt;}
.y7a{bottom:741.213333pt;}
.y17{bottom:743.293333pt;}
.y1e0{bottom:750.013333pt;}
.y4c{bottom:750.173333pt;}
.y112{bottom:750.333333pt;}
.y170{bottom:757.533333pt;}
.yf4{bottom:758.173333pt;}
.ycb{bottom:758.333333pt;}
.ya6{bottom:758.653333pt;}
.y79{bottom:759.613333pt;}
.y16{bottom:763.293333pt;}
.y1bf{bottom:765.693333pt;}
.y4b{bottom:768.573333pt;}
.y16f{bottom:775.933333pt;}
.yf3{bottom:776.573333pt;}
.yca{bottom:776.733333pt;}
.ya5{bottom:777.053333pt;}
.y15{bottom:778.653333pt;}
.y78{bottom:779.453333pt;}
.y1df{bottom:783.933333pt;}
.y14{bottom:789.373333pt;}
.yf2{bottom:795.013333pt;}
.ya4{bottom:795.493333pt;}
.y77{bottom:799.333333pt;}
.y1be{bottom:799.653333pt;}
.y4a{bottom:805.573333pt;}
.y13{bottom:809.413333pt;}
.y16e{bottom:813.093333pt;}
.y156{bottom:813.413333pt;}
.y131{bottom:813.573333pt;}
.ya3{bottom:813.893333pt;}
.y1bd{bottom:815.013333pt;}
.y1de{bottom:818.053333pt;}
.y76{bottom:819.173333pt;}
.y49{bottom:823.973333pt;}
.y18d{bottom:831.493333pt;}
.y155{bottom:831.813333pt;}
.yf1{bottom:831.973333pt;}
.ya2{bottom:832.293333pt;}
.y12{bottom:832.773333pt;}
.y75{bottom:839.013333pt;}
.y48{bottom:842.373333pt;}
.y110{bottom:847.653333pt;}
.y1bc{bottom:848.933333pt;}
.y18c{bottom:849.893333pt;}
.y154{bottom:850.213333pt;}
.yf0{bottom:850.373333pt;}
.ya1{bottom:850.693333pt;}
.y1dd{bottom:851.973333pt;}
.y74{bottom:858.853333pt;}
.y47{bottom:860.773333pt;}
.y11{bottom:864.933333pt;}
.y1dc{bottom:867.333333pt;}
.y18b{bottom:868.293333pt;}
.y153{bottom:868.613333pt;}
.yef{bottom:868.773333pt;}
.ya0{bottom:869.093333pt;}
.y73{bottom:878.693333pt;}
.y46{bottom:879.173333pt;}
.y1bb{bottom:883.013333pt;}
.y10e{bottom:886.693333pt;}
.y152{bottom:887.013333pt;}
.y121{bottom:887.173333pt;}
.y9f{bottom:887.493333pt;}
.y10{bottom:891.493333pt;}
.y45{bottom:897.573333pt;}
.y1ba{bottom:898.373333pt;}
.y72{bottom:898.533333pt;}
.y1db{bottom:901.413333pt;}
.y18a{bottom:905.413333pt;}
.y120{bottom:905.573333pt;}
.y9e{bottom:905.893333pt;}
.y44{bottom:915.973333pt;}
.y1da{bottom:916.773333pt;}
.yf{bottom:917.893333pt;}
.y71{bottom:918.533333pt;}
.y151{bottom:923.973333pt;}
.y9d{bottom:924.293333pt;}
.y1b9{bottom:932.293333pt;}
.y43{bottom:934.373333pt;}
.y70{bottom:938.373333pt;}
.yc{bottom:939.493333pt;}
.y150{bottom:942.373333pt;}
.y9c{bottom:942.693333pt;}
.y10c{bottom:945.093333pt;}
.y1{bottom:946.533333pt;}
.y1b8{bottom:947.653333pt;}
.y1d9{bottom:950.693333pt;}
.y42{bottom:952.773333pt;}
.y6f{bottom:958.213333pt;}
.y14f{bottom:960.773333pt;}
.y9b{bottom:961.093333pt;}
.y41{bottom:971.173333pt;}
.y6e{bottom:978.053333pt;}
.y14e{bottom:979.173333pt;}
.y9a{bottom:979.493333pt;}
.y1b7{bottom:981.573333pt;}
.y10a{bottom:984.133333pt;}
.y1d8{bottom:984.613333pt;}
.y6d{bottom:997.893333pt;}
.y40{bottom:1008.293333pt;}
.y6c{bottom:1016.293333pt;}
.y109{bottom:1018.720000pt;}
.y3e{bottom:1045.760000pt;}
.y3d{bottom:1064.320000pt;}
.h14{height:19.200000pt;}
.h1e{height:19.360000pt;}
.h1b{height:19.840000pt;}
.h1a{height:19.872000pt;}
.h1c{height:20.000000pt;}
.h20{height:20.160000pt;}
.h7{height:26.735625pt;}
.hc{height:29.041875pt;}
.h15{height:38.400000pt;}
.hd{height:38.413438pt;}
.h1d{height:38.592000pt;}
.h19{height:40.000000pt;}
.h1f{height:40.320000pt;}
.h10{height:40.335938pt;}
.h6{height:42.578750pt;}
.h5{height:44.638438pt;}
.hf{height:46.281250pt;}
.h11{height:46.593750pt;}
.h3{height:49.478750pt;}
.h12{height:52.297812pt;}
.h13{height:52.650937pt;}
.he{height:53.781250pt;}
.h4{height:54.075937pt;}
.hb{height:55.328437pt;}
.h16{height:57.600000pt;}
.h17{height:57.632000pt;}
.h8{height:58.563750pt;}
.h18{height:60.000000pt;}
.ha{height:60.057813pt;}
.h9{height:61.554062pt;}
.h2{height:128.992000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w8{width:100.640000pt;}
.w7{width:100.672000pt;}
.wa{width:121.632000pt;}
.w9{width:123.392000pt;}
.wb{width:123.552000pt;}
.w14{width:132.832000pt;}
.w13{width:132.992000pt;}
.w15{width:133.760000pt;}
.we{width:135.226667pt;}
.w10{width:135.360000pt;}
.wf{width:135.386667pt;}
.w12{width:137.466667pt;}
.wd{width:138.880000pt;}
.w11{width:139.546667pt;}
.wc{width:168.986667pt;}
.w6{width:170.106667pt;}
.w2{width:198.466667pt;}
.w4{width:228.986667pt;}
.w3{width:252.986667pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x5{left:9.440000pt;}
.x8{left:14.720000pt;}
.x9{left:20.000000pt;}
.xb{left:43.680000pt;}
.x3a{left:49.279988pt;}
.xc{left:55.360000pt;}
.x1{left:56.800000pt;}
.x1e{left:59.839988pt;}
.x1d{left:60.799988pt;}
.x19{left:66.079988pt;}
.x13{left:69.599988pt;}
.x18{left:71.519988pt;}
.x6{left:81.280000pt;}
.xd{left:93.800000pt;}
.x1c{left:104.831988pt;}
.x10{left:118.591988pt;}
.x34{left:121.151988pt;}
.x1a{left:128.831988pt;}
.x1f{left:148.826655pt;}
.x1b{left:152.826655pt;}
.xa{left:155.080000pt;}
.x20{left:172.826655pt;}
.x28{left:181.466667pt;}
.x4{left:186.426667pt;}
.x2f{left:193.306667pt;}
.x36{left:197.626667pt;}
.x11{left:198.746655pt;}
.x17{left:200.986655pt;}
.x33{left:224.346655pt;}
.x22{left:228.186667pt;}
.x16{left:231.546655pt;}
.x2e{left:244.666655pt;}
.x3{left:255.266667pt;}
.x21{left:270.946655pt;}
.x27{left:289.506655pt;}
.x29{left:303.746667pt;}
.x2d{left:308.386655pt;}
.x35{left:311.106655pt;}
.x15{left:320.066655pt;}
.x23{left:329.666667pt;}
.x37{left:335.746667pt;}
.x12{left:350.626655pt;}
.x14{left:381.506655pt;}
.xe{left:389.506655pt;}
.xf{left:397.026655pt;}
.x2a{left:428.093333pt;}
.x24{left:430.973333pt;}
.x30{left:465.373333pt;}
.x38{left:469.373333pt;}
.x7{left:508.253333pt;}
.x25{left:532.253333pt;}
.x2b{left:597.733333pt;}
.x31{left:601.253333pt;}
.x39{left:602.853333pt;}
.x32{left:629.093322pt;}
.x26{left:633.733333pt;}
.x2c{left:651.493322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  