
    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_ef60178df0624147881fc5bf.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_d6e0bd77852c936fab49a032.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e77d59672934501191a00b70.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_4b285dd5edcd7ec54e8737a1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.944824;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_0ce56a5bbb48756502849273.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6193fc93719873dbca485474.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_4fa69de9174a87aa0c8dd1e4.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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:-21.060000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls17{letter-spacing:-4.680000px;}
.lsb{letter-spacing:-0.774000px;}
.ls8{letter-spacing:-0.540000px;}
.ls13{letter-spacing:-0.460200px;}
.lse{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.305400px;}
.lsa{letter-spacing:-0.206400px;}
.ls6{letter-spacing:-0.180000px;}
.ls11{letter-spacing:-0.106800px;}
.ls14{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.018720px;}
.ls10{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.206400px;}
.ls7{letter-spacing:0.259800px;}
.ls4{letter-spacing:0.262200px;}
.lsf{letter-spacing:0.306600px;}
.ls1{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.511800px;}
.lsd{letter-spacing:0.513600px;}
.ls12{letter-spacing:0.828000px;}
.ls16{letter-spacing:11.466720px;}
.ls15{letter-spacing:41.850720px;}
.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;}
}
.ws1{word-spacing:-16.822200px;}
.ws2{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.254600px;}
.ws6{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.246600px;}
.ws8{word-spacing:-15.199800px;}
.wsb{word-spacing:-15.146400px;}
.wsc{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.wse{word-spacing:-14.886720px;}
.wsd{word-spacing:-14.833200px;}
.ws9{word-spacing:-14.733600px;}
.wsf{word-spacing:-14.580000px;}
.ws3{word-spacing:-10.440000px;}
.ws10{word-spacing:-10.260000px;}
.ws4{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._1{margin-left:-2541.138480px;}
._3{margin-left:-1449.751680px;}
._5{margin-left:-1445.990040px;}
._4{margin-left:-939.110400px;}
._6{margin-left:-579.228480px;}
._8{margin-left:-8.942400px;}
._67{margin-left:-7.702560px;}
._68{margin-left:-6.700080px;}
._9{margin-left:-5.118000px;}
._a{margin-left:-3.908160px;}
._7{margin-left:-2.361840px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._b{width:2.884080px;}
._d{width:4.431120px;}
._12{width:6.404400px;}
._13{width:7.474800px;}
._f{width:9.243360px;}
._c{width:11.194560px;}
._e{width:13.147200px;}
._11{width:16.433280px;}
._10{width:17.526720px;}
._2e{width:19.372320px;}
._2f{width:20.570160px;}
._3f{width:21.649680px;}
._34{width:23.256720px;}
._45{width:24.740640px;}
._2d{width:26.359920px;}
._28{width:27.799920px;}
._5c{width:28.809120px;}
._19{width:29.830320px;}
._18{width:31.553280px;}
._17{width:32.748480px;}
._42{width:34.202880px;}
._35{width:36.323040px;}
._29{width:38.136960px;}
._36{width:40.014240px;}
._2b{width:41.442240px;}
._2a{width:42.957840px;}
._23{width:46.357680px;}
._21{width:47.937600px;}
._22{width:49.172400px;}
._26{width:50.865840px;}
._25{width:52.658640px;}
._24{width:53.724240px;}
._4b{width:56.022960px;}
._4a{width:57.080880px;}
._58{width:58.554720px;}
._15{width:60.009120px;}
._16{width:61.432560px;}
._30{width:62.829360px;}
._5d{width:63.941760px;}
._5a{width:68.004480px;}
._50{width:69.690240px;}
._3c{width:71.184240px;}
._54{width:72.369360px;}
._3d{width:73.971120px;}
._48{width:75.536640px;}
._33{width:76.861440px;}
._1a{width:78.714000px;}
._1f{width:80.606160px;}
._1d{width:81.821520px;}
._1c{width:82.827360px;}
._47{width:85.217760px;}
._53{width:88.215840px;}
._38{width:89.769600px;}
._39{width:91.130880px;}
._57{width:92.458800px;}
._65{width:94.600080px;}
._59{width:99.988560px;}
._4f{width:101.651760px;}
._4e{width:102.846960px;}
._66{width:104.689440px;}
._14{width:105.904800px;}
._37{width:108.344880px;}
._63{width:109.968480px;}
._31{width:111.691440px;}
._20{width:113.434560px;}
._4c{width:120.486240px;}
._41{width:123.324480px;}
._55{width:126.750960px;}
._40{width:141.451920px;}
._1b{width:142.527600px;}
._52{width:146.292480px;}
._51{width:147.557520px;}
._46{width:150.953760px;}
._5e{width:154.599120px;}
._56{width:158.672880px;}
._27{width:160.704720px;}
._61{width:162.856080px;}
._2c{width:170.087040px;}
._3a{width:176.112720px;}
._4d{width:182.925360px;}
._44{width:187.586640px;}
._64{width:188.971200px;}
._1e{width:195.474960px;}
._62{width:198.652320px;}
._5f{width:199.728000px;}
._60{width:204.319440px;}
._43{width:221.470560px;}
._49{width:224.252640px;}
._32{width:240.484320px;}
._3e{width:255.713040px;}
._5b{width:290.194560px;}
._3b{width:294.855840px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:2.880000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7e{bottom:5.760000px;}
.ya7{bottom:5.940000px;}
.yff{bottom:5.985000px;}
.ya4{bottom:9.900000px;}
.ya6{bottom:10.080000px;}
.y17b{bottom:10.800000px;}
.y81{bottom:15.660000px;}
.y86{bottom:25.560000px;}
.yc4{bottom:25.590000px;}
.y83{bottom:25.740000px;}
.yd9{bottom:25.785000px;}
.y17a{bottom:30.630000px;}
.y177{bottom:34.770000px;}
.y87{bottom:35.460000px;}
.y80{bottom:35.640000px;}
.y85{bottom:45.360000px;}
.yc3{bottom:45.390000px;}
.y82{bottom:45.540000px;}
.yd8{bottom:45.585000px;}
.y179{bottom:50.430000px;}
.y8a{bottom:55.440000px;}
.yd4{bottom:65.160000px;}
.yf2{bottom:65.190000px;}
.y6{bottom:65.340000px;}
.yb7{bottom:65.370000px;}
.yd7{bottom:65.385000px;}
.y178{bottom:70.230000px;}
.ybc{bottom:85.140000px;}
.yb6{bottom:85.170000px;}
.ycb{bottom:85.185000px;}
.y10d{bottom:92.340000px;}
.y172{bottom:97.380000px;}
.y84{bottom:98.640000px;}
.yeb{bottom:103.320000px;}
.yd1{bottom:103.500000px;}
.yb2{bottom:103.680000px;}
.ybb{bottom:104.940000px;}
.yc2{bottom:104.970000px;}
.ye7{bottom:104.985000px;}
.yc9{bottom:105.120000px;}
.yb5{bottom:105.150000px;}
.yd6{bottom:105.165000px;}
.y33{bottom:107.820000px;}
.y121{bottom:108.180000px;}
.y53{bottom:111.420000px;}
.y10c{bottom:112.140000px;}
.y109{bottom:114.840000px;}
.y171{bottom:117.180000px;}
.yd0{bottom:123.480000px;}
.yfc{bottom:124.200000px;}
.yc1{bottom:124.770000px;}
.ye6{bottom:124.785000px;}
.yea{bottom:124.920000px;}
.yb4{bottom:124.950000px;}
.ybf{bottom:124.965000px;}
.y32{bottom:127.620000px;}
.y120{bottom:127.980000px;}
.y10b{bottom:128.700000px;}
.y15e{bottom:129.780000px;}
.y176{bottom:130.140000px;}
.y52{bottom:131.220000px;}
.y108{bottom:134.640000px;}
.y170{bottom:136.980000px;}
.ycf{bottom:143.280000px;}
.yfb{bottom:144.000000px;}
.ye5{bottom:144.585000px;}
.ye9{bottom:144.720000px;}
.yb3{bottom:144.750000px;}
.ybe{bottom:144.765000px;}
.y31{bottom:147.420000px;}
.y11f{bottom:147.780000px;}
.y15d{bottom:149.580000px;}
.y51{bottom:151.020000px;}
.y107{bottom:154.470000px;}
.y16f{bottom:156.810000px;}
.y7f{bottom:162.570000px;}
.yce{bottom:163.110000px;}
.yfa{bottom:163.830000px;}
.ye4{bottom:164.565000px;}
.y30{bottom:167.250000px;}
.y11e{bottom:167.610000px;}
.y15c{bottom:169.590000px;}
.y50{bottom:170.850000px;}
.y106{bottom:174.450000px;}
.y16e{bottom:176.610000px;}
.ycd{bottom:182.910000px;}
.yf9{bottom:183.630000px;}
.ye3{bottom:184.365000px;}
.y2f{bottom:187.050000px;}
.ye8{bottom:187.230000px;}
.y11d{bottom:187.590000px;}
.y15b{bottom:189.390000px;}
.y4f{bottom:190.830000px;}
.y105{bottom:193.350000px;}
.y16d{bottom:196.590000px;}
.ycc{bottom:201.810000px;}
.yf8{bottom:203.610000px;}
.ye2{bottom:204.165000px;}
.y2e{bottom:207.030000px;}
.y11c{bottom:207.390000px;}
.y15a{bottom:209.190000px;}
.y4e{bottom:210.630000px;}
.y16c{bottom:216.390000px;}
.yf7{bottom:223.410000px;}
.ye1{bottom:223.965000px;}
.y2d{bottom:226.830000px;}
.y11b{bottom:227.190000px;}
.y7d{bottom:227.370000px;}
.y159{bottom:228.990000px;}
.y4d{bottom:230.430000px;}
.y16b{bottom:236.190000px;}
.yf6{bottom:243.210000px;}
.ye0{bottom:243.765000px;}
.y2c{bottom:246.630000px;}
.y11a{bottom:246.990000px;}
.y158{bottom:248.790000px;}
.y4c{bottom:250.230000px;}
.y16a{bottom:255.990000px;}
.y7c{bottom:257.790000px;}
.yf5{bottom:263.010000px;}
.y2b{bottom:266.430000px;}
.y119{bottom:266.790000px;}
.yb1{bottom:267.690000px;}
.y157{bottom:268.770000px;}
.y4b{bottom:270.030000px;}
.y169{bottom:275.790000px;}
.y7b{bottom:277.770000px;}
.yf4{bottom:281.910000px;}
.y2a{bottom:286.230000px;}
.y118{bottom:286.770000px;}
.y156{bottom:288.570000px;}
.y4a{bottom:290.010000px;}
.y168{bottom:295.770000px;}
.y104{bottom:297.030000px;}
.y7a{bottom:297.570000px;}
.y29{bottom:306.210000px;}
.y117{bottom:306.570000px;}
.y155{bottom:308.370000px;}
.y49{bottom:309.810000px;}
.y167{bottom:315.570000px;}
.y79{bottom:317.370000px;}
.yb0{bottom:318.090000px;}
.yca{bottom:325.290000px;}
.y28{bottom:326.010000px;}
.y116{bottom:326.370000px;}
.y154{bottom:328.170000px;}
.y48{bottom:329.610000px;}
.y166{bottom:335.370000px;}
.y78{bottom:337.170000px;}
.yaf{bottom:337.890000px;}
.y27{bottom:345.810000px;}
.y115{bottom:346.170000px;}
.y153{bottom:347.970000px;}
.y47{bottom:349.410000px;}
.ydf{bottom:350.490000px;}
.y165{bottom:355.170000px;}
.y77{bottom:356.970000px;}
.yae{bottom:357.690000px;}
.y26{bottom:365.610000px;}
.y114{bottom:365.970000px;}
.y152{bottom:367.950000px;}
.y46{bottom:369.210000px;}
.y164{bottom:374.970000px;}
.y76{bottom:376.950000px;}
.yad{bottom:377.490000px;}
.y103{bottom:380.730000px;}
.y25{bottom:385.410000px;}
.y113{bottom:385.950000px;}
.y151{bottom:387.750000px;}
.y45{bottom:389.190000px;}
.y163{bottom:394.950000px;}
.y75{bottom:396.750000px;}
.yac{bottom:397.470000px;}
.y24{bottom:405.435000px;}
.y112{bottom:405.795000px;}
.y150{bottom:407.595000px;}
.y44{bottom:409.035000px;}
.y162{bottom:414.795000px;}
.yab{bottom:416.415000px;}
.y23{bottom:425.235000px;}
.y74{bottom:425.595000px;}
.y14f{bottom:427.395000px;}
.y43{bottom:428.835000px;}
.yc8{bottom:429.015000px;}
.y161{bottom:434.595000px;}
.yaa{bottom:440.715000px;}
.y22{bottom:445.035000px;}
.y73{bottom:445.395000px;}
.y14e{bottom:447.195000px;}
.y42{bottom:448.635000px;}
.y160{bottom:454.395000px;}
.y21{bottom:464.835000px;}
.ya9{bottom:465.015000px;}
.y72{bottom:465.195000px;}
.y14d{bottom:467.175000px;}
.y41{bottom:468.435000px;}
.y15f{bottom:474.195000px;}
.y20{bottom:484.635000px;}
.y71{bottom:485.175000px;}
.y14c{bottom:486.975000px;}
.y40{bottom:488.415000px;}
.ya8{bottom:489.315000px;}
.y111{bottom:494.175000px;}
.y102{bottom:504.435000px;}
.y1f{bottom:504.615000px;}
.y70{bottom:504.975000px;}
.y14b{bottom:506.775000px;}
.y3f{bottom:508.215000px;}
.ya5{bottom:513.615000px;}
.y110{bottom:513.975000px;}
.y1e{bottom:524.415000px;}
.y6f{bottom:524.775000px;}
.y14a{bottom:526.575000px;}
.y3e{bottom:528.015000px;}
.yf3{bottom:529.095000px;}
.y10f{bottom:533.775000px;}
.ya3{bottom:538.095000px;}
.y1d{bottom:544.215000px;}
.y3d{bottom:544.575000px;}
.y149{bottom:546.375000px;}
.yc7{bottom:553.395000px;}
.y10e{bottom:553.575000px;}
.ya2{bottom:562.395000px;}
.y1c{bottom:564.015000px;}
.y6e{bottom:564.375000px;}
.y148{bottom:566.355000px;}
.y10a{bottom:573.375000px;}
.y12f{bottom:584.355000px;}
.y1b{bottom:586.155000px;}
.ya1{bottom:587.415000px;}
.y6d{bottom:593.355000px;}
.yc6{bottom:603.795000px;}
.y12e{bottom:604.155000px;}
.y1a{bottom:605.955000px;}
.y6c{bottom:613.155000px;}
.yde{bottom:613.695000px;}
.ya0{bottom:618.015000px;}
.yc5{bottom:623.595000px;}
.y12d{bottom:623.955000px;}
.y147{bottom:625.755000px;}
.y101{bottom:627.915000px;}
.yf1{bottom:632.775000px;}
.y6b{bottom:632.955000px;}
.y19{bottom:634.755000px;}
.y9f{bottom:637.815000px;}
.yc0{bottom:642.495000px;}
.y12c{bottom:643.755000px;}
.y146{bottom:645.555000px;}
.y6a{bottom:652.785000px;}
.y18{bottom:654.585000px;}
.y9e{bottom:657.645000px;}
.y12b{bottom:663.585000px;}
.ydd{bottom:663.945000px;}
.y145{bottom:665.565000px;}
.y69{bottom:672.585000px;}
.y17{bottom:674.565000px;}
.y9d{bottom:677.445000px;}
.y12a{bottom:683.565000px;}
.ydc{bottom:683.745000px;}
.y144{bottom:685.365000px;}
.y68{bottom:692.565000px;}
.y16{bottom:694.365000px;}
.y9c{bottom:697.245000px;}
.ydb{bottom:702.825000px;}
.y129{bottom:703.365000px;}
.y143{bottom:705.165000px;}
.y67{bottom:712.365000px;}
.y15{bottom:714.165000px;}
.y9b{bottom:717.225000px;}
.y128{bottom:723.165000px;}
.y142{bottom:724.965000px;}
.y66{bottom:732.165000px;}
.y14{bottom:733.965000px;}
.y9a{bottom:737.025000px;}
.yf0{bottom:737.205000px;}
.y127{bottom:742.965000px;}
.y141{bottom:744.765000px;}
.y65{bottom:751.965000px;}
.y13{bottom:753.765000px;}
.y99{bottom:756.825000px;}
.y126{bottom:762.765000px;}
.y140{bottom:764.745000px;}
.y100{bottom:771.225000px;}
.y64{bottom:771.765000px;}
.y12{bottom:773.745000px;}
.y98{bottom:776.625000px;}
.y125{bottom:782.745000px;}
.y13f{bottom:784.545000px;}
.ybd{bottom:785.805000px;}
.yef{bottom:787.425000px;}
.y63{bottom:791.745000px;}
.y11{bottom:793.545000px;}
.y97{bottom:796.425000px;}
.y124{bottom:802.545000px;}
.y13e{bottom:804.345000px;}
.yda{bottom:806.505000px;}
.yee{bottom:807.405000px;}
.y62{bottom:811.545000px;}
.y10{bottom:813.345000px;}
.y3c{bottom:815.865000px;}
.y96{bottom:816.405000px;}
.y123{bottom:822.345000px;}
.y13d{bottom:824.145000px;}
.yed{bottom:826.305000px;}
.y61{bottom:831.345000px;}
.yf{bottom:833.145000px;}
.y3b{bottom:835.845000px;}
.y95{bottom:836.205000px;}
.y122{bottom:842.145000px;}
.y13c{bottom:843.945000px;}
.y60{bottom:851.145000px;}
.ye{bottom:855.285000px;}
.y3a{bottom:855.645000px;}
.y94{bottom:856.005000px;}
.y13b{bottom:863.925000px;}
.y5f{bottom:870.945000px;}
.y39{bottom:872.205000px;}
.y93{bottom:875.805000px;}
.yd{bottom:880.305000px;}
.y13a{bottom:883.725000px;}
.yd5{bottom:890.205000px;}
.y5e{bottom:890.925000px;}
.yfe{bottom:894.705000px;}
.y92{bottom:895.605000px;}
.yc{bottom:900.150000px;}
.y139{bottom:903.570000px;}
.y5d{bottom:910.770000px;}
.yb{bottom:915.450000px;}
.y91{bottom:915.630000px;}
.y138{bottom:923.370000px;}
.yec{bottom:930.030000px;}
.y5c{bottom:930.570000px;}
.y90{bottom:935.430000px;}
.ya{bottom:937.230000px;}
.y137{bottom:943.170000px;}
.yba{bottom:949.110000px;}
.y5b{bottom:950.370000px;}
.y8f{bottom:955.230000px;}
.y9{bottom:958.470000px;}
.y5a{bottom:970.170000px;}
.y136{bottom:972.150000px;}
.y8e{bottom:975.030000px;}
.y8{bottom:981.870000px;}
.y59{bottom:990.150000px;}
.y135{bottom:991.950000px;}
.y8d{bottom:994.830000px;}
.y58{bottom:1009.950000px;}
.y7{bottom:1013.730000px;}
.yd3{bottom:1013.910000px;}
.y8c{bottom:1014.810000px;}
.y134{bottom:1020.750000px;}
.y57{bottom:1029.750000px;}
.y8b{bottom:1034.610000px;}
.yfd{bottom:1038.930000px;}
.y133{bottom:1040.550000px;}
.y56{bottom:1049.550000px;}
.y5{bottom:1052.070000px;}
.y89{bottom:1053.510000px;}
.y175{bottom:1057.470000px;}
.y132{bottom:1060.350000px;}
.y55{bottom:1069.350000px;}
.yb9{bottom:1072.590000px;}
.y174{bottom:1077.270000px;}
.y131{bottom:1080.330000px;}
.y4{bottom:1082.850000px;}
.y54{bottom:1089.330000px;}
.y173{bottom:1097.070000px;}
.yd2{bottom:1098.510000px;}
.y130{bottom:1100.130000px;}
.y38{bottom:1109.130000px;}
.y3{bottom:1113.630000px;}
.yb8{bottom:1118.310000px;}
.y37{bottom:1128.930000px;}
.y88{bottom:1138.110000px;}
.y2{bottom:1144.590000px;}
.y36{bottom:1148.760000px;}
.y35{bottom:1175.400000px;}
.y1{bottom:1178.460000px;}
.y34{bottom:1194.480000px;}
.h22{height:2.082656px;}
.ha{height:19.800000px;}
.hd{height:19.836000px;}
.hf{height:19.980000px;}
.h7{height:28.115859px;}
.h10{height:39.600000px;}
.h12{height:39.636000px;}
.h8{height:42.164648px;}
.h5{height:43.215117px;}
.h9{height:43.302656px;}
.h1f{height:43.506914px;}
.h3{height:46.736719px;}
.h4{height:47.901094px;}
.h20{height:49.255313px;}
.h6{height:53.224453px;}
.hc{height:59.436000px;}
.hb{height:59.580000px;}
.h2{height:67.565039px;}
.h17{height:79.200000px;}
.he{height:79.380000px;}
.h1c{height:79.416000px;}
.h21{height:84.276000px;}
.h19{height:99.180000px;}
.h16{height:99.216000px;}
.h13{height:118.980000px;}
.h1d{height:119.016000px;}
.h15{height:119.160000px;}
.h18{height:119.196000px;}
.h14{height:138.816000px;}
.h1e{height:138.996000px;}
.h1b{height:158.760000px;}
.h11{height:158.790000px;}
.h1a{height:257.790000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:72.396000px;}
.w16{width:72.936000px;}
.we{width:78.336000px;}
.w1e{width:78.696000px;}
.w12{width:79.776000px;}
.w9{width:80.640000px;}
.w1a{width:83.196000px;}
.w18{width:120.240000px;}
.w10{width:130.500000px;}
.w14{width:141.840000px;}
.wc{width:149.580000px;}
.w20{width:151.590000px;}
.w3{width:155.550000px;}
.w22{width:155.730000px;}
.w1c{width:156.960000px;}
.w5{width:165.420000px;}
.w24{width:169.050000px;}
.w7{width:186.510000px;}
.w25{width:189.930000px;}
.w26{width:210.810000px;}
.w6{width:213.195000px;}
.w15{width:216.075000px;}
.w1d{width:220.215000px;}
.wd{width:227.055000px;}
.w19{width:229.575000px;}
.w11{width:239.295000px;}
.w4{width:239.475000px;}
.w21{width:243.795000px;}
.w23{width:259.095000px;}
.w1f{width:299.370000px;}
.w8{width:303.195000px;}
.w1b{width:313.455000px;}
.wb{width:324.795000px;}
.wf{width:325.515000px;}
.w13{width:336.135000px;}
.w17{width:351.255000px;}
.w27{width:581.010000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:1.080000px;}
.x28{left:7.785000px;}
.x1{left:54.179987px;}
.x9{left:56.340000px;}
.x24{left:71.099987px;}
.x25{left:98.135987px;}
.x2{left:108.035987px;}
.x11{left:131.076000px;}
.x14{left:137.016000px;}
.x17{left:138.276000px;}
.x1c{left:141.876000px;}
.xe{left:159.150000px;}
.x26{left:191.370000px;}
.xb{left:214.230000px;}
.x27{left:264.810000px;}
.x22{left:287.534987px;}
.x8{left:290.234987px;}
.x7{left:316.154987px;}
.x4{left:339.374987px;}
.xf{left:347.835000px;}
.x1e{left:439.095000px;}
.x23{left:446.504987px;}
.xc{left:455.865000px;}
.x12{left:458.025000px;}
.x15{left:464.685000px;}
.x5{left:473.144987px;}
.x18{left:476.565000px;}
.x1a{left:484.845000px;}
.x1f{left:593.025000px;}
.x16{left:597.525000px;}
.x1b{left:607.245000px;}
.x13{left:609.765000px;}
.x1d{left:616.605000px;}
.x19{left:620.745000px;}
.xd{left:623.625000px;}
.x20{left:646.890000px;}
.x21{left:650.129987px;}
.x10{left:653.370000px;}
.x6{left:674.609987px;}
.x3{left:677.489987px;}
@media print{
.v2{vertical-align:-18.720000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls17{letter-spacing:-4.160000pt;}
.lsb{letter-spacing:-0.688000pt;}
.ls8{letter-spacing:-0.480000pt;}
.ls13{letter-spacing:-0.409067pt;}
.lse{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.271467pt;}
.lsa{letter-spacing:-0.183467pt;}
.ls6{letter-spacing:-0.160000pt;}
.ls11{letter-spacing:-0.094933pt;}
.ls14{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.016640pt;}
.ls10{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.183467pt;}
.ls7{letter-spacing:0.230933pt;}
.ls4{letter-spacing:0.233067pt;}
.lsf{letter-spacing:0.272533pt;}
.ls1{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.454933pt;}
.lsd{letter-spacing:0.456533pt;}
.ls12{letter-spacing:0.736000pt;}
.ls16{letter-spacing:10.192640pt;}
.ls15{letter-spacing:37.200640pt;}
.ws1{word-spacing:-14.953067pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.448533pt;}
.ws6{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.552533pt;}
.ws8{word-spacing:-13.510933pt;}
.wsb{word-spacing:-13.463467pt;}
.wsc{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.232640pt;}
.wsd{word-spacing:-13.185067pt;}
.ws9{word-spacing:-13.096533pt;}
.wsf{word-spacing:-12.960000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws10{word-spacing:-9.120000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._1{margin-left:-2258.789760pt;}
._3{margin-left:-1288.668160pt;}
._5{margin-left:-1285.324480pt;}
._4{margin-left:-834.764800pt;}
._6{margin-left:-514.869760pt;}
._8{margin-left:-7.948800pt;}
._67{margin-left:-6.846720pt;}
._68{margin-left:-5.955627pt;}
._9{margin-left:-4.549333pt;}
._a{margin-left:-3.473920pt;}
._7{margin-left:-2.099413pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._b{width:2.563627pt;}
._d{width:3.938773pt;}
._12{width:5.692800pt;}
._13{width:6.644267pt;}
._f{width:8.216320pt;}
._c{width:9.950720pt;}
._e{width:11.686400pt;}
._11{width:14.607360pt;}
._10{width:15.579307pt;}
._2e{width:17.219840pt;}
._2f{width:18.284587pt;}
._3f{width:19.244160pt;}
._34{width:20.672640pt;}
._45{width:21.991680pt;}
._2d{width:23.431040pt;}
._28{width:24.711040pt;}
._5c{width:25.608107pt;}
._19{width:26.515840pt;}
._18{width:28.047360pt;}
._17{width:29.109760pt;}
._42{width:30.402560pt;}
._35{width:32.287147pt;}
._29{width:33.899520pt;}
._36{width:35.568213pt;}
._2b{width:36.837547pt;}
._2a{width:38.184747pt;}
._23{width:41.206827pt;}
._21{width:42.611200pt;}
._22{width:43.708800pt;}
._26{width:45.214080pt;}
._25{width:46.807680pt;}
._24{width:47.754880pt;}
._4b{width:49.798187pt;}
._4a{width:50.738560pt;}
._58{width:52.048640pt;}
._15{width:53.341440pt;}
._16{width:54.606720pt;}
._30{width:55.848320pt;}
._5d{width:56.837120pt;}
._5a{width:60.448427pt;}
._50{width:61.946880pt;}
._3c{width:63.274880pt;}
._54{width:64.328320pt;}
._3d{width:65.752107pt;}
._48{width:67.143680pt;}
._33{width:68.321280pt;}
._1a{width:69.968000pt;}
._1f{width:71.649920pt;}
._1d{width:72.730240pt;}
._1c{width:73.624320pt;}
._47{width:75.749120pt;}
._53{width:78.414080pt;}
._38{width:79.795200pt;}
._39{width:81.005227pt;}
._57{width:82.185600pt;}
._65{width:84.088960pt;}
._59{width:88.878720pt;}
._4f{width:90.357120pt;}
._4e{width:91.419520pt;}
._66{width:93.057280pt;}
._14{width:94.137600pt;}
._37{width:96.306560pt;}
._63{width:97.749760pt;}
._31{width:99.281280pt;}
._20{width:100.830720pt;}
._4c{width:107.098880pt;}
._41{width:109.621760pt;}
._55{width:112.667520pt;}
._40{width:125.735040pt;}
._1b{width:126.691200pt;}
._52{width:130.037760pt;}
._51{width:131.162240pt;}
._46{width:134.181120pt;}
._5e{width:137.421440pt;}
._56{width:141.042560pt;}
._27{width:142.848640pt;}
._61{width:144.760960pt;}
._2c{width:151.188480pt;}
._3a{width:156.544640pt;}
._4d{width:162.600320pt;}
._44{width:166.743680pt;}
._64{width:167.974400pt;}
._1e{width:173.755520pt;}
._62{width:176.579840pt;}
._5f{width:177.536000pt;}
._60{width:181.617280pt;}
._43{width:196.862720pt;}
._49{width:199.335680pt;}
._32{width:213.763840pt;}
._3e{width:227.300480pt;}
._5b{width:257.950720pt;}
._3b{width:262.094080pt;}
.fs6{font-size:2.560000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7e{bottom:5.120000pt;}
.ya7{bottom:5.280000pt;}
.yff{bottom:5.320000pt;}
.ya4{bottom:8.800000pt;}
.ya6{bottom:8.960000pt;}
.y17b{bottom:9.600000pt;}
.y81{bottom:13.920000pt;}
.y86{bottom:22.720000pt;}
.yc4{bottom:22.746667pt;}
.y83{bottom:22.880000pt;}
.yd9{bottom:22.920000pt;}
.y17a{bottom:27.226667pt;}
.y177{bottom:30.906667pt;}
.y87{bottom:31.520000pt;}
.y80{bottom:31.680000pt;}
.y85{bottom:40.320000pt;}
.yc3{bottom:40.346667pt;}
.y82{bottom:40.480000pt;}
.yd8{bottom:40.520000pt;}
.y179{bottom:44.826667pt;}
.y8a{bottom:49.280000pt;}
.yd4{bottom:57.920000pt;}
.yf2{bottom:57.946667pt;}
.y6{bottom:58.080000pt;}
.yb7{bottom:58.106667pt;}
.yd7{bottom:58.120000pt;}
.y178{bottom:62.426667pt;}
.ybc{bottom:75.680000pt;}
.yb6{bottom:75.706667pt;}
.ycb{bottom:75.720000pt;}
.y10d{bottom:82.080000pt;}
.y172{bottom:86.560000pt;}
.y84{bottom:87.680000pt;}
.yeb{bottom:91.840000pt;}
.yd1{bottom:92.000000pt;}
.yb2{bottom:92.160000pt;}
.ybb{bottom:93.280000pt;}
.yc2{bottom:93.306667pt;}
.ye7{bottom:93.320000pt;}
.yc9{bottom:93.440000pt;}
.yb5{bottom:93.466667pt;}
.yd6{bottom:93.480000pt;}
.y33{bottom:95.840000pt;}
.y121{bottom:96.160000pt;}
.y53{bottom:99.040000pt;}
.y10c{bottom:99.680000pt;}
.y109{bottom:102.080000pt;}
.y171{bottom:104.160000pt;}
.yd0{bottom:109.760000pt;}
.yfc{bottom:110.400000pt;}
.yc1{bottom:110.906667pt;}
.ye6{bottom:110.920000pt;}
.yea{bottom:111.040000pt;}
.yb4{bottom:111.066667pt;}
.ybf{bottom:111.080000pt;}
.y32{bottom:113.440000pt;}
.y120{bottom:113.760000pt;}
.y10b{bottom:114.400000pt;}
.y15e{bottom:115.360000pt;}
.y176{bottom:115.680000pt;}
.y52{bottom:116.640000pt;}
.y108{bottom:119.680000pt;}
.y170{bottom:121.760000pt;}
.ycf{bottom:127.360000pt;}
.yfb{bottom:128.000000pt;}
.ye5{bottom:128.520000pt;}
.ye9{bottom:128.640000pt;}
.yb3{bottom:128.666667pt;}
.ybe{bottom:128.680000pt;}
.y31{bottom:131.040000pt;}
.y11f{bottom:131.360000pt;}
.y15d{bottom:132.960000pt;}
.y51{bottom:134.240000pt;}
.y107{bottom:137.306667pt;}
.y16f{bottom:139.386667pt;}
.y7f{bottom:144.506667pt;}
.yce{bottom:144.986667pt;}
.yfa{bottom:145.626667pt;}
.ye4{bottom:146.280000pt;}
.y30{bottom:148.666667pt;}
.y11e{bottom:148.986667pt;}
.y15c{bottom:150.746667pt;}
.y50{bottom:151.866667pt;}
.y106{bottom:155.066667pt;}
.y16e{bottom:156.986667pt;}
.ycd{bottom:162.586667pt;}
.yf9{bottom:163.226667pt;}
.ye3{bottom:163.880000pt;}
.y2f{bottom:166.266667pt;}
.ye8{bottom:166.426667pt;}
.y11d{bottom:166.746667pt;}
.y15b{bottom:168.346667pt;}
.y4f{bottom:169.626667pt;}
.y105{bottom:171.866667pt;}
.y16d{bottom:174.746667pt;}
.ycc{bottom:179.386667pt;}
.yf8{bottom:180.986667pt;}
.ye2{bottom:181.480000pt;}
.y2e{bottom:184.026667pt;}
.y11c{bottom:184.346667pt;}
.y15a{bottom:185.946667pt;}
.y4e{bottom:187.226667pt;}
.y16c{bottom:192.346667pt;}
.yf7{bottom:198.586667pt;}
.ye1{bottom:199.080000pt;}
.y2d{bottom:201.626667pt;}
.y11b{bottom:201.946667pt;}
.y7d{bottom:202.106667pt;}
.y159{bottom:203.546667pt;}
.y4d{bottom:204.826667pt;}
.y16b{bottom:209.946667pt;}
.yf6{bottom:216.186667pt;}
.ye0{bottom:216.680000pt;}
.y2c{bottom:219.226667pt;}
.y11a{bottom:219.546667pt;}
.y158{bottom:221.146667pt;}
.y4c{bottom:222.426667pt;}
.y16a{bottom:227.546667pt;}
.y7c{bottom:229.146667pt;}
.yf5{bottom:233.786667pt;}
.y2b{bottom:236.826667pt;}
.y119{bottom:237.146667pt;}
.yb1{bottom:237.946667pt;}
.y157{bottom:238.906667pt;}
.y4b{bottom:240.026667pt;}
.y169{bottom:245.146667pt;}
.y7b{bottom:246.906667pt;}
.yf4{bottom:250.586667pt;}
.y2a{bottom:254.426667pt;}
.y118{bottom:254.906667pt;}
.y156{bottom:256.506667pt;}
.y4a{bottom:257.786667pt;}
.y168{bottom:262.906667pt;}
.y104{bottom:264.026667pt;}
.y7a{bottom:264.506667pt;}
.y29{bottom:272.186667pt;}
.y117{bottom:272.506667pt;}
.y155{bottom:274.106667pt;}
.y49{bottom:275.386667pt;}
.y167{bottom:280.506667pt;}
.y79{bottom:282.106667pt;}
.yb0{bottom:282.746667pt;}
.yca{bottom:289.146667pt;}
.y28{bottom:289.786667pt;}
.y116{bottom:290.106667pt;}
.y154{bottom:291.706667pt;}
.y48{bottom:292.986667pt;}
.y166{bottom:298.106667pt;}
.y78{bottom:299.706667pt;}
.yaf{bottom:300.346667pt;}
.y27{bottom:307.386667pt;}
.y115{bottom:307.706667pt;}
.y153{bottom:309.306667pt;}
.y47{bottom:310.586667pt;}
.ydf{bottom:311.546667pt;}
.y165{bottom:315.706667pt;}
.y77{bottom:317.306667pt;}
.yae{bottom:317.946667pt;}
.y26{bottom:324.986667pt;}
.y114{bottom:325.306667pt;}
.y152{bottom:327.066667pt;}
.y46{bottom:328.186667pt;}
.y164{bottom:333.306667pt;}
.y76{bottom:335.066667pt;}
.yad{bottom:335.546667pt;}
.y103{bottom:338.426667pt;}
.y25{bottom:342.586667pt;}
.y113{bottom:343.066667pt;}
.y151{bottom:344.666667pt;}
.y45{bottom:345.946667pt;}
.y163{bottom:351.066667pt;}
.y75{bottom:352.666667pt;}
.yac{bottom:353.306667pt;}
.y24{bottom:360.386667pt;}
.y112{bottom:360.706667pt;}
.y150{bottom:362.306667pt;}
.y44{bottom:363.586667pt;}
.y162{bottom:368.706667pt;}
.yab{bottom:370.146667pt;}
.y23{bottom:377.986667pt;}
.y74{bottom:378.306667pt;}
.y14f{bottom:379.906667pt;}
.y43{bottom:381.186667pt;}
.yc8{bottom:381.346667pt;}
.y161{bottom:386.306667pt;}
.yaa{bottom:391.746667pt;}
.y22{bottom:395.586667pt;}
.y73{bottom:395.906667pt;}
.y14e{bottom:397.506667pt;}
.y42{bottom:398.786667pt;}
.y160{bottom:403.906667pt;}
.y21{bottom:413.186667pt;}
.ya9{bottom:413.346667pt;}
.y72{bottom:413.506667pt;}
.y14d{bottom:415.266667pt;}
.y41{bottom:416.386667pt;}
.y15f{bottom:421.506667pt;}
.y20{bottom:430.786667pt;}
.y71{bottom:431.266667pt;}
.y14c{bottom:432.866667pt;}
.y40{bottom:434.146667pt;}
.ya8{bottom:434.946667pt;}
.y111{bottom:439.266667pt;}
.y102{bottom:448.386667pt;}
.y1f{bottom:448.546667pt;}
.y70{bottom:448.866667pt;}
.y14b{bottom:450.466667pt;}
.y3f{bottom:451.746667pt;}
.ya5{bottom:456.546667pt;}
.y110{bottom:456.866667pt;}
.y1e{bottom:466.146667pt;}
.y6f{bottom:466.466667pt;}
.y14a{bottom:468.066667pt;}
.y3e{bottom:469.346667pt;}
.yf3{bottom:470.306667pt;}
.y10f{bottom:474.466667pt;}
.ya3{bottom:478.306667pt;}
.y1d{bottom:483.746667pt;}
.y3d{bottom:484.066667pt;}
.y149{bottom:485.666667pt;}
.yc7{bottom:491.906667pt;}
.y10e{bottom:492.066667pt;}
.ya2{bottom:499.906667pt;}
.y1c{bottom:501.346667pt;}
.y6e{bottom:501.666667pt;}
.y148{bottom:503.426667pt;}
.y10a{bottom:509.666667pt;}
.y12f{bottom:519.426667pt;}
.y1b{bottom:521.026667pt;}
.ya1{bottom:522.146667pt;}
.y6d{bottom:527.426667pt;}
.yc6{bottom:536.706667pt;}
.y12e{bottom:537.026667pt;}
.y1a{bottom:538.626667pt;}
.y6c{bottom:545.026667pt;}
.yde{bottom:545.506667pt;}
.ya0{bottom:549.346667pt;}
.yc5{bottom:554.306667pt;}
.y12d{bottom:554.626667pt;}
.y147{bottom:556.226667pt;}
.y101{bottom:558.146667pt;}
.yf1{bottom:562.466667pt;}
.y6b{bottom:562.626667pt;}
.y19{bottom:564.226667pt;}
.y9f{bottom:566.946667pt;}
.yc0{bottom:571.106667pt;}
.y12c{bottom:572.226667pt;}
.y146{bottom:573.826667pt;}
.y6a{bottom:580.253333pt;}
.y18{bottom:581.853333pt;}
.y9e{bottom:584.573333pt;}
.y12b{bottom:589.853333pt;}
.ydd{bottom:590.173333pt;}
.y145{bottom:591.613333pt;}
.y69{bottom:597.853333pt;}
.y17{bottom:599.613333pt;}
.y9d{bottom:602.173333pt;}
.y12a{bottom:607.613333pt;}
.ydc{bottom:607.773333pt;}
.y144{bottom:609.213333pt;}
.y68{bottom:615.613333pt;}
.y16{bottom:617.213333pt;}
.y9c{bottom:619.773333pt;}
.ydb{bottom:624.733333pt;}
.y129{bottom:625.213333pt;}
.y143{bottom:626.813333pt;}
.y67{bottom:633.213333pt;}
.y15{bottom:634.813333pt;}
.y9b{bottom:637.533333pt;}
.y128{bottom:642.813333pt;}
.y142{bottom:644.413333pt;}
.y66{bottom:650.813333pt;}
.y14{bottom:652.413333pt;}
.y9a{bottom:655.133333pt;}
.yf0{bottom:655.293333pt;}
.y127{bottom:660.413333pt;}
.y141{bottom:662.013333pt;}
.y65{bottom:668.413333pt;}
.y13{bottom:670.013333pt;}
.y99{bottom:672.733333pt;}
.y126{bottom:678.013333pt;}
.y140{bottom:679.773333pt;}
.y100{bottom:685.533333pt;}
.y64{bottom:686.013333pt;}
.y12{bottom:687.773333pt;}
.y98{bottom:690.333333pt;}
.y125{bottom:695.773333pt;}
.y13f{bottom:697.373333pt;}
.ybd{bottom:698.493333pt;}
.yef{bottom:699.933333pt;}
.y63{bottom:703.773333pt;}
.y11{bottom:705.373333pt;}
.y97{bottom:707.933333pt;}
.y124{bottom:713.373333pt;}
.y13e{bottom:714.973333pt;}
.yda{bottom:716.893333pt;}
.yee{bottom:717.693333pt;}
.y62{bottom:721.373333pt;}
.y10{bottom:722.973333pt;}
.y3c{bottom:725.213333pt;}
.y96{bottom:725.693333pt;}
.y123{bottom:730.973333pt;}
.y13d{bottom:732.573333pt;}
.yed{bottom:734.493333pt;}
.y61{bottom:738.973333pt;}
.yf{bottom:740.573333pt;}
.y3b{bottom:742.973333pt;}
.y95{bottom:743.293333pt;}
.y122{bottom:748.573333pt;}
.y13c{bottom:750.173333pt;}
.y60{bottom:756.573333pt;}
.ye{bottom:760.253333pt;}
.y3a{bottom:760.573333pt;}
.y94{bottom:760.893333pt;}
.y13b{bottom:767.933333pt;}
.y5f{bottom:774.173333pt;}
.y39{bottom:775.293333pt;}
.y93{bottom:778.493333pt;}
.yd{bottom:782.493333pt;}
.y13a{bottom:785.533333pt;}
.yd5{bottom:791.293333pt;}
.y5e{bottom:791.933333pt;}
.yfe{bottom:795.293333pt;}
.y92{bottom:796.093333pt;}
.yc{bottom:800.133333pt;}
.y139{bottom:803.173333pt;}
.y5d{bottom:809.573333pt;}
.yb{bottom:813.733333pt;}
.y91{bottom:813.893333pt;}
.y138{bottom:820.773333pt;}
.yec{bottom:826.693333pt;}
.y5c{bottom:827.173333pt;}
.y90{bottom:831.493333pt;}
.ya{bottom:833.093333pt;}
.y137{bottom:838.373333pt;}
.yba{bottom:843.653333pt;}
.y5b{bottom:844.773333pt;}
.y8f{bottom:849.093333pt;}
.y9{bottom:851.973333pt;}
.y5a{bottom:862.373333pt;}
.y136{bottom:864.133333pt;}
.y8e{bottom:866.693333pt;}
.y8{bottom:872.773333pt;}
.y59{bottom:880.133333pt;}
.y135{bottom:881.733333pt;}
.y8d{bottom:884.293333pt;}
.y58{bottom:897.733333pt;}
.y7{bottom:901.093333pt;}
.yd3{bottom:901.253333pt;}
.y8c{bottom:902.053333pt;}
.y134{bottom:907.333333pt;}
.y57{bottom:915.333333pt;}
.y8b{bottom:919.653333pt;}
.yfd{bottom:923.493333pt;}
.y133{bottom:924.933333pt;}
.y56{bottom:932.933333pt;}
.y5{bottom:935.173333pt;}
.y89{bottom:936.453333pt;}
.y175{bottom:939.973333pt;}
.y132{bottom:942.533333pt;}
.y55{bottom:950.533333pt;}
.yb9{bottom:953.413333pt;}
.y174{bottom:957.573333pt;}
.y131{bottom:960.293333pt;}
.y4{bottom:962.533333pt;}
.y54{bottom:968.293333pt;}
.y173{bottom:975.173333pt;}
.yd2{bottom:976.453333pt;}
.y130{bottom:977.893333pt;}
.y38{bottom:985.893333pt;}
.y3{bottom:989.893333pt;}
.yb8{bottom:994.053333pt;}
.y37{bottom:1003.493333pt;}
.y88{bottom:1011.653333pt;}
.y2{bottom:1017.413333pt;}
.y36{bottom:1021.120000pt;}
.y35{bottom:1044.800000pt;}
.y1{bottom:1047.520000pt;}
.y34{bottom:1061.760000pt;}
.h22{height:1.851250pt;}
.ha{height:17.600000pt;}
.hd{height:17.632000pt;}
.hf{height:17.760000pt;}
.h7{height:24.991875pt;}
.h10{height:35.200000pt;}
.h12{height:35.232000pt;}
.h8{height:37.479688pt;}
.h5{height:38.413438pt;}
.h9{height:38.491250pt;}
.h1f{height:38.672812pt;}
.h3{height:41.543750pt;}
.h4{height:42.578750pt;}
.h20{height:43.782500pt;}
.h6{height:47.310625pt;}
.hc{height:52.832000pt;}
.hb{height:52.960000pt;}
.h2{height:60.057813pt;}
.h17{height:70.400000pt;}
.he{height:70.560000pt;}
.h1c{height:70.592000pt;}
.h21{height:74.912000pt;}
.h19{height:88.160000pt;}
.h16{height:88.192000pt;}
.h13{height:105.760000pt;}
.h1d{height:105.792000pt;}
.h15{height:105.920000pt;}
.h18{height:105.952000pt;}
.h14{height:123.392000pt;}
.h1e{height:123.552000pt;}
.h1b{height:141.120000pt;}
.h11{height:141.146667pt;}
.h1a{height:229.146667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:64.352000pt;}
.w16{width:64.832000pt;}
.we{width:69.632000pt;}
.w1e{width:69.952000pt;}
.w12{width:70.912000pt;}
.w9{width:71.680000pt;}
.w1a{width:73.952000pt;}
.w18{width:106.880000pt;}
.w10{width:116.000000pt;}
.w14{width:126.080000pt;}
.wc{width:132.960000pt;}
.w20{width:134.746667pt;}
.w3{width:138.266667pt;}
.w22{width:138.426667pt;}
.w1c{width:139.520000pt;}
.w5{width:147.040000pt;}
.w24{width:150.266667pt;}
.w7{width:165.786667pt;}
.w25{width:168.826667pt;}
.w26{width:187.386667pt;}
.w6{width:189.506667pt;}
.w15{width:192.066667pt;}
.w1d{width:195.746667pt;}
.wd{width:201.826667pt;}
.w19{width:204.066667pt;}
.w11{width:212.706667pt;}
.w4{width:212.866667pt;}
.w21{width:216.706667pt;}
.w23{width:230.306667pt;}
.w1f{width:266.106667pt;}
.w8{width:269.506667pt;}
.w1b{width:278.626667pt;}
.wb{width:288.706667pt;}
.wf{width:289.346667pt;}
.w13{width:298.786667pt;}
.w17{width:312.226667pt;}
.w27{width:516.453333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:0.960000pt;}
.x28{left:6.920000pt;}
.x1{left:48.159988pt;}
.x9{left:50.080000pt;}
.x24{left:63.199988pt;}
.x25{left:87.231988pt;}
.x2{left:96.031988pt;}
.x11{left:116.512000pt;}
.x14{left:121.792000pt;}
.x17{left:122.912000pt;}
.x1c{left:126.112000pt;}
.xe{left:141.466667pt;}
.x26{left:170.106667pt;}
.xb{left:190.426667pt;}
.x27{left:235.386667pt;}
.x22{left:255.586655pt;}
.x8{left:257.986655pt;}
.x7{left:281.026655pt;}
.x4{left:301.666655pt;}
.xf{left:309.186667pt;}
.x1e{left:390.306667pt;}
.x23{left:396.893322pt;}
.xc{left:405.213333pt;}
.x12{left:407.133333pt;}
.x15{left:413.053333pt;}
.x5{left:420.573322pt;}
.x18{left:423.613333pt;}
.x1a{left:430.973333pt;}
.x1f{left:527.133333pt;}
.x16{left:531.133333pt;}
.x1b{left:539.773333pt;}
.x13{left:542.013333pt;}
.x1d{left:548.093333pt;}
.x19{left:551.773333pt;}
.xd{left:554.333333pt;}
.x20{left:575.013333pt;}
.x21{left:577.893322pt;}
.x10{left:580.773333pt;}
.x6{left:599.653322pt;}
.x3{left:602.213322pt;}
}




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