
    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_ff69812fe75dbe21b54f06f7.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_a4c110c12d778ea8dc149075.woff2')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_763fb42193ba6bce674ee3aa.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1f5a3b2f63c7d7831051f83b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_318487390e2b18dcd3c1713f.woff2')format("woff");}.ff5{font-family:ff5;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: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_6193fc93719873dbca485474.woff2')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_634aae27640cecf76645f97a.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_0b66fb20d269ea3a87779643.woff2')format("woff");}.ff9{font-family:ff9;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;}
.m2{transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.229168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229168,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,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);}
.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;}
.ls3{letter-spacing:-1.440000px;}
.lsb{letter-spacing:-1.080000px;}
.ls7{letter-spacing:-0.774000px;}
.ls1b{letter-spacing:-0.666000px;}
.ls5{letter-spacing:-0.612000px;}
.lsf{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.460200px;}
.ls1c{letter-spacing:-0.413400px;}
.ls8{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.259800px;}
.ls26{letter-spacing:-0.253200px;}
.ls14{letter-spacing:-0.206400px;}
.ls1e{letter-spacing:-0.106800px;}
.ls6{letter-spacing:-0.053280px;}
.ls4{letter-spacing:-0.018720px;}
.ls2{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.053280px;}
.lsa{letter-spacing:0.106800px;}
.ls17{letter-spacing:0.120000px;}
.ls19{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.196800px;}
.ls1d{letter-spacing:0.206400px;}
.lsd{letter-spacing:0.259800px;}
.ls15{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.ls24{letter-spacing:0.480000px;}
.ls13{letter-spacing:0.562800px;}
.ls16{letter-spacing:0.720000px;}
.ls23{letter-spacing:1.620000px;}
.ls1a{letter-spacing:5.220000px;}
.ls1f{letter-spacing:5.940000px;}
.ls10{letter-spacing:6.660000px;}
.ls22{letter-spacing:13.140000px;}
.ls25{letter-spacing:16.020000px;}
.ls20{letter-spacing:16.506720px;}
.ls21{letter-spacing:22.500000px;}
.ls11{letter-spacing:23.940000px;}
.ls18{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;}
}
.ws3{word-spacing:-23.940000px;}
.ws2{word-spacing:-23.921280px;}
.ws0{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.246600px;}
.wsf{word-spacing:-15.199800px;}
.ws15{word-spacing:-15.146400px;}
.wsb{word-spacing:-15.046800px;}
.wse{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.ws16{word-spacing:-14.833200px;}
.ws17{word-spacing:-14.733600px;}
.ws18{word-spacing:-14.686800px;}
.ws10{word-spacing:-14.680200px;}
.ws9{word-spacing:-14.580000px;}
.ws14{word-spacing:-14.526600px;}
.wsa{word-spacing:-14.479800px;}
.ws12{word-spacing:-14.328000px;}
.ws13{word-spacing:-14.274000px;}
.ws19{word-spacing:-14.220000px;}
.ws7{word-spacing:-14.166000px;}
.wsc{word-spacing:-13.860000px;}
.ws11{word-spacing:-13.500000px;}
.ws1{word-spacing:-10.440000px;}
.wsd{word-spacing:0.000000px;}
._18{margin-left:-3.651120px;}
._b{margin-left:-2.427360px;}
._0{margin-left:-1.080000px;}
._c{width:1.140000px;}
._1{width:2.220000px;}
._15{width:3.538560px;}
._13{width:5.098560px;}
._14{width:6.378480px;}
._17{width:7.879200px;}
._16{width:9.143280px;}
._6{width:10.800000px;}
._1a{width:12.191040px;}
._19{width:13.565520px;}
._22{width:16.609200px;}
._1f{width:17.612640px;}
._11{width:18.948000px;}
._1d{width:20.340000px;}
._20{width:21.676560px;}
._21{width:23.193360px;}
._1c{width:68.847360px;}
._7{width:76.284960px;}
._12{width:99.660000px;}
._1e{width:131.115120px;}
._8{width:154.080000px;}
._e{width:195.240000px;}
._10{width:199.584000px;}
._1b{width:238.186560px;}
._2{width:255.692640px;}
._3{width:357.120000px;}
._4{width:388.174560px;}
._5{width:436.320000px;}
._9{width:604.364160px;}
._f{width:637.380000px;}
._a{width:1097.040000px;}
._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;}
.fs7{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs8{font-size:54.000000px;}
.fs9{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:77.760000px;}
.fs0{font-size:90.000000px;}
.fs6{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yf{bottom:5.760000px;}
.y8f{bottom:5.940000px;}
.y6{bottom:12.420000px;}
.y8{bottom:18.180000px;}
.yd{bottom:34.740000px;}
.y5{bottom:40.320000px;}
.yc{bottom:55.080000px;}
.y4{bottom:68.400000px;}
.ye{bottom:72.000000px;}
.yb{bottom:75.600000px;}
.y3{bottom:96.330000px;}
.y8c{bottom:96.840000px;}
.yed{bottom:102.420000px;}
.ydb{bottom:103.500000px;}
.yb2{bottom:110.520000px;}
.y6a{bottom:111.420000px;}
.y120{bottom:111.960000px;}
.y117{bottom:113.220000px;}
.y3b{bottom:115.200000px;}
.y8b{bottom:116.640000px;}
.yec{bottom:122.220000px;}
.yda{bottom:123.300000px;}
.y2{bottom:125.670000px;}
.yb1{bottom:130.320000px;}
.y11f{bottom:130.680000px;}
.y69{bottom:131.220000px;}
.y116{bottom:133.200000px;}
.y3a{bottom:135.180000px;}
.y8a{bottom:136.440000px;}
.yeb{bottom:142.200000px;}
.y11e{bottom:149.580000px;}
.yb0{bottom:150.120000px;}
.y68{bottom:151.200000px;}
.yd9{bottom:152.100000px;}
.y115{bottom:153.000000px;}
.y39{bottom:154.980000px;}
.y89{bottom:156.240000px;}
.yea{bottom:162.000000px;}
.yaf{bottom:169.920000px;}
.y67{bottom:171.000000px;}
.yd8{bottom:171.900000px;}
.y114{bottom:172.800000px;}
.y38{bottom:174.780000px;}
.y88{bottom:176.040000px;}
.ye9{bottom:181.800000px;}
.y66{bottom:190.800000px;}
.yd7{bottom:191.880000px;}
.y113{bottom:192.600000px;}
.y37{bottom:194.580000px;}
.y87{bottom:196.020000px;}
.yae{bottom:198.900000px;}
.ye8{bottom:201.600000px;}
.y65{bottom:210.630000px;}
.yd6{bottom:211.710000px;}
.y112{bottom:212.430000px;}
.y36{bottom:214.410000px;}
.y86{bottom:215.850000px;}
.yad{bottom:218.730000px;}
.ye7{bottom:221.430000px;}
.y64{bottom:230.430000px;}
.yd5{bottom:231.510000px;}
.y111{bottom:232.410000px;}
.y35{bottom:234.390000px;}
.y85{bottom:235.650000px;}
.yac{bottom:238.530000px;}
.ye6{bottom:241.410000px;}
.y63{bottom:250.410000px;}
.yd4{bottom:251.310000px;}
.y110{bottom:252.210000px;}
.y34{bottom:254.190000px;}
.y84{bottom:255.450000px;}
.yab{bottom:258.330000px;}
.ye5{bottom:261.210000px;}
.y62{bottom:270.210000px;}
.yd3{bottom:271.110000px;}
.y10f{bottom:272.010000px;}
.y33{bottom:273.990000px;}
.y83{bottom:275.250000px;}
.yaa{bottom:275.610000px;}
.ye4{bottom:281.010000px;}
.y61{bottom:290.010000px;}
.yd2{bottom:291.090000px;}
.y10e{bottom:291.810000px;}
.y32{bottom:293.790000px;}
.y82{bottom:295.230000px;}
.ya9{bottom:295.410000px;}
.ye3{bottom:300.810000px;}
.y60{bottom:309.810000px;}
.ya8{bottom:310.170000px;}
.yd1{bottom:310.890000px;}
.y10d{bottom:311.610000px;}
.y31{bottom:313.590000px;}
.y81{bottom:315.030000px;}
.ye2{bottom:320.610000px;}
.y5f{bottom:329.610000px;}
.yd0{bottom:330.690000px;}
.ya7{bottom:330.870000px;}
.y10c{bottom:331.590000px;}
.y30{bottom:333.570000px;}
.y80{bottom:334.830000px;}
.ye1{bottom:340.590000px;}
.y5e{bottom:349.590000px;}
.ycf{bottom:350.490000px;}
.y10b{bottom:351.390000px;}
.y2f{bottom:353.370000px;}
.y7f{bottom:354.630000px;}
.ya6{bottom:357.150000px;}
.ye0{bottom:360.390000px;}
.y5d{bottom:369.390000px;}
.y10a{bottom:371.190000px;}
.y2e{bottom:373.170000px;}
.y7e{bottom:374.430000px;}
.ya5{bottom:376.950000px;}
.yce{bottom:379.290000px;}
.ydf{bottom:380.190000px;}
.y5c{bottom:389.190000px;}
.y109{bottom:390.990000px;}
.y2d{bottom:392.970000px;}
.y7d{bottom:394.410000px;}
.ya4{bottom:396.930000px;}
.ycd{bottom:399.270000px;}
.yde{bottom:399.990000px;}
.y5b{bottom:408.990000px;}
.y108{bottom:410.790000px;}
.y2c{bottom:412.770000px;}
.y7c{bottom:414.210000px;}
.ya3{bottom:416.730000px;}
.ycc{bottom:419.070000px;}
.ydd{bottom:419.790000px;}
.y5a{bottom:428.790000px;}
.y107{bottom:430.770000px;}
.y2b{bottom:432.750000px;}
.y7b{bottom:434.010000px;}
.ya2{bottom:436.530000px;}
.ycb{bottom:438.870000px;}
.ydc{bottom:439.770000px;}
.y59{bottom:448.815000px;}
.y106{bottom:450.615000px;}
.y2a{bottom:452.595000px;}
.y7a{bottom:453.855000px;}
.y11d{bottom:459.615000px;}
.ya1{bottom:465.375000px;}
.y58{bottom:468.615000px;}
.y105{bottom:470.415000px;}
.y29{bottom:472.395000px;}
.y79{bottom:473.655000px;}
.yca{bottom:476.715000px;}
.y11c{bottom:479.415000px;}
.ya0{bottom:485.175000px;}
.y57{bottom:488.415000px;}
.y104{bottom:490.215000px;}
.yc9{bottom:491.475000px;}
.y28{bottom:492.195000px;}
.y78{bottom:493.635000px;}
.y11b{bottom:499.215000px;}
.y9f{bottom:502.455000px;}
.y56{bottom:508.215000px;}
.y103{bottom:510.015000px;}
.yc8{bottom:511.275000px;}
.y27{bottom:511.995000px;}
.y77{bottom:513.435000px;}
.y11a{bottom:519.015000px;}
.y9e{bottom:522.255000px;}
.y55{bottom:528.015000px;}
.y102{bottom:529.995000px;}
.yc7{bottom:531.255000px;}
.y26{bottom:531.975000px;}
.y76{bottom:533.235000px;}
.y9d{bottom:537.195000px;}
.y119{bottom:538.995000px;}
.y54{bottom:547.995000px;}
.y101{bottom:549.795000px;}
.yc6{bottom:551.055000px;}
.y25{bottom:551.775000px;}
.y75{bottom:553.035000px;}
.y9c{bottom:557.715000px;}
.y118{bottom:558.795000px;}
.y53{bottom:567.795000px;}
.y24{bottom:571.575000px;}
.y74{bottom:572.835000px;}
.y100{bottom:578.595000px;}
.y9b{bottom:584.175000px;}
.y52{bottom:587.595000px;}
.y23{bottom:591.375000px;}
.y73{bottom:592.815000px;}
.yc5{bottom:598.035000px;}
.yff{bottom:598.395000px;}
.y9a{bottom:601.455000px;}
.y51{bottom:607.395000px;}
.y22{bottom:611.175000px;}
.y72{bottom:612.615000px;}
.yc4{bottom:617.835000px;}
.yfe{bottom:618.195000px;}
.y99{bottom:621.255000px;}
.y50{bottom:627.195000px;}
.y21{bottom:631.155000px;}
.y71{bottom:632.415000px;}
.yc3{bottom:637.635000px;}
.yfd{bottom:638.175000px;}
.y98{bottom:641.055000px;}
.y4f{bottom:647.175000px;}
.y20{bottom:650.955000px;}
.y70{bottom:652.215000px;}
.yc2{bottom:657.435000px;}
.yfc{bottom:657.975000px;}
.y97{bottom:660.855000px;}
.y4e{bottom:666.975000px;}
.y1f{bottom:670.755000px;}
.y6f{bottom:672.015000px;}
.yc1{bottom:677.415000px;}
.yfb{bottom:677.775000px;}
.y4d{bottom:686.805000px;}
.y96{bottom:689.685000px;}
.y1e{bottom:690.585000px;}
.y6e{bottom:692.025000px;}
.yc0{bottom:697.245000px;}
.yfa{bottom:697.605000px;}
.y4c{bottom:706.605000px;}
.y95{bottom:709.485000px;}
.y1d{bottom:710.385000px;}
.y6d{bottom:711.825000px;}
.yf9{bottom:717.405000px;}
.ybf{bottom:726.045000px;}
.y4b{bottom:726.405000px;}
.y94{bottom:729.465000px;}
.y1c{bottom:730.365000px;}
.y6c{bottom:731.625000px;}
.yf8{bottom:737.385000px;}
.ybe{bottom:745.845000px;}
.y4a{bottom:746.385000px;}
.y93{bottom:746.745000px;}
.y6b{bottom:748.905000px;}
.y1b{bottom:750.165000px;}
.yf7{bottom:757.185000px;}
.ybd{bottom:765.645000px;}
.y49{bottom:766.185000px;}
.y92{bottom:766.545000px;}
.y1a{bottom:769.965000px;}
.yf6{bottom:776.985000px;}
.y91{bottom:781.305000px;}
.y48{bottom:785.985000px;}
.y19{bottom:789.765000px;}
.ybc{bottom:794.625000px;}
.yf5{bottom:796.785000px;}
.y90{bottom:801.105000px;}
.y47{bottom:805.785000px;}
.y18{bottom:809.565000px;}
.yf4{bottom:816.585000px;}
.y8e{bottom:821.625000px;}
.ybb{bottom:823.425000px;}
.y46{bottom:825.585000px;}
.y17{bottom:829.545000px;}
.yf3{bottom:836.565000px;}
.yba{bottom:843.225000px;}
.y45{bottom:845.565000px;}
.y8d{bottom:848.085000px;}
.y16{bottom:854.565000px;}
.yf2{bottom:856.365000px;}
.yb9{bottom:863.025000px;}
.y44{bottom:865.365000px;}
.y15{bottom:874.365000px;}
.yf1{bottom:876.165000px;}
.yb8{bottom:877.785000px;}
.y43{bottom:885.165000px;}
.y14{bottom:889.485000px;}
.yf0{bottom:895.965000px;}
.yb7{bottom:897.765000px;}
.y42{bottom:904.965000px;}
.y13{bottom:910.725000px;}
.yef{bottom:915.765000px;}
.yb6{bottom:917.610000px;}
.y41{bottom:924.810000px;}
.y12{bottom:934.350000px;}
.yee{bottom:935.790000px;}
.yb5{bottom:937.410000px;}
.y40{bottom:944.790000px;}
.yb4{bottom:957.210000px;}
.y3f{bottom:964.590000px;}
.y11{bottom:966.030000px;}
.yb3{bottom:977.010000px;}
.y3e{bottom:984.390000px;}
.y10{bottom:997.710000px;}
.y3d{bottom:1004.190000px;}
.y3c{bottom:1023.990000px;}
.ya{bottom:1038.210000px;}
.y9{bottom:1043.250000px;}
.y1{bottom:1062.330000px;}
.y7{bottom:1096.530000px;}
.h6{height:2.010938px;}
.h13{height:19.800000px;}
.h14{height:19.836000px;}
.h12{height:19.980000px;}
.hb{height:21.240000px;}
.h10{height:27.147656px;}
.h7{height:33.480000px;}
.h15{height:38.100586px;}
.h16{height:39.313477px;}
.h9{height:41.726953px;}
.he{height:42.164648px;}
.h17{height:43.506914px;}
.h18{height:46.159453px;}
.hc{height:46.251562px;}
.h4{height:46.736719px;}
.h11{height:49.255313px;}
.ha{height:53.224453px;}
.h8{height:54.295313px;}
.h3{height:63.500977px;}
.hd{height:67.565039px;}
.hf{height:77.704453px;}
.h5{height:112.536000px;}
.h2{height:146.736000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w5{width:9.900000px;}
.w8{width:71.316000px;}
.w16{width:73.080000px;}
.w14{width:78.156000px;}
.w13{width:82.800000px;}
.w12{width:86.256000px;}
.w7{width:87.480000px;}
.w9{width:88.740000px;}
.wd{width:88.920000px;}
.wc{width:115.056000px;}
.we{width:118.836000px;}
.w10{width:127.440000px;}
.wf{width:127.656000px;}
.w15{width:131.616000px;}
.w3{width:137.556000px;}
.wb{width:145.656000px;}
.w11{width:146.376000px;}
.wa{width:147.996000px;}
.w6{width:168.150000px;}
.w2{width:649.410000px;}
.w1{width:893.250000px;}
.w4{width:893.339987px;}
.w0{width:893.340000px;}
.x2b{left:-5.400000px;}
.x28{left:-4.320000px;}
.x0{left:0.000000px;}
.x2a{left:3.780000px;}
.x24{left:5.220000px;}
.x2{left:8.100000px;}
.x13{left:18.000000px;}
.x11{left:46.440000px;}
.x1{left:53.280000px;}
.xd{left:54.899987px;}
.x6{left:56.519987px;}
.x2c{left:63.179987px;}
.x2d{left:64.799987px;}
.xa{left:69.839987px;}
.xe{left:76.535987px;}
.x7{left:79.955987px;}
.x2f{left:81.035987px;}
.x2e{left:86.795987px;}
.xf{left:97.415987px;}
.x30{left:108.035987px;}
.x4{left:118.470000px;}
.x1b{left:162.029987px;}
.x1c{left:196.950000px;}
.x17{left:198.930000px;}
.x20{left:205.769987px;}
.x26{left:207.929987px;}
.xc{left:220.889987px;}
.xb{left:227.369987px;}
.x10{left:240.015000px;}
.x16{left:242.534987px;}
.x1d{left:315.795000px;}
.x27{left:345.675000px;}
.x18{left:346.935000px;}
.x21{left:353.055000px;}
.x8{left:384.374987px;}
.x12{left:408.165000px;}
.x22{left:439.305000px;}
.x1e{left:443.445000px;}
.x9{left:446.864987px;}
.x29{left:477.285000px;}
.x19{left:492.585000px;}
.x14{left:495.645000px;}
.x23{left:522.105000px;}
.x15{left:566.970000px;}
.x1f{left:571.110000px;}
.x25{left:600.270000px;}
.x1a{left:607.650000px;}
.x3{left:702.690000px;}
.x5{left:829.620000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls3{letter-spacing:-1.280000pt;}
.lsb{letter-spacing:-0.960000pt;}
.ls7{letter-spacing:-0.688000pt;}
.ls1b{letter-spacing:-0.592000pt;}
.ls5{letter-spacing:-0.544000pt;}
.lsf{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.409067pt;}
.ls1c{letter-spacing:-0.367467pt;}
.ls8{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.230933pt;}
.ls26{letter-spacing:-0.225067pt;}
.ls14{letter-spacing:-0.183467pt;}
.ls1e{letter-spacing:-0.094933pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:-0.016640pt;}
.ls2{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.047360pt;}
.lsa{letter-spacing:0.094933pt;}
.ls17{letter-spacing:0.106667pt;}
.ls19{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.174933pt;}
.ls1d{letter-spacing:0.183467pt;}
.lsd{letter-spacing:0.230933pt;}
.ls15{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls24{letter-spacing:0.426667pt;}
.ls13{letter-spacing:0.500267pt;}
.ls16{letter-spacing:0.640000pt;}
.ls23{letter-spacing:1.440000pt;}
.ls1a{letter-spacing:4.640000pt;}
.ls1f{letter-spacing:5.280000pt;}
.ls10{letter-spacing:5.920000pt;}
.ls22{letter-spacing:11.680000pt;}
.ls25{letter-spacing:14.240000pt;}
.ls20{letter-spacing:14.672640pt;}
.ls21{letter-spacing:20.000000pt;}
.ls11{letter-spacing:21.280000pt;}
.ls18{letter-spacing:40.912640pt;}
.ws3{word-spacing:-21.280000pt;}
.ws2{word-spacing:-21.263360pt;}
.ws0{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.552533pt;}
.wsf{word-spacing:-13.510933pt;}
.ws15{word-spacing:-13.463467pt;}
.wsb{word-spacing:-13.374933pt;}
.wse{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.ws16{word-spacing:-13.185067pt;}
.ws17{word-spacing:-13.096533pt;}
.ws18{word-spacing:-13.054933pt;}
.ws10{word-spacing:-13.049067pt;}
.ws9{word-spacing:-12.960000pt;}
.ws14{word-spacing:-12.912533pt;}
.wsa{word-spacing:-12.870933pt;}
.ws12{word-spacing:-12.736000pt;}
.ws13{word-spacing:-12.688000pt;}
.ws19{word-spacing:-12.640000pt;}
.ws7{word-spacing:-12.592000pt;}
.wsc{word-spacing:-12.320000pt;}
.ws11{word-spacing:-12.000000pt;}
.ws1{word-spacing:-9.280000pt;}
.wsd{word-spacing:0.000000pt;}
._18{margin-left:-3.245440pt;}
._b{margin-left:-2.157653pt;}
._0{margin-left:-0.960000pt;}
._c{width:1.013333pt;}
._1{width:1.973333pt;}
._15{width:3.145387pt;}
._13{width:4.532053pt;}
._14{width:5.669760pt;}
._17{width:7.003733pt;}
._16{width:8.127360pt;}
._6{width:9.600000pt;}
._1a{width:10.836480pt;}
._19{width:12.058240pt;}
._22{width:14.763733pt;}
._1f{width:15.655680pt;}
._11{width:16.842667pt;}
._1d{width:18.080000pt;}
._20{width:19.268053pt;}
._21{width:20.616320pt;}
._1c{width:61.197653pt;}
._7{width:67.808853pt;}
._12{width:88.586667pt;}
._1e{width:116.546773pt;}
._8{width:136.960000pt;}
._e{width:173.546667pt;}
._10{width:177.408000pt;}
._1b{width:211.721387pt;}
._2{width:227.282347pt;}
._3{width:317.440000pt;}
._4{width:345.044053pt;}
._5{width:387.840000pt;}
._9{width:537.212587pt;}
._f{width:566.560000pt;}
._a{width:975.146667pt;}
._d{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs7{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs8{font-size:48.000000pt;}
.fs9{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:69.120000pt;}
.fs0{font-size:80.000000pt;}
.fs6{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:5.120000pt;}
.y8f{bottom:5.280000pt;}
.y6{bottom:11.040000pt;}
.y8{bottom:16.160000pt;}
.yd{bottom:30.880000pt;}
.y5{bottom:35.840000pt;}
.yc{bottom:48.960000pt;}
.y4{bottom:60.800000pt;}
.ye{bottom:64.000000pt;}
.yb{bottom:67.200000pt;}
.y3{bottom:85.626667pt;}
.y8c{bottom:86.080000pt;}
.yed{bottom:91.040000pt;}
.ydb{bottom:92.000000pt;}
.yb2{bottom:98.240000pt;}
.y6a{bottom:99.040000pt;}
.y120{bottom:99.520000pt;}
.y117{bottom:100.640000pt;}
.y3b{bottom:102.400000pt;}
.y8b{bottom:103.680000pt;}
.yec{bottom:108.640000pt;}
.yda{bottom:109.600000pt;}
.y2{bottom:111.706667pt;}
.yb1{bottom:115.840000pt;}
.y11f{bottom:116.160000pt;}
.y69{bottom:116.640000pt;}
.y116{bottom:118.400000pt;}
.y3a{bottom:120.160000pt;}
.y8a{bottom:121.280000pt;}
.yeb{bottom:126.400000pt;}
.y11e{bottom:132.960000pt;}
.yb0{bottom:133.440000pt;}
.y68{bottom:134.400000pt;}
.yd9{bottom:135.200000pt;}
.y115{bottom:136.000000pt;}
.y39{bottom:137.760000pt;}
.y89{bottom:138.880000pt;}
.yea{bottom:144.000000pt;}
.yaf{bottom:151.040000pt;}
.y67{bottom:152.000000pt;}
.yd8{bottom:152.800000pt;}
.y114{bottom:153.600000pt;}
.y38{bottom:155.360000pt;}
.y88{bottom:156.480000pt;}
.ye9{bottom:161.600000pt;}
.y66{bottom:169.600000pt;}
.yd7{bottom:170.560000pt;}
.y113{bottom:171.200000pt;}
.y37{bottom:172.960000pt;}
.y87{bottom:174.240000pt;}
.yae{bottom:176.800000pt;}
.ye8{bottom:179.200000pt;}
.y65{bottom:187.226667pt;}
.yd6{bottom:188.186667pt;}
.y112{bottom:188.826667pt;}
.y36{bottom:190.586667pt;}
.y86{bottom:191.866667pt;}
.yad{bottom:194.426667pt;}
.ye7{bottom:196.826667pt;}
.y64{bottom:204.826667pt;}
.yd5{bottom:205.786667pt;}
.y111{bottom:206.586667pt;}
.y35{bottom:208.346667pt;}
.y85{bottom:209.466667pt;}
.yac{bottom:212.026667pt;}
.ye6{bottom:214.586667pt;}
.y63{bottom:222.586667pt;}
.yd4{bottom:223.386667pt;}
.y110{bottom:224.186667pt;}
.y34{bottom:225.946667pt;}
.y84{bottom:227.066667pt;}
.yab{bottom:229.626667pt;}
.ye5{bottom:232.186667pt;}
.y62{bottom:240.186667pt;}
.yd3{bottom:240.986667pt;}
.y10f{bottom:241.786667pt;}
.y33{bottom:243.546667pt;}
.y83{bottom:244.666667pt;}
.yaa{bottom:244.986667pt;}
.ye4{bottom:249.786667pt;}
.y61{bottom:257.786667pt;}
.yd2{bottom:258.746667pt;}
.y10e{bottom:259.386667pt;}
.y32{bottom:261.146667pt;}
.y82{bottom:262.426667pt;}
.ya9{bottom:262.586667pt;}
.ye3{bottom:267.386667pt;}
.y60{bottom:275.386667pt;}
.ya8{bottom:275.706667pt;}
.yd1{bottom:276.346667pt;}
.y10d{bottom:276.986667pt;}
.y31{bottom:278.746667pt;}
.y81{bottom:280.026667pt;}
.ye2{bottom:284.986667pt;}
.y5f{bottom:292.986667pt;}
.yd0{bottom:293.946667pt;}
.ya7{bottom:294.106667pt;}
.y10c{bottom:294.746667pt;}
.y30{bottom:296.506667pt;}
.y80{bottom:297.626667pt;}
.ye1{bottom:302.746667pt;}
.y5e{bottom:310.746667pt;}
.ycf{bottom:311.546667pt;}
.y10b{bottom:312.346667pt;}
.y2f{bottom:314.106667pt;}
.y7f{bottom:315.226667pt;}
.ya6{bottom:317.466667pt;}
.ye0{bottom:320.346667pt;}
.y5d{bottom:328.346667pt;}
.y10a{bottom:329.946667pt;}
.y2e{bottom:331.706667pt;}
.y7e{bottom:332.826667pt;}
.ya5{bottom:335.066667pt;}
.yce{bottom:337.146667pt;}
.ydf{bottom:337.946667pt;}
.y5c{bottom:345.946667pt;}
.y109{bottom:347.546667pt;}
.y2d{bottom:349.306667pt;}
.y7d{bottom:350.586667pt;}
.ya4{bottom:352.826667pt;}
.ycd{bottom:354.906667pt;}
.yde{bottom:355.546667pt;}
.y5b{bottom:363.546667pt;}
.y108{bottom:365.146667pt;}
.y2c{bottom:366.906667pt;}
.y7c{bottom:368.186667pt;}
.ya3{bottom:370.426667pt;}
.ycc{bottom:372.506667pt;}
.ydd{bottom:373.146667pt;}
.y5a{bottom:381.146667pt;}
.y107{bottom:382.906667pt;}
.y2b{bottom:384.666667pt;}
.y7b{bottom:385.786667pt;}
.ya2{bottom:388.026667pt;}
.ycb{bottom:390.106667pt;}
.ydc{bottom:390.906667pt;}
.y59{bottom:398.946667pt;}
.y106{bottom:400.546667pt;}
.y2a{bottom:402.306667pt;}
.y7a{bottom:403.426667pt;}
.y11d{bottom:408.546667pt;}
.ya1{bottom:413.666667pt;}
.y58{bottom:416.546667pt;}
.y105{bottom:418.146667pt;}
.y29{bottom:419.906667pt;}
.y79{bottom:421.026667pt;}
.yca{bottom:423.746667pt;}
.y11c{bottom:426.146667pt;}
.ya0{bottom:431.266667pt;}
.y57{bottom:434.146667pt;}
.y104{bottom:435.746667pt;}
.yc9{bottom:436.866667pt;}
.y28{bottom:437.506667pt;}
.y78{bottom:438.786667pt;}
.y11b{bottom:443.746667pt;}
.y9f{bottom:446.626667pt;}
.y56{bottom:451.746667pt;}
.y103{bottom:453.346667pt;}
.yc8{bottom:454.466667pt;}
.y27{bottom:455.106667pt;}
.y77{bottom:456.386667pt;}
.y11a{bottom:461.346667pt;}
.y9e{bottom:464.226667pt;}
.y55{bottom:469.346667pt;}
.y102{bottom:471.106667pt;}
.yc7{bottom:472.226667pt;}
.y26{bottom:472.866667pt;}
.y76{bottom:473.986667pt;}
.y9d{bottom:477.506667pt;}
.y119{bottom:479.106667pt;}
.y54{bottom:487.106667pt;}
.y101{bottom:488.706667pt;}
.yc6{bottom:489.826667pt;}
.y25{bottom:490.466667pt;}
.y75{bottom:491.586667pt;}
.y9c{bottom:495.746667pt;}
.y118{bottom:496.706667pt;}
.y53{bottom:504.706667pt;}
.y24{bottom:508.066667pt;}
.y74{bottom:509.186667pt;}
.y100{bottom:514.306667pt;}
.y9b{bottom:519.266667pt;}
.y52{bottom:522.306667pt;}
.y23{bottom:525.666667pt;}
.y73{bottom:526.946667pt;}
.yc5{bottom:531.586667pt;}
.yff{bottom:531.906667pt;}
.y9a{bottom:534.626667pt;}
.y51{bottom:539.906667pt;}
.y22{bottom:543.266667pt;}
.y72{bottom:544.546667pt;}
.yc4{bottom:549.186667pt;}
.yfe{bottom:549.506667pt;}
.y99{bottom:552.226667pt;}
.y50{bottom:557.506667pt;}
.y21{bottom:561.026667pt;}
.y71{bottom:562.146667pt;}
.yc3{bottom:566.786667pt;}
.yfd{bottom:567.266667pt;}
.y98{bottom:569.826667pt;}
.y4f{bottom:575.266667pt;}
.y20{bottom:578.626667pt;}
.y70{bottom:579.746667pt;}
.yc2{bottom:584.386667pt;}
.yfc{bottom:584.866667pt;}
.y97{bottom:587.426667pt;}
.y4e{bottom:592.866667pt;}
.y1f{bottom:596.226667pt;}
.y6f{bottom:597.346667pt;}
.yc1{bottom:602.146667pt;}
.yfb{bottom:602.466667pt;}
.y4d{bottom:610.493333pt;}
.y96{bottom:613.053333pt;}
.y1e{bottom:613.853333pt;}
.y6e{bottom:615.133333pt;}
.yc0{bottom:619.773333pt;}
.yfa{bottom:620.093333pt;}
.y4c{bottom:628.093333pt;}
.y95{bottom:630.653333pt;}
.y1d{bottom:631.453333pt;}
.y6d{bottom:632.733333pt;}
.yf9{bottom:637.693333pt;}
.ybf{bottom:645.373333pt;}
.y4b{bottom:645.693333pt;}
.y94{bottom:648.413333pt;}
.y1c{bottom:649.213333pt;}
.y6c{bottom:650.333333pt;}
.yf8{bottom:655.453333pt;}
.ybe{bottom:662.973333pt;}
.y4a{bottom:663.453333pt;}
.y93{bottom:663.773333pt;}
.y6b{bottom:665.693333pt;}
.y1b{bottom:666.813333pt;}
.yf7{bottom:673.053333pt;}
.ybd{bottom:680.573333pt;}
.y49{bottom:681.053333pt;}
.y92{bottom:681.373333pt;}
.y1a{bottom:684.413333pt;}
.yf6{bottom:690.653333pt;}
.y91{bottom:694.493333pt;}
.y48{bottom:698.653333pt;}
.y19{bottom:702.013333pt;}
.ybc{bottom:706.333333pt;}
.yf5{bottom:708.253333pt;}
.y90{bottom:712.093333pt;}
.y47{bottom:716.253333pt;}
.y18{bottom:719.613333pt;}
.yf4{bottom:725.853333pt;}
.y8e{bottom:730.333333pt;}
.ybb{bottom:731.933333pt;}
.y46{bottom:733.853333pt;}
.y17{bottom:737.373333pt;}
.yf3{bottom:743.613333pt;}
.yba{bottom:749.533333pt;}
.y45{bottom:751.613333pt;}
.y8d{bottom:753.853333pt;}
.y16{bottom:759.613333pt;}
.yf2{bottom:761.213333pt;}
.yb9{bottom:767.133333pt;}
.y44{bottom:769.213333pt;}
.y15{bottom:777.213333pt;}
.yf1{bottom:778.813333pt;}
.yb8{bottom:780.253333pt;}
.y43{bottom:786.813333pt;}
.y14{bottom:790.653333pt;}
.yf0{bottom:796.413333pt;}
.yb7{bottom:798.013333pt;}
.y42{bottom:804.413333pt;}
.y13{bottom:809.533333pt;}
.yef{bottom:814.013333pt;}
.yb6{bottom:815.653333pt;}
.y41{bottom:822.053333pt;}
.y12{bottom:830.533333pt;}
.yee{bottom:831.813333pt;}
.yb5{bottom:833.253333pt;}
.y40{bottom:839.813333pt;}
.yb4{bottom:850.853333pt;}
.y3f{bottom:857.413333pt;}
.y11{bottom:858.693333pt;}
.yb3{bottom:868.453333pt;}
.y3e{bottom:875.013333pt;}
.y10{bottom:886.853333pt;}
.y3d{bottom:892.613333pt;}
.y3c{bottom:910.213333pt;}
.ya{bottom:922.853333pt;}
.y9{bottom:927.333333pt;}
.y1{bottom:944.293333pt;}
.y7{bottom:974.693333pt;}
.h6{height:1.787500pt;}
.h13{height:17.600000pt;}
.h14{height:17.632000pt;}
.h12{height:17.760000pt;}
.hb{height:18.880000pt;}
.h10{height:24.131250pt;}
.h7{height:29.760000pt;}
.h15{height:33.867188pt;}
.h16{height:34.945312pt;}
.h9{height:37.090625pt;}
.he{height:37.479688pt;}
.h17{height:38.672812pt;}
.h18{height:41.030625pt;}
.hc{height:41.112500pt;}
.h4{height:41.543750pt;}
.h11{height:43.782500pt;}
.ha{height:47.310625pt;}
.h8{height:48.262500pt;}
.h3{height:56.445312pt;}
.hd{height:60.057813pt;}
.hf{height:69.070625pt;}
.h5{height:100.032000pt;}
.h2{height:130.432000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w5{width:8.800000pt;}
.w8{width:63.392000pt;}
.w16{width:64.960000pt;}
.w14{width:69.472000pt;}
.w13{width:73.600000pt;}
.w12{width:76.672000pt;}
.w7{width:77.760000pt;}
.w9{width:78.880000pt;}
.wd{width:79.040000pt;}
.wc{width:102.272000pt;}
.we{width:105.632000pt;}
.w10{width:113.280000pt;}
.wf{width:113.472000pt;}
.w15{width:116.992000pt;}
.w3{width:122.272000pt;}
.wb{width:129.472000pt;}
.w11{width:130.112000pt;}
.wa{width:131.552000pt;}
.w6{width:149.466667pt;}
.w2{width:577.253333pt;}
.w1{width:794.000000pt;}
.w4{width:794.079988pt;}
.w0{width:794.080000pt;}
.x2b{left:-4.800000pt;}
.x28{left:-3.840000pt;}
.x0{left:0.000000pt;}
.x2a{left:3.360000pt;}
.x24{left:4.640000pt;}
.x2{left:7.200000pt;}
.x13{left:16.000000pt;}
.x11{left:41.280000pt;}
.x1{left:47.360000pt;}
.xd{left:48.799988pt;}
.x6{left:50.239988pt;}
.x2c{left:56.159988pt;}
.x2d{left:57.599988pt;}
.xa{left:62.079988pt;}
.xe{left:68.031988pt;}
.x7{left:71.071988pt;}
.x2f{left:72.031988pt;}
.x2e{left:77.151988pt;}
.xf{left:86.591988pt;}
.x30{left:96.031988pt;}
.x4{left:105.306667pt;}
.x1b{left:144.026655pt;}
.x1c{left:175.066667pt;}
.x17{left:176.826667pt;}
.x20{left:182.906655pt;}
.x26{left:184.826655pt;}
.xc{left:196.346655pt;}
.xb{left:202.106655pt;}
.x10{left:213.346667pt;}
.x16{left:215.586655pt;}
.x1d{left:280.706667pt;}
.x27{left:307.266667pt;}
.x18{left:308.386667pt;}
.x21{left:313.826667pt;}
.x8{left:341.666655pt;}
.x12{left:362.813333pt;}
.x22{left:390.493333pt;}
.x1e{left:394.173333pt;}
.x9{left:397.213321pt;}
.x29{left:424.253333pt;}
.x19{left:437.853333pt;}
.x14{left:440.573333pt;}
.x23{left:464.093333pt;}
.x15{left:503.973333pt;}
.x1f{left:507.653333pt;}
.x25{left:533.573333pt;}
.x1a{left:540.133333pt;}
.x3{left:624.613333pt;}
.x5{left:737.440000pt;}
}




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