
    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_adf2d296a43517a98b2d4341.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986328;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_88055932d0c0162714949c49.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f28a0eb778a1797125742236.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_6b5e5828b53a02471745c2e7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.338867;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_9a372ab8b05af828b3c3b960.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.864258;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_8296c7da6dd76d6a1b20eeee.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.800781;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_342e83bbd7fc0367f1a992a9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.352051;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_260999f11af056204adab498.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.019043;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_436cc4c3d1690b2c0c8f99d7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.753906;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.758789;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_39d5466e9ecfed235bc2359c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.908203;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:ffe;src:url('chunks/assets/font_b75b19dbc8367ecccd1e6cc2.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_df6869a6dae0c11360fc254d.woff2')format("woff");}.fff{font-family:fff;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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:-27.000000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls17{letter-spacing:-0.445800px;}
.ls8{letter-spacing:-0.220200px;}
.ls28{letter-spacing:-0.184200px;}
.ls16{letter-spacing:-0.141000px;}
.ls1a{letter-spacing:-0.119400px;}
.lsd{letter-spacing:-0.097397px;}
.ls29{letter-spacing:-0.092400px;}
.ls19{letter-spacing:-0.086400px;}
.lsc{letter-spacing:-0.085800px;}
.ls27{letter-spacing:-0.082200px;}
.ls9{letter-spacing:-0.028800px;}
.lsa{letter-spacing:-0.016317px;}
.ls23{letter-spacing:-0.015480px;}
.ls15{letter-spacing:-0.009000px;}
.ls22{letter-spacing:-0.004680px;}
.ls6{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.050040px;}
.ls1{letter-spacing:0.087120px;}
.ls5{letter-spacing:0.090000px;}
.ls2{letter-spacing:0.108000px;}
.ls26{letter-spacing:0.109200px;}
.lsf{letter-spacing:0.162000px;}
.lsb{letter-spacing:0.168000px;}
.ls0{letter-spacing:0.180000px;}
.ls21{letter-spacing:0.189000px;}
.ls7{letter-spacing:0.193200px;}
.ls18{letter-spacing:0.274200px;}
.lse{letter-spacing:0.512284px;}
.ls1b{letter-spacing:0.807120px;}
.ls1f{letter-spacing:7.647120px;}
.ls11{letter-spacing:9.087120px;}
.ls1e{letter-spacing:9.447120px;}
.ls13{letter-spacing:11.967120px;}
.ls20{letter-spacing:14.847120px;}
.ls1d{letter-spacing:18.447120px;}
.ls1c{letter-spacing:21.327120px;}
.ls14{letter-spacing:22.230000px;}
.ls12{letter-spacing:29.247120px;}
.ls4{letter-spacing:36.926640px;}
.ls10{letter-spacing:40.526640px;}
.ls3{letter-spacing:41.148000px;}
.ls25{letter-spacing:46.286640px;}
.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;}
}
.ws7{word-spacing:-60.120000px;}
.wsf{word-spacing:-16.650000px;}
.ws5{word-spacing:-16.640880px;}
.wsc{word-spacing:-16.593120px;}
.wsb{word-spacing:-16.584120px;}
.ws14{word-spacing:-16.582080px;}
.ws6{word-spacing:-16.472880px;}
.ws11{word-spacing:-16.468200px;}
.wsd{word-spacing:-16.386480px;}
.wse{word-spacing:-16.353480px;}
.ws10{word-spacing:-16.331880px;}
.ws16{word-spacing:-16.288680px;}
.ws0{word-spacing:-15.223200px;}
.ws17{word-spacing:-15.210000px;}
.ws1{word-spacing:-15.030000px;}
.ws9{word-spacing:-14.796000px;}
.ws8{word-spacing:-13.500000px;}
.ws15{word-spacing:-13.214880px;}
.ws12{word-spacing:-13.199400px;}
.ws2{word-spacing:-13.119120px;}
.ws13{word-spacing:-12.150000px;}
.ws3{word-spacing:-11.970000px;}
.ws4{word-spacing:-11.625120px;}
.wsa{word-spacing:0.000000px;}
._6{margin-left:-35.592000px;}
._c{margin-left:-20.971440px;}
._11{margin-left:-19.599120px;}
._1a{margin-left:-17.844840px;}
._25{margin-left:-15.215280px;}
._24{margin-left:-11.115480px;}
._9{margin-left:-8.640000px;}
._21{margin-left:-6.720120px;}
._14{margin-left:-5.266440px;}
._4{margin-left:-3.456000px;}
._b{margin-left:-2.376000px;}
._0{margin-left:-1.202400px;}
._3{width:1.029240px;}
._5{width:2.376000px;}
._a{width:3.456000px;}
._12{width:4.507680px;}
._15{width:5.660640px;}
._f{width:7.094160px;}
._10{width:8.176320px;}
._8{width:9.288000px;}
._13{width:10.821600px;}
._20{width:12.024000px;}
._18{width:13.622400px;}
._17{width:14.669280px;}
._26{width:15.800400px;}
._23{width:17.615160px;}
._16{width:19.139400px;}
._d{width:20.440800px;}
._28{width:21.444120px;}
._1e{width:22.665240px;}
._1f{width:24.346440px;}
._27{width:25.396920px;}
._22{width:26.512920px;}
._1b{width:28.080000px;}
._1d{width:30.298320px;}
._2a{width:31.362000px;}
._29{width:32.518440px;}
._7{width:35.532000px;}
._19{width:36.936000px;}
._2b{width:39.289320px;}
._2c{width:40.338720px;}
._1c{width:43.542000px;}
._2e{width:45.986760px;}
._2{width:130.455480px;}
._1{width:341.548680px;}
._2d{width:683.506800px;}
._e{width:1069.922760px;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(5,99,193);}
.fc0{color:rgb(0,32,96);}
.fs4{font-size:29.880000px;}
.fsf{font-size:36.000000px;}
.fsa{font-size:38.880000px;}
.fs8{font-size:42.120000px;}
.fs9{font-size:44.397934px;}
.fs2{font-size:47.880000px;}
.fs3{font-size:50.469447px;}
.fsc{font-size:54.000000px;}
.fsd{font-size:56.920429px;}
.fs0{font-size:60.120000px;}
.fsb{font-size:63.371411px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:69.442923px;}
.fs1{font-size:72.000000px;}
.fse{font-size:78.120000px;}
.fs6{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yf8{bottom:2.610000px;}
.y6{bottom:2.700000px;}
.y38{bottom:2.880000px;}
.y7d{bottom:2.970000px;}
.y75{bottom:3.060000px;}
.y36{bottom:3.420000px;}
.y7e{bottom:3.690000px;}
.y16{bottom:3.780000px;}
.y79{bottom:4.860000px;}
.y17{bottom:5.940000px;}
.y91{bottom:8.820000px;}
.y92{bottom:9.540000px;}
.y76{bottom:10.980000px;}
.y7b{bottom:11.340000px;}
.y4{bottom:11.610000px;}
.y77{bottom:11.700000px;}
.y7f{bottom:12.060000px;}
.y9{bottom:14.040000px;}
.y93{bottom:16.470000px;}
.y78{bottom:18.630000px;}
.y74{bottom:18.990000px;}
.y5{bottom:19.080000px;}
.y2e{bottom:19.350000px;}
.y35{bottom:21.420000px;}
.yfc{bottom:30.240000px;}
.y7{bottom:35.550000px;}
.y2d{bottom:35.820000px;}
.y34{bottom:39.330000px;}
.yfb{bottom:44.010000px;}
.y2c{bottom:51.300000px;}
.y33{bottom:57.330000px;}
.yfa{bottom:57.780000px;}
.y3{bottom:58.140000px;}
.y2b{bottom:66.870000px;}
.y32{bottom:75.240000px;}
.y2a{bottom:82.380000px;}
.y31{bottom:93.240000px;}
.y29{bottom:97.950000px;}
.y37{bottom:108.450000px;}
.y3f{bottom:111.600000px;}
.y6f{bottom:112.860000px;}
.y28{bottom:113.430000px;}
.yd8{bottom:114.930000px;}
.y8c{bottom:121.320000px;}
.y27{bottom:129.000000px;}
.y3e{bottom:129.420000px;}
.yd7{bottom:132.210000px;}
.y6e{bottom:132.750000px;}
.yb9{bottom:140.220000px;}
.y8b{bottom:141.210000px;}
.y25{bottom:141.840000px;}
.y3d{bottom:149.310000px;}
.yd6{bottom:149.490000px;}
.y6d{bottom:152.730000px;}
.y24{bottom:159.660000px;}
.yb8{bottom:160.230000px;}
.y8a{bottom:161.220000px;}
.yd5{bottom:166.710000px;}
.y3c{bottom:169.320000px;}
.y6c{bottom:172.740000px;}
.y23{bottom:179.550000px;}
.yb7{bottom:180.120000px;}
.y89{bottom:181.200000px;}
.yd4{bottom:183.990000px;}
.y3b{bottom:189.300000px;}
.y6b{bottom:192.630000px;}
.y22{bottom:199.530000px;}
.yb6{bottom:200.100000px;}
.y88{bottom:201.090000px;}
.yd3{bottom:201.270000px;}
.y3a{bottom:209.190000px;}
.y6a{bottom:212.610000px;}
.yd2{bottom:218.460000px;}
.y21{bottom:219.510000px;}
.yb5{bottom:220.080000px;}
.y87{bottom:221.070000px;}
.y39{bottom:228.270000px;}
.y69{bottom:232.590000px;}
.yd1{bottom:235.740000px;}
.y20{bottom:239.400000px;}
.yb4{bottom:240.060000px;}
.y86{bottom:241.050000px;}
.y18{bottom:241.680000px;}
.y68{bottom:252.480000px;}
.yd0{bottom:253.020000px;}
.y84{bottom:257.970000px;}
.y1f{bottom:259.380000px;}
.yb3{bottom:259.950000px;}
.ycf{bottom:270.210000px;}
.y67{bottom:272.460000px;}
.y85{bottom:274.620000px;}
.y1e{bottom:279.360000px;}
.yb2{bottom:279.930000px;}
.yce{bottom:287.490000px;}
.y82{bottom:291.360000px;}
.y66{bottom:292.440000px;}
.y1d{bottom:299.340000px;}
.yb1{bottom:299.910000px;}
.ycd{bottom:304.770000px;}
.y83{bottom:308.100000px;}
.y65{bottom:312.330000px;}
.y1c{bottom:319.230000px;}
.yb0{bottom:319.800000px;}
.ycc{bottom:321.960000px;}
.yf6{bottom:322.050000px;}
.y80{bottom:324.840000px;}
.y64{bottom:332.310000px;}
.y1b{bottom:339.240000px;}
.yaf{bottom:339.780000px;}
.y81{bottom:341.490000px;}
.yf5{bottom:351.300000px;}
.y63{bottom:352.290000px;}
.ycb{bottom:357.060000px;}
.y7a{bottom:358.230000px;}
.y1a{bottom:359.220000px;}
.yae{bottom:359.760000px;}
.y30{bottom:363.450000px;}
.y62{bottom:372.270000px;}
.y7c{bottom:374.970000px;}
.yca{bottom:376.950000px;}
.y19{bottom:378.570000px;}
.yad{bottom:379.650000px;}
.yf4{bottom:380.550000px;}
.y73{bottom:391.620000px;}
.y61{bottom:392.160000px;}
.yc9{bottom:396.930000px;}
.yac{bottom:399.630000px;}
.yf3{bottom:409.800000px;}
.y60{bottom:412.140000px;}
.yc8{bottom:416.910000px;}
.yab{bottom:419.610000px;}
.y72{bottom:426.540000px;}
.yf2{bottom:427.080000px;}
.y5f{bottom:432.120000px;}
.yc7{bottom:436.800000px;}
.y71{bottom:439.320000px;}
.yaa{bottom:439.500000px;}
.yf1{bottom:444.360000px;}
.y5e{bottom:452.010000px;}
.y70{bottom:455.250000px;}
.yc6{bottom:456.780000px;}
.ya9{bottom:459.480000px;}
.yf0{bottom:461.550000px;}
.y2f{bottom:471.990000px;}
.yc5{bottom:476.760000px;}
.yef{bottom:479.370000px;}
.ya8{bottom:479.460000px;}
.y5d{bottom:491.970000px;}
.y26{bottom:492.690000px;}
.yc4{bottom:496.650000px;}
.ya7{bottom:499.350000px;}
.y5c{bottom:511.860000px;}
.yc3{bottom:516.630000px;}
.yee{bottom:519.240000px;}
.ya6{bottom:519.330000px;}
.y5b{bottom:531.840000px;}
.yc2{bottom:536.610000px;}
.yed{bottom:539.220000px;}
.ya5{bottom:539.310000px;}
.y5a{bottom:551.820000px;}
.yc1{bottom:556.500000px;}
.ya4{bottom:559.200000px;}
.y59{bottom:571.710000px;}
.yc0{bottom:576.510000px;}
.yec{bottom:579.120000px;}
.ya3{bottom:579.210000px;}
.y58{bottom:591.720000px;}
.ybf{bottom:596.490000px;}
.yeb{bottom:599.100000px;}
.ya2{bottom:599.190000px;}
.y57{bottom:611.700000px;}
.ybe{bottom:616.380000px;}
.ya1{bottom:619.080000px;}
.y56{bottom:631.590000px;}
.y15{bottom:635.010000px;}
.ybd{bottom:636.360000px;}
.yea{bottom:638.970000px;}
.ya0{bottom:639.060000px;}
.y55{bottom:651.570000px;}
.ybc{bottom:656.340000px;}
.ye9{bottom:658.950000px;}
.y9f{bottom:659.040000px;}
.y54{bottom:671.550000px;}
.ybb{bottom:676.230000px;}
.y14{bottom:676.320000px;}
.y9e{bottom:678.930000px;}
.y53{bottom:691.440000px;}
.yba{bottom:696.210000px;}
.y9d{bottom:698.370000px;}
.ye8{bottom:698.820000px;}
.y13{bottom:701.700000px;}
.y52{bottom:711.420000px;}
.y9c{bottom:716.190000px;}
.ye7{bottom:718.800000px;}
.y51{bottom:731.400000px;}
.y9a{bottom:733.110000px;}
.ye6{bottom:738.780000px;}
.y12{bottom:739.860000px;}
.y9b{bottom:749.850000px;}
.y50{bottom:751.290000px;}
.ye5{bottom:758.760000px;}
.y11{bottom:759.750000px;}
.y98{bottom:766.500000px;}
.y4f{bottom:771.270000px;}
.yf{bottom:774.870000px;}
.ye4{bottom:778.650000px;}
.y10{bottom:781.620000px;}
.y99{bottom:783.240000px;}
.y4e{bottom:791.250000px;}
.ye{bottom:798.540000px;}
.ye3{bottom:798.630000px;}
.y96{bottom:799.980000px;}
.y4d{bottom:811.140000px;}
.yf9{bottom:815.550000px;}
.y97{bottom:816.630000px;}
.yd{bottom:830.490000px;}
.y4c{bottom:831.120000px;}
.y94{bottom:833.370000px;}
.y95{bottom:850.110000px;}
.y4b{bottom:851.100000px;}
.yc{bottom:866.400000px;}
.y90{bottom:866.760000px;}
.y4a{bottom:871.080000px;}
.yf7{bottom:885.300000px;}
.y49{bottom:890.970000px;}
.yb{bottom:901.410000px;}
.y8f{bottom:910.050000px;}
.y48{bottom:910.950000px;}
.ye2{bottom:915.270000px;}
.y8e{bottom:926.070000px;}
.ya{bottom:930.210000px;}
.y47{bottom:930.930000px;}
.ye1{bottom:934.710000px;}
.y8{bottom:945.600000px;}
.y46{bottom:950.820000px;}
.ye0{bottom:951.990000px;}
.y8d{bottom:953.970000px;}
.ydf{bottom:969.180000px;}
.y45{bottom:970.800000px;}
.yde{bottom:986.460000px;}
.y44{bottom:990.780000px;}
.ydd{bottom:1003.770000px;}
.y43{bottom:1010.700000px;}
.ydc{bottom:1020.960000px;}
.y42{bottom:1030.680000px;}
.ydb{bottom:1038.240000px;}
.y41{bottom:1050.660000px;}
.yda{bottom:1055.520000px;}
.y40{bottom:1070.550000px;}
.yd9{bottom:1072.710000px;}
.y2{bottom:1102.770000px;}
.y1{bottom:1119.960000px;}
.h30{height:13.770000px;}
.h2a{height:15.930000px;}
.h2b{height:16.020000px;}
.h15{height:19.980000px;}
.h2d{height:27.630000px;}
.h26{height:28.406250px;}
.h11{height:31.178672px;}
.h27{height:31.950000px;}
.h29{height:32.670000px;}
.h12{height:32.864877px;}
.h8{height:33.431836px;}
.h28{height:33.782520px;}
.h3{height:34.020000px;}
.h2c{height:35.442422px;}
.h6{height:37.359219px;}
.h7{height:37.408506px;}
.h23{height:37.705078px;}
.h22{height:38.100586px;}
.h9{height:39.082324px;}
.h1b{height:39.999023px;}
.h4{height:41.978320px;}
.h1f{height:42.134458px;}
.h17{height:42.418652px;}
.h20{height:42.609375px;}
.h2e{height:43.769004px;}
.h13{height:43.995586px;}
.h24{height:44.502891px;}
.h1c{height:44.532246px;}
.h2{height:45.295488px;}
.hb{height:46.000195px;}
.h19{height:46.909697px;}
.h25{height:47.438437px;}
.h2f{height:49.552031px;}
.hc{height:49.635176px;}
.h1{height:50.800781px;}
.h10{height:51.404039px;}
.h5{height:51.667383px;}
.h1e{height:58.271484px;}
.h16{height:64.875586px;}
.h31{height:68.940000px;}
.hf{height:71.091211px;}
.hd{height:76.201172px;}
.h14{height:85.218750px;}
.h1d{height:107.730000px;}
.he{height:116.542969px;}
.h21{height:121.050000px;}
.h1a{height:141.600000px;}
.ha{height:153.930000px;}
.h18{height:392.610000px;}
.h0{height:1188.000000px;}
.w11{width:34.020000px;}
.w9{width:34.200000px;}
.w2{width:38.070000px;}
.w12{width:49.170000px;}
.wa{width:49.260000px;}
.w15{width:51.840000px;}
.wd{width:51.930000px;}
.w16{width:81.210000px;}
.we{width:82.440000px;}
.w13{width:87.750000px;}
.wb{width:88.290000px;}
.w14{width:90.270000px;}
.wc{width:91.530000px;}
.w7{width:126.480000px;}
.w10{width:134.820000px;}
.w8{width:145.170000px;}
.wf{width:179.940000px;}
.w6{width:220.350000px;}
.w17{width:329.250000px;}
.w5{width:588.480000px;}
.w3{width:769.050000px;}
.w4{width:821.790000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x22{left:6.660000px;}
.x4{left:8.640000px;}
.x44{left:9.720000px;}
.x34{left:10.890000px;}
.x39{left:12.690000px;}
.x50{left:16.830000px;}
.x42{left:17.910000px;}
.x3d{left:19.080000px;}
.x1b{left:20.160000px;}
.x40{left:23.220000px;}
.x41{left:24.840000px;}
.x2a{left:27.630000px;}
.x43{left:29.250000px;}
.x37{left:30.330000px;}
.x23{left:34.110000px;}
.x29{left:36.090000px;}
.x35{left:39.000000px;}
.x4f{left:51.420000px;}
.x2{left:53.999986px;}
.xc{left:59.399986px;}
.x1{left:60.749986px;}
.x51{left:62.400000px;}
.x24{left:66.330000px;}
.x3{left:69.390000px;}
.x26{left:75.870000px;}
.x25{left:77.220000px;}
.x27{left:79.560000px;}
.x52{left:88.199986px;}
.x6{left:99.480000px;}
.x47{left:101.970000px;}
.x7{left:106.050000px;}
.x5{left:108.540000px;}
.x28{left:112.500000px;}
.x45{left:119.249986px;}
.x33{left:121.770000px;}
.x53{left:134.999986px;}
.xd{left:152.579986px;}
.x31{left:199.289986px;}
.x8{left:200.910000px;}
.x9{left:204.330000px;}
.x18{left:222.059986px;}
.x17{left:242.579986px;}
.x36{left:249.060000px;}
.x2b{left:255.899986px;}
.x32{left:260.489986px;}
.x2c{left:264.089986px;}
.x48{left:282.630000px;}
.x1c{left:318.540000px;}
.x46{left:320.339986px;}
.x1d{left:328.710000px;}
.xf{left:337.799986px;}
.x1e{left:374.070000px;}
.x2d{left:383.249986px;}
.x1f{left:386.040000px;}
.x2e{left:391.439986px;}
.x38{left:394.950000px;}
.x49{left:418.170000px;}
.x10{left:421.409986px;}
.x11{left:426.089986px;}
.x3a{left:429.870000px;}
.x12{left:441.389986px;}
.x13{left:445.979986px;}
.x4a{left:452.910000px;}
.xb{left:459.029986px;}
.xe{left:464.159986px;}
.x19{left:465.239986px;}
.x30{left:478.229986px;}
.x3b{left:479.850000px;}
.x4b{left:502.800000px;}
.x2f{left:507.749986px;}
.x20{left:511.890000px;}
.x21{left:523.950000px;}
.x3c{left:568.950000px;}
.x14{left:582.089986px;}
.x15{left:586.679986px;}
.x4c{left:591.360000px;}
.x16{left:592.709986px;}
.x1a{left:650.670000px;}
.x3e{left:661.200000px;}
.x4d{left:682.350000px;}
.x3f{left:713.850000px;}
.x4e{left:734.910000px;}
.xa{left:812.430000px;}
@media print{
.v2{vertical-align:-24.000000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls17{letter-spacing:-0.396267pt;}
.ls8{letter-spacing:-0.195733pt;}
.ls28{letter-spacing:-0.163733pt;}
.ls16{letter-spacing:-0.125333pt;}
.ls1a{letter-spacing:-0.106133pt;}
.lsd{letter-spacing:-0.086575pt;}
.ls29{letter-spacing:-0.082133pt;}
.ls19{letter-spacing:-0.076800pt;}
.lsc{letter-spacing:-0.076267pt;}
.ls27{letter-spacing:-0.073067pt;}
.ls9{letter-spacing:-0.025600pt;}
.lsa{letter-spacing:-0.014504pt;}
.ls23{letter-spacing:-0.013760pt;}
.ls15{letter-spacing:-0.008000pt;}
.ls22{letter-spacing:-0.004160pt;}
.ls6{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.044480pt;}
.ls1{letter-spacing:0.077440pt;}
.ls5{letter-spacing:0.080000pt;}
.ls2{letter-spacing:0.096000pt;}
.ls26{letter-spacing:0.097067pt;}
.lsf{letter-spacing:0.144000pt;}
.lsb{letter-spacing:0.149333pt;}
.ls0{letter-spacing:0.160000pt;}
.ls21{letter-spacing:0.168000pt;}
.ls7{letter-spacing:0.171733pt;}
.ls18{letter-spacing:0.243733pt;}
.lse{letter-spacing:0.455363pt;}
.ls1b{letter-spacing:0.717440pt;}
.ls1f{letter-spacing:6.797440pt;}
.ls11{letter-spacing:8.077440pt;}
.ls1e{letter-spacing:8.397440pt;}
.ls13{letter-spacing:10.637440pt;}
.ls20{letter-spacing:13.197440pt;}
.ls1d{letter-spacing:16.397440pt;}
.ls1c{letter-spacing:18.957440pt;}
.ls14{letter-spacing:19.760000pt;}
.ls12{letter-spacing:25.997440pt;}
.ls4{letter-spacing:32.823680pt;}
.ls10{letter-spacing:36.023680pt;}
.ls3{letter-spacing:36.576000pt;}
.ls25{letter-spacing:41.143680pt;}
.ws7{word-spacing:-53.440000pt;}
.wsf{word-spacing:-14.800000pt;}
.ws5{word-spacing:-14.791893pt;}
.wsc{word-spacing:-14.749440pt;}
.wsb{word-spacing:-14.741440pt;}
.ws14{word-spacing:-14.739627pt;}
.ws6{word-spacing:-14.642560pt;}
.ws11{word-spacing:-14.638400pt;}
.wsd{word-spacing:-14.565760pt;}
.wse{word-spacing:-14.536427pt;}
.ws10{word-spacing:-14.517227pt;}
.ws16{word-spacing:-14.478827pt;}
.ws0{word-spacing:-13.531733pt;}
.ws17{word-spacing:-13.520000pt;}
.ws1{word-spacing:-13.360000pt;}
.ws9{word-spacing:-13.152000pt;}
.ws8{word-spacing:-12.000000pt;}
.ws15{word-spacing:-11.746560pt;}
.ws12{word-spacing:-11.732800pt;}
.ws2{word-spacing:-11.661440pt;}
.ws13{word-spacing:-10.800000pt;}
.ws3{word-spacing:-10.640000pt;}
.ws4{word-spacing:-10.333440pt;}
.wsa{word-spacing:0.000000pt;}
._6{margin-left:-31.637333pt;}
._c{margin-left:-18.641280pt;}
._11{margin-left:-17.421440pt;}
._1a{margin-left:-15.862080pt;}
._25{margin-left:-13.524693pt;}
._24{margin-left:-9.880427pt;}
._9{margin-left:-7.680000pt;}
._21{margin-left:-5.973440pt;}
._14{margin-left:-4.681280pt;}
._4{margin-left:-3.072000pt;}
._b{margin-left:-2.112000pt;}
._0{margin-left:-1.068800pt;}
._3{width:0.914880pt;}
._5{width:2.112000pt;}
._a{width:3.072000pt;}
._12{width:4.006827pt;}
._15{width:5.031680pt;}
._f{width:6.305920pt;}
._10{width:7.267840pt;}
._8{width:8.256000pt;}
._13{width:9.619200pt;}
._20{width:10.688000pt;}
._18{width:12.108800pt;}
._17{width:13.039360pt;}
._26{width:14.044800pt;}
._23{width:15.657920pt;}
._16{width:17.012800pt;}
._d{width:18.169600pt;}
._28{width:19.061440pt;}
._1e{width:20.146880pt;}
._1f{width:21.641280pt;}
._27{width:22.575040pt;}
._22{width:23.567040pt;}
._1b{width:24.960000pt;}
._1d{width:26.931840pt;}
._2a{width:27.877333pt;}
._29{width:28.905280pt;}
._7{width:31.584000pt;}
._19{width:32.832000pt;}
._2b{width:34.923840pt;}
._2c{width:35.856640pt;}
._1c{width:38.704000pt;}
._2e{width:40.877120pt;}
._2{width:115.960427pt;}
._1{width:303.598827pt;}
._2d{width:607.561600pt;}
._e{width:951.042453pt;}
.fs4{font-size:26.560000pt;}
.fsf{font-size:32.000000pt;}
.fsa{font-size:34.560000pt;}
.fs8{font-size:37.440000pt;}
.fs9{font-size:39.464831pt;}
.fs2{font-size:42.560000pt;}
.fs3{font-size:44.861730pt;}
.fsc{font-size:48.000000pt;}
.fsd{font-size:50.595937pt;}
.fs0{font-size:53.440000pt;}
.fsb{font-size:56.330143pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:61.727043pt;}
.fs1{font-size:64.000000pt;}
.fse{font-size:69.440000pt;}
.fs6{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yf8{bottom:2.320000pt;}
.y6{bottom:2.400000pt;}
.y38{bottom:2.560000pt;}
.y7d{bottom:2.640000pt;}
.y75{bottom:2.720000pt;}
.y36{bottom:3.040000pt;}
.y7e{bottom:3.280000pt;}
.y16{bottom:3.360000pt;}
.y79{bottom:4.320000pt;}
.y17{bottom:5.280000pt;}
.y91{bottom:7.840000pt;}
.y92{bottom:8.480000pt;}
.y76{bottom:9.760000pt;}
.y7b{bottom:10.080000pt;}
.y4{bottom:10.320000pt;}
.y77{bottom:10.400000pt;}
.y7f{bottom:10.720000pt;}
.y9{bottom:12.480000pt;}
.y93{bottom:14.640000pt;}
.y78{bottom:16.560000pt;}
.y74{bottom:16.880000pt;}
.y5{bottom:16.960000pt;}
.y2e{bottom:17.200000pt;}
.y35{bottom:19.040000pt;}
.yfc{bottom:26.880000pt;}
.y7{bottom:31.600000pt;}
.y2d{bottom:31.840000pt;}
.y34{bottom:34.960000pt;}
.yfb{bottom:39.120000pt;}
.y2c{bottom:45.600000pt;}
.y33{bottom:50.960000pt;}
.yfa{bottom:51.360000pt;}
.y3{bottom:51.680000pt;}
.y2b{bottom:59.440000pt;}
.y32{bottom:66.880000pt;}
.y2a{bottom:73.226667pt;}
.y31{bottom:82.880000pt;}
.y29{bottom:87.066667pt;}
.y37{bottom:96.400000pt;}
.y3f{bottom:99.200000pt;}
.y6f{bottom:100.320000pt;}
.y28{bottom:100.826667pt;}
.yd8{bottom:102.160000pt;}
.y8c{bottom:107.840000pt;}
.y27{bottom:114.666667pt;}
.y3e{bottom:115.040000pt;}
.yd7{bottom:117.520000pt;}
.y6e{bottom:118.000000pt;}
.yb9{bottom:124.640000pt;}
.y8b{bottom:125.520000pt;}
.y25{bottom:126.080000pt;}
.y3d{bottom:132.720000pt;}
.yd6{bottom:132.880000pt;}
.y6d{bottom:135.760000pt;}
.y24{bottom:141.920000pt;}
.yb8{bottom:142.426667pt;}
.y8a{bottom:143.306667pt;}
.yd5{bottom:148.186667pt;}
.y3c{bottom:150.506667pt;}
.y6c{bottom:153.546667pt;}
.y23{bottom:159.600000pt;}
.yb7{bottom:160.106667pt;}
.y89{bottom:161.066667pt;}
.yd4{bottom:163.546667pt;}
.y3b{bottom:168.266667pt;}
.y6b{bottom:171.226667pt;}
.y22{bottom:177.360000pt;}
.yb6{bottom:177.866667pt;}
.y88{bottom:178.746667pt;}
.yd3{bottom:178.906667pt;}
.y3a{bottom:185.946667pt;}
.y6a{bottom:188.986667pt;}
.yd2{bottom:194.186667pt;}
.y21{bottom:195.120000pt;}
.yb5{bottom:195.626667pt;}
.y87{bottom:196.506667pt;}
.y39{bottom:202.906667pt;}
.y69{bottom:206.746667pt;}
.yd1{bottom:209.546667pt;}
.y20{bottom:212.800000pt;}
.yb4{bottom:213.386667pt;}
.y86{bottom:214.266667pt;}
.y18{bottom:214.826667pt;}
.y68{bottom:224.426667pt;}
.yd0{bottom:224.906667pt;}
.y84{bottom:229.306667pt;}
.y1f{bottom:230.560000pt;}
.yb3{bottom:231.066667pt;}
.ycf{bottom:240.186667pt;}
.y67{bottom:242.186667pt;}
.y85{bottom:244.106667pt;}
.y1e{bottom:248.320000pt;}
.yb2{bottom:248.826667pt;}
.yce{bottom:255.546667pt;}
.y82{bottom:258.986667pt;}
.y66{bottom:259.946667pt;}
.y1d{bottom:266.080000pt;}
.yb1{bottom:266.586667pt;}
.ycd{bottom:270.906667pt;}
.y83{bottom:273.866667pt;}
.y65{bottom:277.626667pt;}
.y1c{bottom:283.760000pt;}
.yb0{bottom:284.266667pt;}
.ycc{bottom:286.186667pt;}
.yf6{bottom:286.266667pt;}
.y80{bottom:288.746667pt;}
.y64{bottom:295.386667pt;}
.y1b{bottom:301.546667pt;}
.yaf{bottom:302.026667pt;}
.y81{bottom:303.546667pt;}
.yf5{bottom:312.266667pt;}
.y63{bottom:313.146667pt;}
.ycb{bottom:317.386667pt;}
.y7a{bottom:318.426667pt;}
.y1a{bottom:319.306667pt;}
.yae{bottom:319.786667pt;}
.y30{bottom:323.066667pt;}
.y62{bottom:330.906667pt;}
.y7c{bottom:333.306667pt;}
.yca{bottom:335.066667pt;}
.y19{bottom:336.506667pt;}
.yad{bottom:337.466667pt;}
.yf4{bottom:338.266667pt;}
.y73{bottom:348.106667pt;}
.y61{bottom:348.586667pt;}
.yc9{bottom:352.826667pt;}
.yac{bottom:355.226667pt;}
.yf3{bottom:364.266667pt;}
.y60{bottom:366.346667pt;}
.yc8{bottom:370.586667pt;}
.yab{bottom:372.986667pt;}
.y72{bottom:379.146667pt;}
.yf2{bottom:379.626667pt;}
.y5f{bottom:384.106667pt;}
.yc7{bottom:388.266667pt;}
.y71{bottom:390.506667pt;}
.yaa{bottom:390.666667pt;}
.yf1{bottom:394.986667pt;}
.y5e{bottom:401.786667pt;}
.y70{bottom:404.666667pt;}
.yc6{bottom:406.026667pt;}
.ya9{bottom:408.426667pt;}
.yf0{bottom:410.266667pt;}
.y2f{bottom:419.546667pt;}
.yc5{bottom:423.786667pt;}
.yef{bottom:426.106667pt;}
.ya8{bottom:426.186667pt;}
.y5d{bottom:437.306667pt;}
.y26{bottom:437.946667pt;}
.yc4{bottom:441.466667pt;}
.ya7{bottom:443.866667pt;}
.y5c{bottom:454.986667pt;}
.yc3{bottom:459.226667pt;}
.yee{bottom:461.546667pt;}
.ya6{bottom:461.626667pt;}
.y5b{bottom:472.746667pt;}
.yc2{bottom:476.986667pt;}
.yed{bottom:479.306667pt;}
.ya5{bottom:479.386667pt;}
.y5a{bottom:490.506667pt;}
.yc1{bottom:494.666667pt;}
.ya4{bottom:497.066667pt;}
.y59{bottom:508.186667pt;}
.yc0{bottom:512.453333pt;}
.yec{bottom:514.773333pt;}
.ya3{bottom:514.853333pt;}
.y58{bottom:525.973333pt;}
.ybf{bottom:530.213333pt;}
.yeb{bottom:532.533333pt;}
.ya2{bottom:532.613333pt;}
.y57{bottom:543.733333pt;}
.ybe{bottom:547.893333pt;}
.ya1{bottom:550.293333pt;}
.y56{bottom:561.413333pt;}
.y15{bottom:564.453333pt;}
.ybd{bottom:565.653333pt;}
.yea{bottom:567.973333pt;}
.ya0{bottom:568.053333pt;}
.y55{bottom:579.173333pt;}
.ybc{bottom:583.413333pt;}
.ye9{bottom:585.733333pt;}
.y9f{bottom:585.813333pt;}
.y54{bottom:596.933333pt;}
.ybb{bottom:601.093333pt;}
.y14{bottom:601.173333pt;}
.y9e{bottom:603.493333pt;}
.y53{bottom:614.613333pt;}
.yba{bottom:618.853333pt;}
.y9d{bottom:620.773333pt;}
.ye8{bottom:621.173333pt;}
.y13{bottom:623.733333pt;}
.y52{bottom:632.373333pt;}
.y9c{bottom:636.613333pt;}
.ye7{bottom:638.933333pt;}
.y51{bottom:650.133333pt;}
.y9a{bottom:651.653333pt;}
.ye6{bottom:656.693333pt;}
.y12{bottom:657.653333pt;}
.y9b{bottom:666.533333pt;}
.y50{bottom:667.813333pt;}
.ye5{bottom:674.453333pt;}
.y11{bottom:675.333333pt;}
.y98{bottom:681.333333pt;}
.y4f{bottom:685.573333pt;}
.yf{bottom:688.773333pt;}
.ye4{bottom:692.133333pt;}
.y10{bottom:694.773333pt;}
.y99{bottom:696.213333pt;}
.y4e{bottom:703.333333pt;}
.ye{bottom:709.813333pt;}
.ye3{bottom:709.893333pt;}
.y96{bottom:711.093333pt;}
.y4d{bottom:721.013333pt;}
.yf9{bottom:724.933333pt;}
.y97{bottom:725.893333pt;}
.yd{bottom:738.213333pt;}
.y4c{bottom:738.773333pt;}
.y94{bottom:740.773333pt;}
.y95{bottom:755.653333pt;}
.y4b{bottom:756.533333pt;}
.yc{bottom:770.133333pt;}
.y90{bottom:770.453333pt;}
.y4a{bottom:774.293333pt;}
.yf7{bottom:786.933333pt;}
.y49{bottom:791.973333pt;}
.yb{bottom:801.253333pt;}
.y8f{bottom:808.933333pt;}
.y48{bottom:809.733333pt;}
.ye2{bottom:813.573333pt;}
.y8e{bottom:823.173333pt;}
.ya{bottom:826.853333pt;}
.y47{bottom:827.493333pt;}
.ye1{bottom:830.853333pt;}
.y8{bottom:840.533333pt;}
.y46{bottom:845.173333pt;}
.ye0{bottom:846.213333pt;}
.y8d{bottom:847.973333pt;}
.ydf{bottom:861.493333pt;}
.y45{bottom:862.933333pt;}
.yde{bottom:876.853333pt;}
.y44{bottom:880.693333pt;}
.ydd{bottom:892.240000pt;}
.y43{bottom:898.400000pt;}
.ydc{bottom:907.520000pt;}
.y42{bottom:916.160000pt;}
.ydb{bottom:922.880000pt;}
.y41{bottom:933.920000pt;}
.yda{bottom:938.240000pt;}
.y40{bottom:951.600000pt;}
.yd9{bottom:953.520000pt;}
.y2{bottom:980.240000pt;}
.y1{bottom:995.520000pt;}
.h30{height:12.240000pt;}
.h2a{height:14.160000pt;}
.h2b{height:14.240000pt;}
.h15{height:17.760000pt;}
.h2d{height:24.560000pt;}
.h26{height:25.250000pt;}
.h11{height:27.714375pt;}
.h27{height:28.400000pt;}
.h29{height:29.040000pt;}
.h12{height:29.213224pt;}
.h8{height:29.717188pt;}
.h28{height:30.028906pt;}
.h3{height:30.240000pt;}
.h2c{height:31.504375pt;}
.h6{height:33.208195pt;}
.h7{height:33.252005pt;}
.h23{height:33.515625pt;}
.h22{height:33.867188pt;}
.h9{height:34.739844pt;}
.h1b{height:35.554688pt;}
.h4{height:37.314062pt;}
.h1f{height:37.452852pt;}
.h17{height:37.705469pt;}
.h20{height:37.875000pt;}
.h2e{height:38.905781pt;}
.h13{height:39.107187pt;}
.h24{height:39.558125pt;}
.h1c{height:39.584219pt;}
.h2{height:40.262656pt;}
.hb{height:40.889062pt;}
.h19{height:41.697508pt;}
.h25{height:42.167500pt;}
.h2f{height:44.046250pt;}
.hc{height:44.120156pt;}
.h1{height:45.156250pt;}
.h10{height:45.692479pt;}
.h5{height:45.926562pt;}
.h1e{height:51.796875pt;}
.h16{height:57.667187pt;}
.h31{height:61.280000pt;}
.hf{height:63.192187pt;}
.hd{height:67.734375pt;}
.h14{height:75.750000pt;}
.h1d{height:95.760000pt;}
.he{height:103.593750pt;}
.h21{height:107.600000pt;}
.h1a{height:125.866667pt;}
.ha{height:136.826667pt;}
.h18{height:348.986667pt;}
.h0{height:1056.000000pt;}
.w11{width:30.240000pt;}
.w9{width:30.400000pt;}
.w2{width:33.840000pt;}
.w12{width:43.706667pt;}
.wa{width:43.786667pt;}
.w15{width:46.080000pt;}
.wd{width:46.160000pt;}
.w16{width:72.186667pt;}
.we{width:73.280000pt;}
.w13{width:78.000000pt;}
.wb{width:78.480000pt;}
.w14{width:80.240000pt;}
.wc{width:81.360000pt;}
.w7{width:112.426667pt;}
.w10{width:119.840000pt;}
.w8{width:129.040000pt;}
.wf{width:159.946667pt;}
.w6{width:195.866667pt;}
.w17{width:292.666667pt;}
.w5{width:523.093333pt;}
.w3{width:683.600000pt;}
.w4{width:730.480000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x22{left:5.920000pt;}
.x4{left:7.680000pt;}
.x44{left:8.640000pt;}
.x34{left:9.680000pt;}
.x39{left:11.280000pt;}
.x50{left:14.960000pt;}
.x42{left:15.920000pt;}
.x3d{left:16.960000pt;}
.x1b{left:17.920000pt;}
.x40{left:20.640000pt;}
.x41{left:22.080000pt;}
.x2a{left:24.560000pt;}
.x43{left:26.000000pt;}
.x37{left:26.960000pt;}
.x23{left:30.320000pt;}
.x29{left:32.080000pt;}
.x35{left:34.666667pt;}
.x4f{left:45.706667pt;}
.x2{left:47.999988pt;}
.xc{left:52.799988pt;}
.x1{left:53.999988pt;}
.x51{left:55.466667pt;}
.x24{left:58.960000pt;}
.x3{left:61.680000pt;}
.x26{left:67.440000pt;}
.x25{left:68.640000pt;}
.x27{left:70.720000pt;}
.x52{left:78.399988pt;}
.x6{left:88.426667pt;}
.x47{left:90.640000pt;}
.x7{left:94.266667pt;}
.x5{left:96.480000pt;}
.x28{left:100.000000pt;}
.x45{left:105.999988pt;}
.x33{left:108.240000pt;}
.x53{left:119.999988pt;}
.xd{left:135.626655pt;}
.x31{left:177.146655pt;}
.x8{left:178.586667pt;}
.x9{left:181.626667pt;}
.x18{left:197.386655pt;}
.x17{left:215.626655pt;}
.x36{left:221.386667pt;}
.x2b{left:227.466655pt;}
.x32{left:231.546655pt;}
.x2c{left:234.746655pt;}
.x48{left:251.226667pt;}
.x1c{left:283.146667pt;}
.x46{left:284.746655pt;}
.x1d{left:292.186667pt;}
.xf{left:300.266655pt;}
.x1e{left:332.506667pt;}
.x2d{left:340.666655pt;}
.x1f{left:343.146667pt;}
.x2e{left:347.946655pt;}
.x38{left:351.066667pt;}
.x49{left:371.706667pt;}
.x10{left:374.586655pt;}
.x11{left:378.746655pt;}
.x3a{left:382.106667pt;}
.x12{left:392.346655pt;}
.x13{left:396.426655pt;}
.x4a{left:402.586667pt;}
.xb{left:408.026655pt;}
.xe{left:412.586655pt;}
.x19{left:413.546655pt;}
.x30{left:425.093321pt;}
.x3b{left:426.533333pt;}
.x4b{left:446.933333pt;}
.x2f{left:451.333321pt;}
.x20{left:455.013333pt;}
.x21{left:465.733333pt;}
.x3c{left:505.733333pt;}
.x14{left:517.413321pt;}
.x15{left:521.493321pt;}
.x4c{left:525.653333pt;}
.x16{left:526.853321pt;}
.x1a{left:578.373333pt;}
.x3e{left:587.733333pt;}
.x4d{left:606.533333pt;}
.x3f{left:634.533333pt;}
.x4e{left:653.253333pt;}
.xa{left:722.160000pt;}
}




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