
    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_70d8d29c3890b2d8a944cdf0.woff')format("woff");}.ff1{font-family:ff1;line-height:0.939941;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_e80ff242d6e493ce4b5215be.woff')format("woff");}.ff2{font-family:ff2;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_97f9ff9da9eda01353d8d1c9.woff')format("woff");}.ff3{font-family:ff3;line-height:0.939941;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_0cadf6dcd8f109ec8d2dbd90.woff')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_85753fe728d65d686ff3bdd5.woff')format("woff");}.ff5{font-family:ff5;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d917e2ed0066e93b56e031d3.woff')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_4811f7095438e45e780f5c04.woff')format("woff");}.ff8{font-family:ff8;line-height:0.986328;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_0890ccccec3aaf49738c725c.woff')format("woff");}.ff9{font-family:ff9;line-height:0.986328;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_defca4745d71b77212ec84c0.woff')format("woff");}.ffa{font-family:ffa;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;}
.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:23.760000px;}
.lsb{letter-spacing:-0.774000px;}
.ls3{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.666000px;}
.ls7{letter-spacing:-0.612000px;}
.lsf{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.513600px;}
.lsa{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.206400px;}
.ls12{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.053280px;}
.ls13{letter-spacing:0.072000px;}
.ls18{letter-spacing:0.105120px;}
.ls6{letter-spacing:0.106800px;}
.ls17{letter-spacing:0.153600px;}
.lsd{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.206400px;}
.lse{letter-spacing:0.259800px;}
.ls8{letter-spacing:0.259920px;}
.ls11{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.666000px;}
.ls4{letter-spacing:0.828000px;}
.ls10{letter-spacing:1.620000px;}
.ls16{letter-spacing:16.506720px;}
.ls15{letter-spacing:46.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.199800px;}
.ws2{word-spacing:-15.146400px;}
.wse{word-spacing:-15.093600px;}
.ws6{word-spacing:-15.046800px;}
.wsd{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.ws8{word-spacing:-14.426400px;}
.wsf{word-spacing:-14.220000px;}
.ws7{word-spacing:-14.166000px;}
.ws10{word-spacing:-13.860000px;}
.wsc{word-spacing:-12.420000px;}
.wsb{word-spacing:-12.060000px;}
.ws1{word-spacing:-10.440000px;}
.ws4{word-spacing:0.000000px;}
._1d{margin-left:-4.197840px;}
._1a{margin-left:-3.182160px;}
._b{margin-left:-2.179680px;}
._0{margin-left:-1.080000px;}
._c{width:1.175520px;}
._1{width:2.220000px;}
._11{width:3.803760px;}
._13{width:4.832640px;}
._15{width:5.995680px;}
._14{width:7.051680px;}
._17{width:8.054640px;}
._12{width:9.199200px;}
._6{width:10.800000px;}
._16{width:11.947920px;}
._18{width:13.936320px;}
._1e{width:16.564800px;}
._1c{width:17.848560px;}
._1b{width:19.620960px;}
._1f{width:23.983440px;}
._28{width:30.558240px;}
._29{width:32.999520px;}
._21{width:45.972720px;}
._26{width:49.203360px;}
._27{width:50.535360px;}
._24{width:56.851440px;}
._25{width:58.076880px;}
._20{width:72.649440px;}
._23{width:74.579040px;}
._7{width:76.284960px;}
._8{width:154.080000px;}
._e{width:195.120000px;}
._2{width:255.512640px;}
._22{width:256.672320px;}
._3{width:357.300000px;}
._5{width:436.440000px;}
._4{width:443.166240px;}
._19{width:444.265920px;}
._9{width:604.364160px;}
._f{width:653.880000px;}
._10{width:703.560000px;}
._a{width:1096.860000px;}
._d{width:1176.060000px;}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs9{font-size:51.120000px;}
.fs8{font-size:54.000000px;}
.fsa{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yd5{bottom:2.340000px;}
.ycf{bottom:2.385000px;}
.y109{bottom:2.520000px;}
.y91{bottom:4.500000px;}
.ycb{bottom:4.545000px;}
.y99{bottom:4.680000px;}
.ye{bottom:6.300000px;}
.yda{bottom:8.280000px;}
.ye4{bottom:8.310000px;}
.yf9{bottom:8.454000px;}
.yd6{bottom:8.460000px;}
.yfe{bottom:11.880000px;}
.y6{bottom:12.420000px;}
.y9a{bottom:12.600000px;}
.y48{bottom:13.500000px;}
.yd3{bottom:14.400000px;}
.ye2{bottom:14.430000px;}
.yf7{bottom:14.445000px;}
.yfb{bottom:14.574000px;}
.ydd{bottom:14.580000px;}
.y8{bottom:18.180000px;}
.yaa{bottom:18.360000px;}
.y4c{bottom:18.900000px;}
.y54{bottom:18.930000px;}
.y5e{bottom:18.945000px;}
.y50{bottom:19.080000px;}
.y96{bottom:20.340000px;}
.ye3{bottom:20.370000px;}
.yca{bottom:20.385000px;}
.yf8{bottom:20.514000px;}
.y98{bottom:20.520000px;}
.y10e{bottom:20.550000px;}
.y118{bottom:26.454000px;}
.yd4{bottom:26.460000px;}
.ye1{bottom:26.490000px;}
.yf6{bottom:26.505000px;}
.yfa{bottom:26.634000px;}
.ydc{bottom:26.640000px;}
.y10d{bottom:26.670000px;}
.y116{bottom:26.685000px;}
.y4a{bottom:26.820000px;}
.y5c{bottom:26.865000px;}
.y57{bottom:27.000000px;}
.yae{bottom:27.360000px;}
.ybe{bottom:28.440000px;}
.yfd{bottom:28.620000px;}
.yf3{bottom:32.805000px;}
.yeb{bottom:32.940000px;}
.y4b{bottom:34.740000px;}
.y52{bottom:34.770000px;}
.y4e{bottom:34.920000px;}
.y5d{bottom:34.965000px;}
.yc{bottom:36.000000px;}
.y95{bottom:36.180000px;}
.yc9{bottom:36.225000px;}
.ybd{bottom:36.360000px;}
.y5{bottom:40.320000px;}
.ya8{bottom:40.500000px;}
.yad{bottom:49.320000px;}
.y5a{bottom:50.580000px;}
.y53{bottom:50.610000px;}
.y4f{bottom:50.760000px;}
.ye5{bottom:51.300000px;}
.yf5{bottom:51.525000px;}
.y94{bottom:52.200000px;}
.yb{bottom:57.780000px;}
.yf1{bottom:58.140000px;}
.yc4{bottom:61.605000px;}
.yaf{bottom:66.960000px;}
.y93{bottom:68.040000px;}
.y4{bottom:68.400000px;}
.ya7{bottom:68.580000px;}
.ydf{bottom:69.840000px;}
.yf0{bottom:70.200000px;}
.yac{bottom:70.920000px;}
.yd{bottom:75.420000px;}
.yc3{bottom:77.445000px;}
.ya{bottom:79.560000px;}
.yef{bottom:82.260000px;}
.y112{bottom:82.440000px;}
.ye8{bottom:88.425000px;}
.yc2{bottom:93.465000px;}
.yee{bottom:94.365000px;}
.y111{bottom:94.500000px;}
.y3{bottom:96.330000px;}
.ya6{bottom:96.480000px;}
.yba{bottom:100.830000px;}
.y107{bottom:101.010000px;}
.y6a{bottom:103.500000px;}
.y3c{bottom:105.480000px;}
.yed{bottom:106.425000px;}
.yc1{bottom:109.305000px;}
.ycd{bottom:111.996000px;}
.yd8{bottom:112.890000px;}
.y106{bottom:113.070000px;}
.y11a{bottom:117.000000px;}
.y8f{bottom:117.540000px;}
.yec{bottom:118.485000px;}
.yb7{bottom:118.836000px;}
.y69{bottom:123.300000px;}
.y3b{bottom:125.280000px;}
.y2{bottom:125.670000px;}
.ya5{bottom:125.850000px;}
.ycc{bottom:131.796000px;}
.y101{bottom:132.696000px;}
.y119{bottom:135.720000px;}
.yb6{bottom:137.196000px;}
.y8e{bottom:137.340000px;}
.y68{bottom:143.280000px;}
.y3a{bottom:145.260000px;}
.yd0{bottom:146.556000px;}
.yb5{bottom:156.990000px;}
.y8d{bottom:157.350000px;}
.y67{bottom:163.110000px;}
.y39{bottom:165.090000px;}
.y110{bottom:169.590000px;}
.yb4{bottom:176.970000px;}
.y8c{bottom:177.150000px;}
.y66{bottom:182.910000px;}
.ye7{bottom:183.630000px;}
.y38{bottom:184.890000px;}
.yb3{bottom:196.770000px;}
.y8b{bottom:196.950000px;}
.y65{bottom:202.710000px;}
.y37{bottom:204.690000px;}
.y117{bottom:206.670000px;}
.yb2{bottom:216.570000px;}
.y8a{bottom:216.750000px;}
.yf4{bottom:220.530000px;}
.y64{bottom:222.510000px;}
.y103{bottom:224.319000px;}
.y36{bottom:224.490000px;}
.yc0{bottom:231.330000px;}
.yd1{bottom:236.379000px;}
.y89{bottom:236.550000px;}
.y63{bottom:242.490000px;}
.y115{bottom:243.570000px;}
.y35{bottom:244.470000px;}
.y102{bottom:248.439000px;}
.y88{bottom:256.530000px;}
.yf2{bottom:257.610000px;}
.y62{bottom:262.290000px;}
.yc8{bottom:263.910000px;}
.y34{bottom:264.270000px;}
.y87{bottom:276.330000px;}
.y114{bottom:280.695000px;}
.y61{bottom:282.090000px;}
.y33{bottom:284.070000px;}
.yea{bottom:294.555000px;}
.y86{bottom:296.130000px;}
.ya3{bottom:296.310000px;}
.y60{bottom:298.470000px;}
.y32{bottom:303.870000px;}
.yc7{bottom:312.195000px;}
.y85{bottom:315.930000px;}
.ya2{bottom:316.110000px;}
.y113{bottom:317.595000px;}
.y31{bottom:323.670000px;}
.ye9{bottom:331.455000px;}
.y84{bottom:335.730000px;}
.ya1{bottom:336.090000px;}
.y30{bottom:343.650000px;}
.y5f{bottom:344.550000px;}
.yc6{bottom:344.775000px;}
.y105{bottom:354.495000px;}
.y83{bottom:355.710000px;}
.ya0{bottom:355.890000px;}
.y2f{bottom:363.450000px;}
.yd7{bottom:368.535000px;}
.y82{bottom:375.510000px;}
.y9f{bottom:375.690000px;}
.yc5{bottom:377.175000px;}
.y2e{bottom:383.250000px;}
.y5b{bottom:390.630000px;}
.y10f{bottom:391.575000px;}
.y81{bottom:395.310000px;}
.y9e{bottom:395.490000px;}
.y2d{bottom:403.095000px;}
.ye6{bottom:405.435000px;}
.yb9{bottom:409.755000px;}
.y80{bottom:415.155000px;}
.y9d{bottom:415.335000px;}
.y2c{bottom:422.895000px;}
.y10c{bottom:428.475000px;}
.y7f{bottom:434.955000px;}
.y9c{bottom:435.315000px;}
.y59{bottom:436.935000px;}
.ye0{bottom:442.515000px;}
.y2b{bottom:442.875000px;}
.y9b{bottom:450.075000px;}
.y7e{bottom:454.935000px;}
.ybf{bottom:458.025000px;}
.y2a{bottom:462.675000px;}
.y10b{bottom:465.585000px;}
.y7d{bottom:474.735000px;}
.yde{bottom:479.445000px;}
.y29{bottom:482.475000px;}
.y7c{bottom:494.535000px;}
.y97{bottom:498.315000px;}
.y58{bottom:498.855000px;}
.y28{bottom:502.275000px;}
.y10a{bottom:502.485000px;}
.y7b{bottom:514.335000px;}
.ydb{bottom:516.345000px;}
.y27{bottom:522.075000px;}
.ybc{bottom:522.285000px;}
.y92{bottom:530.895000px;}
.y7a{bottom:534.135000px;}
.y108{bottom:539.385000px;}
.y26{bottom:542.055000px;}
.y56{bottom:544.935000px;}
.yd9{bottom:553.425000px;}
.y79{bottom:554.115000px;}
.y25{bottom:561.855000px;}
.y78{bottom:573.915000px;}
.y104{bottom:576.465000px;}
.y24{bottom:581.655000px;}
.ybb{bottom:586.545000px;}
.yd2{bottom:590.325000px;}
.y55{bottom:591.195000px;}
.y77{bottom:593.715000px;}
.y23{bottom:601.455000px;}
.y90{bottom:610.995000px;}
.y100{bottom:613.365000px;}
.y76{bottom:613.515000px;}
.yb8{bottom:619.125000px;}
.y22{bottom:621.255000px;}
.yce{bottom:627.405000px;}
.yff{bottom:632.130000px;}
.y75{bottom:633.315000px;}
.y51{bottom:637.275000px;}
.y21{bottom:641.235000px;}
.yfc{bottom:645.630000px;}
.yb1{bottom:651.930000px;}
.y74{bottom:653.325000px;}
.y20{bottom:661.065000px;}
.yb0{bottom:671.730000px;}
.y73{bottom:673.125000px;}
.y1f{bottom:680.865000px;}
.yab{bottom:689.190000px;}
.y72{bottom:692.925000px;}
.y4d{bottom:699.225000px;}
.y1e{bottom:700.665000px;}
.ya4{bottom:703.590000px;}
.y71{bottom:712.725000px;}
.y1d{bottom:720.465000px;}
.y70{bottom:732.525000px;}
.ya9{bottom:737.970000px;}
.y1c{bottom:740.445000px;}
.y6f{bottom:752.505000px;}
.y1b{bottom:760.245000px;}
.y49{bottom:761.325000px;}
.y6e{bottom:772.305000px;}
.y1a{bottom:780.045000px;}
.y6d{bottom:792.105000px;}
.y19{bottom:799.845000px;}
.y47{bottom:809.745000px;}
.y6c{bottom:811.905000px;}
.y18{bottom:819.645000px;}
.y6b{bottom:831.705000px;}
.y17{bottom:839.625000px;}
.y46{bottom:851.685000px;}
.y16{bottom:859.425000px;}
.y45{bottom:871.485000px;}
.y15{bottom:879.225000px;}
.y44{bottom:891.285000px;}
.y14{bottom:899.070000px;}
.y43{bottom:911.130000px;}
.y13{bottom:918.870000px;}
.y42{bottom:930.930000px;}
.y12{bottom:944.070000px;}
.y41{bottom:950.910000px;}
.y11{bottom:959.190000px;}
.y40{bottom:970.710000px;}
.y10{bottom:980.430000px;}
.y3f{bottom:990.510000px;}
.yf{bottom:1003.830000px;}
.y3e{bottom:1010.310000px;}
.y3d{bottom:1030.110000px;}
.y9{bottom:1047.570000px;}
.y1{bottom:1062.150000px;}
.y7{bottom:1096.350000px;}
.h6{height:2.010938px;}
.h3a{height:12.060000px;}
.h2a{height:12.096000px;}
.h19{height:15.840000px;}
.h24{height:15.876000px;}
.ha{height:21.780000px;}
.h22{height:21.816000px;}
.hd{height:27.147656px;}
.h2d{height:29.158594px;}
.h2b{height:30.239297px;}
.h26{height:31.680000px;}
.h1b{height:31.860000px;}
.h7{height:33.480000px;}
.h21{height:33.660000px;}
.h13{height:33.683203px;}
.h10{height:33.840000px;}
.h2f{height:34.419375px;}
.h11{height:34.931602px;}
.h2e{height:36.180000px;}
.h33{height:36.216000px;}
.h31{height:36.360000px;}
.h3c{height:36.396000px;}
.h39{height:37.017070px;}
.h23{height:37.705078px;}
.h1d{height:39.760312px;}
.h8{height:41.726953px;}
.h41{height:42.854414px;}
.hf{height:43.273477px;}
.h3f{height:43.506914px;}
.h12{height:46.080000px;}
.hb{height:46.251562px;}
.h16{height:46.260000px;}
.h18{height:46.296000px;}
.h1c{height:47.520000px;}
.h28{height:47.556000px;}
.h38{height:47.700000px;}
.h4{height:47.965781px;}
.he{height:49.255313px;}
.h9{height:53.999297px;}
.h40{height:56.574492px;}
.h17{height:61.920000px;}
.h15{height:61.956000px;}
.h14{height:62.100000px;}
.h27{height:63.540000px;}
.h3{height:65.170898px;}
.hc{height:69.341836px;}
.h3d{height:73.080000px;}
.h37{height:73.116000px;}
.h36{height:73.260000px;}
.h3e{height:73.296000px;}
.h1a{height:79.380000px;}
.h34{height:110.196000px;}
.h5{height:112.536000px;}
.h2{height:146.736000px;}
.h20{height:146.916000px;}
.h32{height:147.096000px;}
.h29{height:177.690000px;}
.h35{height:184.170000px;}
.h25{height:208.470000px;}
.h30{height:221.070000px;}
.h3b{height:221.250000px;}
.h2c{height:479.955000px;}
.h1e{height:892.980000px;}
.h1f{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.900000px;}
.wa{width:47.520000px;}
.wb{width:47.556000px;}
.w29{width:48.060000px;}
.w35{width:50.220000px;}
.w8{width:56.916000px;}
.w20{width:62.856000px;}
.w21{width:63.180000px;}
.wc{width:63.396000px;}
.w23{width:63.900000px;}
.w24{width:63.936000px;}
.w32{width:64.080000px;}
.w28{width:64.116000px;}
.w31{width:64.260000px;}
.w34{width:64.296000px;}
.w2b{width:67.536000px;}
.w36{width:68.076000px;}
.w1c{width:68.220000px;}
.w30{width:68.400000px;}
.w33{width:68.436000px;}
.w25{width:69.480000px;}
.w27{width:69.516000px;}
.w1f{width:70.380000px;}
.w1d{width:70.560000px;}
.w1e{width:70.596000px;}
.w18{width:73.620000px;}
.w19{width:73.656000px;}
.w1a{width:73.800000px;}
.w1b{width:73.836000px;}
.w2c{width:77.220000px;}
.w26{width:90.216000px;}
.w9{width:91.476000px;}
.w2f{width:97.776000px;}
.w17{width:126.756000px;}
.w6{width:127.296000px;}
.w3{width:131.796000px;}
.w15{width:131.940000px;}
.w10{width:139.356000px;}
.w2a{width:145.656000px;}
.w2e{width:190.290000px;}
.w22{width:194.430000px;}
.we{width:214.410000px;}
.wf{width:336.135000px;}
.w7{width:600.945000px;}
.w11{width:627.225000px;}
.w14{width:654.405000px;}
.w2{width:654.630000px;}
.wd{width:691.530000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w2d{width:1140.840000px;}
.w16{width:1262.879981px;}
.w12{width:1262.880000px;}
.w13{width:1263.000000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x10{left:9.720000px;}
.x12{left:10.800000px;}
.x59{left:12.060000px;}
.x2f{left:13.140000px;}
.x54{left:14.220000px;}
.xf{left:15.660000px;}
.x14{left:17.100000px;}
.x56{left:18.360000px;}
.x17{left:20.160000px;}
.x3d{left:22.140000px;}
.x13{left:23.760000px;}
.x11{left:24.840000px;}
.x18{left:25.920000px;}
.x15{left:27.720000px;}
.x44{left:29.160000px;}
.x41{left:30.780000px;}
.x43{left:32.220000px;}
.x42{left:33.840000px;}
.x57{left:35.490000px;}
.x58{left:38.010000px;}
.x16{left:41.436000px;}
.xb{left:43.776000px;}
.x5a{left:47.340000px;}
.x2d{left:52.200000px;}
.x1{left:53.280000px;}
.x19{left:54.720000px;}
.x66{left:80.999987px;}
.x29{left:91.434000px;}
.x53{left:103.500000px;}
.x64{left:105.660000px;}
.xa{left:108.035987px;}
.x6{left:112.895987px;}
.x4{left:118.290000px;}
.x1a{left:146.916000px;}
.x2b{left:153.030000px;}
.x55{left:171.930000px;}
.x65{left:174.630000px;}
.xc{left:181.290000px;}
.x1b{left:195.330000px;}
.x8{left:198.749987px;}
.xd{left:220.725000px;}
.x9{left:228.629987px;}
.x30{left:238.350000px;}
.x1c{left:243.570000px;}
.x5b{left:245.730000px;}
.x45{left:249.870000px;}
.x33{left:256.530000px;}
.x2e{left:280.299000px;}
.x1d{left:291.855000px;}
.x5c{left:310.350000px;}
.x46{left:314.490000px;}
.x34{left:330.870000px;}
.x28{left:334.689000px;}
.x1e{left:340.275000px;}
.x2a{left:362.235000px;}
.x47{left:379.155000px;}
.x1f{left:388.515000px;}
.x35{left:405.255000px;}
.x5d{left:408.855000px;}
.x20{left:436.755000px;}
.x7{left:446.504987px;}
.x48{left:449.355000px;}
.x5e{left:477.975000px;}
.x36{left:479.775000px;}
.x21{left:485.205000px;}
.x49{left:513.975000px;}
.x22{left:533.445000px;}
.x5f{left:542.955000px;}
.x37{left:554.115000px;}
.x4a{left:578.595000px;}
.x23{left:581.685000px;}
.x60{left:607.935000px;}
.x38{left:628.665000px;}
.x24{left:630.150000px;}
.x4b{left:669.525000px;}
.x61{left:672.945000px;}
.x25{left:678.390000px;}
.x2c{left:699.090000px;}
.x39{left:703.005000px;}
.x3{left:707.910000px;}
.x26{left:726.630000px;}
.x4c{left:739.725000px;}
.x62{left:741.885000px;}
.x27{left:775.050000px;}
.x3a{left:777.345000px;}
.xe{left:782.250000px;}
.x4d{left:809.925000px;}
.x63{left:811.005000px;}
.x5{left:829.260000px;}
.x3b{left:851.865000px;}
.x4e{left:880.170000px;}
.x31{left:892.770000px;}
.x3c{left:926.250000px;}
.x4f{left:944.790000px;}
.x3e{left:995.190000px;}
.x50{left:1014.990000px;}
.x3f{left:1066.650000px;}
.x51{left:1079.610000px;}
.x40{left:1137.960000px;}
.x52{left:1144.440000px;}
.x32{left:1199.160000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsb{letter-spacing:-0.688000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.592000pt;}
.ls7{letter-spacing:-0.544000pt;}
.lsf{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.456533pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.183467pt;}
.ls12{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.047360pt;}
.ls13{letter-spacing:0.064000pt;}
.ls18{letter-spacing:0.093440pt;}
.ls6{letter-spacing:0.094933pt;}
.ls17{letter-spacing:0.136533pt;}
.lsd{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.183467pt;}
.lse{letter-spacing:0.230933pt;}
.ls8{letter-spacing:0.231040pt;}
.ls11{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.592000pt;}
.ls4{letter-spacing:0.736000pt;}
.ls10{letter-spacing:1.440000pt;}
.ls16{letter-spacing:14.672640pt;}
.ls15{letter-spacing:40.912640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.510933pt;}
.ws2{word-spacing:-13.463467pt;}
.wse{word-spacing:-13.416533pt;}
.ws6{word-spacing:-13.374933pt;}
.wsd{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.ws8{word-spacing:-12.823467pt;}
.wsf{word-spacing:-12.640000pt;}
.ws7{word-spacing:-12.592000pt;}
.ws10{word-spacing:-12.320000pt;}
.wsc{word-spacing:-11.040000pt;}
.wsb{word-spacing:-10.720000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws4{word-spacing:0.000000pt;}
._1d{margin-left:-3.731413pt;}
._1a{margin-left:-2.828587pt;}
._b{margin-left:-1.937493pt;}
._0{margin-left:-0.960000pt;}
._c{width:1.044907pt;}
._1{width:1.973333pt;}
._11{width:3.381120pt;}
._13{width:4.295680pt;}
._15{width:5.329493pt;}
._14{width:6.268160pt;}
._17{width:7.159680pt;}
._12{width:8.177067pt;}
._6{width:9.600000pt;}
._16{width:10.620373pt;}
._18{width:12.387840pt;}
._1e{width:14.724267pt;}
._1c{width:15.865387pt;}
._1b{width:17.440853pt;}
._1f{width:21.318613pt;}
._28{width:27.162880pt;}
._29{width:29.332907pt;}
._21{width:40.864640pt;}
._26{width:43.736320pt;}
._27{width:44.920320pt;}
._24{width:50.534613pt;}
._25{width:51.623893pt;}
._20{width:64.577280pt;}
._23{width:66.292480pt;}
._7{width:67.808853pt;}
._8{width:136.960000pt;}
._e{width:173.440000pt;}
._2{width:227.122347pt;}
._22{width:228.153173pt;}
._3{width:317.600000pt;}
._5{width:387.946667pt;}
._4{width:393.925547pt;}
._19{width:394.903040pt;}
._9{width:537.212587pt;}
._f{width:581.226667pt;}
._10{width:625.386667pt;}
._a{width:974.986667pt;}
._d{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs9{font-size:45.440000pt;}
.fs8{font-size:48.000000pt;}
.fsa{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yd5{bottom:2.080000pt;}
.ycf{bottom:2.120000pt;}
.y109{bottom:2.240000pt;}
.y91{bottom:4.000000pt;}
.ycb{bottom:4.040000pt;}
.y99{bottom:4.160000pt;}
.ye{bottom:5.600000pt;}
.yda{bottom:7.360000pt;}
.ye4{bottom:7.386667pt;}
.yf9{bottom:7.514667pt;}
.yd6{bottom:7.520000pt;}
.yfe{bottom:10.560000pt;}
.y6{bottom:11.040000pt;}
.y9a{bottom:11.200000pt;}
.y48{bottom:12.000000pt;}
.yd3{bottom:12.800000pt;}
.ye2{bottom:12.826667pt;}
.yf7{bottom:12.840000pt;}
.yfb{bottom:12.954667pt;}
.ydd{bottom:12.960000pt;}
.y8{bottom:16.160000pt;}
.yaa{bottom:16.320000pt;}
.y4c{bottom:16.800000pt;}
.y54{bottom:16.826667pt;}
.y5e{bottom:16.840000pt;}
.y50{bottom:16.960000pt;}
.y96{bottom:18.080000pt;}
.ye3{bottom:18.106667pt;}
.yca{bottom:18.120000pt;}
.yf8{bottom:18.234667pt;}
.y98{bottom:18.240000pt;}
.y10e{bottom:18.266667pt;}
.y118{bottom:23.514667pt;}
.yd4{bottom:23.520000pt;}
.ye1{bottom:23.546667pt;}
.yf6{bottom:23.560000pt;}
.yfa{bottom:23.674667pt;}
.ydc{bottom:23.680000pt;}
.y10d{bottom:23.706667pt;}
.y116{bottom:23.720000pt;}
.y4a{bottom:23.840000pt;}
.y5c{bottom:23.880000pt;}
.y57{bottom:24.000000pt;}
.yae{bottom:24.320000pt;}
.ybe{bottom:25.280000pt;}
.yfd{bottom:25.440000pt;}
.yf3{bottom:29.160000pt;}
.yeb{bottom:29.280000pt;}
.y4b{bottom:30.880000pt;}
.y52{bottom:30.906667pt;}
.y4e{bottom:31.040000pt;}
.y5d{bottom:31.080000pt;}
.yc{bottom:32.000000pt;}
.y95{bottom:32.160000pt;}
.yc9{bottom:32.200000pt;}
.ybd{bottom:32.320000pt;}
.y5{bottom:35.840000pt;}
.ya8{bottom:36.000000pt;}
.yad{bottom:43.840000pt;}
.y5a{bottom:44.960000pt;}
.y53{bottom:44.986667pt;}
.y4f{bottom:45.120000pt;}
.ye5{bottom:45.600000pt;}
.yf5{bottom:45.800000pt;}
.y94{bottom:46.400000pt;}
.yb{bottom:51.360000pt;}
.yf1{bottom:51.680000pt;}
.yc4{bottom:54.760000pt;}
.yaf{bottom:59.520000pt;}
.y93{bottom:60.480000pt;}
.y4{bottom:60.800000pt;}
.ya7{bottom:60.960000pt;}
.ydf{bottom:62.080000pt;}
.yf0{bottom:62.400000pt;}
.yac{bottom:63.040000pt;}
.yd{bottom:67.040000pt;}
.yc3{bottom:68.840000pt;}
.ya{bottom:70.720000pt;}
.yef{bottom:73.120000pt;}
.y112{bottom:73.280000pt;}
.ye8{bottom:78.600000pt;}
.yc2{bottom:83.080000pt;}
.yee{bottom:83.880000pt;}
.y111{bottom:84.000000pt;}
.y3{bottom:85.626667pt;}
.ya6{bottom:85.760000pt;}
.yba{bottom:89.626667pt;}
.y107{bottom:89.786667pt;}
.y6a{bottom:92.000000pt;}
.y3c{bottom:93.760000pt;}
.yed{bottom:94.600000pt;}
.yc1{bottom:97.160000pt;}
.ycd{bottom:99.552000pt;}
.yd8{bottom:100.346667pt;}
.y106{bottom:100.506667pt;}
.y11a{bottom:104.000000pt;}
.y8f{bottom:104.480000pt;}
.yec{bottom:105.320000pt;}
.yb7{bottom:105.632000pt;}
.y69{bottom:109.600000pt;}
.y3b{bottom:111.360000pt;}
.y2{bottom:111.706667pt;}
.ya5{bottom:111.866667pt;}
.ycc{bottom:117.152000pt;}
.y101{bottom:117.952000pt;}
.y119{bottom:120.640000pt;}
.yb6{bottom:121.952000pt;}
.y8e{bottom:122.080000pt;}
.y68{bottom:127.360000pt;}
.y3a{bottom:129.120000pt;}
.yd0{bottom:130.272000pt;}
.yb5{bottom:139.546667pt;}
.y8d{bottom:139.866667pt;}
.y67{bottom:144.986667pt;}
.y39{bottom:146.746667pt;}
.y110{bottom:150.746667pt;}
.yb4{bottom:157.306667pt;}
.y8c{bottom:157.466667pt;}
.y66{bottom:162.586667pt;}
.ye7{bottom:163.226667pt;}
.y38{bottom:164.346667pt;}
.yb3{bottom:174.906667pt;}
.y8b{bottom:175.066667pt;}
.y65{bottom:180.186667pt;}
.y37{bottom:181.946667pt;}
.y117{bottom:183.706667pt;}
.yb2{bottom:192.506667pt;}
.y8a{bottom:192.666667pt;}
.yf4{bottom:196.026667pt;}
.y64{bottom:197.786667pt;}
.y103{bottom:199.394667pt;}
.y36{bottom:199.546667pt;}
.yc0{bottom:205.626667pt;}
.yd1{bottom:210.114667pt;}
.y89{bottom:210.266667pt;}
.y63{bottom:215.546667pt;}
.y115{bottom:216.506667pt;}
.y35{bottom:217.306667pt;}
.y102{bottom:220.834667pt;}
.y88{bottom:228.026667pt;}
.yf2{bottom:228.986667pt;}
.y62{bottom:233.146667pt;}
.yc8{bottom:234.586667pt;}
.y34{bottom:234.906667pt;}
.y87{bottom:245.626667pt;}
.y114{bottom:249.506667pt;}
.y61{bottom:250.746667pt;}
.y33{bottom:252.506667pt;}
.yea{bottom:261.826667pt;}
.y86{bottom:263.226667pt;}
.ya3{bottom:263.386667pt;}
.y60{bottom:265.306667pt;}
.y32{bottom:270.106667pt;}
.yc7{bottom:277.506667pt;}
.y85{bottom:280.826667pt;}
.ya2{bottom:280.986667pt;}
.y113{bottom:282.306667pt;}
.y31{bottom:287.706667pt;}
.ye9{bottom:294.626667pt;}
.y84{bottom:298.426667pt;}
.ya1{bottom:298.746667pt;}
.y30{bottom:305.466667pt;}
.y5f{bottom:306.266667pt;}
.yc6{bottom:306.466667pt;}
.y105{bottom:315.106667pt;}
.y83{bottom:316.186667pt;}
.ya0{bottom:316.346667pt;}
.y2f{bottom:323.066667pt;}
.yd7{bottom:327.586667pt;}
.y82{bottom:333.786667pt;}
.y9f{bottom:333.946667pt;}
.yc5{bottom:335.266667pt;}
.y2e{bottom:340.666667pt;}
.y5b{bottom:347.226667pt;}
.y10f{bottom:348.066667pt;}
.y81{bottom:351.386667pt;}
.y9e{bottom:351.546667pt;}
.y2d{bottom:358.306667pt;}
.ye6{bottom:360.386667pt;}
.yb9{bottom:364.226667pt;}
.y80{bottom:369.026667pt;}
.y9d{bottom:369.186667pt;}
.y2c{bottom:375.906667pt;}
.y10c{bottom:380.866667pt;}
.y7f{bottom:386.626667pt;}
.y9c{bottom:386.946667pt;}
.y59{bottom:388.386667pt;}
.ye0{bottom:393.346667pt;}
.y2b{bottom:393.666667pt;}
.y9b{bottom:400.066667pt;}
.y7e{bottom:404.386667pt;}
.ybf{bottom:407.133333pt;}
.y2a{bottom:411.266667pt;}
.y10b{bottom:413.853333pt;}
.y7d{bottom:421.986667pt;}
.yde{bottom:426.173333pt;}
.y29{bottom:428.866667pt;}
.y7c{bottom:439.586667pt;}
.y97{bottom:442.946667pt;}
.y58{bottom:443.426667pt;}
.y28{bottom:446.466667pt;}
.y10a{bottom:446.653333pt;}
.y7b{bottom:457.186667pt;}
.ydb{bottom:458.973333pt;}
.y27{bottom:464.066667pt;}
.ybc{bottom:464.253333pt;}
.y92{bottom:471.906667pt;}
.y7a{bottom:474.786667pt;}
.y108{bottom:479.453333pt;}
.y26{bottom:481.826667pt;}
.y56{bottom:484.386667pt;}
.yd9{bottom:491.933333pt;}
.y79{bottom:492.546667pt;}
.y25{bottom:499.426667pt;}
.y78{bottom:510.146667pt;}
.y104{bottom:512.413333pt;}
.y24{bottom:517.026667pt;}
.ybb{bottom:521.373333pt;}
.yd2{bottom:524.733333pt;}
.y55{bottom:525.506667pt;}
.y77{bottom:527.746667pt;}
.y23{bottom:534.626667pt;}
.y90{bottom:543.106667pt;}
.y100{bottom:545.213333pt;}
.y76{bottom:545.346667pt;}
.yb8{bottom:550.333333pt;}
.y22{bottom:552.226667pt;}
.yce{bottom:557.693333pt;}
.yff{bottom:561.893333pt;}
.y75{bottom:562.946667pt;}
.y51{bottom:566.466667pt;}
.y21{bottom:569.986667pt;}
.yfc{bottom:573.893333pt;}
.yb1{bottom:579.493333pt;}
.y74{bottom:580.733333pt;}
.y20{bottom:587.613333pt;}
.yb0{bottom:597.093333pt;}
.y73{bottom:598.333333pt;}
.y1f{bottom:605.213333pt;}
.yab{bottom:612.613333pt;}
.y72{bottom:615.933333pt;}
.y4d{bottom:621.533333pt;}
.y1e{bottom:622.813333pt;}
.ya4{bottom:625.413333pt;}
.y71{bottom:633.533333pt;}
.y1d{bottom:640.413333pt;}
.y70{bottom:651.133333pt;}
.ya9{bottom:655.973333pt;}
.y1c{bottom:658.173333pt;}
.y6f{bottom:668.893333pt;}
.y1b{bottom:675.773333pt;}
.y49{bottom:676.733333pt;}
.y6e{bottom:686.493333pt;}
.y1a{bottom:693.373333pt;}
.y6d{bottom:704.093333pt;}
.y19{bottom:710.973333pt;}
.y47{bottom:719.773333pt;}
.y6c{bottom:721.693333pt;}
.y18{bottom:728.573333pt;}
.y6b{bottom:739.293333pt;}
.y17{bottom:746.333333pt;}
.y46{bottom:757.053333pt;}
.y16{bottom:763.933333pt;}
.y45{bottom:774.653333pt;}
.y15{bottom:781.533333pt;}
.y44{bottom:792.253333pt;}
.y14{bottom:799.173333pt;}
.y43{bottom:809.893333pt;}
.y13{bottom:816.773333pt;}
.y42{bottom:827.493333pt;}
.y12{bottom:839.173333pt;}
.y41{bottom:845.253333pt;}
.y11{bottom:852.613333pt;}
.y40{bottom:862.853333pt;}
.y10{bottom:871.493333pt;}
.y3f{bottom:880.453333pt;}
.yf{bottom:892.293333pt;}
.y3e{bottom:898.053333pt;}
.y3d{bottom:915.653333pt;}
.y9{bottom:931.173333pt;}
.y1{bottom:944.133333pt;}
.y7{bottom:974.533333pt;}
.h6{height:1.787500pt;}
.h3a{height:10.720000pt;}
.h2a{height:10.752000pt;}
.h19{height:14.080000pt;}
.h24{height:14.112000pt;}
.ha{height:19.360000pt;}
.h22{height:19.392000pt;}
.hd{height:24.131250pt;}
.h2d{height:25.918750pt;}
.h2b{height:26.879375pt;}
.h26{height:28.160000pt;}
.h1b{height:28.320000pt;}
.h7{height:29.760000pt;}
.h21{height:29.920000pt;}
.h13{height:29.940625pt;}
.h10{height:30.080000pt;}
.h2f{height:30.595000pt;}
.h11{height:31.050312pt;}
.h2e{height:32.160000pt;}
.h33{height:32.192000pt;}
.h31{height:32.320000pt;}
.h3c{height:32.352000pt;}
.h39{height:32.904062pt;}
.h23{height:33.515625pt;}
.h1d{height:35.342500pt;}
.h8{height:37.090625pt;}
.h41{height:38.092813pt;}
.hf{height:38.465312pt;}
.h3f{height:38.672812pt;}
.h12{height:40.960000pt;}
.hb{height:41.112500pt;}
.h16{height:41.120000pt;}
.h18{height:41.152000pt;}
.h1c{height:42.240000pt;}
.h28{height:42.272000pt;}
.h38{height:42.400000pt;}
.h4{height:42.636250pt;}
.he{height:43.782500pt;}
.h9{height:47.999375pt;}
.h40{height:50.288438pt;}
.h17{height:55.040000pt;}
.h15{height:55.072000pt;}
.h14{height:55.200000pt;}
.h27{height:56.480000pt;}
.h3{height:57.929688pt;}
.hc{height:61.637188pt;}
.h3d{height:64.960000pt;}
.h37{height:64.992000pt;}
.h36{height:65.120000pt;}
.h3e{height:65.152000pt;}
.h1a{height:70.560000pt;}
.h34{height:97.952000pt;}
.h5{height:100.032000pt;}
.h2{height:130.432000pt;}
.h20{height:130.592000pt;}
.h32{height:130.752000pt;}
.h29{height:157.946667pt;}
.h35{height:163.706667pt;}
.h25{height:185.306667pt;}
.h30{height:196.506667pt;}
.h3b{height:196.666667pt;}
.h2c{height:426.626667pt;}
.h1e{height:793.760000pt;}
.h1f{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.800000pt;}
.wa{width:42.240000pt;}
.wb{width:42.272000pt;}
.w29{width:42.720000pt;}
.w35{width:44.640000pt;}
.w8{width:50.592000pt;}
.w20{width:55.872000pt;}
.w21{width:56.160000pt;}
.wc{width:56.352000pt;}
.w23{width:56.800000pt;}
.w24{width:56.832000pt;}
.w32{width:56.960000pt;}
.w28{width:56.992000pt;}
.w31{width:57.120000pt;}
.w34{width:57.152000pt;}
.w2b{width:60.032000pt;}
.w36{width:60.512000pt;}
.w1c{width:60.640000pt;}
.w30{width:60.800000pt;}
.w33{width:60.832000pt;}
.w25{width:61.760000pt;}
.w27{width:61.792000pt;}
.w1f{width:62.560000pt;}
.w1d{width:62.720000pt;}
.w1e{width:62.752000pt;}
.w18{width:65.440000pt;}
.w19{width:65.472000pt;}
.w1a{width:65.600000pt;}
.w1b{width:65.632000pt;}
.w2c{width:68.640000pt;}
.w26{width:80.192000pt;}
.w9{width:81.312000pt;}
.w2f{width:86.912000pt;}
.w17{width:112.672000pt;}
.w6{width:113.152000pt;}
.w3{width:117.152000pt;}
.w15{width:117.280000pt;}
.w10{width:123.872000pt;}
.w2a{width:129.472000pt;}
.w2e{width:169.146667pt;}
.w22{width:172.826667pt;}
.we{width:190.586667pt;}
.wf{width:298.786667pt;}
.w7{width:534.173333pt;}
.w11{width:557.533333pt;}
.w14{width:581.693333pt;}
.w2{width:581.893333pt;}
.wd{width:614.693333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w2d{width:1014.080000pt;}
.w16{width:1122.559983pt;}
.w12{width:1122.560000pt;}
.w13{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x10{left:8.640000pt;}
.x12{left:9.600000pt;}
.x59{left:10.720000pt;}
.x2f{left:11.680000pt;}
.x54{left:12.640000pt;}
.xf{left:13.920000pt;}
.x14{left:15.200000pt;}
.x56{left:16.320000pt;}
.x17{left:17.920000pt;}
.x3d{left:19.680000pt;}
.x13{left:21.120000pt;}
.x11{left:22.080000pt;}
.x18{left:23.040000pt;}
.x15{left:24.640000pt;}
.x44{left:25.920000pt;}
.x41{left:27.360000pt;}
.x43{left:28.640000pt;}
.x42{left:30.080000pt;}
.x57{left:31.546667pt;}
.x58{left:33.786667pt;}
.x16{left:36.832000pt;}
.xb{left:38.912000pt;}
.x5a{left:42.080000pt;}
.x2d{left:46.400000pt;}
.x1{left:47.360000pt;}
.x19{left:48.640000pt;}
.x66{left:71.999988pt;}
.x29{left:81.274667pt;}
.x53{left:92.000000pt;}
.x64{left:93.920000pt;}
.xa{left:96.031988pt;}
.x6{left:100.351988pt;}
.x4{left:105.146667pt;}
.x1a{left:130.592000pt;}
.x2b{left:136.026667pt;}
.x55{left:152.826667pt;}
.x65{left:155.226667pt;}
.xc{left:161.146667pt;}
.x1b{left:173.626667pt;}
.x8{left:176.666655pt;}
.xd{left:196.200000pt;}
.x9{left:203.226655pt;}
.x30{left:211.866667pt;}
.x1c{left:216.506667pt;}
.x5b{left:218.426667pt;}
.x45{left:222.106667pt;}
.x33{left:228.026667pt;}
.x2e{left:249.154667pt;}
.x1d{left:259.426667pt;}
.x5c{left:275.866667pt;}
.x46{left:279.546667pt;}
.x34{left:294.106667pt;}
.x28{left:297.501333pt;}
.x1e{left:302.466667pt;}
.x2a{left:321.986667pt;}
.x47{left:337.026667pt;}
.x1f{left:345.346667pt;}
.x35{left:360.226667pt;}
.x5d{left:363.426667pt;}
.x20{left:388.226667pt;}
.x7{left:396.893322pt;}
.x48{left:399.426667pt;}
.x5e{left:424.866667pt;}
.x36{left:426.466667pt;}
.x21{left:431.293333pt;}
.x49{left:456.866667pt;}
.x22{left:474.173333pt;}
.x5f{left:482.626667pt;}
.x37{left:492.546667pt;}
.x4a{left:514.306667pt;}
.x23{left:517.053333pt;}
.x60{left:540.386667pt;}
.x38{left:558.813333pt;}
.x24{left:560.133333pt;}
.x4b{left:595.133333pt;}
.x61{left:598.173333pt;}
.x25{left:603.013333pt;}
.x2c{left:621.413333pt;}
.x39{left:624.893333pt;}
.x3{left:629.253333pt;}
.x26{left:645.893333pt;}
.x4c{left:657.533333pt;}
.x62{left:659.453333pt;}
.x27{left:688.933333pt;}
.x3a{left:690.973333pt;}
.xe{left:695.333333pt;}
.x4d{left:719.933333pt;}
.x63{left:720.893333pt;}
.x5{left:737.120000pt;}
.x3b{left:757.213333pt;}
.x4e{left:782.373333pt;}
.x31{left:793.573333pt;}
.x3c{left:823.333333pt;}
.x4f{left:839.813333pt;}
.x3e{left:884.613333pt;}
.x50{left:902.213333pt;}
.x3f{left:948.133333pt;}
.x51{left:959.653333pt;}
.x40{left:1011.520000pt;}
.x52{left:1017.280000pt;}
.x32{left:1065.920000pt;}
}




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