
    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_48ccdc6546a74f9ab85a6487.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f99ffc566a9d1ebdeb6b573f.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4abf9509d1287c5e03113279.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_24fc9be2f27244b89dfd898e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_e33a59a849697013a9d36d7d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.401855;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_f1080f297b61eb0f1bdc392f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_9dbf5b5849227fae6e9fdb38.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.900391;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-20.880000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls9{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.666000px;}
.lse{letter-spacing:-0.501000px;}
.ls7{letter-spacing:-0.460200px;}
.ls4{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.358200px;}
.ls17{letter-spacing:-0.301800px;}
.ls11{letter-spacing:-0.262200px;}
.ls14{letter-spacing:-0.214800px;}
.ls10{letter-spacing:-0.214200px;}
.ls6{letter-spacing:-0.206400px;}
.ls12{letter-spacing:-0.112200px;}
.ls15{letter-spacing:-0.070800px;}
.ls13{letter-spacing:-0.058320px;}
.ls19{letter-spacing:-0.054720px;}
.lsa{letter-spacing:-0.051840px;}
.ls3{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.051840px;}
.ls2{letter-spacing:0.053280px;}
.ls16{letter-spacing:0.085800px;}
.ls5{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.334080px;}
.ls0{letter-spacing:0.360000px;}
.lsb{letter-spacing:10.980000px;}
.ls18{letter-spacing:18.720000px;}
.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;}
}
.ws11{word-spacing:-18.414720px;}
.ws0{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.614080px;}
.ws1d{word-spacing:-16.613280px;}
.ws7{word-spacing:-16.560000px;}
.wsb{word-spacing:-15.891840px;}
.wsc{word-spacing:-15.840000px;}
.ws9{word-spacing:-15.788160px;}
.ws6{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.120000px;}
.ws4{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.580000px;}
.ws1f{word-spacing:-14.220000px;}
.ws20{word-spacing:-14.165280px;}
.ws8{word-spacing:-10.440000px;}
.ws1{word-spacing:-9.720000px;}
.ws1e{word-spacing:-0.059760px;}
.ws5{word-spacing:0.000000px;}
.ws19{word-spacing:61.336800px;}
.ws1a{word-spacing:68.204760px;}
.ws14{word-spacing:70.708800px;}
.ws15{word-spacing:77.732616px;}
.ws18{word-spacing:88.217280px;}
.wsf{word-spacing:91.348800px;}
.ws13{word-spacing:97.365168px;}
.ws1b{word-spacing:113.308800px;}
.ws16{word-spacing:122.699616px;}
.ws12{word-spacing:145.343592px;}
.ws1c{word-spacing:157.817160px;}
.wse{word-spacing:162.706680px;}
.ws17{word-spacing:167.301096px;}
.ws10{word-spacing:183.646680px;}
._1c{margin-left:-5.081760px;}
._b{margin-left:-4.024800px;}
._a{margin-left:-2.748960px;}
._0{margin-left:-1.324800px;}
._1{width:1.036800px;}
._2{width:2.207760px;}
._4{width:3.258480px;}
._8{width:4.801680px;}
._7{width:5.835600px;}
._1e{width:6.873600px;}
._e{width:7.888320px;}
._1a{width:8.936640px;}
._6{width:10.437120px;}
._5{width:11.473920px;}
._1d{width:12.509280px;}
._d{width:13.744800px;}
._17{width:15.301440px;}
._16{width:16.309920px;}
._1b{width:17.686080px;}
._c{width:18.923040px;}
._f{width:20.617200px;}
._12{width:22.120560px;}
._9{width:24.253200px;}
._3{width:25.577280px;}
._13{width:27.011520px;}
._19{width:29.741760px;}
._18{width:31.132800px;}
._15{width:42.060240px;}
._14{width:43.206480px;}
._11{width:45.427680px;}
._10{width:46.433520px;}
._25{width:110.442240px;}
._20{width:114.058560px;}
._23{width:119.499120px;}
._1f{width:133.084800px;}
._22{width:153.960240px;}
._21{width:157.363680px;}
._24{width:191.292960px;}
.fca{color:transparent;}
.fc8{color:rgb(158,72,14);}
.fc6{color:rgb(112,173,71);}
.fc7{color:rgb(37,94,145);}
.fc4{color:rgb(255,192,0);}
.fc5{color:rgb(68,114,196);}
.fc1{color:rgb(91,155,213);}
.fc9{color:rgb(89,89,89);}
.fc3{color:rgb(165,165,165);}
.fc2{color:rgb(237,125,49);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:18.000000px;}
.fs4{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fsc{font-size:56.880000px;}
.fs5{font-size:59.760000px;}
.fsb{font-size:59.904000px;}
.fs8{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fsa{font-size:66.384000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.fs7{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y146{bottom:0.360000px;}
.y36{bottom:3.240000px;}
.y101{bottom:3.420000px;}
.yf6{bottom:5.430000px;}
.y119{bottom:6.120000px;}
.y148{bottom:8.100000px;}
.ye9{bottom:13.035000px;}
.y13{bottom:14.400000px;}
.y12d{bottom:16.095000px;}
.y11b{bottom:18.000000px;}
.y109{bottom:18.150000px;}
.y1a{bottom:21.240000px;}
.y100{bottom:21.420000px;}
.y12b{bottom:22.500000px;}
.y118{bottom:24.480000px;}
.yef{bottom:25.095000px;}
.y35{bottom:29.340000px;}
.ye1{bottom:31.785000px;}
.y12c{bottom:34.455000px;}
.y11a{bottom:36.360000px;}
.y103{bottom:37.830000px;}
.y19{bottom:38.520000px;}
.y12a{bottom:40.860000px;}
.y34{bottom:46.620000px;}
.y18{bottom:55.800000px;}
.y10a{bottom:58.500000px;}
.yf7{bottom:59.730000px;}
.y11d{bottom:62.490000px;}
.y33{bottom:63.900000px;}
.yea{bottom:64.410000px;}
.y17{bottom:73.080000px;}
.ye2{bottom:73.410000px;}
.yf0{bottom:76.035000px;}
.y11c{bottom:80.850000px;}
.y32{bottom:81.180000px;}
.y13f{bottom:90.180000px;}
.y16{bottom:90.390000px;}
.y104{bottom:90.690000px;}
.y141{bottom:93.570000px;}
.y1b{bottom:95.430000px;}
.y31{bottom:98.460000px;}
.y129{bottom:104.505000px;}
.y15{bottom:105.150000px;}
.y117{bottom:108.210000px;}
.y13e{bottom:108.540000px;}
.y12f{bottom:111.570000px;}
.y140{bottom:111.960000px;}
.ye3{bottom:114.990000px;}
.y30{bottom:115.740000px;}
.y128{bottom:122.865000px;}
.y116{bottom:126.570000px;}
.yf1{bottom:127.005000px;}
.y12e{bottom:129.930000px;}
.y2f{bottom:133.020000px;}
.y105{bottom:143.535000px;}
.y2e{bottom:150.120000px;}
.ye4{bottom:156.570000px;}
.y42{bottom:157.860000px;}
.ya2{bottom:164.730000px;}
.y76{bottom:166.170000px;}
.yff{bottom:166.890000px;}
.y2d{bottom:167.445000px;}
.y156{bottom:169.770000px;}
.y41{bottom:176.790000px;}
.yf2{bottom:177.990000px;}
.y188{bottom:182.550000px;}
.ya1{bottom:182.910000px;}
.y2c{bottom:184.725000px;}
.y75{bottom:185.070000px;}
.y155{bottom:187.950000px;}
.y11f{bottom:188.640000px;}
.y13d{bottom:191.730000px;}
.ydf{bottom:196.050000px;}
.y106{bottom:196.410000px;}
.ye5{bottom:198.150000px;}
.ya0{bottom:200.910000px;}
.yd2{bottom:201.090000px;}
.y2b{bottom:202.005000px;}
.yfe{bottom:203.070000px;}
.y187{bottom:203.430000px;}
.y74{bottom:204.150000px;}
.y40{bottom:204.690000px;}
.y154{bottom:206.130000px;}
.y11e{bottom:207.000000px;}
.y13c{bottom:210.090000px;}
.yde{bottom:210.810000px;}
.yee{bottom:212.040000px;}
.yd1{bottom:219.090000px;}
.y2a{bottom:219.285000px;}
.y186{bottom:219.810000px;}
.y73{bottom:223.050000px;}
.y3f{bottom:223.410000px;}
.y153{bottom:224.130000px;}
.y13b{bottom:225.825000px;}
.y131{bottom:227.550000px;}
.yfa{bottom:228.060000px;}
.y9f{bottom:228.090000px;}
.y3d{bottom:228.285000px;}
.y10e{bottom:228.705000px;}
.yf3{bottom:228.930000px;}
.y29{bottom:236.565000px;}
.yd0{bottom:237.270000px;}
.y1c{bottom:239.610000px;}
.ye6{bottom:239.760000px;}
.y185{bottom:240.870000px;}
.y72{bottom:242.130000px;}
.y152{bottom:242.310000px;}
.y13a{bottom:244.185000px;}
.y3c{bottom:245.565000px;}
.y130{bottom:245.910000px;}
.y9e{bottom:246.270000px;}
.y107{bottom:249.270000px;}
.y10d{bottom:251.130000px;}
.y28{bottom:253.665000px;}
.yf9{bottom:254.670000px;}
.ycf{bottom:255.270000px;}
.y184{bottom:257.250000px;}
.y127{bottom:258.375000px;}
.y71{bottom:261.030000px;}
.y3b{bottom:262.845000px;}
.yed{bottom:263.310000px;}
.y9d{bottom:264.270000px;}
.y151{bottom:269.310000px;}
.y27{bottom:270.945000px;}
.yce{bottom:273.450000px;}
.y10c{bottom:273.600000px;}
.y183{bottom:273.630000px;}
.y143{bottom:276.450000px;}
.y126{bottom:276.735000px;}
.y115{bottom:277.635000px;}
.yf4{bottom:279.900000px;}
.y70{bottom:280.110000px;}
.y3a{bottom:280.125000px;}
.yf8{bottom:281.265000px;}
.ye7{bottom:281.340000px;}
.y9c{bottom:282.450000px;}
.y121{bottom:283.245000px;}
.y26{bottom:288.225000px;}
.y133{bottom:288.690000px;}
.yec{bottom:291.525000px;}
.ycd{bottom:291.630000px;}
.y144{bottom:292.935000px;}
.y139{bottom:293.580000px;}
.y182{bottom:294.510000px;}
.y142{bottom:294.810000px;}
.y114{bottom:295.995000px;}
.y10b{bottom:296.070000px;}
.y150{bottom:296.490000px;}
.y39{bottom:297.225000px;}
.y6f{bottom:299.010000px;}
.y120{bottom:301.605000px;}
.y108{bottom:302.145000px;}
.y25{bottom:305.505000px;}
.y132{bottom:307.050000px;}
.y123{bottom:308.775000px;}
.y9b{bottom:309.630000px;}
.y181{bottom:310.890000px;}
.y138{bottom:311.940000px;}
.y135{bottom:312.090000px;}
.y38{bottom:314.505000px;}
.y14f{bottom:314.670000px;}
.y6e{bottom:317.910000px;}
.yeb{bottom:319.710000px;}
.y3e{bottom:319.725000px;}
.y24{bottom:322.785000px;}
.ye8{bottom:322.920000px;}
.y112{bottom:324.390000px;}
.y122{bottom:327.135000px;}
.ycc{bottom:327.810000px;}
.y37{bottom:329.445000px;}
.y134{bottom:330.450000px;}
.yf5{bottom:330.870000px;}
.y180{bottom:331.770000px;}
.y124{bottom:332.535000px;}
.y14e{bottom:332.850000px;}
.y6d{bottom:336.990000px;}
.y9a{bottom:337.350000px;}
.y23{bottom:340.065000px;}
.ycb{bottom:345.990000px;}
.y17f{bottom:348.150000px;}
.y136{bottom:350.535000px;}
.y14d{bottom:350.850000px;}
.y99{bottom:355.530000px;}
.y6c{bottom:355.890000px;}
.y22{bottom:357.165000px;}
.y111{bottom:360.570000px;}
.y137{bottom:360.720000px;}
.yca{bottom:363.990000px;}
.y17e{bottom:364.530000px;}
.y14c{bottom:369.030000px;}
.y98{bottom:373.710000px;}
.y21{bottom:374.445000px;}
.yc9{bottom:382.170000px;}
.y6b{bottom:383.790000px;}
.y17d{bottom:385.410000px;}
.y14b{bottom:387.030000px;}
.y20{bottom:391.725000px;}
.yc8{bottom:400.170000px;}
.y97{bottom:400.890000px;}
.y17c{bottom:401.790000px;}
.y6a{bottom:402.870000px;}
.y1f{bottom:409.005000px;}
.y14a{bottom:414.255000px;}
.y17b{bottom:418.215000px;}
.yc7{bottom:418.395000px;}
.y69{bottom:421.815000px;}
.y1e{bottom:426.315000px;}
.y96{bottom:428.835000px;}
.yc6{bottom:436.575000px;}
.y149{bottom:438.015000px;}
.y17a{bottom:439.095000px;}
.y68{bottom:440.895000px;}
.y1d{bottom:441.075000px;}
.y95{bottom:447.015000px;}
.yc5{bottom:454.575000px;}
.y179{bottom:455.475000px;}
.y67{bottom:459.795000px;}
.y94{bottom:465.015000px;}
.y178{bottom:471.855000px;}
.yc4{bottom:472.755000px;}
.y147{bottom:474.195000px;}
.y66{bottom:478.875000px;}
.y93{bottom:483.195000px;}
.yc3{bottom:490.755000px;}
.y177{bottom:492.735000px;}
.yfd{bottom:495.615000px;}
.y65{bottom:497.775000px;}
.y92{bottom:501.375000px;}
.yc2{bottom:508.935000px;}
.y176{bottom:509.115000px;}
.y64{bottom:516.675000px;}
.y91{bottom:519.375000px;}
.y175{bottom:525.495000px;}
.yc1{bottom:527.115000px;}
.y63{bottom:535.755000px;}
.y90{bottom:537.555000px;}
.yc0{bottom:545.115000px;}
.y174{bottom:546.375000px;}
.y62{bottom:554.655000px;}
.y8f{bottom:555.555000px;}
.y173{bottom:562.755000px;}
.ybf{bottom:572.295000px;}
.y8e{bottom:573.735000px;}
.y14{bottom:575.535000px;}
.y61{bottom:578.055000px;}
.ydd{bottom:578.775000px;}
.y172{bottom:579.135000px;}
.ybe{bottom:590.475000px;}
.y8d{bottom:591.915000px;}
.ydc{bottom:593.535000px;}
.ye0{bottom:594.540000px;}
.y60{bottom:597.135000px;}
.y171{bottom:600.015000px;}
.ybd{bottom:608.475000px;}
.y1a4{bottom:614.235000px;}
.y5f{bottom:616.035000px;}
.y170{bottom:616.395000px;}
.y8c{bottom:619.095000px;}
.ybc{bottom:626.655000px;}
.y5e{bottom:635.115000px;}
.y16f{bottom:637.275000px;}
.y1a3{bottom:638.535000px;}
.ybb{bottom:644.655000px;}
.y8b{bottom:646.815000px;}
.y16e{bottom:653.685000px;}
.y5d{bottom:654.045000px;}
.y1a2{bottom:654.945000px;}
.yba{bottom:662.865000px;}
.y8a{bottom:665.025000px;}
.y5c{bottom:673.125000px;}
.y16d{bottom:674.565000px;}
.y1a1{bottom:675.825000px;}
.yb9{bottom:681.045000px;}
.y89{bottom:683.205000px;}
.y12{bottom:687.345000px;}
.y16c{bottom:690.945000px;}
.y5b{bottom:692.025000px;}
.y1a0{bottom:692.205000px;}
.yb8{bottom:699.045000px;}
.y88{bottom:701.385000px;}
.y16b{bottom:707.325000px;}
.y5a{bottom:710.925000px;}
.y19f{bottom:713.085000px;}
.yb7{bottom:717.225000px;}
.y87{bottom:719.385000px;}
.y16a{bottom:728.205000px;}
.y19e{bottom:729.465000px;}
.y110{bottom:729.645000px;}
.y125{bottom:729.720000px;}
.y59{bottom:730.005000px;}
.y11{bottom:731.625000px;}
.y113{bottom:733.140000px;}
.y86{bottom:737.565000px;}
.yb6{bottom:744.225000px;}
.y169{bottom:744.585000px;}
.y10{bottom:748.905000px;}
.y19d{bottom:750.345000px;}
.y85{bottom:755.565000px;}
.yb5{bottom:762.405000px;}
.y168{bottom:765.645000px;}
.yf{bottom:766.185000px;}
.y19c{bottom:766.725000px;}
.y58{bottom:767.985000px;}
.y84{bottom:773.745000px;}
.yb4{bottom:780.585000px;}
.y167{bottom:782.025000px;}
.ye{bottom:783.465000px;}
.y57{bottom:786.885000px;}
.y19b{bottom:787.605000px;}
.y83{bottom:791.925000px;}
.yb3{bottom:798.585000px;}
.y166{bottom:802.905000px;}
.y19a{bottom:803.985000px;}
.yd{bottom:805.965000px;}
.yfc{bottom:809.385000px;}
.y82{bottom:809.925000px;}
.yb2{bottom:816.765000px;}
.yc{bottom:818.025000px;}
.y145{bottom:819.105000px;}
.y165{bottom:819.285000px;}
.yfb{bottom:824.145000px;}
.y102{bottom:824.400000px;}
.y56{bottom:824.865000px;}
.y81{bottom:828.105000px;}
.y164{bottom:840.165000px;}
.yb{bottom:840.345000px;}
.y199{bottom:841.245000px;}
.y55{bottom:843.765000px;}
.y80{bottom:846.105000px;}
.ya{bottom:852.405000px;}
.y163{bottom:856.545000px;}
.y198{bottom:857.625000px;}
.yb1{bottom:861.945000px;}
.y54{bottom:867.165000px;}
.y7f{bottom:873.465000px;}
.y9{bottom:874.905000px;}
.y162{bottom:877.425000px;}
.y197{bottom:878.505000px;}
.yb0{bottom:880.125000px;}
.y53{bottom:886.245000px;}
.y161{bottom:893.805000px;}
.y196{bottom:894.885000px;}
.yaf{bottom:898.125000px;}
.y7e{bottom:901.230000px;}
.y52{bottom:905.370000px;}
.y8{bottom:905.730000px;}
.y160{bottom:914.730000px;}
.y195{bottom:915.810000px;}
.yae{bottom:916.350000px;}
.y7d{bottom:919.410000px;}
.y51{bottom:924.270000px;}
.y15f{bottom:931.110000px;}
.y194{bottom:932.190000px;}
.yad{bottom:934.530000px;}
.y7c{bottom:937.590000px;}
.y50{bottom:943.170000px;}
.y7{bottom:944.430000px;}
.y193{bottom:948.570000px;}
.y15e{bottom:951.990000px;}
.ydb{bottom:952.350000px;}
.yac{bottom:952.530000px;}
.y7b{bottom:955.590000px;}
.y4f{bottom:962.250000px;}
.y6{bottom:965.130000px;}
.y192{bottom:969.450000px;}
.yda{bottom:970.530000px;}
.y15d{bottom:972.870000px;}
.y7a{bottom:973.770000px;}
.yab{bottom:979.710000px;}
.y4e{bottom:981.150000px;}
.y191{bottom:985.830000px;}
.yd9{bottom:988.710000px;}
.y15c{bottom:989.250000px;}
.yaa{bottom:997.890000px;}
.y4d{bottom:1000.230000px;}
.y79{bottom:1000.950000px;}
.y5{bottom:1003.830000px;}
.y190{bottom:1006.710000px;}
.yd8{bottom:1006.890000px;}
.y15b{bottom:1010.130000px;}
.ya9{bottom:1015.890000px;}
.y4c{bottom:1019.130000px;}
.y18f{bottom:1023.090000px;}
.yd7{bottom:1024.890000px;}
.y15a{bottom:1026.510000px;}
.y78{bottom:1028.850000px;}
.ya8{bottom:1034.070000px;}
.y4b{bottom:1038.030000px;}
.y4{bottom:1038.570000px;}
.y159{bottom:1042.890000px;}
.yd6{bottom:1043.070000px;}
.y18e{bottom:1043.970000px;}
.ya7{bottom:1052.070000px;}
.y77{bottom:1056.930000px;}
.y4a{bottom:1057.110000px;}
.y18d{bottom:1060.350000px;}
.yd5{bottom:1061.070000px;}
.ya6{bottom:1070.250000px;}
.y49{bottom:1076.010000px;}
.y158{bottom:1077.630000px;}
.yd4{bottom:1079.250000px;}
.y18c{bottom:1081.230000px;}
.y48{bottom:1095.090000px;}
.ya5{bottom:1097.250000px;}
.yd3{bottom:1097.430000px;}
.y18b{bottom:1097.610000px;}
.y157{bottom:1105.710000px;}
.y47{bottom:1113.990000px;}
.ya4{bottom:1115.430000px;}
.y18a{bottom:1118.490000px;}
.y46{bottom:1132.890000px;}
.y10f{bottom:1133.430000px;}
.ya3{bottom:1133.610000px;}
.y189{bottom:1134.870000px;}
.y3{bottom:1168.200000px;}
.y45{bottom:1169.460000px;}
.y44{bottom:1186.740000px;}
.y2{bottom:1187.280000px;}
.y43{bottom:1204.740000px;}
.y1{bottom:1206.180000px;}
.hc{height:17.657227px;}
.h1b{height:36.180000px;}
.h5{height:38.158594px;}
.h9{height:40.320000px;}
.h21{height:46.308164px;}
.h24{height:46.419750px;}
.h28{height:55.824609px;}
.h14{height:56.801250px;}
.hd{height:58.621992px;}
.h6{height:58.651172px;}
.h11{height:59.383125px;}
.h8{height:60.226875px;}
.h12{height:62.184375px;}
.h1d{height:62.327813px;}
.h26{height:63.019687px;}
.h13{height:63.855000px;}
.h2{height:65.010937px;}
.h16{height:66.082500px;}
.ha{height:66.757500px;}
.h18{height:69.086250px;}
.h19{height:69.236437px;}
.h7{height:70.664062px;}
.h4{height:72.562500px;}
.h3{height:96.508125px;}
.hb{height:109.476000px;}
.h10{height:153.341016px;}
.h1a{height:292.530000px;}
.h1c{height:323.820000px;}
.h25{height:329.115000px;}
.hf{height:333.750000px;}
.h27{height:344.910000px;}
.h17{height:345.420000px;}
.h15{height:345.600000px;}
.h23{height:369.000000px;}
.h1f{height:369.075000px;}
.h20{height:375.840000px;}
.h22{height:382.500000px;}
.h1e{height:382.530000px;}
.he{height:445.395000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:17.640000px;}
.w3{width:237.630000px;}
.w8{width:319.395000px;}
.wf{width:325.800000px;}
.w11{width:333.390000px;}
.wc{width:333.975000px;}
.we{width:335.340000px;}
.wb{width:343.290000px;}
.w12{width:343.875000px;}
.w7{width:357.150000px;}
.w10{width:390.600000px;}
.w5{width:407.235000px;}
.wa{width:615.600000px;}
.w6{width:648.000000px;}
.w9{width:676.545000px;}
.wd{width:677.265000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x37{left:5.040000px;}
.x7{left:8.100000px;}
.x36{left:10.260000px;}
.x43{left:13.170000px;}
.x5a{left:14.760000px;}
.x1e{left:15.840000px;}
.x23{left:18.795000px;}
.x34{left:20.664000px;}
.x14{left:24.120000px;}
.x2a{left:25.920000px;}
.x35{left:27.864000px;}
.x46{left:29.010000px;}
.x12{left:31.965000px;}
.x17{left:34.305000px;}
.x21{left:36.000000px;}
.x53{left:37.905000px;}
.x52{left:43.125000px;}
.x11{left:45.105000px;}
.x16{left:48.315000px;}
.x20{left:49.755000px;}
.x38{left:60.150000px;}
.x32{left:61.770000px;}
.x44{left:63.795000px;}
.x33{left:68.970000px;}
.x41{left:72.930000px;}
.x42{left:76.350000px;}
.x54{left:81.390000px;}
.x13{left:92.235000px;}
.x22{left:94.890000px;}
.x3a{left:100.695000px;}
.x39{left:106.275000px;}
.x5{left:108.035987px;}
.x2b{left:115.920000px;}
.x45{left:118.695000px;}
.x6{left:122.796000px;}
.x2{left:131.255987px;}
.x51{left:135.615000px;}
.x1f{left:138.240000px;}
.x15{left:149.070000px;}
.xc{left:180.749987px;}
.xa{left:185.610000px;}
.x30{left:210.345000px;}
.x31{left:214.665000px;}
.x1a{left:233.129987px;}
.x3f{left:242.175000px;}
.x40{left:246.495000px;}
.x5b{left:248.439000px;}
.x47{left:250.740000px;}
.x50{left:253.260000px;}
.x49{left:263.085000px;}
.x48{left:268.665000px;}
.x2d{left:273.420000px;}
.x2c{left:279.000000px;}
.x3d{left:280.950000px;}
.x3c{left:286.530000px;}
.x3e{left:300.855000px;}
.x24{left:303.330000px;}
.x10{left:307.334987px;}
.x2f{left:310.890000px;}
.x2e{left:312.690000px;}
.x3{left:314.354987px;}
.xf{left:318.134987px;}
.x4a{left:321.660000px;}
.x4b{left:323.640000px;}
.x4e{left:325.770000px;}
.x4f{left:329.190000px;}
.x4c{left:332.790000px;}
.x1b{left:334.119000px;}
.x4d{left:340.890000px;}
.x28{left:343.335000px;}
.x55{left:350.859000px;}
.x26{left:353.379000px;}
.x58{left:354.639000px;}
.x8{left:360.435000px;}
.x59{left:363.855000px;}
.x57{left:366.015000px;}
.xd{left:375.374987px;}
.x9{left:378.075000px;}
.x56{left:441.435000px;}
.x25{left:446.654987px;}
.x27{left:451.335000px;}
.x3b{left:459.360000px;}
.x1c{left:465.195000px;}
.x1d{left:481.389000px;}
.x18{left:502.020000px;}
.x29{left:534.309000px;}
.x19{left:754.889987px;}
.xb{left:758.309987px;}
.x1{left:760.469987px;}
.xe{left:770.729987px;}
.x4{left:781.349987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls9{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.592000pt;}
.lse{letter-spacing:-0.445333pt;}
.ls7{letter-spacing:-0.409067pt;}
.ls4{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.318400pt;}
.ls17{letter-spacing:-0.268267pt;}
.ls11{letter-spacing:-0.233067pt;}
.ls14{letter-spacing:-0.190933pt;}
.ls10{letter-spacing:-0.190400pt;}
.ls6{letter-spacing:-0.183467pt;}
.ls12{letter-spacing:-0.099733pt;}
.ls15{letter-spacing:-0.062933pt;}
.ls13{letter-spacing:-0.051840pt;}
.ls19{letter-spacing:-0.048640pt;}
.lsa{letter-spacing:-0.046080pt;}
.ls3{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.046080pt;}
.ls2{letter-spacing:0.047360pt;}
.ls16{letter-spacing:0.076267pt;}
.ls5{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.296960pt;}
.ls0{letter-spacing:0.320000pt;}
.lsb{letter-spacing:9.760000pt;}
.ls18{letter-spacing:16.640000pt;}
.ws11{word-spacing:-16.368640pt;}
.ws0{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.656960pt;}
.ws1d{word-spacing:-14.767360pt;}
.ws7{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.126080pt;}
.wsc{word-spacing:-14.080000pt;}
.ws9{word-spacing:-14.033920pt;}
.ws6{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.440000pt;}
.ws4{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws3{word-spacing:-12.960000pt;}
.ws1f{word-spacing:-12.640000pt;}
.ws20{word-spacing:-12.591360pt;}
.ws8{word-spacing:-9.280000pt;}
.ws1{word-spacing:-8.640000pt;}
.ws1e{word-spacing:-0.053120pt;}
.ws5{word-spacing:0.000000pt;}
.ws19{word-spacing:54.521600pt;}
.ws1a{word-spacing:60.626453pt;}
.ws14{word-spacing:62.852267pt;}
.ws15{word-spacing:69.095659pt;}
.ws18{word-spacing:78.415360pt;}
.wsf{word-spacing:81.198933pt;}
.ws13{word-spacing:86.546816pt;}
.ws1b{word-spacing:100.718933pt;}
.ws16{word-spacing:109.066325pt;}
.ws12{word-spacing:129.194304pt;}
.ws1c{word-spacing:140.281920pt;}
.wse{word-spacing:144.628160pt;}
.ws17{word-spacing:148.712085pt;}
.ws10{word-spacing:163.241493pt;}
._1c{margin-left:-4.517120pt;}
._b{margin-left:-3.577600pt;}
._a{margin-left:-2.443520pt;}
._0{margin-left:-1.177600pt;}
._1{width:0.921600pt;}
._2{width:1.962453pt;}
._4{width:2.896427pt;}
._8{width:4.268160pt;}
._7{width:5.187200pt;}
._1e{width:6.109867pt;}
._e{width:7.011840pt;}
._1a{width:7.943680pt;}
._6{width:9.277440pt;}
._5{width:10.199040pt;}
._1d{width:11.119360pt;}
._d{width:12.217600pt;}
._17{width:13.601280pt;}
._16{width:14.497707pt;}
._1b{width:15.720960pt;}
._c{width:16.820480pt;}
._f{width:18.326400pt;}
._12{width:19.662720pt;}
._9{width:21.558400pt;}
._3{width:22.735360pt;}
._13{width:24.010240pt;}
._19{width:26.437120pt;}
._18{width:27.673600pt;}
._15{width:37.386880pt;}
._14{width:38.405760pt;}
._11{width:40.380160pt;}
._10{width:41.274240pt;}
._25{width:98.170880pt;}
._20{width:101.385387pt;}
._23{width:106.221440pt;}
._1f{width:118.297600pt;}
._22{width:136.853547pt;}
._21{width:139.878827pt;}
._24{width:170.038187pt;}
.fs6{font-size:16.000000pt;}
.fs4{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fsc{font-size:50.560000pt;}
.fs5{font-size:53.120000pt;}
.fsb{font-size:53.248000pt;}
.fs8{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fsa{font-size:59.008000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.fs7{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y146{bottom:0.320000pt;}
.y36{bottom:2.880000pt;}
.y101{bottom:3.040000pt;}
.yf6{bottom:4.826667pt;}
.y119{bottom:5.440000pt;}
.y148{bottom:7.200000pt;}
.ye9{bottom:11.586667pt;}
.y13{bottom:12.800000pt;}
.y12d{bottom:14.306667pt;}
.y11b{bottom:16.000000pt;}
.y109{bottom:16.133333pt;}
.y1a{bottom:18.880000pt;}
.y100{bottom:19.040000pt;}
.y12b{bottom:20.000000pt;}
.y118{bottom:21.760000pt;}
.yef{bottom:22.306667pt;}
.y35{bottom:26.080000pt;}
.ye1{bottom:28.253333pt;}
.y12c{bottom:30.626667pt;}
.y11a{bottom:32.320000pt;}
.y103{bottom:33.626667pt;}
.y19{bottom:34.240000pt;}
.y12a{bottom:36.320000pt;}
.y34{bottom:41.440000pt;}
.y18{bottom:49.600000pt;}
.y10a{bottom:52.000000pt;}
.yf7{bottom:53.093333pt;}
.y11d{bottom:55.546667pt;}
.y33{bottom:56.800000pt;}
.yea{bottom:57.253333pt;}
.y17{bottom:64.960000pt;}
.ye2{bottom:65.253333pt;}
.yf0{bottom:67.586667pt;}
.y11c{bottom:71.866667pt;}
.y32{bottom:72.160000pt;}
.y13f{bottom:80.160000pt;}
.y16{bottom:80.346667pt;}
.y104{bottom:80.613333pt;}
.y141{bottom:83.173333pt;}
.y1b{bottom:84.826667pt;}
.y31{bottom:87.520000pt;}
.y129{bottom:92.893333pt;}
.y15{bottom:93.466667pt;}
.y117{bottom:96.186667pt;}
.y13e{bottom:96.480000pt;}
.y12f{bottom:99.173333pt;}
.y140{bottom:99.520000pt;}
.ye3{bottom:102.213333pt;}
.y30{bottom:102.880000pt;}
.y128{bottom:109.213333pt;}
.y116{bottom:112.506667pt;}
.yf1{bottom:112.893333pt;}
.y12e{bottom:115.493333pt;}
.y2f{bottom:118.240000pt;}
.y105{bottom:127.586667pt;}
.y2e{bottom:133.440000pt;}
.ye4{bottom:139.173333pt;}
.y42{bottom:140.320000pt;}
.ya2{bottom:146.426667pt;}
.y76{bottom:147.706667pt;}
.yff{bottom:148.346667pt;}
.y2d{bottom:148.840000pt;}
.y156{bottom:150.906667pt;}
.y41{bottom:157.146667pt;}
.yf2{bottom:158.213333pt;}
.y188{bottom:162.266667pt;}
.ya1{bottom:162.586667pt;}
.y2c{bottom:164.200000pt;}
.y75{bottom:164.506667pt;}
.y155{bottom:167.066667pt;}
.y11f{bottom:167.680000pt;}
.y13d{bottom:170.426667pt;}
.ydf{bottom:174.266667pt;}
.y106{bottom:174.586667pt;}
.ye5{bottom:176.133333pt;}
.ya0{bottom:178.586667pt;}
.yd2{bottom:178.746667pt;}
.y2b{bottom:179.560000pt;}
.yfe{bottom:180.506667pt;}
.y187{bottom:180.826667pt;}
.y74{bottom:181.466667pt;}
.y40{bottom:181.946667pt;}
.y154{bottom:183.226667pt;}
.y11e{bottom:184.000000pt;}
.y13c{bottom:186.746667pt;}
.yde{bottom:187.386667pt;}
.yee{bottom:188.480000pt;}
.yd1{bottom:194.746667pt;}
.y2a{bottom:194.920000pt;}
.y186{bottom:195.386667pt;}
.y73{bottom:198.266667pt;}
.y3f{bottom:198.586667pt;}
.y153{bottom:199.226667pt;}
.y13b{bottom:200.733333pt;}
.y131{bottom:202.266667pt;}
.yfa{bottom:202.720000pt;}
.y9f{bottom:202.746667pt;}
.y3d{bottom:202.920000pt;}
.y10e{bottom:203.293333pt;}
.yf3{bottom:203.493333pt;}
.y29{bottom:210.280000pt;}
.yd0{bottom:210.906667pt;}
.y1c{bottom:212.986667pt;}
.ye6{bottom:213.120000pt;}
.y185{bottom:214.106667pt;}
.y72{bottom:215.226667pt;}
.y152{bottom:215.386667pt;}
.y13a{bottom:217.053333pt;}
.y3c{bottom:218.280000pt;}
.y130{bottom:218.586667pt;}
.y9e{bottom:218.906667pt;}
.y107{bottom:221.573333pt;}
.y10d{bottom:223.226667pt;}
.y28{bottom:225.480000pt;}
.yf9{bottom:226.373333pt;}
.ycf{bottom:226.906667pt;}
.y184{bottom:228.666667pt;}
.y127{bottom:229.666667pt;}
.y71{bottom:232.026667pt;}
.y3b{bottom:233.640000pt;}
.yed{bottom:234.053333pt;}
.y9d{bottom:234.906667pt;}
.y151{bottom:239.386667pt;}
.y27{bottom:240.840000pt;}
.yce{bottom:243.066667pt;}
.y10c{bottom:243.200000pt;}
.y183{bottom:243.226667pt;}
.y143{bottom:245.733333pt;}
.y126{bottom:245.986667pt;}
.y115{bottom:246.786667pt;}
.yf4{bottom:248.800000pt;}
.y70{bottom:248.986667pt;}
.y3a{bottom:249.000000pt;}
.yf8{bottom:250.013333pt;}
.ye7{bottom:250.080000pt;}
.y9c{bottom:251.066667pt;}
.y121{bottom:251.773333pt;}
.y26{bottom:256.200000pt;}
.y133{bottom:256.613333pt;}
.yec{bottom:259.133333pt;}
.ycd{bottom:259.226667pt;}
.y144{bottom:260.386667pt;}
.y139{bottom:260.960000pt;}
.y182{bottom:261.786667pt;}
.y142{bottom:262.053333pt;}
.y114{bottom:263.106667pt;}
.y10b{bottom:263.173333pt;}
.y150{bottom:263.546667pt;}
.y39{bottom:264.200000pt;}
.y6f{bottom:265.786667pt;}
.y120{bottom:268.093333pt;}
.y108{bottom:268.573333pt;}
.y25{bottom:271.560000pt;}
.y132{bottom:272.933333pt;}
.y123{bottom:274.466667pt;}
.y9b{bottom:275.226667pt;}
.y181{bottom:276.346667pt;}
.y138{bottom:277.280000pt;}
.y135{bottom:277.413333pt;}
.y38{bottom:279.560000pt;}
.y14f{bottom:279.706667pt;}
.y6e{bottom:282.586667pt;}
.yeb{bottom:284.186667pt;}
.y3e{bottom:284.200000pt;}
.y24{bottom:286.920000pt;}
.ye8{bottom:287.040000pt;}
.y112{bottom:288.346667pt;}
.y122{bottom:290.786667pt;}
.ycc{bottom:291.386667pt;}
.y37{bottom:292.840000pt;}
.y134{bottom:293.733333pt;}
.yf5{bottom:294.106667pt;}
.y180{bottom:294.906667pt;}
.y124{bottom:295.586667pt;}
.y14e{bottom:295.866667pt;}
.y6d{bottom:299.546667pt;}
.y9a{bottom:299.866667pt;}
.y23{bottom:302.280000pt;}
.ycb{bottom:307.546667pt;}
.y17f{bottom:309.466667pt;}
.y136{bottom:311.586667pt;}
.y14d{bottom:311.866667pt;}
.y99{bottom:316.026667pt;}
.y6c{bottom:316.346667pt;}
.y22{bottom:317.480000pt;}
.y111{bottom:320.506667pt;}
.y137{bottom:320.640000pt;}
.yca{bottom:323.546667pt;}
.y17e{bottom:324.026667pt;}
.y14c{bottom:328.026667pt;}
.y98{bottom:332.186667pt;}
.y21{bottom:332.840000pt;}
.yc9{bottom:339.706667pt;}
.y6b{bottom:341.146667pt;}
.y17d{bottom:342.586667pt;}
.y14b{bottom:344.026667pt;}
.y20{bottom:348.200000pt;}
.yc8{bottom:355.706667pt;}
.y97{bottom:356.346667pt;}
.y17c{bottom:357.146667pt;}
.y6a{bottom:358.106667pt;}
.y1f{bottom:363.560000pt;}
.y14a{bottom:368.226667pt;}
.y17b{bottom:371.746667pt;}
.yc7{bottom:371.906667pt;}
.y69{bottom:374.946667pt;}
.y1e{bottom:378.946667pt;}
.y96{bottom:381.186667pt;}
.yc6{bottom:388.066667pt;}
.y149{bottom:389.346667pt;}
.y17a{bottom:390.306667pt;}
.y68{bottom:391.906667pt;}
.y1d{bottom:392.066667pt;}
.y95{bottom:397.346667pt;}
.yc5{bottom:404.066667pt;}
.y179{bottom:404.866667pt;}
.y67{bottom:408.706667pt;}
.y94{bottom:413.346667pt;}
.y178{bottom:419.426667pt;}
.yc4{bottom:420.226667pt;}
.y147{bottom:421.506667pt;}
.y66{bottom:425.666667pt;}
.y93{bottom:429.506667pt;}
.yc3{bottom:436.226667pt;}
.y177{bottom:437.986667pt;}
.yfd{bottom:440.546667pt;}
.y65{bottom:442.466667pt;}
.y92{bottom:445.666667pt;}
.yc2{bottom:452.386667pt;}
.y176{bottom:452.546667pt;}
.y64{bottom:459.266667pt;}
.y91{bottom:461.666667pt;}
.y175{bottom:467.106667pt;}
.yc1{bottom:468.546667pt;}
.y63{bottom:476.226667pt;}
.y90{bottom:477.826667pt;}
.yc0{bottom:484.546667pt;}
.y174{bottom:485.666667pt;}
.y62{bottom:493.026667pt;}
.y8f{bottom:493.826667pt;}
.y173{bottom:500.226667pt;}
.ybf{bottom:508.706667pt;}
.y8e{bottom:509.986667pt;}
.y14{bottom:511.586667pt;}
.y61{bottom:513.826667pt;}
.ydd{bottom:514.466667pt;}
.y172{bottom:514.786667pt;}
.ybe{bottom:524.866667pt;}
.y8d{bottom:526.146667pt;}
.ydc{bottom:527.586667pt;}
.ye0{bottom:528.480000pt;}
.y60{bottom:530.786667pt;}
.y171{bottom:533.346667pt;}
.ybd{bottom:540.866667pt;}
.y1a4{bottom:545.986667pt;}
.y5f{bottom:547.586667pt;}
.y170{bottom:547.906667pt;}
.y8c{bottom:550.306667pt;}
.ybc{bottom:557.026667pt;}
.y5e{bottom:564.546667pt;}
.y16f{bottom:566.466667pt;}
.y1a3{bottom:567.586667pt;}
.ybb{bottom:573.026667pt;}
.y8b{bottom:574.946667pt;}
.y16e{bottom:581.053333pt;}
.y5d{bottom:581.373333pt;}
.y1a2{bottom:582.173333pt;}
.yba{bottom:589.213333pt;}
.y8a{bottom:591.133333pt;}
.y5c{bottom:598.333333pt;}
.y16d{bottom:599.613333pt;}
.y1a1{bottom:600.733333pt;}
.yb9{bottom:605.373333pt;}
.y89{bottom:607.293333pt;}
.y12{bottom:610.973333pt;}
.y16c{bottom:614.173333pt;}
.y5b{bottom:615.133333pt;}
.y1a0{bottom:615.293333pt;}
.yb8{bottom:621.373333pt;}
.y88{bottom:623.453333pt;}
.y16b{bottom:628.733333pt;}
.y5a{bottom:631.933333pt;}
.y19f{bottom:633.853333pt;}
.yb7{bottom:637.533333pt;}
.y87{bottom:639.453333pt;}
.y16a{bottom:647.293333pt;}
.y19e{bottom:648.413333pt;}
.y110{bottom:648.573333pt;}
.y125{bottom:648.640000pt;}
.y59{bottom:648.893333pt;}
.y11{bottom:650.333333pt;}
.y113{bottom:651.680000pt;}
.y86{bottom:655.613333pt;}
.yb6{bottom:661.533333pt;}
.y169{bottom:661.853333pt;}
.y10{bottom:665.693333pt;}
.y19d{bottom:666.973333pt;}
.y85{bottom:671.613333pt;}
.yb5{bottom:677.693333pt;}
.y168{bottom:680.573333pt;}
.yf{bottom:681.053333pt;}
.y19c{bottom:681.533333pt;}
.y58{bottom:682.653333pt;}
.y84{bottom:687.773333pt;}
.yb4{bottom:693.853333pt;}
.y167{bottom:695.133333pt;}
.ye{bottom:696.413333pt;}
.y57{bottom:699.453333pt;}
.y19b{bottom:700.093333pt;}
.y83{bottom:703.933333pt;}
.yb3{bottom:709.853333pt;}
.y166{bottom:713.693333pt;}
.y19a{bottom:714.653333pt;}
.yd{bottom:716.413333pt;}
.yfc{bottom:719.453333pt;}
.y82{bottom:719.933333pt;}
.yb2{bottom:726.013333pt;}
.yc{bottom:727.133333pt;}
.y145{bottom:728.093333pt;}
.y165{bottom:728.253333pt;}
.yfb{bottom:732.573333pt;}
.y102{bottom:732.800000pt;}
.y56{bottom:733.213333pt;}
.y81{bottom:736.093333pt;}
.y164{bottom:746.813333pt;}
.yb{bottom:746.973333pt;}
.y199{bottom:747.773333pt;}
.y55{bottom:750.013333pt;}
.y80{bottom:752.093333pt;}
.ya{bottom:757.693333pt;}
.y163{bottom:761.373333pt;}
.y198{bottom:762.333333pt;}
.yb1{bottom:766.173333pt;}
.y54{bottom:770.813333pt;}
.y7f{bottom:776.413333pt;}
.y9{bottom:777.693333pt;}
.y162{bottom:779.933333pt;}
.y197{bottom:780.893333pt;}
.yb0{bottom:782.333333pt;}
.y53{bottom:787.773333pt;}
.y161{bottom:794.493333pt;}
.y196{bottom:795.453333pt;}
.yaf{bottom:798.333333pt;}
.y7e{bottom:801.093333pt;}
.y52{bottom:804.773333pt;}
.y8{bottom:805.093333pt;}
.y160{bottom:813.093333pt;}
.y195{bottom:814.053333pt;}
.yae{bottom:814.533333pt;}
.y7d{bottom:817.253333pt;}
.y51{bottom:821.573333pt;}
.y15f{bottom:827.653333pt;}
.y194{bottom:828.613333pt;}
.yad{bottom:830.693333pt;}
.y7c{bottom:833.413333pt;}
.y50{bottom:838.373333pt;}
.y7{bottom:839.493333pt;}
.y193{bottom:843.173333pt;}
.y15e{bottom:846.213333pt;}
.ydb{bottom:846.533333pt;}
.yac{bottom:846.693333pt;}
.y7b{bottom:849.413333pt;}
.y4f{bottom:855.333333pt;}
.y6{bottom:857.893333pt;}
.y192{bottom:861.733333pt;}
.yda{bottom:862.693333pt;}
.y15d{bottom:864.773333pt;}
.y7a{bottom:865.573333pt;}
.yab{bottom:870.853333pt;}
.y4e{bottom:872.133333pt;}
.y191{bottom:876.293333pt;}
.yd9{bottom:878.853333pt;}
.y15c{bottom:879.333333pt;}
.yaa{bottom:887.013333pt;}
.y4d{bottom:889.093333pt;}
.y79{bottom:889.733333pt;}
.y5{bottom:892.293333pt;}
.y190{bottom:894.853333pt;}
.yd8{bottom:895.013333pt;}
.y15b{bottom:897.893333pt;}
.ya9{bottom:903.013333pt;}
.y4c{bottom:905.893333pt;}
.y18f{bottom:909.413333pt;}
.yd7{bottom:911.013333pt;}
.y15a{bottom:912.453333pt;}
.y78{bottom:914.533333pt;}
.ya8{bottom:919.173333pt;}
.y4b{bottom:922.693333pt;}
.y4{bottom:923.173333pt;}
.y159{bottom:927.013333pt;}
.yd6{bottom:927.173333pt;}
.y18e{bottom:927.973333pt;}
.ya7{bottom:935.173333pt;}
.y77{bottom:939.493333pt;}
.y4a{bottom:939.653333pt;}
.y18d{bottom:942.533333pt;}
.yd5{bottom:943.173333pt;}
.ya6{bottom:951.333333pt;}
.y49{bottom:956.453333pt;}
.y158{bottom:957.893333pt;}
.yd4{bottom:959.333333pt;}
.y18c{bottom:961.093333pt;}
.y48{bottom:973.413333pt;}
.ya5{bottom:975.333333pt;}
.yd3{bottom:975.493333pt;}
.y18b{bottom:975.653333pt;}
.y157{bottom:982.853333pt;}
.y47{bottom:990.213333pt;}
.ya4{bottom:991.493333pt;}
.y18a{bottom:994.213333pt;}
.y46{bottom:1007.013333pt;}
.y10f{bottom:1007.493333pt;}
.ya3{bottom:1007.653333pt;}
.y189{bottom:1008.773333pt;}
.y3{bottom:1038.400000pt;}
.y45{bottom:1039.520000pt;}
.y44{bottom:1054.880000pt;}
.y2{bottom:1055.360000pt;}
.y43{bottom:1070.880000pt;}
.y1{bottom:1072.160000pt;}
.hc{height:15.695312pt;}
.h1b{height:32.160000pt;}
.h5{height:33.918750pt;}
.h9{height:35.840000pt;}
.h21{height:41.162813pt;}
.h24{height:41.262000pt;}
.h28{height:49.621875pt;}
.h14{height:50.490000pt;}
.hd{height:52.108438pt;}
.h6{height:52.134375pt;}
.h11{height:52.785000pt;}
.h8{height:53.535000pt;}
.h12{height:55.275000pt;}
.h1d{height:55.402500pt;}
.h26{height:56.017500pt;}
.h13{height:56.760000pt;}
.h2{height:57.787500pt;}
.h16{height:58.740000pt;}
.ha{height:59.340000pt;}
.h18{height:61.410000pt;}
.h19{height:61.543500pt;}
.h7{height:62.812500pt;}
.h4{height:64.500000pt;}
.h3{height:85.785000pt;}
.hb{height:97.312000pt;}
.h10{height:136.303125pt;}
.h1a{height:260.026667pt;}
.h1c{height:287.840000pt;}
.h25{height:292.546667pt;}
.hf{height:296.666667pt;}
.h27{height:306.586667pt;}
.h17{height:307.040000pt;}
.h15{height:307.200000pt;}
.h23{height:328.000000pt;}
.h1f{height:328.066667pt;}
.h20{height:334.080000pt;}
.h22{height:340.000000pt;}
.h1e{height:340.026667pt;}
.he{height:395.906667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:15.680000pt;}
.w3{width:211.226667pt;}
.w8{width:283.906667pt;}
.wf{width:289.600000pt;}
.w11{width:296.346667pt;}
.wc{width:296.866667pt;}
.we{width:298.080000pt;}
.wb{width:305.146667pt;}
.w12{width:305.666667pt;}
.w7{width:317.466667pt;}
.w10{width:347.200000pt;}
.w5{width:361.986667pt;}
.wa{width:547.200000pt;}
.w6{width:576.000000pt;}
.w9{width:601.373333pt;}
.wd{width:602.013333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x37{left:4.480000pt;}
.x7{left:7.200000pt;}
.x36{left:9.120000pt;}
.x43{left:11.706667pt;}
.x5a{left:13.120000pt;}
.x1e{left:14.080000pt;}
.x23{left:16.706667pt;}
.x34{left:18.368000pt;}
.x14{left:21.440000pt;}
.x2a{left:23.040000pt;}
.x35{left:24.768000pt;}
.x46{left:25.786667pt;}
.x12{left:28.413333pt;}
.x17{left:30.493333pt;}
.x21{left:32.000000pt;}
.x53{left:33.693333pt;}
.x52{left:38.333333pt;}
.x11{left:40.093333pt;}
.x16{left:42.946667pt;}
.x20{left:44.226667pt;}
.x38{left:53.466667pt;}
.x32{left:54.906667pt;}
.x44{left:56.706667pt;}
.x33{left:61.306667pt;}
.x41{left:64.826667pt;}
.x42{left:67.866667pt;}
.x54{left:72.346667pt;}
.x13{left:81.986667pt;}
.x22{left:84.346667pt;}
.x3a{left:89.506667pt;}
.x39{left:94.466667pt;}
.x5{left:96.031988pt;}
.x2b{left:103.040000pt;}
.x45{left:105.506667pt;}
.x6{left:109.152000pt;}
.x2{left:116.671988pt;}
.x51{left:120.546667pt;}
.x1f{left:122.880000pt;}
.x15{left:132.506667pt;}
.xc{left:160.666655pt;}
.xa{left:164.986667pt;}
.x30{left:186.973333pt;}
.x31{left:190.813333pt;}
.x1a{left:207.226655pt;}
.x3f{left:215.266667pt;}
.x40{left:219.106667pt;}
.x5b{left:220.834667pt;}
.x47{left:222.880000pt;}
.x50{left:225.120000pt;}
.x49{left:233.853333pt;}
.x48{left:238.813333pt;}
.x2d{left:243.040000pt;}
.x2c{left:248.000000pt;}
.x3d{left:249.733333pt;}
.x3c{left:254.693333pt;}
.x3e{left:267.426667pt;}
.x24{left:269.626667pt;}
.x10{left:273.186655pt;}
.x2f{left:276.346667pt;}
.x2e{left:277.946667pt;}
.x3{left:279.426655pt;}
.xf{left:282.786655pt;}
.x4a{left:285.920000pt;}
.x4b{left:287.680000pt;}
.x4e{left:289.573333pt;}
.x4f{left:292.613333pt;}
.x4c{left:295.813333pt;}
.x1b{left:296.994667pt;}
.x4d{left:303.013333pt;}
.x28{left:305.186667pt;}
.x55{left:311.874667pt;}
.x26{left:314.114667pt;}
.x58{left:315.234667pt;}
.x8{left:320.386667pt;}
.x59{left:323.426667pt;}
.x57{left:325.346667pt;}
.xd{left:333.666655pt;}
.x9{left:336.066667pt;}
.x56{left:392.386667pt;}
.x25{left:397.026655pt;}
.x27{left:401.186667pt;}
.x3b{left:408.320000pt;}
.x1c{left:413.506667pt;}
.x1d{left:427.901333pt;}
.x18{left:446.240000pt;}
.x29{left:474.941333pt;}
.x19{left:671.013322pt;}
.xb{left:674.053322pt;}
.x1{left:675.973322pt;}
.xe{left:685.093322pt;}
.x4{left:694.533322pt;}
}




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