
    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_f7d43cb71b6c8b20e472294b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d1249945226897dd78cb8a23.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933594;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_0622d2872edb6e092e9f44bf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f82d1a5728c8bc47e657d2ea.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.933594;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2af531c501630c34356ee251.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.084961;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_4579bff5bdad0c7d4e6fe997.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.740234;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_59f71990eee6b202feb0cd25.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.031250;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_23a21f6730b8b3eda9da0441.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_fa2bc81fc82ddc011671e38e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.976562;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:ffc;src:url('chunks/assets/font_09b7c27b8c7868d4246b4e63.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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;}
.v4{vertical-align:20.880000px;}
.v3{vertical-align:22.320000px;}
.v1{vertical-align:23.760000px;}
.lsb{letter-spacing:-1.644000px;}
.ls15{letter-spacing:-0.774000px;}
.ls14{letter-spacing:-0.726000px;}
.ls1b{letter-spacing:-0.612000px;}
.ls9{letter-spacing:-0.540000px;}
.ls1a{letter-spacing:-0.460200px;}
.ls11{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.259800px;}
.ls7{letter-spacing:-0.206400px;}
.ls6{letter-spacing:-0.053280px;}
.ls13{letter-spacing:-0.008640px;}
.ls3{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.053280px;}
.ls19{letter-spacing:0.056880px;}
.ls8{letter-spacing:0.106800px;}
.ls16{letter-spacing:0.107280px;}
.ls0{letter-spacing:0.120000px;}
.ls18{letter-spacing:0.175680px;}
.ls1{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.206400px;}
.ls5{letter-spacing:0.259800px;}
.ls4{letter-spacing:0.360000px;}
.ls1e{letter-spacing:0.480000px;}
.lsf{letter-spacing:1.362240px;}
.lsd{letter-spacing:1.532880px;}
.ls17{letter-spacing:2.387520px;}
.lse{letter-spacing:3.180960px;}
.ls1f{letter-spacing:6.660000px;}
.ls1d{letter-spacing:16.506720px;}
.ls2{letter-spacing:26.586720px;}
.lsa{letter-spacing:26.730720px;}
.ls1c{letter-spacing:46.170720px;}
.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:-59.760000px;}
.ws0{word-spacing:-16.560000px;}
.wsd{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.146400px;}
.ws6{word-spacing:-15.046800px;}
.wsc{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.886720px;}
.ws7{word-spacing:-14.733600px;}
.ws9{word-spacing:-14.680200px;}
.wsb{word-spacing:-14.580000px;}
.ws12{word-spacing:-14.328000px;}
.ws10{word-spacing:-14.166000px;}
.ws1{word-spacing:-10.440000px;}
.ws3{word-spacing:-10.080000px;}
.ws2{word-spacing:-9.720000px;}
.wse{word-spacing:-9.711360px;}
.wsf{word-spacing:-8.994000px;}
.ws8{word-spacing:0.000000px;}
._1b{margin-left:-4.387440px;}
._16{margin-left:-3.337680px;}
._b{margin-left:-2.203200px;}
._0{margin-left:-1.080000px;}
._f{width:1.007040px;}
._1{width:2.220000px;}
._14{width:3.580080px;}
._13{width:4.643520px;}
._1d{width:5.647680px;}
._15{width:6.659280px;}
._19{width:8.125680px;}
._1a{width:9.434160px;}
._6{width:10.800000px;}
._18{width:12.617280px;}
._1c{width:13.648320px;}
._17{width:15.964800px;}
._1e{width:17.339280px;}
._11{width:18.948000px;}
._21{width:24.429840px;}
._20{width:25.637040px;}
._1f{width:46.314000px;}
._22{width:54.689280px;}
._23{width:65.517840px;}
._24{width:66.548640px;}
._7{width:76.284960px;}
._12{width:99.660000px;}
._8{width:154.080000px;}
._d{width:195.120000px;}
._10{width:199.584000px;}
._2{width:255.512640px;}
._3{width:357.300000px;}
._4{width:388.054560px;}
._5{width:436.440000px;}
._9{width:604.364160px;}
._e{width:637.320000px;}
._a{width:1096.860000px;}
._c{width:1176.060000px;}
.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;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ye{bottom:5.760000px;}
.yc4{bottom:5.790000px;}
.y93{bottom:5.940000px;}
.ya6{bottom:5.970000px;}
.ye9{bottom:6.120000px;}
.ye7{bottom:6.480000px;}
.y6{bottom:12.420000px;}
.yc8{bottom:15.480000px;}
.y95{bottom:15.660000px;}
.y91{bottom:15.840000px;}
.y8{bottom:18.180000px;}
.ya8{bottom:25.560000px;}
.yc6{bottom:25.740000px;}
.yd3{bottom:35.460000px;}
.y98{bottom:35.640000px;}
.yc{bottom:38.520000px;}
.y5{bottom:40.320000px;}
.yc1{bottom:45.390000px;}
.yb{bottom:60.300000px;}
.ycb{bottom:65.160000px;}
.y9f{bottom:65.370000px;}
.y4{bottom:68.400000px;}
.yb7{bottom:75.060000px;}
.yd{bottom:78.480000px;}
.ya{bottom:82.080000px;}
.yb6{bottom:95.040000px;}
.y3{bottom:96.330000px;}
.y12c{bottom:105.480000px;}
.yc0{bottom:106.920000px;}
.y3b{bottom:110.520000px;}
.y110{bottom:111.240000px;}
.y138{bottom:112.320000px;}
.y8e{bottom:112.680000px;}
.yee{bottom:118.800000px;}
.y12b{bottom:125.460000px;}
.y2{bottom:125.670000px;}
.yc5{bottom:126.720000px;}
.y3a{bottom:130.320000px;}
.y10f{bottom:131.040000px;}
.y137{bottom:132.120000px;}
.y8d{bottom:132.480000px;}
.y135{bottom:134.460000px;}
.yed{bottom:138.780000px;}
.y12a{bottom:145.260000px;}
.yc3{bottom:146.520000px;}
.y39{bottom:150.120000px;}
.y10e{bottom:151.020000px;}
.y136{bottom:151.950000px;}
.y8c{bottom:152.310000px;}
.y134{bottom:154.290000px;}
.yec{bottom:158.610000px;}
.y129{bottom:165.090000px;}
.yc2{bottom:166.350000px;}
.y66{bottom:166.890000px;}
.y38{bottom:169.950000px;}
.y10d{bottom:170.850000px;}
.y8b{bottom:172.290000px;}
.y133{bottom:174.090000px;}
.yeb{bottom:178.410000px;}
.y128{bottom:184.890000px;}
.yb5{bottom:186.330000px;}
.y37{bottom:189.750000px;}
.y10c{bottom:190.650000px;}
.y8a{bottom:192.090000px;}
.yea{bottom:192.810000px;}
.y132{bottom:193.890000px;}
.y65{bottom:195.690000px;}
.y127{bottom:204.690000px;}
.ybf{bottom:206.130000px;}
.y36{bottom:209.730000px;}
.y10b{bottom:210.450000px;}
.y89{bottom:212.430000px;}
.y131{bottom:213.690000px;}
.ye8{bottom:213.870000px;}
.y64{bottom:215.670000px;}
.y126{bottom:224.670000px;}
.ybe{bottom:225.930000px;}
.y35{bottom:229.530000px;}
.y10a{bottom:230.250000px;}
.y88{bottom:232.230000px;}
.y130{bottom:233.670000px;}
.ye6{bottom:235.110000px;}
.y63{bottom:235.470000px;}
.y125{bottom:244.470000px;}
.ybd{bottom:245.730000px;}
.y34{bottom:249.330000px;}
.y109{bottom:250.230000px;}
.y87{bottom:252.030000px;}
.y12f{bottom:253.470000px;}
.y62{bottom:255.270000px;}
.ye5{bottom:256.530000px;}
.y124{bottom:264.270000px;}
.ybc{bottom:265.530000px;}
.y33{bottom:269.130000px;}
.y86{bottom:271.830000px;}
.y12e{bottom:273.270000px;}
.y61{bottom:275.070000px;}
.y108{bottom:279.030000px;}
.ye4{bottom:282.630000px;}
.y123{bottom:284.070000px;}
.ybb{bottom:285.510000px;}
.y32{bottom:288.930000px;}
.y85{bottom:291.630000px;}
.y12d{bottom:293.070000px;}
.y60{bottom:294.870000px;}
.y107{bottom:298.830000px;}
.ye3{bottom:302.430000px;}
.yba{bottom:305.310000px;}
.y31{bottom:308.910000px;}
.y122{bottom:312.870000px;}
.y5f{bottom:314.850000px;}
.y106{bottom:318.630000px;}
.y84{bottom:320.610000px;}
.ye2{bottom:322.230000px;}
.yb9{bottom:325.110000px;}
.y30{bottom:328.710000px;}
.y121{bottom:332.850000px;}
.y5e{bottom:334.650000px;}
.y105{bottom:338.430000px;}
.y83{bottom:340.410000px;}
.ye1{bottom:342.030000px;}
.yb8{bottom:344.910000px;}
.y2f{bottom:348.510000px;}
.y120{bottom:352.650000px;}
.y5d{bottom:354.450000px;}
.y104{bottom:358.410000px;}
.y82{bottom:360.210000px;}
.ye0{bottom:362.010000px;}
.yb4{bottom:365.070000px;}
.y2e{bottom:368.310000px;}
.y11f{bottom:372.450000px;}
.y5c{bottom:374.250000px;}
.y103{bottom:378.210000px;}
.y81{bottom:380.010000px;}
.ydf{bottom:381.810000px;}
.y2d{bottom:388.110000px;}
.yb3{bottom:391.170000px;}
.y11e{bottom:392.250000px;}
.y5b{bottom:394.050000px;}
.y102{bottom:398.190000px;}
.y80{bottom:399.810000px;}
.yde{bottom:401.655000px;}
.y2c{bottom:408.135000px;}
.yb2{bottom:411.015000px;}
.y11d{bottom:412.095000px;}
.y7f{bottom:419.835000px;}
.y5a{bottom:423.075000px;}
.y2b{bottom:427.935000px;}
.y101{bottom:428.115000px;}
.ydd{bottom:430.455000px;}
.yb1{bottom:430.815000px;}
.y11c{bottom:432.075000px;}
.y7e{bottom:439.635000px;}
.y59{bottom:442.875000px;}
.y2a{bottom:447.735000px;}
.y100{bottom:448.095000px;}
.ydc{bottom:450.255000px;}
.yb0{bottom:450.795000px;}
.y11b{bottom:451.875000px;}
.y7d{bottom:459.435000px;}
.y58{bottom:462.675000px;}
.y29{bottom:467.535000px;}
.yff{bottom:467.895000px;}
.ydb{bottom:470.235000px;}
.yaf{bottom:470.595000px;}
.y11a{bottom:471.675000px;}
.y7c{bottom:479.235000px;}
.y57{bottom:482.475000px;}
.y28{bottom:487.335000px;}
.yfe{bottom:487.695000px;}
.yda{bottom:490.035000px;}
.yae{bottom:490.395000px;}
.y119{bottom:491.475000px;}
.y7b{bottom:499.035000px;}
.y56{bottom:502.275000px;}
.y27{bottom:507.315000px;}
.yfd{bottom:507.495000px;}
.yd9{bottom:509.835000px;}
.yad{bottom:510.195000px;}
.y118{bottom:511.275000px;}
.y7a{bottom:519.015000px;}
.y55{bottom:522.255000px;}
.yd7{bottom:524.235000px;}
.y26{bottom:527.115000px;}
.yfc{bottom:527.295000px;}
.yac{bottom:529.995000px;}
.y117{bottom:531.255000px;}
.y79{bottom:538.815000px;}
.y54{bottom:542.055000px;}
.yd8{bottom:544.035000px;}
.y25{bottom:546.915000px;}
.yfb{bottom:547.275000px;}
.yab{bottom:549.975000px;}
.y116{bottom:551.055000px;}
.y53{bottom:561.855000px;}
.yd6{bottom:564.015000px;}
.ya7{bottom:564.375000px;}
.y24{bottom:566.715000px;}
.yfa{bottom:567.255000px;}
.y78{bottom:567.615000px;}
.y115{bottom:570.855000px;}
.y52{bottom:581.655000px;}
.yd2{bottom:583.815000px;}
.yaa{bottom:584.175000px;}
.y23{bottom:586.515000px;}
.y77{bottom:587.415000px;}
.y114{bottom:590.655000px;}
.yf9{bottom:597.135000px;}
.y51{bottom:601.455000px;}
.yd5{bottom:603.615000px;}
.ya9{bottom:603.975000px;}
.y22{bottom:606.495000px;}
.y76{bottom:607.215000px;}
.y113{bottom:610.455000px;}
.yf8{bottom:616.935000px;}
.y50{bottom:621.435000px;}
.yd4{bottom:623.415000px;}
.y9e{bottom:623.775000px;}
.y21{bottom:626.295000px;}
.y75{bottom:627.195000px;}
.y112{bottom:630.435000px;}
.yf7{bottom:636.915000px;}
.y4f{bottom:641.235000px;}
.yd1{bottom:643.215000px;}
.ya5{bottom:643.575000px;}
.y20{bottom:646.095000px;}
.y74{bottom:646.995000px;}
.y111{bottom:650.265000px;}
.yf6{bottom:656.745000px;}
.yca{bottom:663.225000px;}
.ya4{bottom:663.585000px;}
.y1f{bottom:665.925000px;}
.y73{bottom:666.825000px;}
.y4e{bottom:670.065000px;}
.yf5{bottom:676.545000px;}
.yd0{bottom:683.025000px;}
.ya3{bottom:683.385000px;}
.y1e{bottom:685.725000px;}
.y72{bottom:686.625000px;}
.y4d{bottom:689.865000px;}
.yf4{bottom:696.345000px;}
.ycf{bottom:702.825000px;}
.ya2{bottom:703.185000px;}
.y1d{bottom:705.705000px;}
.y71{bottom:706.425000px;}
.y4c{bottom:709.665000px;}
.yf3{bottom:716.145000px;}
.yce{bottom:722.625000px;}
.ya1{bottom:722.985000px;}
.y1c{bottom:725.505000px;}
.y70{bottom:726.405000px;}
.y4b{bottom:729.645000px;}
.yf2{bottom:736.305000px;}
.ycd{bottom:742.425000px;}
.ya0{bottom:742.785000px;}
.y1b{bottom:745.305000px;}
.y6f{bottom:746.205000px;}
.y4a{bottom:749.445000px;}
.yf1{bottom:757.185000px;}
.ycc{bottom:762.405000px;}
.y9c{bottom:762.765000px;}
.y1a{bottom:765.105000px;}
.y6e{bottom:766.005000px;}
.y49{bottom:769.245000px;}
.yf0{bottom:776.985000px;}
.yc9{bottom:782.205000px;}
.y9d{bottom:782.565000px;}
.y19{bottom:784.905000px;}
.y6d{bottom:785.805000px;}
.y48{bottom:789.045000px;}
.yef{bottom:793.725000px;}
.y97{bottom:802.365000px;}
.y18{bottom:804.885000px;}
.y6c{bottom:805.605000px;}
.y47{bottom:808.845000px;}
.y9b{bottom:822.165000px;}
.y17{bottom:824.685000px;}
.y6b{bottom:825.585000px;}
.y46{bottom:828.825000px;}
.y9a{bottom:841.965000px;}
.yc7{bottom:842.325000px;}
.y16{bottom:844.485000px;}
.y6a{bottom:845.385000px;}
.y45{bottom:848.625000px;}
.y99{bottom:861.945000px;}
.y15{bottom:864.285000px;}
.y69{bottom:865.185000px;}
.y44{bottom:868.425000px;}
.y94{bottom:881.745000px;}
.y14{bottom:884.085000px;}
.y68{bottom:884.985000px;}
.y43{bottom:888.225000px;}
.y96{bottom:901.590000px;}
.y67{bottom:901.770000px;}
.y42{bottom:908.070000px;}
.y13{bottom:909.330000px;}
.y90{bottom:921.390000px;}
.y12{bottom:924.450000px;}
.y41{bottom:928.050000px;}
.y92{bottom:941.190000px;}
.y11{bottom:945.690000px;}
.y40{bottom:947.850000px;}
.y8f{bottom:961.530000px;}
.y3f{bottom:967.650000px;}
.y10{bottom:969.090000px;}
.y3e{bottom:987.450000px;}
.yf{bottom:1000.950000px;}
.y3d{bottom:1007.250000px;}
.y3c{bottom:1027.230000px;}
.y9{bottom:1045.770000px;}
.y1{bottom:1062.150000px;}
.y7{bottom:1096.350000px;}
.h6{height:2.067188px;}
.h13{height:19.800000px;}
.h17{height:19.836000px;}
.h15{height:19.980000px;}
.h1c{height:20.016000px;}
.h23{height:21.060000px;}
.ha{height:21.240000px;}
.he{height:27.907031px;}
.h7{height:33.480000px;}
.h1a{height:39.600000px;}
.h16{height:39.636000px;}
.h14{height:39.780000px;}
.hf{height:42.164648px;}
.hd{height:42.894141px;}
.h10{height:43.506914px;}
.h24{height:45.461953px;}
.h4{height:46.736719px;}
.hb{height:47.545312px;}
.h11{height:48.496641px;}
.h19{height:48.787031px;}
.h9{height:53.224453px;}
.h12{height:57.514219px;}
.h1d{height:59.400000px;}
.h22{height:59.580000px;}
.h20{height:59.940000px;}
.h3{height:63.500977px;}
.h8{height:65.884219px;}
.hc{height:67.565039px;}
.h18{height:79.380000px;}
.h1f{height:79.416000px;}
.h5{height:112.536000px;}
.h21{height:138.780000px;}
.h1b{height:138.996000px;}
.h2{height:146.736000px;}
.h1e{height:178.380000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.720000px;}
.wd{width:52.740000px;}
.w17{width:53.100000px;}
.w18{width:53.280000px;}
.w13{width:63.936000px;}
.w12{width:74.340000px;}
.w14{width:74.556000px;}
.w16{width:85.176000px;}
.w15{width:85.320000px;}
.w9{width:86.220000px;}
.w1b{width:89.496000px;}
.w1c{width:91.260000px;}
.w1a{width:106.200000px;}
.w11{width:106.380000px;}
.wa{width:127.476000px;}
.w3{width:130.716000px;}
.we{width:138.276000px;}
.w7{width:147.276000px;}
.wf{width:148.896000px;}
.wc{width:170.310000px;}
.w10{width:170.490000px;}
.w6{width:180.750000px;}
.w8{width:193.170000px;}
.wb{width:308.190000px;}
.w19{width:329.835000px;}
.w2{width:649.410000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x20{left:18.000000px;}
.x22{left:29.700000px;}
.x5{left:53.999987px;}
.x1{left:56.520000px;}
.xc{left:64.799987px;}
.x26{left:68.759987px;}
.x7{left:72.539987px;}
.xf{left:75.599987px;}
.x27{left:95.795987px;}
.x14{left:108.035987px;}
.x4{left:118.290000px;}
.x18{left:138.276000px;}
.x10{left:142.956000px;}
.x15{left:149.436000px;}
.x19{left:191.010000px;}
.x8{left:242.489987px;}
.xb{left:255.089987px;}
.x1d{left:265.350000px;}
.x16{left:276.915000px;}
.x25{left:315.794987px;}
.xa{left:317.054987px;}
.x11{left:323.715000px;}
.x1a{left:329.295000px;}
.xe{left:350.714987px;}
.x1e{left:403.635000px;}
.x9{left:446.504987px;}
.x23{left:468.465000px;}
.x12{left:470.985000px;}
.x1b{left:478.185000px;}
.x1f{left:563.505000px;}
.x24{left:574.665000px;}
.x17{left:585.105000px;}
.x1c{left:648.690000px;}
.x13{left:664.170000px;}
.x21{left:701.790000px;}
.x3{left:705.930000px;}
.xd{left:717.629987px;}
.x6{left:829.440000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v3{vertical-align:19.840000pt;}
.v1{vertical-align:21.120000pt;}
.lsb{letter-spacing:-1.461333pt;}
.ls15{letter-spacing:-0.688000pt;}
.ls14{letter-spacing:-0.645333pt;}
.ls1b{letter-spacing:-0.544000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls1a{letter-spacing:-0.409067pt;}
.ls11{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.230933pt;}
.ls7{letter-spacing:-0.183467pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls13{letter-spacing:-0.007680pt;}
.ls3{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.047360pt;}
.ls19{letter-spacing:0.050560pt;}
.ls8{letter-spacing:0.094933pt;}
.ls16{letter-spacing:0.095360pt;}
.ls0{letter-spacing:0.106667pt;}
.ls18{letter-spacing:0.156160pt;}
.ls1{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.183467pt;}
.ls5{letter-spacing:0.230933pt;}
.ls4{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:0.426667pt;}
.lsf{letter-spacing:1.210880pt;}
.lsd{letter-spacing:1.362560pt;}
.ls17{letter-spacing:2.122240pt;}
.lse{letter-spacing:2.827520pt;}
.ls1f{letter-spacing:5.920000pt;}
.ls1d{letter-spacing:14.672640pt;}
.ls2{letter-spacing:23.632640pt;}
.lsa{letter-spacing:23.760640pt;}
.ls1c{letter-spacing:41.040640pt;}
.ws11{word-spacing:-53.120000pt;}
.ws0{word-spacing:-14.720000pt;}
.wsd{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.463467pt;}
.ws6{word-spacing:-13.374933pt;}
.wsc{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.232640pt;}
.ws7{word-spacing:-13.096533pt;}
.ws9{word-spacing:-13.049067pt;}
.wsb{word-spacing:-12.960000pt;}
.ws12{word-spacing:-12.736000pt;}
.ws10{word-spacing:-12.592000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.960000pt;}
.ws2{word-spacing:-8.640000pt;}
.wse{word-spacing:-8.632320pt;}
.wsf{word-spacing:-7.994667pt;}
.ws8{word-spacing:0.000000pt;}
._1b{margin-left:-3.899947pt;}
._16{margin-left:-2.966827pt;}
._b{margin-left:-1.958400pt;}
._0{margin-left:-0.960000pt;}
._f{width:0.895147pt;}
._1{width:1.973333pt;}
._14{width:3.182293pt;}
._13{width:4.127573pt;}
._1d{width:5.020160pt;}
._15{width:5.919360pt;}
._19{width:7.222827pt;}
._1a{width:8.385920pt;}
._6{width:9.600000pt;}
._18{width:11.215360pt;}
._1c{width:12.131840pt;}
._17{width:14.190933pt;}
._1e{width:15.412693pt;}
._11{width:16.842667pt;}
._21{width:21.715413pt;}
._20{width:22.788480pt;}
._1f{width:41.168000pt;}
._22{width:48.612693pt;}
._23{width:58.238080pt;}
._24{width:59.154347pt;}
._7{width:67.808853pt;}
._12{width:88.586667pt;}
._8{width:136.960000pt;}
._d{width:173.440000pt;}
._10{width:177.408000pt;}
._2{width:227.122347pt;}
._3{width:317.600000pt;}
._4{width:344.937387pt;}
._5{width:387.946667pt;}
._9{width:537.212587pt;}
._e{width:566.506667pt;}
._a{width:974.986667pt;}
._c{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:5.120000pt;}
.yc4{bottom:5.146667pt;}
.y93{bottom:5.280000pt;}
.ya6{bottom:5.306667pt;}
.ye9{bottom:5.440000pt;}
.ye7{bottom:5.760000pt;}
.y6{bottom:11.040000pt;}
.yc8{bottom:13.760000pt;}
.y95{bottom:13.920000pt;}
.y91{bottom:14.080000pt;}
.y8{bottom:16.160000pt;}
.ya8{bottom:22.720000pt;}
.yc6{bottom:22.880000pt;}
.yd3{bottom:31.520000pt;}
.y98{bottom:31.680000pt;}
.yc{bottom:34.240000pt;}
.y5{bottom:35.840000pt;}
.yc1{bottom:40.346667pt;}
.yb{bottom:53.600000pt;}
.ycb{bottom:57.920000pt;}
.y9f{bottom:58.106667pt;}
.y4{bottom:60.800000pt;}
.yb7{bottom:66.720000pt;}
.yd{bottom:69.760000pt;}
.ya{bottom:72.960000pt;}
.yb6{bottom:84.480000pt;}
.y3{bottom:85.626667pt;}
.y12c{bottom:93.760000pt;}
.yc0{bottom:95.040000pt;}
.y3b{bottom:98.240000pt;}
.y110{bottom:98.880000pt;}
.y138{bottom:99.840000pt;}
.y8e{bottom:100.160000pt;}
.yee{bottom:105.600000pt;}
.y12b{bottom:111.520000pt;}
.y2{bottom:111.706667pt;}
.yc5{bottom:112.640000pt;}
.y3a{bottom:115.840000pt;}
.y10f{bottom:116.480000pt;}
.y137{bottom:117.440000pt;}
.y8d{bottom:117.760000pt;}
.y135{bottom:119.520000pt;}
.yed{bottom:123.360000pt;}
.y12a{bottom:129.120000pt;}
.yc3{bottom:130.240000pt;}
.y39{bottom:133.440000pt;}
.y10e{bottom:134.240000pt;}
.y136{bottom:135.066667pt;}
.y8c{bottom:135.386667pt;}
.y134{bottom:137.146667pt;}
.yec{bottom:140.986667pt;}
.y129{bottom:146.746667pt;}
.yc2{bottom:147.866667pt;}
.y66{bottom:148.346667pt;}
.y38{bottom:151.066667pt;}
.y10d{bottom:151.866667pt;}
.y8b{bottom:153.146667pt;}
.y133{bottom:154.746667pt;}
.yeb{bottom:158.586667pt;}
.y128{bottom:164.346667pt;}
.yb5{bottom:165.626667pt;}
.y37{bottom:168.666667pt;}
.y10c{bottom:169.466667pt;}
.y8a{bottom:170.746667pt;}
.yea{bottom:171.386667pt;}
.y132{bottom:172.346667pt;}
.y65{bottom:173.946667pt;}
.y127{bottom:181.946667pt;}
.ybf{bottom:183.226667pt;}
.y36{bottom:186.426667pt;}
.y10b{bottom:187.066667pt;}
.y89{bottom:188.826667pt;}
.y131{bottom:189.946667pt;}
.ye8{bottom:190.106667pt;}
.y64{bottom:191.706667pt;}
.y126{bottom:199.706667pt;}
.ybe{bottom:200.826667pt;}
.y35{bottom:204.026667pt;}
.y10a{bottom:204.666667pt;}
.y88{bottom:206.426667pt;}
.y130{bottom:207.706667pt;}
.ye6{bottom:208.986667pt;}
.y63{bottom:209.306667pt;}
.y125{bottom:217.306667pt;}
.ybd{bottom:218.426667pt;}
.y34{bottom:221.626667pt;}
.y109{bottom:222.426667pt;}
.y87{bottom:224.026667pt;}
.y12f{bottom:225.306667pt;}
.y62{bottom:226.906667pt;}
.ye5{bottom:228.026667pt;}
.y124{bottom:234.906667pt;}
.ybc{bottom:236.026667pt;}
.y33{bottom:239.226667pt;}
.y86{bottom:241.626667pt;}
.y12e{bottom:242.906667pt;}
.y61{bottom:244.506667pt;}
.y108{bottom:248.026667pt;}
.ye4{bottom:251.226667pt;}
.y123{bottom:252.506667pt;}
.ybb{bottom:253.786667pt;}
.y32{bottom:256.826667pt;}
.y85{bottom:259.226667pt;}
.y12d{bottom:260.506667pt;}
.y60{bottom:262.106667pt;}
.y107{bottom:265.626667pt;}
.ye3{bottom:268.826667pt;}
.yba{bottom:271.386667pt;}
.y31{bottom:274.586667pt;}
.y122{bottom:278.106667pt;}
.y5f{bottom:279.866667pt;}
.y106{bottom:283.226667pt;}
.y84{bottom:284.986667pt;}
.ye2{bottom:286.426667pt;}
.yb9{bottom:288.986667pt;}
.y30{bottom:292.186667pt;}
.y121{bottom:295.866667pt;}
.y5e{bottom:297.466667pt;}
.y105{bottom:300.826667pt;}
.y83{bottom:302.586667pt;}
.ye1{bottom:304.026667pt;}
.yb8{bottom:306.586667pt;}
.y2f{bottom:309.786667pt;}
.y120{bottom:313.466667pt;}
.y5d{bottom:315.066667pt;}
.y104{bottom:318.586667pt;}
.y82{bottom:320.186667pt;}
.ye0{bottom:321.786667pt;}
.yb4{bottom:324.506667pt;}
.y2e{bottom:327.386667pt;}
.y11f{bottom:331.066667pt;}
.y5c{bottom:332.666667pt;}
.y103{bottom:336.186667pt;}
.y81{bottom:337.786667pt;}
.ydf{bottom:339.386667pt;}
.y2d{bottom:344.986667pt;}
.yb3{bottom:347.706667pt;}
.y11e{bottom:348.666667pt;}
.y5b{bottom:350.266667pt;}
.y102{bottom:353.946667pt;}
.y80{bottom:355.386667pt;}
.yde{bottom:357.026667pt;}
.y2c{bottom:362.786667pt;}
.yb2{bottom:365.346667pt;}
.y11d{bottom:366.306667pt;}
.y7f{bottom:373.186667pt;}
.y5a{bottom:376.066667pt;}
.y2b{bottom:380.386667pt;}
.y101{bottom:380.546667pt;}
.ydd{bottom:382.626667pt;}
.yb1{bottom:382.946667pt;}
.y11c{bottom:384.066667pt;}
.y7e{bottom:390.786667pt;}
.y59{bottom:393.666667pt;}
.y2a{bottom:397.986667pt;}
.y100{bottom:398.306667pt;}
.ydc{bottom:400.226667pt;}
.yb0{bottom:400.706667pt;}
.y11b{bottom:401.666667pt;}
.y7d{bottom:408.386667pt;}
.y58{bottom:411.266667pt;}
.y29{bottom:415.586667pt;}
.yff{bottom:415.906667pt;}
.ydb{bottom:417.986667pt;}
.yaf{bottom:418.306667pt;}
.y11a{bottom:419.266667pt;}
.y7c{bottom:425.986667pt;}
.y57{bottom:428.866667pt;}
.y28{bottom:433.186667pt;}
.yfe{bottom:433.506667pt;}
.yda{bottom:435.586667pt;}
.yae{bottom:435.906667pt;}
.y119{bottom:436.866667pt;}
.y7b{bottom:443.586667pt;}
.y56{bottom:446.466667pt;}
.y27{bottom:450.946667pt;}
.yfd{bottom:451.106667pt;}
.yd9{bottom:453.186667pt;}
.yad{bottom:453.506667pt;}
.y118{bottom:454.466667pt;}
.y7a{bottom:461.346667pt;}
.y55{bottom:464.226667pt;}
.yd7{bottom:465.986667pt;}
.y26{bottom:468.546667pt;}
.yfc{bottom:468.706667pt;}
.yac{bottom:471.106667pt;}
.y117{bottom:472.226667pt;}
.y79{bottom:478.946667pt;}
.y54{bottom:481.826667pt;}
.yd8{bottom:483.586667pt;}
.y25{bottom:486.146667pt;}
.yfb{bottom:486.466667pt;}
.yab{bottom:488.866667pt;}
.y116{bottom:489.826667pt;}
.y53{bottom:499.426667pt;}
.yd6{bottom:501.346667pt;}
.ya7{bottom:501.666667pt;}
.y24{bottom:503.746667pt;}
.yfa{bottom:504.226667pt;}
.y78{bottom:504.546667pt;}
.y115{bottom:507.426667pt;}
.y52{bottom:517.026667pt;}
.yd2{bottom:518.946667pt;}
.yaa{bottom:519.266667pt;}
.y23{bottom:521.346667pt;}
.y77{bottom:522.146667pt;}
.y114{bottom:525.026667pt;}
.yf9{bottom:530.786667pt;}
.y51{bottom:534.626667pt;}
.yd5{bottom:536.546667pt;}
.ya9{bottom:536.866667pt;}
.y22{bottom:539.106667pt;}
.y76{bottom:539.746667pt;}
.y113{bottom:542.626667pt;}
.yf8{bottom:548.386667pt;}
.y50{bottom:552.386667pt;}
.yd4{bottom:554.146667pt;}
.y9e{bottom:554.466667pt;}
.y21{bottom:556.706667pt;}
.y75{bottom:557.506667pt;}
.y112{bottom:560.386667pt;}
.yf7{bottom:566.146667pt;}
.y4f{bottom:569.986667pt;}
.yd1{bottom:571.746667pt;}
.ya5{bottom:572.066667pt;}
.y20{bottom:574.306667pt;}
.y74{bottom:575.106667pt;}
.y111{bottom:578.013333pt;}
.yf6{bottom:583.773333pt;}
.yca{bottom:589.533333pt;}
.ya4{bottom:589.853333pt;}
.y1f{bottom:591.933333pt;}
.y73{bottom:592.733333pt;}
.y4e{bottom:595.613333pt;}
.yf5{bottom:601.373333pt;}
.yd0{bottom:607.133333pt;}
.ya3{bottom:607.453333pt;}
.y1e{bottom:609.533333pt;}
.y72{bottom:610.333333pt;}
.y4d{bottom:613.213333pt;}
.yf4{bottom:618.973333pt;}
.ycf{bottom:624.733333pt;}
.ya2{bottom:625.053333pt;}
.y1d{bottom:627.293333pt;}
.y71{bottom:627.933333pt;}
.y4c{bottom:630.813333pt;}
.yf3{bottom:636.573333pt;}
.yce{bottom:642.333333pt;}
.ya1{bottom:642.653333pt;}
.y1c{bottom:644.893333pt;}
.y70{bottom:645.693333pt;}
.y4b{bottom:648.573333pt;}
.yf2{bottom:654.493333pt;}
.ycd{bottom:659.933333pt;}
.ya0{bottom:660.253333pt;}
.y1b{bottom:662.493333pt;}
.y6f{bottom:663.293333pt;}
.y4a{bottom:666.173333pt;}
.yf1{bottom:673.053333pt;}
.ycc{bottom:677.693333pt;}
.y9c{bottom:678.013333pt;}
.y1a{bottom:680.093333pt;}
.y6e{bottom:680.893333pt;}
.y49{bottom:683.773333pt;}
.yf0{bottom:690.653333pt;}
.yc9{bottom:695.293333pt;}
.y9d{bottom:695.613333pt;}
.y19{bottom:697.693333pt;}
.y6d{bottom:698.493333pt;}
.y48{bottom:701.373333pt;}
.yef{bottom:705.533333pt;}
.y97{bottom:713.213333pt;}
.y18{bottom:715.453333pt;}
.y6c{bottom:716.093333pt;}
.y47{bottom:718.973333pt;}
.y9b{bottom:730.813333pt;}
.y17{bottom:733.053333pt;}
.y6b{bottom:733.853333pt;}
.y46{bottom:736.733333pt;}
.y9a{bottom:748.413333pt;}
.yc7{bottom:748.733333pt;}
.y16{bottom:750.653333pt;}
.y6a{bottom:751.453333pt;}
.y45{bottom:754.333333pt;}
.y99{bottom:766.173333pt;}
.y15{bottom:768.253333pt;}
.y69{bottom:769.053333pt;}
.y44{bottom:771.933333pt;}
.y94{bottom:783.773333pt;}
.y14{bottom:785.853333pt;}
.y68{bottom:786.653333pt;}
.y43{bottom:789.533333pt;}
.y96{bottom:801.413333pt;}
.y67{bottom:801.573333pt;}
.y42{bottom:807.173333pt;}
.y13{bottom:808.293333pt;}
.y90{bottom:819.013333pt;}
.y12{bottom:821.733333pt;}
.y41{bottom:824.933333pt;}
.y92{bottom:836.613333pt;}
.y11{bottom:840.613333pt;}
.y40{bottom:842.533333pt;}
.y8f{bottom:854.693333pt;}
.y3f{bottom:860.133333pt;}
.y10{bottom:861.413333pt;}
.y3e{bottom:877.733333pt;}
.yf{bottom:889.733333pt;}
.y3d{bottom:895.333333pt;}
.y3c{bottom:913.093333pt;}
.y9{bottom:929.573333pt;}
.y1{bottom:944.133333pt;}
.y7{bottom:974.533333pt;}
.h6{height:1.837500pt;}
.h13{height:17.600000pt;}
.h17{height:17.632000pt;}
.h15{height:17.760000pt;}
.h1c{height:17.792000pt;}
.h23{height:18.720000pt;}
.ha{height:18.880000pt;}
.he{height:24.806250pt;}
.h7{height:29.760000pt;}
.h1a{height:35.200000pt;}
.h16{height:35.232000pt;}
.h14{height:35.360000pt;}
.hf{height:37.479688pt;}
.hd{height:38.128125pt;}
.h10{height:38.672812pt;}
.h24{height:40.410625pt;}
.h4{height:41.543750pt;}
.hb{height:42.262500pt;}
.h11{height:43.108125pt;}
.h19{height:43.366250pt;}
.h9{height:47.310625pt;}
.h12{height:51.123750pt;}
.h1d{height:52.800000pt;}
.h22{height:52.960000pt;}
.h20{height:53.280000pt;}
.h3{height:56.445312pt;}
.h8{height:58.563750pt;}
.hc{height:60.057813pt;}
.h18{height:70.560000pt;}
.h1f{height:70.592000pt;}
.h5{height:100.032000pt;}
.h21{height:123.360000pt;}
.h1b{height:123.552000pt;}
.h2{height:130.432000pt;}
.h1e{height:158.560000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.640000pt;}
.wd{width:46.880000pt;}
.w17{width:47.200000pt;}
.w18{width:47.360000pt;}
.w13{width:56.832000pt;}
.w12{width:66.080000pt;}
.w14{width:66.272000pt;}
.w16{width:75.712000pt;}
.w15{width:75.840000pt;}
.w9{width:76.640000pt;}
.w1b{width:79.552000pt;}
.w1c{width:81.120000pt;}
.w1a{width:94.400000pt;}
.w11{width:94.560000pt;}
.wa{width:113.312000pt;}
.w3{width:116.192000pt;}
.we{width:122.912000pt;}
.w7{width:130.912000pt;}
.wf{width:132.352000pt;}
.wc{width:151.386667pt;}
.w10{width:151.546667pt;}
.w6{width:160.666667pt;}
.w8{width:171.706667pt;}
.wb{width:273.946667pt;}
.w19{width:293.186667pt;}
.w2{width:577.253333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x20{left:16.000000pt;}
.x22{left:26.400000pt;}
.x5{left:47.999988pt;}
.x1{left:50.240000pt;}
.xc{left:57.599988pt;}
.x26{left:61.119988pt;}
.x7{left:64.479988pt;}
.xf{left:67.199988pt;}
.x27{left:85.151988pt;}
.x14{left:96.031988pt;}
.x4{left:105.146667pt;}
.x18{left:122.912000pt;}
.x10{left:127.072000pt;}
.x15{left:132.832000pt;}
.x19{left:169.786667pt;}
.x8{left:215.546655pt;}
.xb{left:226.746655pt;}
.x1d{left:235.866667pt;}
.x16{left:246.146667pt;}
.x25{left:280.706655pt;}
.xa{left:281.826655pt;}
.x11{left:287.746667pt;}
.x1a{left:292.706667pt;}
.xe{left:311.746655pt;}
.x1e{left:358.786667pt;}
.x9{left:396.893322pt;}
.x23{left:416.413333pt;}
.x12{left:418.653333pt;}
.x1b{left:425.053333pt;}
.x1f{left:500.893333pt;}
.x24{left:510.813333pt;}
.x17{left:520.093333pt;}
.x1c{left:576.613333pt;}
.x13{left:590.373333pt;}
.x21{left:623.813333pt;}
.x3{left:627.493333pt;}
.xd{left:637.893322pt;}
.x6{left:737.280000pt;}
}




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