
    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_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_0d4d4c81a32dea54ecf481ec.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_665e16c6b60841281b857946.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_8a47ae28cf4a649a1313f155.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_4a441937a48d6f00ff21779d.woff')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_5a3728bbd60b0b4e315ca4ad.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_0ed14a943bde5433a197dad7.woff')format("woff");}.ff7{font-family:ff7;line-height:1.372070;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_a7b559b1b6e14cfce859a715.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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_745956cd766994387eb25ea6.woff')format("woff");}.ff9{font-family:ff9;line-height:0.853027;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_ff8b67328983f10c80a08494.woff')format("woff");}.ffa{font-family:ffa;line-height:1.065430;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_a6d4bd832ebcb01c9a97c34a.woff')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.v4{vertical-align:30.240000px;}
.v3{vertical-align:35.280000px;}
.lse{letter-spacing:-0.186600px;}
.ls6{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.ls5{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls19{letter-spacing:-0.078000px;}
.ls7{letter-spacing:-0.063600px;}
.lsa{letter-spacing:-0.031800px;}
.ls17{letter-spacing:-0.023400px;}
.ls1a{letter-spacing:-0.018360px;}
.ls1b{letter-spacing:-0.014760px;}
.ls1f{letter-spacing:-0.013320px;}
.ls1e{letter-spacing:-0.007560px;}
.ls3{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.038880px;}
.ls16{letter-spacing:0.041760px;}
.lsc{letter-spacing:0.045360px;}
.lsd{letter-spacing:0.048960px;}
.ls10{letter-spacing:0.064800px;}
.ls2{letter-spacing:0.090000px;}
.ls13{letter-spacing:0.092520px;}
.ls1{letter-spacing:0.093600px;}
.ls1d{letter-spacing:0.097800px;}
.ls15{letter-spacing:0.105600px;}
.ls4{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.173400px;}
.ls1c{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.276000px;}
.ls0{letter-spacing:0.360000px;}
.ls12{letter-spacing:1.533600px;}
.ls14{letter-spacing:16.652520px;}
.ls21{letter-spacing:47.726640px;}
.ls11{letter-spacing:63.566640px;}
.ls20{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wse{word-spacing:-42.120000px;}
.ws2{word-spacing:-18.453600px;}
.ws6{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws9{word-spacing:-13.399800px;}
.wsf{word-spacing:-13.332000px;}
.wsb{word-spacing:-13.275360px;}
.wsc{word-spacing:-13.268160px;}
.ws10{word-spacing:-13.265280px;}
.ws4{word-spacing:-13.226400px;}
.ws14{word-spacing:-13.218840px;}
.ws15{word-spacing:-13.213080px;}
.ws13{word-spacing:-13.211640px;}
.ws12{word-spacing:-13.208040px;}
.wsd{word-spacing:-13.203000px;}
.ws3{word-spacing:-13.162800px;}
.ws11{word-spacing:-13.148400px;}
.ws8{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._11{margin-left:-4.380877px;}
._1{margin-left:-3.271236px;}
._3{margin-left:-2.201855px;}
._0{margin-left:-1.104000px;}
._2{width:1.005805px;}
._5{width:2.224801px;}
._4{width:3.366600px;}
._a{width:4.496760px;}
._c{width:5.571876px;}
._e{width:7.173324px;}
._d{width:9.198600px;}
._f{width:10.881720px;}
._10{width:11.996075px;}
._b{width:14.631000px;}
._9{width:15.691200px;}
._8{width:17.099998px;}
._6{width:18.276600px;}
._7{width:19.316038px;}
._15{width:21.162240px;}
._13{width:22.184280px;}
._14{width:23.319465px;}
._12{width:26.452800px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yf0{bottom:1.260000px;}
.ye9{bottom:2.250000px;}
.ye7{bottom:3.330000px;}
.ye2{bottom:3.420000px;}
.y137{bottom:4.500000px;}
.y85{bottom:7.830000px;}
.ybe{bottom:7.860000px;}
.y87{bottom:7.920000px;}
.ydf{bottom:9.180000px;}
.ye0{bottom:11.430000px;}
.ye5{bottom:12.060000px;}
.yed{bottom:14.130000px;}
.yec{bottom:18.630000px;}
.ye4{bottom:30.060000px;}
.y13c{bottom:39.150000px;}
.y13b{bottom:56.790000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y13a{bottom:74.340000px;}
.y139{bottom:91.980000px;}
.y1{bottom:101.640000px;}
.y138{bottom:109.530000px;}
.y29{bottom:109.830000px;}
.y7e{bottom:137.190000px;}
.y58{bottom:137.910000px;}
.ycf{bottom:140.790000px;}
.yfd{bottom:141.510000px;}
.y27{bottom:142.050000px;}
.ya4{bottom:151.410000px;}
.yb9{bottom:152.760000px;}
.y57{bottom:155.460000px;}
.yce{bottom:158.430000px;}
.ya3{bottom:158.970000px;}
.yfc{bottom:159.060000px;}
.y26{bottom:159.600000px;}
.y7d{bottom:163.740000px;}
.yea{bottom:175.980000px;}
.yfb{bottom:176.700000px;}
.y25{bottom:177.240000px;}
.y118{bottom:180.480000px;}
.ycd{bottom:184.980000px;}
.yb8{bottom:188.400000px;}
.y56{bottom:191.100000px;}
.yfa{bottom:194.250000px;}
.ye8{bottom:194.340000px;}
.y24{bottom:194.790000px;}
.ya2{bottom:198.030000px;}
.y7c{bottom:199.650000px;}
.y13d{bottom:202.620000px;}
.y117{bottom:207.030000px;}
.y55{bottom:208.650000px;}
.yf9{bottom:211.800000px;}
.y23{bottom:212.340000px;}
.y136{bottom:217.380000px;}
.ycc{bottom:218.010000px;}
.yb7{bottom:220.620000px;}
.y116{bottom:224.580000px;}
.y54{bottom:226.200000px;}
.yf8{bottom:229.440000px;}
.y22{bottom:229.980000px;}
.ya1{bottom:230.160000px;}
.ya0{bottom:237.720000px;}
.y53{bottom:243.840000px;}
.ycb{bottom:245.280000px;}
.y21{bottom:247.530000px;}
.y7b{bottom:247.890000px;}
.y115{bottom:251.220000px;}
.yf7{bottom:264.990000px;}
.y7a{bottom:265.530000px;}
.y114{bottom:268.770000px;}
.y52{bottom:270.390000px;}
.yca{bottom:272.640000px;}
.y9f{bottom:276.780000px;}
.yf6{bottom:282.630000px;}
.y79{bottom:283.080000px;}
.y20{bottom:283.170000px;}
.y113{bottom:295.410000px;}
.yc9{bottom:300.000000px;}
.yf5{bottom:300.180000px;}
.ydd{bottom:300.540000px;}
.y1f{bottom:300.720000px;}
.y51{bottom:305.940000px;}
.y9e{bottom:308.910000px;}
.y112{bottom:312.960000px;}
.y9d{bottom:316.470000px;}
.yf4{bottom:317.730000px;}
.y1e{bottom:318.270000px;}
.y50{bottom:323.580000px;}
.yc8{bottom:327.360000px;}
.ydc{bottom:334.470000px;}
.yf3{bottom:335.370000px;}
.y78{bottom:335.820000px;}
.y1d{bottom:335.910000px;}
.y111{bottom:339.870000px;}
.y4f{bottom:341.130000px;}
.y1c{bottom:353.460000px;}
.yc7{bottom:354.630000px;}
.y9c{bottom:355.710000px;}
.y135{bottom:359.040000px;}
.ydb{bottom:361.740000px;}
.yf2{bottom:362.280000px;}
.y4e{bottom:367.770000px;}
.y1b{bottom:371.100000px;}
.y77{bottom:371.370000px;}
.y9b{bottom:373.350000px;}
.y110{bottom:388.110000px;}
.y1a{bottom:388.650000px;}
.yda{bottom:389.100000px;}
.y76{bottom:389.820000px;}
.y4d{bottom:403.320000px;}
.y19{bottom:406.200000px;}
.y134{bottom:407.370000px;}
.yf1{bottom:407.910000px;}
.y75{bottom:408.270000px;}
.y9a{bottom:408.900000px;}
.y10f{bottom:415.020000px;}
.yd9{bottom:416.460000px;}
.y4c{bottom:420.870000px;}
.y133{bottom:424.920000px;}
.yef{bottom:435.270000px;}
.y74{bottom:435.720000px;}
.y4b{bottom:438.510000px;}
.yc6{bottom:438.960000px;}
.y18{bottom:441.840000px;}
.yd8{bottom:443.820000px;}
.y99{bottom:444.540000px;}
.y132{bottom:451.470000px;}
.y10e{bottom:452.370000px;}
.y17{bottom:459.390000px;}
.y4a{bottom:465.060000px;}
.y131{bottom:469.110000px;}
.yc5{bottom:471.210000px;}
.y73{bottom:471.300000px;}
.ye6{bottom:474.090000px;}
.y98{bottom:476.790000px;}
.y16{bottom:477.060000px;}
.y97{bottom:484.350000px;}
.y72{bottom:488.850000px;}
.yd7{bottom:492.540000px;}
.y15{bottom:494.610000px;}
.y130{bottom:495.690000px;}
.y49{bottom:500.730000px;}
.ye3{bottom:501.450000px;}
.y71{bottom:506.490000px;}
.y14{bottom:512.160000px;}
.y12f{bottom:513.330000px;}
.y48{bottom:518.280000px;}
.y96{bottom:523.410000px;}
.y70{bottom:524.040000px;}
.yd6{bottom:528.090000px;}
.y13{bottom:529.800000px;}
.y47{bottom:535.830000px;}
.y12e{bottom:539.880000px;}
.y6f{bottom:541.590000px;}
.y46{bottom:553.470000px;}
.y10d{bottom:553.830000px;}
.yd5{bottom:554.640000px;}
.y95{bottom:555.540000px;}
.y12{bottom:556.710000px;}
.y12d{bottom:557.430000px;}
.y6e{bottom:559.230000px;}
.y94{bottom:563.100000px;}
.y45{bottom:571.020000px;}
.y10c{bottom:571.470000px;}
.y12c{bottom:575.070000px;}
.y6d{bottom:585.780000px;}
.y10b{bottom:589.020000px;}
.yd4{bottom:590.280000px;}
.yb6{bottom:597.480000px;}
.y12b{bottom:601.620000px;}
.y93{bottom:602.430000px;}
.y11{bottom:605.310000px;}
.y44{bottom:606.660000px;}
.y6c{bottom:618.360000px;}
.y12a{bottom:619.260000px;}
.y43{bottom:624.210000px;}
.yd3{bottom:625.830000px;}
.yb5{bottom:633.030000px;}
.y92{bottom:634.560000px;}
.y42{bottom:641.760000px;}
.y91{bottom:642.120000px;}
.y10{bottom:642.300000px;}
.y129{bottom:645.810000px;}
.yd2{bottom:652.470000px;}
.y6b{bottom:654.000000px;}
.y10a{bottom:659.400000px;}
.yf{bottom:659.850000px;}
.y128{bottom:663.360000px;}
.y41{bottom:668.400000px;}
.yb4{bottom:668.670000px;}
.y6a{bottom:671.550000px;}
.ye{bottom:677.490000px;}
.y90{bottom:681.180000px;}
.y109{bottom:686.310000px;}
.yd1{bottom:688.020000px;}
.y69{bottom:689.190000px;}
.y127{bottom:690.000000px;}
.yd{bottom:695.040000px;}
.yb3{bottom:695.220000px;}
.y8f{bottom:698.730000px;}
.y40{bottom:704.310000px;}
.y126{bottom:707.550000px;}
.yc{bottom:712.680000px;}
.y68{bottom:715.740000px;}
.yd0{bottom:720.240000px;}
.y8e{bottom:725.280000px;}
.yb2{bottom:728.250000px;}
.y125{bottom:734.190000px;}
.y108{bottom:734.550000px;}
.yb{bottom:739.590000px;}
.y67{bottom:751.290000px;}
.y124{bottom:751.740000px;}
.y107{bottom:752.190000px;}
.y3f{bottom:752.550000px;}
.yb1{bottom:755.520000px;}
.y8d{bottom:758.310000px;}
.y66{bottom:768.930000px;}
.y106{bottom:769.740000px;}
.y3e{bottom:770.190000px;}
.y123{bottom:778.290000px;}
.yb0{bottom:782.880000px;}
.y8c{bottom:785.670000px;}
.y65{bottom:786.480000px;}
.y105{bottom:787.290000px;}
.y3d{bottom:787.740000px;}
.ya{bottom:787.830000px;}
.y122{bottom:795.930000px;}
.y64{bottom:804.030000px;}
.y104{bottom:804.930000px;}
.y3c{bottom:805.290000px;}
.y8b{bottom:812.940000px;}
.yee{bottom:815.280000px;}
.y63{bottom:821.670000px;}
.y103{bottom:822.480000px;}
.y9{bottom:823.380000px;}
.ye1{bottom:824.730000px;}
.yaf{bottom:831.570000px;}
.y62{bottom:839.220000px;}
.y121{bottom:840.030000px;}
.y8a{bottom:840.300000px;}
.y3b{bottom:840.930000px;}
.yeb{bottom:842.640000px;}
.yde{bottom:852.090000px;}
.yc4{bottom:855.330000px;}
.y102{bottom:858.030000px;}
.y3a{bottom:858.480000px;}
.y8{bottom:859.200000px;}
.y61{bottom:865.860000px;}
.y120{bottom:866.670000px;}
.yae{bottom:867.210000px;}
.y89{bottom:867.660000px;}
.yc3{bottom:872.880000px;}
.y101{bottom:875.670000px;}
.y39{bottom:876.030000px;}
.y11f{bottom:884.220000px;}
.yad{bottom:884.760000px;}
.y100{bottom:893.220000px;}
.y38{bottom:893.670000px;}
.y88{bottom:894.930000px;}
.y7{bottom:895.200000px;}
.yc2{bottom:900.240000px;}
.y60{bottom:901.410000px;}
.y11e{bottom:901.860000px;}
.yff{bottom:910.860000px;}
.y37{bottom:911.220000px;}
.yac{bottom:911.310000px;}
.y6{bottom:913.200000px;}
.y5f{bottom:918.960000px;}
.y86{bottom:922.290000px;}
.yc1{bottom:927.600000px;}
.yfe{bottom:928.410000px;}
.y36{bottom:928.860000px;}
.y5e{bottom:936.600000px;}
.y11d{bottom:945.960000px;}
.y35{bottom:946.410000px;}
.yab{bottom:946.950000px;}
.y5{bottom:949.290000px;}
.y84{bottom:949.650000px;}
.yc0{bottom:954.870000px;}
.y5d{bottom:963.150000px;}
.y34{bottom:963.960000px;}
.y11c{bottom:972.600000px;}
.y33{bottom:981.600000px;}
.ybf{bottom:982.230000px;}
.yaa{bottom:982.500000px;}
.y4{bottom:987.630000px;}
.y11b{bottom:990.150000px;}
.y83{bottom:998.340000px;}
.y5c{bottom:998.790000px;}
.y32{bottom:999.150000px;}
.ybd{bottom:1009.590000px;}
.y3{bottom:1012.320000px;}
.ya9{bottom:1014.750000px;}
.y31{bottom:1016.820000px;}
.ya8{bottom:1022.310000px;}
.y82{bottom:1033.920000px;}
.y30{bottom:1034.370000px;}
.ybc{bottom:1036.890000px;}
.y81{bottom:1051.560000px;}
.y2f{bottom:1051.920000px;}
.y11a{bottom:1060.920000px;}
.ya7{bottom:1061.550000px;}
.ybb{bottom:1064.250000px;}
.y2e{bottom:1069.560000px;}
.y5b{bottom:1069.920000px;}
.y80{bottom:1078.110000px;}
.y119{bottom:1078.560000px;}
.y2d{bottom:1087.110000px;}
.y5a{bottom:1087.560000px;}
.yba{bottom:1091.610000px;}
.ya6{bottom:1093.770000px;}
.ya5{bottom:1101.330000px;}
.y59{bottom:1105.110000px;}
.y7f{bottom:1113.750000px;}
.y2c{bottom:1122.750000px;}
.y2b{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h16{height:17.550000px;}
.hd{height:26.550000px;}
.h11{height:26.580000px;}
.he{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:39.155273px;}
.h6{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.hb{height:59.973223px;}
.hc{height:61.793886px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.hf{height:70.777617px;}
.h4{height:72.985430px;}
.h12{height:74.004654px;}
.h10{height:82.551445px;}
.h19{height:128.250000px;}
.h15{height:279.030000px;}
.h13{height:301.710000px;}
.h17{height:311.160000px;}
.h14{height:322.560000px;}
.h18{height:379.290000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wc{width:64.170000px;}
.wd{width:68.790000px;}
.we{width:77.580000px;}
.w9{width:88.560000px;}
.w12{width:116.670000px;}
.w8{width:120.780000px;}
.wb{width:129.600000px;}
.wa{width:133.770000px;}
.w5{width:147.780000px;}
.w6{width:149.130000px;}
.w7{width:154.560000px;}
.w4{width:161.310000px;}
.w3{width:169.380000px;}
.wf{width:340.770000px;}
.w10{width:384.510000px;}
.w13{width:617.250000px;}
.w11{width:726.000000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.740000px;}
.x2b{left:36.000000px;}
.x23{left:43.380000px;}
.x24{left:50.310000px;}
.x29{left:65.070000px;}
.x1{left:68.040000px;}
.x20{left:83.610000px;}
.x2f{left:89.730000px;}
.x4{left:95.039987px;}
.x30{left:108.930000px;}
.x2e{left:111.239987px;}
.x27{left:113.160000px;}
.x2{left:192.719987px;}
.x5{left:206.670000px;}
.x14{left:233.670000px;}
.x2d{left:269.580000px;}
.x1d{left:275.430000px;}
.x1a{left:283.349987px;}
.x25{left:286.230000px;}
.x21{left:290.730000px;}
.x28{left:298.650000px;}
.x22{left:314.940000px;}
.x26{left:329.520000px;}
.x2a{left:331.770000px;}
.x17{left:334.919987px;}
.x1c{left:341.399987px;}
.x7{left:376.770000px;}
.x15{left:383.520000px;}
.xc{left:405.299987px;}
.xe{left:407.099987px;}
.x9{left:409.529987px;}
.x11{left:422.669987px;}
.xd{left:424.289987px;}
.xb{left:426.809987px;}
.x13{left:430.949987px;}
.x18{left:446.609987px;}
.x1e{left:470.730000px;}
.xf{left:471.899987px;}
.x10{left:473.609987px;}
.x12{left:475.229987px;}
.xa{left:477.569987px;}
.x8{left:538.800000px;}
.x1f{left:540.240000px;}
.x2c{left:567.780000px;}
.x16{left:741.389987px;}
.x1b{left:754.889987px;}
.x19{left:768.389987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.v4{vertical-align:26.880000pt;}
.v3{vertical-align:31.360000pt;}
.lse{letter-spacing:-0.165867pt;}
.ls6{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls5{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls19{letter-spacing:-0.069333pt;}
.ls7{letter-spacing:-0.056533pt;}
.lsa{letter-spacing:-0.028267pt;}
.ls17{letter-spacing:-0.020800pt;}
.ls1a{letter-spacing:-0.016320pt;}
.ls1b{letter-spacing:-0.013120pt;}
.ls1f{letter-spacing:-0.011840pt;}
.ls1e{letter-spacing:-0.006720pt;}
.ls3{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.034560pt;}
.ls16{letter-spacing:0.037120pt;}
.lsc{letter-spacing:0.040320pt;}
.lsd{letter-spacing:0.043520pt;}
.ls10{letter-spacing:0.057600pt;}
.ls2{letter-spacing:0.080000pt;}
.ls13{letter-spacing:0.082240pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1d{letter-spacing:0.086933pt;}
.ls15{letter-spacing:0.093867pt;}
.ls4{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.154133pt;}
.ls1c{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.245333pt;}
.ls0{letter-spacing:0.320000pt;}
.ls12{letter-spacing:1.363200pt;}
.ls14{letter-spacing:14.802240pt;}
.ls21{letter-spacing:42.423680pt;}
.ls11{letter-spacing:56.503680pt;}
.ls20{letter-spacing:71.863680pt;}
.wse{word-spacing:-37.440000pt;}
.ws2{word-spacing:-16.403200pt;}
.ws6{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws9{word-spacing:-11.910933pt;}
.wsf{word-spacing:-11.850667pt;}
.wsb{word-spacing:-11.800320pt;}
.wsc{word-spacing:-11.793920pt;}
.ws10{word-spacing:-11.791360pt;}
.ws4{word-spacing:-11.756800pt;}
.ws14{word-spacing:-11.750080pt;}
.ws15{word-spacing:-11.744960pt;}
.ws13{word-spacing:-11.743680pt;}
.ws12{word-spacing:-11.740480pt;}
.wsd{word-spacing:-11.736000pt;}
.ws3{word-spacing:-11.700267pt;}
.ws11{word-spacing:-11.687467pt;}
.ws8{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._11{margin-left:-3.894113pt;}
._1{margin-left:-2.907765pt;}
._3{margin-left:-1.957205pt;}
._0{margin-left:-0.981333pt;}
._2{width:0.894049pt;}
._5{width:1.977601pt;}
._4{width:2.992533pt;}
._a{width:3.997120pt;}
._c{width:4.952778pt;}
._e{width:6.376288pt;}
._d{width:8.176534pt;}
._f{width:9.672640pt;}
._10{width:10.663178pt;}
._b{width:13.005333pt;}
._9{width:13.947733pt;}
._8{width:15.199999pt;}
._6{width:16.245867pt;}
._7{width:17.169811pt;}
._15{width:18.810880pt;}
._13{width:19.719360pt;}
._14{width:20.728414pt;}
._12{width:23.513600pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yf0{bottom:1.120000pt;}
.ye9{bottom:2.000000pt;}
.ye7{bottom:2.960000pt;}
.ye2{bottom:3.040000pt;}
.y137{bottom:4.000000pt;}
.y85{bottom:6.960000pt;}
.ybe{bottom:6.986667pt;}
.y87{bottom:7.040000pt;}
.ydf{bottom:8.160000pt;}
.ye0{bottom:10.160000pt;}
.ye5{bottom:10.720000pt;}
.yed{bottom:12.560000pt;}
.yec{bottom:16.560000pt;}
.ye4{bottom:26.720000pt;}
.y13c{bottom:34.800000pt;}
.y13b{bottom:50.480000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y13a{bottom:66.080000pt;}
.y139{bottom:81.760000pt;}
.y1{bottom:90.346667pt;}
.y138{bottom:97.360000pt;}
.y29{bottom:97.626667pt;}
.y7e{bottom:121.946667pt;}
.y58{bottom:122.586667pt;}
.ycf{bottom:125.146667pt;}
.yfd{bottom:125.786667pt;}
.y27{bottom:126.266667pt;}
.ya4{bottom:134.586667pt;}
.yb9{bottom:135.786667pt;}
.y57{bottom:138.186667pt;}
.yce{bottom:140.826667pt;}
.ya3{bottom:141.306667pt;}
.yfc{bottom:141.386667pt;}
.y26{bottom:141.866667pt;}
.y7d{bottom:145.546667pt;}
.yea{bottom:156.426667pt;}
.yfb{bottom:157.066667pt;}
.y25{bottom:157.546667pt;}
.y118{bottom:160.426667pt;}
.ycd{bottom:164.426667pt;}
.yb8{bottom:167.466667pt;}
.y56{bottom:169.866667pt;}
.yfa{bottom:172.666667pt;}
.ye8{bottom:172.746667pt;}
.y24{bottom:173.146667pt;}
.ya2{bottom:176.026667pt;}
.y7c{bottom:177.466667pt;}
.y13d{bottom:180.106667pt;}
.y117{bottom:184.026667pt;}
.y55{bottom:185.466667pt;}
.yf9{bottom:188.266667pt;}
.y23{bottom:188.746667pt;}
.y136{bottom:193.226667pt;}
.ycc{bottom:193.786667pt;}
.yb7{bottom:196.106667pt;}
.y116{bottom:199.626667pt;}
.y54{bottom:201.066667pt;}
.yf8{bottom:203.946667pt;}
.y22{bottom:204.426667pt;}
.ya1{bottom:204.586667pt;}
.ya0{bottom:211.306667pt;}
.y53{bottom:216.746667pt;}
.ycb{bottom:218.026667pt;}
.y21{bottom:220.026667pt;}
.y7b{bottom:220.346667pt;}
.y115{bottom:223.306667pt;}
.yf7{bottom:235.546667pt;}
.y7a{bottom:236.026667pt;}
.y114{bottom:238.906667pt;}
.y52{bottom:240.346667pt;}
.yca{bottom:242.346667pt;}
.y9f{bottom:246.026667pt;}
.yf6{bottom:251.226667pt;}
.y79{bottom:251.626667pt;}
.y20{bottom:251.706667pt;}
.y113{bottom:262.586667pt;}
.yc9{bottom:266.666667pt;}
.yf5{bottom:266.826667pt;}
.ydd{bottom:267.146667pt;}
.y1f{bottom:267.306667pt;}
.y51{bottom:271.946667pt;}
.y9e{bottom:274.586667pt;}
.y112{bottom:278.186667pt;}
.y9d{bottom:281.306667pt;}
.yf4{bottom:282.426667pt;}
.y1e{bottom:282.906667pt;}
.y50{bottom:287.626667pt;}
.yc8{bottom:290.986667pt;}
.ydc{bottom:297.306667pt;}
.yf3{bottom:298.106667pt;}
.y78{bottom:298.506667pt;}
.y1d{bottom:298.586667pt;}
.y111{bottom:302.106667pt;}
.y4f{bottom:303.226667pt;}
.y1c{bottom:314.186667pt;}
.yc7{bottom:315.226667pt;}
.y9c{bottom:316.186667pt;}
.y135{bottom:319.146667pt;}
.ydb{bottom:321.546667pt;}
.yf2{bottom:322.026667pt;}
.y4e{bottom:326.906667pt;}
.y1b{bottom:329.866667pt;}
.y77{bottom:330.106667pt;}
.y9b{bottom:331.866667pt;}
.y110{bottom:344.986667pt;}
.y1a{bottom:345.466667pt;}
.yda{bottom:345.866667pt;}
.y76{bottom:346.506667pt;}
.y4d{bottom:358.506667pt;}
.y19{bottom:361.066667pt;}
.y134{bottom:362.106667pt;}
.yf1{bottom:362.586667pt;}
.y75{bottom:362.906667pt;}
.y9a{bottom:363.466667pt;}
.y10f{bottom:368.906667pt;}
.yd9{bottom:370.186667pt;}
.y4c{bottom:374.106667pt;}
.y133{bottom:377.706667pt;}
.yef{bottom:386.906667pt;}
.y74{bottom:387.306667pt;}
.y4b{bottom:389.786667pt;}
.yc6{bottom:390.186667pt;}
.y18{bottom:392.746667pt;}
.yd8{bottom:394.506667pt;}
.y99{bottom:395.146667pt;}
.y132{bottom:401.306667pt;}
.y10e{bottom:402.106667pt;}
.y17{bottom:408.346667pt;}
.y4a{bottom:413.386667pt;}
.y131{bottom:416.986667pt;}
.yc5{bottom:418.853333pt;}
.y73{bottom:418.933333pt;}
.ye6{bottom:421.413333pt;}
.y98{bottom:423.813333pt;}
.y16{bottom:424.053333pt;}
.y97{bottom:430.533333pt;}
.y72{bottom:434.533333pt;}
.yd7{bottom:437.813333pt;}
.y15{bottom:439.653333pt;}
.y130{bottom:440.613333pt;}
.y49{bottom:445.093333pt;}
.ye3{bottom:445.733333pt;}
.y71{bottom:450.213333pt;}
.y14{bottom:455.253333pt;}
.y12f{bottom:456.293333pt;}
.y48{bottom:460.693333pt;}
.y96{bottom:465.253333pt;}
.y70{bottom:465.813333pt;}
.yd6{bottom:469.413333pt;}
.y13{bottom:470.933333pt;}
.y47{bottom:476.293333pt;}
.y12e{bottom:479.893333pt;}
.y6f{bottom:481.413333pt;}
.y46{bottom:491.973333pt;}
.y10d{bottom:492.293333pt;}
.yd5{bottom:493.013333pt;}
.y95{bottom:493.813333pt;}
.y12{bottom:494.853333pt;}
.y12d{bottom:495.493333pt;}
.y6e{bottom:497.093333pt;}
.y94{bottom:500.533333pt;}
.y45{bottom:507.573333pt;}
.y10c{bottom:507.973333pt;}
.y12c{bottom:511.173333pt;}
.y6d{bottom:520.693333pt;}
.y10b{bottom:523.573333pt;}
.yd4{bottom:524.693333pt;}
.yb6{bottom:531.093333pt;}
.y12b{bottom:534.773333pt;}
.y93{bottom:535.493333pt;}
.y11{bottom:538.053333pt;}
.y44{bottom:539.253333pt;}
.y6c{bottom:549.653333pt;}
.y12a{bottom:550.453333pt;}
.y43{bottom:554.853333pt;}
.yd3{bottom:556.293333pt;}
.yb5{bottom:562.693333pt;}
.y92{bottom:564.053333pt;}
.y42{bottom:570.453333pt;}
.y91{bottom:570.773333pt;}
.y10{bottom:570.933333pt;}
.y129{bottom:574.053333pt;}
.yd2{bottom:579.973333pt;}
.y6b{bottom:581.333333pt;}
.y10a{bottom:586.133333pt;}
.yf{bottom:586.533333pt;}
.y128{bottom:589.653333pt;}
.y41{bottom:594.133333pt;}
.yb4{bottom:594.373333pt;}
.y6a{bottom:596.933333pt;}
.ye{bottom:602.213333pt;}
.y90{bottom:605.493333pt;}
.y109{bottom:610.053333pt;}
.yd1{bottom:611.573333pt;}
.y69{bottom:612.613333pt;}
.y127{bottom:613.333333pt;}
.yd{bottom:617.813333pt;}
.yb3{bottom:617.973333pt;}
.y8f{bottom:621.093333pt;}
.y40{bottom:626.053333pt;}
.y126{bottom:628.933333pt;}
.yc{bottom:633.493333pt;}
.y68{bottom:636.213333pt;}
.yd0{bottom:640.213333pt;}
.y8e{bottom:644.693333pt;}
.yb2{bottom:647.333333pt;}
.y125{bottom:652.613333pt;}
.y108{bottom:652.933333pt;}
.yb{bottom:657.413333pt;}
.y67{bottom:667.813333pt;}
.y124{bottom:668.213333pt;}
.y107{bottom:668.613333pt;}
.y3f{bottom:668.933333pt;}
.yb1{bottom:671.573333pt;}
.y8d{bottom:674.053333pt;}
.y66{bottom:683.493333pt;}
.y106{bottom:684.213333pt;}
.y3e{bottom:684.613333pt;}
.y123{bottom:691.813333pt;}
.yb0{bottom:695.893333pt;}
.y8c{bottom:698.373333pt;}
.y65{bottom:699.093333pt;}
.y105{bottom:699.813333pt;}
.y3d{bottom:700.213333pt;}
.ya{bottom:700.293333pt;}
.y122{bottom:707.493333pt;}
.y64{bottom:714.693333pt;}
.y104{bottom:715.493333pt;}
.y3c{bottom:715.813333pt;}
.y8b{bottom:722.613333pt;}
.yee{bottom:724.693333pt;}
.y63{bottom:730.373333pt;}
.y103{bottom:731.093333pt;}
.y9{bottom:731.893333pt;}
.ye1{bottom:733.093333pt;}
.yaf{bottom:739.173333pt;}
.y62{bottom:745.973333pt;}
.y121{bottom:746.693333pt;}
.y8a{bottom:746.933333pt;}
.y3b{bottom:747.493333pt;}
.yeb{bottom:749.013333pt;}
.yde{bottom:757.413333pt;}
.yc4{bottom:760.293333pt;}
.y102{bottom:762.693333pt;}
.y3a{bottom:763.093333pt;}
.y8{bottom:763.733333pt;}
.y61{bottom:769.653333pt;}
.y120{bottom:770.373333pt;}
.yae{bottom:770.853333pt;}
.y89{bottom:771.253333pt;}
.yc3{bottom:775.893333pt;}
.y101{bottom:778.373333pt;}
.y39{bottom:778.693333pt;}
.y11f{bottom:785.973333pt;}
.yad{bottom:786.453333pt;}
.y100{bottom:793.973333pt;}
.y38{bottom:794.373333pt;}
.y88{bottom:795.493333pt;}
.y7{bottom:795.733333pt;}
.yc2{bottom:800.213333pt;}
.y60{bottom:801.253333pt;}
.y11e{bottom:801.653333pt;}
.yff{bottom:809.653333pt;}
.y37{bottom:809.973333pt;}
.yac{bottom:810.053333pt;}
.y6{bottom:811.733333pt;}
.y5f{bottom:816.853333pt;}
.y86{bottom:819.813333pt;}
.yc1{bottom:824.533333pt;}
.yfe{bottom:825.253333pt;}
.y36{bottom:825.653333pt;}
.y5e{bottom:832.533333pt;}
.y11d{bottom:840.853333pt;}
.y35{bottom:841.253333pt;}
.yab{bottom:841.733333pt;}
.y5{bottom:843.813333pt;}
.y84{bottom:844.133333pt;}
.yc0{bottom:848.773333pt;}
.y5d{bottom:856.133333pt;}
.y34{bottom:856.853333pt;}
.y11c{bottom:864.533333pt;}
.y33{bottom:872.533333pt;}
.ybf{bottom:873.093333pt;}
.yaa{bottom:873.333333pt;}
.y4{bottom:877.893333pt;}
.y11b{bottom:880.133333pt;}
.y83{bottom:887.413333pt;}
.y5c{bottom:887.813333pt;}
.y32{bottom:888.133333pt;}
.ybd{bottom:897.413333pt;}
.y3{bottom:899.840000pt;}
.ya9{bottom:902.000000pt;}
.y31{bottom:903.840000pt;}
.ya8{bottom:908.720000pt;}
.y82{bottom:919.040000pt;}
.y30{bottom:919.440000pt;}
.ybc{bottom:921.680000pt;}
.y81{bottom:934.720000pt;}
.y2f{bottom:935.040000pt;}
.y11a{bottom:943.040000pt;}
.ya7{bottom:943.600000pt;}
.ybb{bottom:946.000000pt;}
.y2e{bottom:950.720000pt;}
.y5b{bottom:951.040000pt;}
.y80{bottom:958.320000pt;}
.y119{bottom:958.720000pt;}
.y2d{bottom:966.320000pt;}
.y5a{bottom:966.720000pt;}
.yba{bottom:970.320000pt;}
.ya6{bottom:972.240000pt;}
.ya5{bottom:978.960000pt;}
.y59{bottom:982.320000pt;}
.y7f{bottom:990.000000pt;}
.y2c{bottom:998.000000pt;}
.y2b{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h16{height:15.600000pt;}
.hd{height:23.600000pt;}
.h11{height:23.626667pt;}
.he{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:34.804688pt;}
.h6{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.hb{height:53.309531pt;}
.hc{height:54.927899pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.hf{height:62.913437pt;}
.h4{height:64.875937pt;}
.h12{height:65.781915pt;}
.h10{height:73.379062pt;}
.h19{height:114.000000pt;}
.h15{height:248.026667pt;}
.h13{height:268.186667pt;}
.h17{height:276.586667pt;}
.h14{height:286.720000pt;}
.h18{height:337.146667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wc{width:57.040000pt;}
.wd{width:61.146667pt;}
.we{width:68.960000pt;}
.w9{width:78.720000pt;}
.w12{width:103.706667pt;}
.w8{width:107.360000pt;}
.wb{width:115.200000pt;}
.wa{width:118.906667pt;}
.w5{width:131.360000pt;}
.w6{width:132.560000pt;}
.w7{width:137.386667pt;}
.w4{width:143.386667pt;}
.w3{width:150.560000pt;}
.wf{width:302.906667pt;}
.w10{width:341.786667pt;}
.w13{width:548.666667pt;}
.w11{width:645.333333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.880000pt;}
.x2b{left:32.000000pt;}
.x23{left:38.560000pt;}
.x24{left:44.720000pt;}
.x29{left:57.840000pt;}
.x1{left:60.480000pt;}
.x20{left:74.320000pt;}
.x2f{left:79.760000pt;}
.x4{left:84.479988pt;}
.x30{left:96.826667pt;}
.x2e{left:98.879988pt;}
.x27{left:100.586667pt;}
.x2{left:171.306655pt;}
.x5{left:183.706667pt;}
.x14{left:207.706667pt;}
.x2d{left:239.626667pt;}
.x1d{left:244.826667pt;}
.x1a{left:251.866655pt;}
.x25{left:254.426667pt;}
.x21{left:258.426667pt;}
.x28{left:265.466667pt;}
.x22{left:279.946667pt;}
.x26{left:292.906667pt;}
.x2a{left:294.906667pt;}
.x17{left:297.706655pt;}
.x1c{left:303.466655pt;}
.x7{left:334.906667pt;}
.x15{left:340.906667pt;}
.xc{left:360.266655pt;}
.xe{left:361.866655pt;}
.x9{left:364.026655pt;}
.x11{left:375.706655pt;}
.xd{left:377.146655pt;}
.xb{left:379.386655pt;}
.x13{left:383.066655pt;}
.x18{left:396.986655pt;}
.x1e{left:418.426667pt;}
.xf{left:419.466655pt;}
.x10{left:420.986655pt;}
.x12{left:422.426655pt;}
.xa{left:424.506655pt;}
.x8{left:478.933333pt;}
.x1f{left:480.213333pt;}
.x2c{left:504.693333pt;}
.x16{left:659.013322pt;}
.x1b{left:671.013322pt;}
.x19{left:683.013322pt;}
.x3{left:711.413322pt;}
}




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