
    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_7df6058b3b492d2b02db0401.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_4fa152698e7bf046d8c6cfc6.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_a32ebb1a1bbb457f1f9099f0.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b4e4b0504bbf92f880e5a980.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_d7979b6de18b0b9581e5d76f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.738770;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_648f1845e5253ffe887c081f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_a0dd3cc7397a721859a628f0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.202148;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_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6f4197df01dd0f7ec6249881.woff2')format("woff");}.ff9{font-family:ff9;line-height:2.230469;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_202c0bd10ec476d21b674e87.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_2e9d9558770f60712b4200ee.woff2')format("woff");}.ffc{font-family:ffc;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:-20.880000px;}
.v9{vertical-align:-12.240000px;}
.ve{vertical-align:-8.640000px;}
.v10{vertical-align:-5.760000px;}
.v5{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.440000px;}
.v11{vertical-align:7.200000px;}
.v6{vertical-align:11.520000px;}
.v8{vertical-align:20.880000px;}
.vf{vertical-align:22.320000px;}
.v1{vertical-align:23.760000px;}
.va{vertical-align:30.240000px;}
.v12{vertical-align:31.680000px;}
.v3{vertical-align:35.280000px;}
.v7{vertical-align:51.120000px;}
.vc{vertical-align:65.520000px;}
.vb{vertical-align:66.960000px;}
.vd{vertical-align:81.360000px;}
.ls31{letter-spacing:-0.774000px;}
.ls1a{letter-spacing:-0.612000px;}
.ls7{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.305400px;}
.ls1d{letter-spacing:-0.220200px;}
.ls2d{letter-spacing:-0.106800px;}
.ls5{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls2b{letter-spacing:0.012960px;}
.ls9{letter-spacing:0.043200px;}
.lsc{letter-spacing:0.053280px;}
.ls1b{letter-spacing:0.070800px;}
.ls33{letter-spacing:0.106560px;}
.ls18{letter-spacing:0.106800px;}
.ls17{letter-spacing:0.119520px;}
.ls1f{letter-spacing:0.135360px;}
.ls1c{letter-spacing:0.135600px;}
.ls2e{letter-spacing:0.153600px;}
.ls10{letter-spacing:0.154080px;}
.ls1{letter-spacing:0.180000px;}
.ls2c{letter-spacing:0.237600px;}
.ls30{letter-spacing:0.259800px;}
.ls27{letter-spacing:0.259920px;}
.ls4{letter-spacing:0.262200px;}
.ls34{letter-spacing:0.298800px;}
.ls19{letter-spacing:0.306600px;}
.ls6{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.398880px;}
.ls2a{letter-spacing:0.532800px;}
.ls12{letter-spacing:1.510560px;}
.ls14{letter-spacing:1.594080px;}
.ls23{letter-spacing:1.594800px;}
.lsa{letter-spacing:1.620000px;}
.ls25{letter-spacing:1.668960px;}
.ls26{letter-spacing:1.800000px;}
.ls13{letter-spacing:2.232000px;}
.ls0{letter-spacing:3.060000px;}
.ls22{letter-spacing:3.180960px;}
.ls21{letter-spacing:3.785760px;}
.ls1e{letter-spacing:3.857760px;}
.lsd{letter-spacing:7.112160px;}
.lsf{letter-spacing:7.270560px;}
.lse{letter-spacing:7.292160px;}
.ls11{letter-spacing:7.312320px;}
.ls29{letter-spacing:9.511200px;}
.ls35{letter-spacing:11.466720px;}
.ls2f{letter-spacing:17.946720px;}
.ls20{letter-spacing:24.012000px;}
.ls32{letter-spacing:41.706720px;}
.lsb{letter-spacing:46.026720px;}
.ls24{letter-spacing:49.626720px;}
.ls28{letter-spacing:50.940000px;}
.ls16{letter-spacing:255.756000px;}
.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;}
.ws17{word-spacing:-15.199800px;}
.ws14{word-spacing:-15.120000px;}
.ws15{word-spacing:-15.093600px;}
.ws9{word-spacing:-15.046800px;}
.wsa{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.ws10{word-spacing:-14.833200px;}
.wse{word-spacing:-14.719800px;}
.ws13{word-spacing:-14.580000px;}
.ws16{word-spacing:-14.400000px;}
.wsb{word-spacing:-14.328000px;}
.ws12{word-spacing:-13.160160px;}
.wsf{word-spacing:-13.147200px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.wsc{word-spacing:-9.258000px;}
.wsd{word-spacing:-9.187200px;}
.ws11{word-spacing:-5.230800px;}
.ws8{word-spacing:0.000000px;}
._1{margin-left:-2538.258480px;}
._3{margin-left:-1449.751680px;}
._5{margin-left:-1445.990040px;}
._4{margin-left:-997.931520px;}
._6{margin-left:-562.668480px;}
._1a{margin-left:-13.398720px;}
._18{margin-left:-10.913040px;}
._8{margin-left:-8.213760px;}
._9{margin-left:-5.089200px;}
._a{margin-left:-3.908160px;}
._7{margin-left:-2.361840px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._d{width:3.079680px;}
._11{width:4.108800px;}
._14{width:5.664960px;}
._13{width:6.852240px;}
._10{width:7.898400px;}
._f{width:8.964000px;}
._e{width:10.398240px;}
._1f{width:11.425440px;}
._12{width:12.436320px;}
._15{width:13.734720px;}
._16{width:16.155360px;}
._20{width:17.239680px;}
._21{width:21.319200px;}
._22{width:22.512240px;}
._24{width:25.326000px;}
._19{width:32.025600px;}
._1c{width:36.000000px;}
._b{width:43.940640px;}
._c{width:46.293840px;}
._1b{width:49.266720px;}
._1e{width:57.060000px;}
._1d{width:73.064880px;}
._23{width:162.379920px;}
._17{width:165.612720px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:2.880000px;}
.fs5{font-size:36.000000px;}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y93{bottom:5.760000px;}
.y96{bottom:5.940000px;}
.ye0{bottom:6.300000px;}
.ydd{bottom:7.380000px;}
.y10e{bottom:10.800000px;}
.y6a{bottom:15.660000px;}
.yed{bottom:25.200000px;}
.yb5{bottom:25.560000px;}
.y9d{bottom:25.740000px;}
.ydc{bottom:27.180000px;}
.y10d{bottom:30.630000px;}
.y10a{bottom:35.130000px;}
.yea{bottom:35.820000px;}
.yec{bottom:45.000000px;}
.ybc{bottom:45.360000px;}
.ya9{bottom:45.540000px;}
.ye8{bottom:45.900000px;}
.y10c{bottom:50.430000px;}
.ye9{bottom:55.800000px;}
.ybb{bottom:65.160000px;}
.ya8{bottom:65.340000px;}
.y6{bottom:66.600000px;}
.y10b{bottom:70.410000px;}
.ya7{bottom:85.140000px;}
.yf8{bottom:94.680000px;}
.y33{bottom:102.780000px;}
.yba{bottom:104.985000px;}
.ya6{bottom:105.120000px;}
.y107{bottom:105.300000px;}
.yc6{bottom:109.800000px;}
.y9b{bottom:109.980000px;}
.y68{bottom:111.060000px;}
.yf7{bottom:114.480000px;}
.y32{bottom:122.580000px;}
.y9a{bottom:124.740000px;}
.yb9{bottom:124.785000px;}
.ya5{bottom:124.920000px;}
.y106{bottom:125.100000px;}
.y109{bottom:128.880000px;}
.yc5{bottom:129.600000px;}
.y67{bottom:131.040000px;}
.yf6{bottom:134.460000px;}
.y31{bottom:142.560000px;}
.yb8{bottom:144.585000px;}
.ya4{bottom:144.720000px;}
.y105{bottom:144.900000px;}
.y99{bottom:145.260000px;}
.yc4{bottom:149.400000px;}
.y66{bottom:150.840000px;}
.yf5{bottom:154.290000px;}
.y30{bottom:162.390000px;}
.yb7{bottom:164.385000px;}
.ya3{bottom:164.565000px;}
.y104{bottom:164.730000px;}
.y98{bottom:165.990000px;}
.yc3{bottom:169.230000px;}
.y65{bottom:170.670000px;}
.yf4{bottom:174.090000px;}
.y2f{bottom:182.190000px;}
.ya2{bottom:184.365000px;}
.y103{bottom:184.530000px;}
.y97{bottom:186.510000px;}
.yc2{bottom:189.030000px;}
.y64{bottom:190.470000px;}
.yf3{bottom:193.890000px;}
.y2e{bottom:201.990000px;}
.ya1{bottom:204.345000px;}
.y102{bottom:204.510000px;}
.y95{bottom:207.030000px;}
.yc1{bottom:209.010000px;}
.y63{bottom:210.270000px;}
.yf2{bottom:213.690000px;}
.y2d{bottom:221.790000px;}
.ya0{bottom:224.145000px;}
.y101{bottom:224.310000px;}
.y94{bottom:227.730000px;}
.yc0{bottom:228.810000px;}
.y62{bottom:230.250000px;}
.yf1{bottom:233.670000px;}
.y2c{bottom:241.770000px;}
.y9f{bottom:243.945000px;}
.y100{bottom:244.110000px;}
.y92{bottom:248.250000px;}
.ybf{bottom:248.610000px;}
.y61{bottom:250.050000px;}
.yf0{bottom:253.470000px;}
.y2b{bottom:261.570000px;}
.yff{bottom:263.910000px;}
.yef{bottom:268.230000px;}
.ybe{bottom:268.410000px;}
.y60{bottom:269.850000px;}
.y108{bottom:272.910000px;}
.y91{bottom:274.710000px;}
.y2a{bottom:281.370000px;}
.ybd{bottom:288.210000px;}
.y5f{bottom:289.650000px;}
.yee{bottom:290.010000px;}
.yfe{bottom:292.710000px;}
.y90{bottom:294.510000px;}
.y29{bottom:301.170000px;}
.yb6{bottom:303.150000px;}
.y5e{bottom:309.450000px;}
.ye6{bottom:311.790000px;}
.yfd{bottom:312.690000px;}
.y8f{bottom:314.490000px;}
.y28{bottom:320.970000px;}
.y5d{bottom:329.430000px;}
.yfc{bottom:332.490000px;}
.yeb{bottom:333.390000px;}
.y8e{bottom:334.470000px;}
.y27{bottom:340.950000px;}
.y5c{bottom:349.230000px;}
.yfb{bottom:352.290000px;}
.y8d{bottom:354.450000px;}
.y26{bottom:360.750000px;}
.yfa{bottom:372.090000px;}
.y5b{bottom:374.250000px;}
.y25{bottom:380.550000px;}
.y5a{bottom:387.030000px;}
.y8c{bottom:390.810000px;}
.yf9{bottom:391.890000px;}
.y8b{bottom:398.370000px;}
.y24{bottom:400.350000px;}
.y59{bottom:411.915000px;}
.ye7{bottom:412.635000px;}
.y23{bottom:420.195000px;}
.y8a{bottom:422.715000px;}
.y58{bottom:431.715000px;}
.y22{bottom:440.175000px;}
.y89{bottom:442.515000px;}
.y57{bottom:451.515000px;}
.y21{bottom:459.975000px;}
.y88{bottom:462.315000px;}
.y56{bottom:471.315000px;}
.y20{bottom:479.775000px;}
.y87{bottom:482.115000px;}
.y55{bottom:491.115000px;}
.y1f{bottom:499.575000px;}
.y86{bottom:501.915000px;}
.yb4{bottom:502.275000px;}
.y54{bottom:511.095000px;}
.y1e{bottom:519.375000px;}
.y85{bottom:521.895000px;}
.y53{bottom:530.895000px;}
.y1d{bottom:539.355000px;}
.y84{bottom:541.695000px;}
.yb3{bottom:548.355000px;}
.y52{bottom:550.695000px;}
.y1c{bottom:559.155000px;}
.y83{bottom:561.495000px;}
.yb2{bottom:568.335000px;}
.y51{bottom:570.495000px;}
.ye5{bottom:578.955000px;}
.y1b{bottom:581.295000px;}
.yb1{bottom:588.135000px;}
.y50{bottom:590.295000px;}
.ye4{bottom:598.755000px;}
.y82{bottom:601.095000px;}
.yb0{bottom:607.935000px;}
.y1a{bottom:610.095000px;}
.y4f{bottom:610.275000px;}
.ye3{bottom:618.555000px;}
.y81{bottom:621.075000px;}
.yaf{bottom:627.735000px;}
.y19{bottom:629.895000px;}
.y4e{bottom:630.075000px;}
.ye2{bottom:638.535000px;}
.y80{bottom:640.875000px;}
.yae{bottom:647.535000px;}
.y18{bottom:649.725000px;}
.y4d{bottom:649.905000px;}
.ye1{bottom:653.325000px;}
.y7f{bottom:660.705000px;}
.yad{bottom:667.545000px;}
.y17{bottom:669.525000px;}
.y4c{bottom:669.705000px;}
.ydf{bottom:675.105000px;}
.y7e{bottom:680.505000px;}
.yac{bottom:687.345000px;}
.y16{bottom:689.505000px;}
.ydb{bottom:696.705000px;}
.y7d{bottom:700.305000px;}
.yab{bottom:707.145000px;}
.y15{bottom:709.305000px;}
.y4b{bottom:709.485000px;}
.y69{bottom:712.725000px;}
.yde{bottom:718.485000px;}
.y7c{bottom:720.285000px;}
.yaa{bottom:726.945000px;}
.y14{bottom:729.105000px;}
.y4a{bottom:729.285000px;}
.y7b{bottom:739.905000px;}
.y9e{bottom:741.705000px;}
.yda{bottom:746.025000px;}
.y7a{bottom:747.825000px;}
.y13{bottom:748.905000px;}
.y49{bottom:749.085000px;}
.yd9{bottom:765.825000px;}
.y12{bottom:768.705000px;}
.y48{bottom:768.885000px;}
.y79{bottom:774.285000px;}
.yd8{bottom:785.805000px;}
.y11{bottom:788.685000px;}
.y78{bottom:794.085000px;}
.yd7{bottom:805.605000px;}
.y10{bottom:808.485000px;}
.y47{bottom:808.665000px;}
.y77{bottom:813.885000px;}
.yd6{bottom:825.405000px;}
.yf{bottom:828.285000px;}
.y46{bottom:828.465000px;}
.y76{bottom:833.685000px;}
.yd5{bottom:845.205000px;}
.ye{bottom:848.085000px;}
.y45{bottom:848.265000px;}
.y75{bottom:853.665000px;}
.yd4{bottom:865.005000px;}
.yd{bottom:867.885000px;}
.y44{bottom:868.065000px;}
.y74{bottom:873.465000px;}
.yd3{bottom:884.985000px;}
.y43{bottom:887.865000px;}
.yc{bottom:890.025000px;}
.y73{bottom:893.265000px;}
.yd2{bottom:904.830000px;}
.y42{bottom:907.890000px;}
.y72{bottom:913.110000px;}
.yb{bottom:915.090000px;}
.yd1{bottom:924.630000px;}
.y41{bottom:927.690000px;}
.ya{bottom:930.210000px;}
.y71{bottom:933.090000px;}
.yd0{bottom:944.430000px;}
.y40{bottom:947.490000px;}
.y9{bottom:951.630000px;}
.y70{bottom:953.430000px;}
.ycf{bottom:964.230000px;}
.y3f{bottom:967.290000px;}
.y6f{bottom:973.770000px;}
.y8{bottom:975.030000px;}
.yce{bottom:984.210000px;}
.y3e{bottom:987.090000px;}
.y6e{bottom:993.930000px;}
.y9c{bottom:1000.410000px;}
.ycd{bottom:1004.010000px;}
.y7{bottom:1006.710000px;}
.y3d{bottom:1007.070000px;}
.y6d{bottom:1013.910000px;}
.ycc{bottom:1023.810000px;}
.y3c{bottom:1026.870000px;}
.y6c{bottom:1032.810000px;}
.y6b{bottom:1040.370000px;}
.ycb{bottom:1043.610000px;}
.y3b{bottom:1046.670000px;}
.y5{bottom:1051.170000px;}
.yca{bottom:1063.410000px;}
.y3a{bottom:1066.470000px;}
.yc9{bottom:1078.350000px;}
.y4{bottom:1081.950000px;}
.y39{bottom:1086.270000px;}
.yc8{bottom:1098.870000px;}
.y38{bottom:1106.250000px;}
.y3{bottom:1112.730000px;}
.yc7{bottom:1119.390000px;}
.y37{bottom:1126.050000px;}
.y2{bottom:1143.690000px;}
.y36{bottom:1145.850000px;}
.y35{bottom:1165.680000px;}
.y1{bottom:1177.560000px;}
.y34{bottom:1193.220000px;}
.h27{height:2.010938px;}
.h17{height:19.800000px;}
.h19{height:19.836000px;}
.h18{height:19.980000px;}
.h22{height:20.880000px;}
.h21{height:21.060000px;}
.h7{height:27.147656px;}
.hf{height:29.700000px;}
.h1c{height:39.600000px;}
.h1a{height:39.780000px;}
.h1f{height:39.816000px;}
.h9{height:40.472227px;}
.h8{height:41.726953px;}
.h5{height:42.164648px;}
.h20{height:42.840000px;}
.hb{height:43.506914px;}
.h4{height:46.251562px;}
.h3{height:46.736719px;}
.he{height:48.027656px;}
.h1e{height:49.255313px;}
.h6{height:53.224453px;}
.h2{height:67.565039px;}
.ha{height:67.824844px;}
.h12{height:71.966953px;}
.h14{height:73.406953px;}
.h25{height:78.336000px;}
.h26{height:84.456000px;}
.h13{height:85.584023px;}
.hd{height:93.284648px;}
.h10{height:95.085703px;}
.h15{height:95.265703px;}
.hc{height:97.245703px;}
.h24{height:99.936000px;}
.h16{height:115.824023px;}
.h23{height:121.716000px;}
.h11{height:132.916641px;}
.h1d{height:198.390000px;}
.h1b{height:257.970000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w18{width:41.760000px;}
.w1f{width:42.120000px;}
.w17{width:52.596000px;}
.w1e{width:52.956000px;}
.w19{width:63.000000px;}
.w20{width:63.360000px;}
.w4{width:66.780000px;}
.wf{width:79.056000px;}
.wd{width:80.280000px;}
.w3{width:83.340000px;}
.w15{width:86.400000px;}
.we{width:88.416000px;}
.w12{width:90.180000px;}
.w1a{width:92.376000px;}
.w21{width:92.736000px;}
.w1c{width:93.600000px;}
.w7{width:94.896000px;}
.w8{width:95.040000px;}
.w9{width:95.076000px;}
.wb{width:99.576000px;}
.wa{width:102.420000px;}
.w13{width:106.056000px;}
.wc{width:116.136000px;}
.w1d{width:116.496000px;}
.w10{width:154.470000px;}
.w5{width:156.270000px;}
.w14{width:194.250000px;}
.w1b{width:210.090000px;}
.w22{width:210.810000px;}
.w6{width:276.015000px;}
.w11{width:391.215000px;}
.w16{width:463.245000px;}
.w23{width:581.010000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:7.740000px;}
.x1b{left:48.240000px;}
.x1{left:54.179987px;}
.x2f{left:57.959987px;}
.x15{left:80.999987px;}
.x11{left:87.875987px;}
.x10{left:101.555987px;}
.x2{left:108.035987px;}
.x25{left:111.995987px;}
.x4{left:114.875987px;}
.x7{left:116.495987px;}
.xe{left:120.995987px;}
.x6{left:128.375987px;}
.xa{left:144.035987px;}
.x5{left:155.369987px;}
.x8{left:156.989987px;}
.x3{left:162.029987px;}
.x1f{left:167.790000px;}
.xb{left:171.029987px;}
.x9{left:173.369987px;}
.xf{left:177.869987px;}
.x16{left:184.169987px;}
.x30{left:189.930000px;}
.x17{left:196.230000px;}
.x1a{left:201.630000px;}
.x12{left:216.029987px;}
.x13{left:236.189987px;}
.x14{left:249.869987px;}
.x29{left:258.330000px;}
.x18{left:263.730000px;}
.x31{left:264.810000px;}
.x20{left:284.655000px;}
.xc{left:296.715000px;}
.x2a{left:312.015000px;}
.x26{left:328.395000px;}
.x2b{left:354.495000px;}
.x21{left:365.655000px;}
.x1c{left:393.015000px;}
.x2e{left:417.855000px;}
.x27{left:418.935000px;}
.x19{left:420.735000px;}
.x22{left:454.785000px;}
.x1d{left:488.805000px;}
.x2c{left:511.485000px;}
.x28{left:525.345000px;}
.x23{left:550.545000px;}
.x1e{left:591.945000px;}
.x2d{left:605.085000px;}
.x24{left:630.330000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v9{vertical-align:-10.880000pt;}
.ve{vertical-align:-7.680000pt;}
.v10{vertical-align:-5.120000pt;}
.v5{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.280000pt;}
.v11{vertical-align:6.400000pt;}
.v6{vertical-align:10.240000pt;}
.v8{vertical-align:18.560000pt;}
.vf{vertical-align:19.840000pt;}
.v1{vertical-align:21.120000pt;}
.va{vertical-align:26.880000pt;}
.v12{vertical-align:28.160000pt;}
.v3{vertical-align:31.360000pt;}
.v7{vertical-align:45.440000pt;}
.vc{vertical-align:58.240000pt;}
.vb{vertical-align:59.520000pt;}
.vd{vertical-align:72.320000pt;}
.ls31{letter-spacing:-0.688000pt;}
.ls1a{letter-spacing:-0.544000pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.271467pt;}
.ls1d{letter-spacing:-0.195733pt;}
.ls2d{letter-spacing:-0.094933pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls2b{letter-spacing:0.011520pt;}
.ls9{letter-spacing:0.038400pt;}
.lsc{letter-spacing:0.047360pt;}
.ls1b{letter-spacing:0.062933pt;}
.ls33{letter-spacing:0.094720pt;}
.ls18{letter-spacing:0.094933pt;}
.ls17{letter-spacing:0.106240pt;}
.ls1f{letter-spacing:0.120320pt;}
.ls1c{letter-spacing:0.120533pt;}
.ls2e{letter-spacing:0.136533pt;}
.ls10{letter-spacing:0.136960pt;}
.ls1{letter-spacing:0.160000pt;}
.ls2c{letter-spacing:0.211200pt;}
.ls30{letter-spacing:0.230933pt;}
.ls27{letter-spacing:0.231040pt;}
.ls4{letter-spacing:0.233067pt;}
.ls34{letter-spacing:0.265600pt;}
.ls19{letter-spacing:0.272533pt;}
.ls6{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.354560pt;}
.ls2a{letter-spacing:0.473600pt;}
.ls12{letter-spacing:1.342720pt;}
.ls14{letter-spacing:1.416960pt;}
.ls23{letter-spacing:1.417600pt;}
.lsa{letter-spacing:1.440000pt;}
.ls25{letter-spacing:1.483520pt;}
.ls26{letter-spacing:1.600000pt;}
.ls13{letter-spacing:1.984000pt;}
.ls0{letter-spacing:2.720000pt;}
.ls22{letter-spacing:2.827520pt;}
.ls21{letter-spacing:3.365120pt;}
.ls1e{letter-spacing:3.429120pt;}
.lsd{letter-spacing:6.321920pt;}
.lsf{letter-spacing:6.462720pt;}
.lse{letter-spacing:6.481920pt;}
.ls11{letter-spacing:6.499840pt;}
.ls29{letter-spacing:8.454400pt;}
.ls35{letter-spacing:10.192640pt;}
.ls2f{letter-spacing:15.952640pt;}
.ls20{letter-spacing:21.344000pt;}
.ls32{letter-spacing:37.072640pt;}
.lsb{letter-spacing:40.912640pt;}
.ls24{letter-spacing:44.112640pt;}
.ls28{letter-spacing:45.280000pt;}
.ls16{letter-spacing:227.338667pt;}
.ws1{word-spacing:-14.953067pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.448533pt;}
.ws6{word-spacing:-13.600000pt;}
.ws17{word-spacing:-13.510933pt;}
.ws14{word-spacing:-13.440000pt;}
.ws15{word-spacing:-13.416533pt;}
.ws9{word-spacing:-13.374933pt;}
.wsa{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.ws10{word-spacing:-13.185067pt;}
.wse{word-spacing:-13.084267pt;}
.ws13{word-spacing:-12.960000pt;}
.ws16{word-spacing:-12.800000pt;}
.wsb{word-spacing:-12.736000pt;}
.ws12{word-spacing:-11.697920pt;}
.wsf{word-spacing:-11.686400pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.wsc{word-spacing:-8.229333pt;}
.wsd{word-spacing:-8.166400pt;}
.ws11{word-spacing:-4.649600pt;}
.ws8{word-spacing:0.000000pt;}
._1{margin-left:-2256.229760pt;}
._3{margin-left:-1288.668160pt;}
._5{margin-left:-1285.324480pt;}
._4{margin-left:-887.050240pt;}
._6{margin-left:-500.149760pt;}
._1a{margin-left:-11.909973pt;}
._18{margin-left:-9.700480pt;}
._8{margin-left:-7.301120pt;}
._9{margin-left:-4.523733pt;}
._a{margin-left:-3.473920pt;}
._7{margin-left:-2.099413pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._d{width:2.737493pt;}
._11{width:3.652267pt;}
._14{width:5.035520pt;}
._13{width:6.090880pt;}
._10{width:7.020800pt;}
._f{width:7.968000pt;}
._e{width:9.242880pt;}
._1f{width:10.155947pt;}
._12{width:11.054507pt;}
._15{width:12.208640pt;}
._16{width:14.360320pt;}
._20{width:15.324160pt;}
._21{width:18.950400pt;}
._22{width:20.010880pt;}
._24{width:22.512000pt;}
._19{width:28.467200pt;}
._1c{width:32.000000pt;}
._b{width:39.058347pt;}
._c{width:41.150080pt;}
._1b{width:43.792640pt;}
._1e{width:50.720000pt;}
._1d{width:64.946560pt;}
._23{width:144.337707pt;}
._17{width:147.211307pt;}
.fs6{font-size:2.560000pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y93{bottom:5.120000pt;}
.y96{bottom:5.280000pt;}
.ye0{bottom:5.600000pt;}
.ydd{bottom:6.560000pt;}
.y10e{bottom:9.600000pt;}
.y6a{bottom:13.920000pt;}
.yed{bottom:22.400000pt;}
.yb5{bottom:22.720000pt;}
.y9d{bottom:22.880000pt;}
.ydc{bottom:24.160000pt;}
.y10d{bottom:27.226667pt;}
.y10a{bottom:31.226667pt;}
.yea{bottom:31.840000pt;}
.yec{bottom:40.000000pt;}
.ybc{bottom:40.320000pt;}
.ya9{bottom:40.480000pt;}
.ye8{bottom:40.800000pt;}
.y10c{bottom:44.826667pt;}
.ye9{bottom:49.600000pt;}
.ybb{bottom:57.920000pt;}
.ya8{bottom:58.080000pt;}
.y6{bottom:59.200000pt;}
.y10b{bottom:62.586667pt;}
.ya7{bottom:75.680000pt;}
.yf8{bottom:84.160000pt;}
.y33{bottom:91.360000pt;}
.yba{bottom:93.320000pt;}
.ya6{bottom:93.440000pt;}
.y107{bottom:93.600000pt;}
.yc6{bottom:97.600000pt;}
.y9b{bottom:97.760000pt;}
.y68{bottom:98.720000pt;}
.yf7{bottom:101.760000pt;}
.y32{bottom:108.960000pt;}
.y9a{bottom:110.880000pt;}
.yb9{bottom:110.920000pt;}
.ya5{bottom:111.040000pt;}
.y106{bottom:111.200000pt;}
.y109{bottom:114.560000pt;}
.yc5{bottom:115.200000pt;}
.y67{bottom:116.480000pt;}
.yf6{bottom:119.520000pt;}
.y31{bottom:126.720000pt;}
.yb8{bottom:128.520000pt;}
.ya4{bottom:128.640000pt;}
.y105{bottom:128.800000pt;}
.y99{bottom:129.120000pt;}
.yc4{bottom:132.800000pt;}
.y66{bottom:134.080000pt;}
.yf5{bottom:137.146667pt;}
.y30{bottom:144.346667pt;}
.yb7{bottom:146.120000pt;}
.ya3{bottom:146.280000pt;}
.y104{bottom:146.426667pt;}
.y98{bottom:147.546667pt;}
.yc3{bottom:150.426667pt;}
.y65{bottom:151.706667pt;}
.yf4{bottom:154.746667pt;}
.y2f{bottom:161.946667pt;}
.ya2{bottom:163.880000pt;}
.y103{bottom:164.026667pt;}
.y97{bottom:165.786667pt;}
.yc2{bottom:168.026667pt;}
.y64{bottom:169.306667pt;}
.yf3{bottom:172.346667pt;}
.y2e{bottom:179.546667pt;}
.ya1{bottom:181.640000pt;}
.y102{bottom:181.786667pt;}
.y95{bottom:184.026667pt;}
.yc1{bottom:185.786667pt;}
.y63{bottom:186.906667pt;}
.yf2{bottom:189.946667pt;}
.y2d{bottom:197.146667pt;}
.ya0{bottom:199.240000pt;}
.y101{bottom:199.386667pt;}
.y94{bottom:202.426667pt;}
.yc0{bottom:203.386667pt;}
.y62{bottom:204.666667pt;}
.yf1{bottom:207.706667pt;}
.y2c{bottom:214.906667pt;}
.y9f{bottom:216.840000pt;}
.y100{bottom:216.986667pt;}
.y92{bottom:220.666667pt;}
.ybf{bottom:220.986667pt;}
.y61{bottom:222.266667pt;}
.yf0{bottom:225.306667pt;}
.y2b{bottom:232.506667pt;}
.yff{bottom:234.586667pt;}
.yef{bottom:238.426667pt;}
.ybe{bottom:238.586667pt;}
.y60{bottom:239.866667pt;}
.y108{bottom:242.586667pt;}
.y91{bottom:244.186667pt;}
.y2a{bottom:250.106667pt;}
.ybd{bottom:256.186667pt;}
.y5f{bottom:257.466667pt;}
.yee{bottom:257.786667pt;}
.yfe{bottom:260.186667pt;}
.y90{bottom:261.786667pt;}
.y29{bottom:267.706667pt;}
.yb6{bottom:269.466667pt;}
.y5e{bottom:275.066667pt;}
.ye6{bottom:277.146667pt;}
.yfd{bottom:277.946667pt;}
.y8f{bottom:279.546667pt;}
.y28{bottom:285.306667pt;}
.y5d{bottom:292.826667pt;}
.yfc{bottom:295.546667pt;}
.yeb{bottom:296.346667pt;}
.y8e{bottom:297.306667pt;}
.y27{bottom:303.066667pt;}
.y5c{bottom:310.426667pt;}
.yfb{bottom:313.146667pt;}
.y8d{bottom:315.066667pt;}
.y26{bottom:320.666667pt;}
.yfa{bottom:330.746667pt;}
.y5b{bottom:332.666667pt;}
.y25{bottom:338.266667pt;}
.y5a{bottom:344.026667pt;}
.y8c{bottom:347.386667pt;}
.yf9{bottom:348.346667pt;}
.y8b{bottom:354.106667pt;}
.y24{bottom:355.866667pt;}
.y59{bottom:366.146667pt;}
.ye7{bottom:366.786667pt;}
.y23{bottom:373.506667pt;}
.y8a{bottom:375.746667pt;}
.y58{bottom:383.746667pt;}
.y22{bottom:391.266667pt;}
.y89{bottom:393.346667pt;}
.y57{bottom:401.346667pt;}
.y21{bottom:408.866667pt;}
.y88{bottom:410.946667pt;}
.y56{bottom:418.946667pt;}
.y20{bottom:426.466667pt;}
.y87{bottom:428.546667pt;}
.y55{bottom:436.546667pt;}
.y1f{bottom:444.066667pt;}
.y86{bottom:446.146667pt;}
.yb4{bottom:446.466667pt;}
.y54{bottom:454.306667pt;}
.y1e{bottom:461.666667pt;}
.y85{bottom:463.906667pt;}
.y53{bottom:471.906667pt;}
.y1d{bottom:479.426667pt;}
.y84{bottom:481.506667pt;}
.yb3{bottom:487.426667pt;}
.y52{bottom:489.506667pt;}
.y1c{bottom:497.026667pt;}
.y83{bottom:499.106667pt;}
.yb2{bottom:505.186667pt;}
.y51{bottom:507.106667pt;}
.ye5{bottom:514.626667pt;}
.y1b{bottom:516.706667pt;}
.yb1{bottom:522.786667pt;}
.y50{bottom:524.706667pt;}
.ye4{bottom:532.226667pt;}
.y82{bottom:534.306667pt;}
.yb0{bottom:540.386667pt;}
.y1a{bottom:542.306667pt;}
.y4f{bottom:542.466667pt;}
.ye3{bottom:549.826667pt;}
.y81{bottom:552.066667pt;}
.yaf{bottom:557.986667pt;}
.y19{bottom:559.906667pt;}
.y4e{bottom:560.066667pt;}
.ye2{bottom:567.586667pt;}
.y80{bottom:569.666667pt;}
.yae{bottom:575.586667pt;}
.y18{bottom:577.533333pt;}
.y4d{bottom:577.693333pt;}
.ye1{bottom:580.733333pt;}
.y7f{bottom:587.293333pt;}
.yad{bottom:593.373333pt;}
.y17{bottom:595.133333pt;}
.y4c{bottom:595.293333pt;}
.ydf{bottom:600.093333pt;}
.y7e{bottom:604.893333pt;}
.yac{bottom:610.973333pt;}
.y16{bottom:612.893333pt;}
.ydb{bottom:619.293333pt;}
.y7d{bottom:622.493333pt;}
.yab{bottom:628.573333pt;}
.y15{bottom:630.493333pt;}
.y4b{bottom:630.653333pt;}
.y69{bottom:633.533333pt;}
.yde{bottom:638.653333pt;}
.y7c{bottom:640.253333pt;}
.yaa{bottom:646.173333pt;}
.y14{bottom:648.093333pt;}
.y4a{bottom:648.253333pt;}
.y7b{bottom:657.693333pt;}
.y9e{bottom:659.293333pt;}
.yda{bottom:663.133333pt;}
.y7a{bottom:664.733333pt;}
.y13{bottom:665.693333pt;}
.y49{bottom:665.853333pt;}
.yd9{bottom:680.733333pt;}
.y12{bottom:683.293333pt;}
.y48{bottom:683.453333pt;}
.y79{bottom:688.253333pt;}
.yd8{bottom:698.493333pt;}
.y11{bottom:701.053333pt;}
.y78{bottom:705.853333pt;}
.yd7{bottom:716.093333pt;}
.y10{bottom:718.653333pt;}
.y47{bottom:718.813333pt;}
.y77{bottom:723.453333pt;}
.yd6{bottom:733.693333pt;}
.yf{bottom:736.253333pt;}
.y46{bottom:736.413333pt;}
.y76{bottom:741.053333pt;}
.yd5{bottom:751.293333pt;}
.ye{bottom:753.853333pt;}
.y45{bottom:754.013333pt;}
.y75{bottom:758.813333pt;}
.yd4{bottom:768.893333pt;}
.yd{bottom:771.453333pt;}
.y44{bottom:771.613333pt;}
.y74{bottom:776.413333pt;}
.yd3{bottom:786.653333pt;}
.y43{bottom:789.213333pt;}
.yc{bottom:791.133333pt;}
.y73{bottom:794.013333pt;}
.yd2{bottom:804.293333pt;}
.y42{bottom:807.013333pt;}
.y72{bottom:811.653333pt;}
.yb{bottom:813.413333pt;}
.yd1{bottom:821.893333pt;}
.y41{bottom:824.613333pt;}
.ya{bottom:826.853333pt;}
.y71{bottom:829.413333pt;}
.yd0{bottom:839.493333pt;}
.y40{bottom:842.213333pt;}
.y9{bottom:845.893333pt;}
.y70{bottom:847.493333pt;}
.ycf{bottom:857.093333pt;}
.y3f{bottom:859.813333pt;}
.y6f{bottom:865.573333pt;}
.y8{bottom:866.693333pt;}
.yce{bottom:874.853333pt;}
.y3e{bottom:877.413333pt;}
.y6e{bottom:883.493333pt;}
.y9c{bottom:889.253333pt;}
.ycd{bottom:892.453333pt;}
.y7{bottom:894.853333pt;}
.y3d{bottom:895.173333pt;}
.y6d{bottom:901.253333pt;}
.ycc{bottom:910.053333pt;}
.y3c{bottom:912.773333pt;}
.y6c{bottom:918.053333pt;}
.y6b{bottom:924.773333pt;}
.ycb{bottom:927.653333pt;}
.y3b{bottom:930.373333pt;}
.y5{bottom:934.373333pt;}
.yca{bottom:945.253333pt;}
.y3a{bottom:947.973333pt;}
.yc9{bottom:958.533333pt;}
.y4{bottom:961.733333pt;}
.y39{bottom:965.573333pt;}
.yc8{bottom:976.773333pt;}
.y38{bottom:983.333333pt;}
.y3{bottom:989.093333pt;}
.yc7{bottom:995.013333pt;}
.y37{bottom:1000.933333pt;}
.y2{bottom:1016.613333pt;}
.y36{bottom:1018.533333pt;}
.y35{bottom:1036.160000pt;}
.y1{bottom:1046.720000pt;}
.y34{bottom:1060.640000pt;}
.h27{height:1.787500pt;}
.h17{height:17.600000pt;}
.h19{height:17.632000pt;}
.h18{height:17.760000pt;}
.h22{height:18.560000pt;}
.h21{height:18.720000pt;}
.h7{height:24.131250pt;}
.hf{height:26.400000pt;}
.h1c{height:35.200000pt;}
.h1a{height:35.360000pt;}
.h1f{height:35.392000pt;}
.h9{height:35.975313pt;}
.h8{height:37.090625pt;}
.h5{height:37.479688pt;}
.h20{height:38.080000pt;}
.hb{height:38.672812pt;}
.h4{height:41.112500pt;}
.h3{height:41.543750pt;}
.he{height:42.691250pt;}
.h1e{height:43.782500pt;}
.h6{height:47.310625pt;}
.h2{height:60.057813pt;}
.ha{height:60.288750pt;}
.h12{height:63.970625pt;}
.h14{height:65.250625pt;}
.h25{height:69.632000pt;}
.h26{height:75.072000pt;}
.h13{height:76.074687pt;}
.hd{height:82.919687pt;}
.h10{height:84.520625pt;}
.h15{height:84.680625pt;}
.hc{height:86.440625pt;}
.h24{height:88.832000pt;}
.h16{height:102.954687pt;}
.h23{height:108.192000pt;}
.h11{height:118.148125pt;}
.h1d{height:176.346667pt;}
.h1b{height:229.306667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w18{width:37.120000pt;}
.w1f{width:37.440000pt;}
.w17{width:46.752000pt;}
.w1e{width:47.072000pt;}
.w19{width:56.000000pt;}
.w20{width:56.320000pt;}
.w4{width:59.360000pt;}
.wf{width:70.272000pt;}
.wd{width:71.360000pt;}
.w3{width:74.080000pt;}
.w15{width:76.800000pt;}
.we{width:78.592000pt;}
.w12{width:80.160000pt;}
.w1a{width:82.112000pt;}
.w21{width:82.432000pt;}
.w1c{width:83.200000pt;}
.w7{width:84.352000pt;}
.w8{width:84.480000pt;}
.w9{width:84.512000pt;}
.wb{width:88.512000pt;}
.wa{width:91.040000pt;}
.w13{width:94.272000pt;}
.wc{width:103.232000pt;}
.w1d{width:103.552000pt;}
.w10{width:137.306667pt;}
.w5{width:138.906667pt;}
.w14{width:172.666667pt;}
.w1b{width:186.746667pt;}
.w22{width:187.386667pt;}
.w6{width:245.346667pt;}
.w11{width:347.746667pt;}
.w16{width:411.773333pt;}
.w23{width:516.453333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:6.880000pt;}
.x1b{left:42.880000pt;}
.x1{left:48.159988pt;}
.x2f{left:51.519988pt;}
.x15{left:71.999988pt;}
.x11{left:78.111988pt;}
.x10{left:90.271988pt;}
.x2{left:96.031988pt;}
.x25{left:99.551988pt;}
.x4{left:102.111988pt;}
.x7{left:103.551988pt;}
.xe{left:107.551988pt;}
.x6{left:114.111988pt;}
.xa{left:128.031988pt;}
.x5{left:138.106655pt;}
.x8{left:139.546655pt;}
.x3{left:144.026655pt;}
.x1f{left:149.146667pt;}
.xb{left:152.026655pt;}
.x9{left:154.106655pt;}
.xf{left:158.106655pt;}
.x16{left:163.706655pt;}
.x30{left:168.826667pt;}
.x17{left:174.426667pt;}
.x1a{left:179.226667pt;}
.x12{left:192.026655pt;}
.x13{left:209.946655pt;}
.x14{left:222.106655pt;}
.x29{left:229.626667pt;}
.x18{left:234.426667pt;}
.x31{left:235.386667pt;}
.x20{left:253.026667pt;}
.xc{left:263.746667pt;}
.x2a{left:277.346667pt;}
.x26{left:291.906667pt;}
.x2b{left:315.106667pt;}
.x21{left:325.026667pt;}
.x1c{left:349.346667pt;}
.x2e{left:371.426667pt;}
.x27{left:372.386667pt;}
.x19{left:373.986667pt;}
.x22{left:404.253333pt;}
.x1d{left:434.493333pt;}
.x2c{left:454.653333pt;}
.x28{left:466.973333pt;}
.x23{left:489.373333pt;}
.x1e{left:526.173333pt;}
.x2d{left:537.853333pt;}
.x24{left:560.293333pt;}
}




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