
    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_f27f07100689314b4891e94e.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d6569d66d249ea2f04fce83d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_ea2cc7a9678888015e4042f3.woff')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_7f9376cd574dd7b004bcc97e.woff')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_41c45893d90abb55b9620a33.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_11192acb79bf6025f3445be7.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1459b094a89c350b79186ebc.woff')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_f2d4a98f86a54135a48eecbf.woff')format("woff");}.ff8{font-family:ff8;line-height:0.970215;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff9{font-family:ff9;line-height:0.750000;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_38668e00bec549acdc1ffc2a.woff')format("woff");}.ffa{font-family:ffa;line-height:0.944336;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_897337c9d9851a69015bc3d3.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_baaaeb1c6035c198136eab24.woff')format("woff");}.ffc{font-family:ffc;line-height:1.172852;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_4a4af8322aaa83584089ea97.woff')format("woff");}.ffd{font-family:ffd;line-height:0.934082;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_847d241ae4bb3facb510473b.woff')format("woff");}.ffe{font-family:ffe;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_b2c8cd1a84b3727508c66d78.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_92ded2570c02bf4e77f26a21.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_c029b7a5089a16686f5cd696.woff')format("woff");}.ff11{font-family:ff11;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff13{font-family:ff13;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;}
.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:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.lsc{letter-spacing:-2.724000px;}
.lsf{letter-spacing:-1.482000px;}
.lsd{letter-spacing:-0.792000px;}
.lsb{letter-spacing:-0.378000px;}
.ls10{letter-spacing:-0.256200px;}
.lsa{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.090000px;}
.ls5{letter-spacing:0.099000px;}
.ls6{letter-spacing:0.219000px;}
.ls16{letter-spacing:1.026000px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:1.476000px;}
.ls11{letter-spacing:1.740000px;}
.ls7{letter-spacing:1.842000px;}
.ls4{letter-spacing:1.906500px;}
.ls3{letter-spacing:1.966500px;}
.ls2{letter-spacing:2.034000px;}
.ls13{letter-spacing:2.164500px;}
.ls12{letter-spacing:2.250000px;}
.ls8{letter-spacing:2.322000px;}
.ls9{letter-spacing:4.779000px;}
.ls18{letter-spacing:15.387000px;}
.lse{letter-spacing:42.387000px;}
.ls17{letter-spacing:46.887000px;}
.ls15{letter-spacing:64.887000px;}
.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;}
}
.wsb{word-spacing:-16.875000px;}
.wsc{word-spacing:-16.789500px;}
.wsa{word-spacing:-16.365000px;}
.ws3{word-spacing:-16.146000px;}
.ws2{word-spacing:-15.354000px;}
.ws6{word-spacing:-15.063000px;}
.ws7{word-spacing:-14.625000px;}
.ws5{word-spacing:-13.221000px;}
.ws9{word-spacing:-13.143000px;}
.ws1{word-spacing:-12.531000px;}
.ws0{word-spacing:-11.826000px;}
.ws4{word-spacing:-8.136000px;}
.ws8{word-spacing:0.000000px;}
._a{margin-left:-11.463000px;}
._9{margin-left:-9.994500px;}
._c{margin-left:-8.131500px;}
._19{margin-left:-6.871500px;}
._8{margin-left:-5.392200px;}
._15{margin-left:-4.087500px;}
._2{margin-left:-2.808000px;}
._1{margin-left:-1.188000px;}
._0{width:1.944000px;}
._6{width:3.091500px;}
._b{width:4.192500px;}
._18{width:5.242500px;}
._3{width:6.360000px;}
._5{width:8.100000px;}
._d{width:9.264000px;}
._7{width:10.414500px;}
._1e{width:11.643000px;}
._1d{width:13.287000px;}
._10{width:14.731500px;}
._4{width:16.452000px;}
._1c{width:17.652000px;}
._f{width:18.756000px;}
._1f{width:20.803500px;}
._17{width:22.369500px;}
._e{width:23.418000px;}
._14{width:26.208000px;}
._13{width:27.832500px;}
._11{width:30.951000px;}
._16{width:32.526000px;}
._12{width:36.405000px;}
._1a{width:40.306500px;}
._1b{width:41.428500px;}
.fc7{color:transparent;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc6{color:rgb(64,64,64);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:40.500000px;}
.fs3{font-size:49.500000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:58.500000px;}
.fs1{font-size:67.500000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y1b{bottom:1.125000px;}
.y3{bottom:3.375000px;}
.ybf{bottom:3.420000px;}
.yd3{bottom:4.485000px;}
.y19{bottom:4.500000px;}
.y4a{bottom:4.515000px;}
.yae{bottom:4.530000px;}
.y9b{bottom:4.545000px;}
.y4d{bottom:10.125000px;}
.ye{bottom:11.295000px;}
.y1c{bottom:12.375000px;}
.yc{bottom:13.500000px;}
.y4{bottom:18.000000px;}
.ya6{bottom:18.015000px;}
.y9f{bottom:18.030000px;}
.ya2{bottom:18.045000px;}
.y2{bottom:20.250000px;}
.y4e{bottom:21.420000px;}
.y49{bottom:22.545000px;}
.y4c{bottom:24.795000px;}
.y18{bottom:28.125000px;}
.y5{bottom:30.375000px;}
.yb{bottom:30.405000px;}
.y48{bottom:40.545000px;}
.y17{bottom:45.045000px;}
.ya{bottom:46.155000px;}
.y1{bottom:51.787500px;}
.y47{bottom:59.670000px;}
.y16{bottom:60.795000px;}
.y9{bottom:73.185000px;}
.y15{bottom:77.700000px;}
.y46{bottom:77.715000px;}
.y14{bottom:87.825000px;}
.y8{bottom:93.435000px;}
.y45{bottom:95.700000px;}
.ybd{bottom:100.200000px;}
.y53{bottom:102.450000px;}
.y13{bottom:105.825000px;}
.y90{bottom:109.200000px;}
.y7{bottom:110.355000px;}
.yf7{bottom:113.700000px;}
.y44{bottom:113.745000px;}
.ybc{bottom:118.237500px;}
.y52{bottom:119.362500px;}
.y12{bottom:124.995000px;}
.y8f{bottom:126.112500px;}
.yf6{bottom:130.612500px;}
.y43{bottom:132.870000px;}
.y51{bottom:136.237500px;}
.ybb{bottom:139.612500px;}
.y8e{bottom:142.987500px;}
.yf5{bottom:147.487500px;}
.y11{bottom:150.870000px;}
.y42{bottom:150.900000px;}
.y50{bottom:154.245000px;}
.yba{bottom:156.480000px;}
.y8d{bottom:161.025000px;}
.yf4{bottom:165.525000px;}
.y41{bottom:168.915000px;}
.y4f{bottom:171.150000px;}
.yb9{bottom:174.525000px;}
.y10{bottom:175.650000px;}
.y8c{bottom:177.900000px;}
.yf3{bottom:182.400000px;}
.y4b{bottom:184.650000px;}
.y40{bottom:188.025000px;}
.yb8{bottom:191.400000px;}
.y8b{bottom:194.775000px;}
.yf2{bottom:199.275000px;}
.y3f{bottom:206.070000px;}
.yb7{bottom:208.320000px;}
.y8a{bottom:212.820000px;}
.yf1{bottom:217.320000px;}
.y1d{bottom:220.680000px;}
.y3e{bottom:224.070000px;}
.y115{bottom:225.195000px;}
.yb6{bottom:226.320000px;}
.y89{bottom:229.695000px;}
.yf0{bottom:234.195000px;}
.y3d{bottom:242.115000px;}
.yb5{bottom:243.225000px;}
.y88{bottom:246.600000px;}
.yef{bottom:251.100000px;}
.yb4{bottom:260.100000px;}
.y3c{bottom:261.225000px;}
.y87{bottom:264.600000px;}
.yee{bottom:269.100000px;}
.y114{bottom:276.975000px;}
.yb3{bottom:278.100000px;}
.y3b{bottom:279.270000px;}
.y86{bottom:281.475000px;}
.yed{bottom:286.005000px;}
.yb2{bottom:291.630000px;}
.y113{bottom:295.020000px;}
.y3a{bottom:297.270000px;}
.y85{bottom:298.395000px;}
.yec{bottom:302.880000px;}
.yb1{bottom:309.630000px;}
.y112{bottom:311.895000px;}
.y39{bottom:315.315000px;}
.y84{bottom:316.380000px;}
.yeb{bottom:320.880000px;}
.yb0{bottom:327.675000px;}
.y111{bottom:328.800000px;}
.y83{bottom:333.300000px;}
.y2b{bottom:334.425000px;}
.yea{bottom:337.800000px;}
.yaf{bottom:345.675000px;}
.y110{bottom:346.800000px;}
.y82{bottom:350.175000px;}
.y2a{bottom:350.190000px;}
.y38{bottom:352.440000px;}
.ye9{bottom:354.675000px;}
.yad{bottom:363.675000px;}
.y81{bottom:368.205000px;}
.y29{bottom:368.220000px;}
.y37{bottom:370.470000px;}
.ye8{bottom:372.720000px;}
.y10f{bottom:380.580000px;}
.y80{bottom:385.080000px;}
.y28{bottom:386.220000px;}
.y36{bottom:389.595000px;}
.y10e{bottom:398.580000px;}
.y7f{bottom:401.955000px;}
.yac{bottom:403.095000px;}
.y27{bottom:404.265000px;}
.ye7{bottom:406.470000px;}
.y35{bottom:407.640000px;}
.y10d{bottom:415.500000px;}
.y7e{bottom:420.000000px;}
.y26{bottom:423.390000px;}
.ye6{bottom:424.500000px;}
.y34{bottom:425.640000px;}
.y10c{bottom:432.375000px;}
.y7d{bottom:436.875000px;}
.yab{bottom:438.000000px;}
.y25{bottom:440.295000px;}
.ye5{bottom:441.375000px;}
.y33{bottom:443.670000px;}
.y10b{bottom:450.375000px;}
.y7c{bottom:453.795000px;}
.yaa{bottom:454.905000px;}
.ye4{bottom:458.280000px;}
.y24{bottom:458.295000px;}
.y32{bottom:462.795000px;}
.y10a{bottom:467.295000px;}
.y7b{bottom:471.780000px;}
.y23{bottom:475.170000px;}
.ye3{bottom:476.295000px;}
.y31{bottom:480.795000px;}
.y109{bottom:484.170000px;}
.y7a{bottom:488.655000px;}
.ya9{bottom:489.795000px;}
.y22{bottom:493.200000px;}
.y30{bottom:498.840000px;}
.y108{bottom:502.200000px;}
.ya8{bottom:503.325000px;}
.y79{bottom:505.575000px;}
.y21{bottom:510.075000px;}
.y2f{bottom:517.950000px;}
.y107{bottom:519.075000px;}
.ya7{bottom:521.325000px;}
.y78{bottom:523.575000px;}
.ye2{bottom:528.075000px;}
.y20{bottom:530.370000px;}
.y2e{bottom:535.995000px;}
.ya5{bottom:539.355000px;}
.y77{bottom:540.495000px;}
.ye1{bottom:544.980000px;}
.y2d{bottom:553.995000px;}
.ya4{bottom:557.355000px;}
.y1f{bottom:557.370000px;}
.ye0{bottom:561.855000px;}
.y106{bottom:570.870000px;}
.y2c{bottom:572.025000px;}
.y76{bottom:575.355000px;}
.y1e{bottom:575.400000px;}
.ydf{bottom:579.900000px;}
.y105{bottom:587.775000px;}
.y75{bottom:592.275000px;}
.ya3{bottom:593.400000px;}
.yde{bottom:596.775000px;}
.y104{bottom:605.775000px;}
.y74{bottom:609.150000px;}
.ya1{bottom:611.400000px;}
.ydd{bottom:613.650000px;}
.y103{bottom:622.695000px;}
.y73{bottom:627.195000px;}
.ya0{bottom:629.445000px;}
.ydc{bottom:631.695000px;}
.y102{bottom:639.570000px;}
.y72{bottom:644.070000px;}
.y9e{bottom:647.445000px;}
.ydb{bottom:648.570000px;}
.y101{bottom:657.570000px;}
.y71{bottom:660.975000px;}
.y9d{bottom:665.475000px;}
.y100{bottom:674.475000px;}
.y70{bottom:678.975000px;}
.y9c{bottom:683.475000px;}
.yff{bottom:691.350000px;}
.y6f{bottom:695.850000px;}
.yda{bottom:700.350000px;}
.y9a{bottom:701.475000px;}
.yfe{bottom:709.395000px;}
.y6e{bottom:712.770000px;}
.yd9{bottom:717.255000px;}
.y99{bottom:719.505000px;}
.yfd{bottom:726.270000px;}
.y6d{bottom:730.755000px;}
.yd8{bottom:735.255000px;}
.y98{bottom:737.505000px;}
.yfc{bottom:743.145000px;}
.y6c{bottom:747.675000px;}
.yd7{bottom:748.800000px;}
.y97{bottom:755.550000px;}
.yfb{bottom:761.175000px;}
.y6b{bottom:764.550000px;}
.yd6{bottom:766.800000px;}
.y96{bottom:773.550000px;}
.yfa{bottom:780.300000px;}
.y6a{bottom:782.550000px;}
.yd5{bottom:784.800000px;}
.y95{bottom:791.580000px;}
.yf9{bottom:798.330000px;}
.y69{bottom:799.455000px;}
.yd4{bottom:802.830000px;}
.y1a{bottom:807.330000px;}
.y94{bottom:809.580000px;}
.yf8{bottom:815.205000px;}
.y68{bottom:816.330000px;}
.yd2{bottom:820.845000px;}
.y93{bottom:827.625000px;}
.y67{bottom:834.375000px;}
.yf{bottom:837.750000px;}
.yd1{bottom:838.875000px;}
.y92{bottom:845.625000px;}
.y66{bottom:851.250000px;}
.yd0{bottom:861.375000px;}
.y91{bottom:863.625000px;}
.y65{bottom:868.125000px;}
.ycf{bottom:878.295000px;}
.y64{bottom:886.170000px;}
.yce{bottom:895.170000px;}
.y63{bottom:903.045000px;}
.ycd{bottom:913.200000px;}
.y62{bottom:919.950000px;}
.ycc{bottom:930.075000px;}
.y61{bottom:937.950000px;}
.ycb{bottom:946.950000px;}
.y60{bottom:954.870000px;}
.yca{bottom:964.995000px;}
.y5f{bottom:971.745000px;}
.yc9{bottom:981.870000px;}
.y5e{bottom:989.745000px;}
.yc8{bottom:998.775000px;}
.y5d{bottom:1006.650000px;}
.yc7{bottom:1013.400000px;}
.y5c{bottom:1023.525000px;}
.yd{bottom:1028.025000px;}
.yc6{bottom:1031.400000px;}
.y5b{bottom:1041.570000px;}
.yc5{bottom:1049.445000px;}
.y6{bottom:1053.945000px;}
.y5a{bottom:1058.445000px;}
.yc4{bottom:1067.445000px;}
.y59{bottom:1075.320000px;}
.yc3{bottom:1085.475000px;}
.y58{bottom:1093.350000px;}
.yc2{bottom:1103.475000px;}
.y57{bottom:1110.225000px;}
.yc1{bottom:1121.505000px;}
.y56{bottom:1127.130000px;}
.yc0{bottom:1139.505000px;}
.y55{bottom:1145.130000px;}
.ybe{bottom:1157.505000px;}
.y54{bottom:1162.050000px;}
.h20{height:16.875000px;}
.h21{height:16.912500px;}
.h1f{height:18.000000px;}
.h22{height:18.022500px;}
.h1e{height:18.037500px;}
.hc{height:25.912500px;}
.h13{height:29.953125px;}
.h14{height:30.412500px;}
.h2{height:32.662500px;}
.h12{height:35.806641px;}
.h1a{height:36.037500px;}
.h9{height:37.125000px;}
.h19{height:39.832031px;}
.h1c{height:41.275635px;}
.h1b{height:42.303955px;}
.h1d{height:42.589600px;}
.he{height:43.075195px;}
.hb{height:43.875000px;}
.h18{height:47.074219px;}
.h17{height:49.234131px;}
.h4{height:53.709961px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h10{height:58.185791px;}
.h11{height:59.899658px;}
.hf{height:64.237500px;}
.h6{height:67.137451px;}
.h5{height:69.114990px;}
.h8{height:71.613281px;}
.h15{height:73.722656px;}
.h7{height:121.612500px;}
.hd{height:190.275000px;}
.h16{height:586.650000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w16{width:41.662500px;}
.w2{width:73.237500px;}
.w13{width:82.237500px;}
.we{width:84.487500px;}
.w15{width:85.612500px;}
.w14{width:94.612500px;}
.wa{width:100.275000px;}
.w19{width:110.400000px;}
.w4{width:152.055000px;}
.wc{width:156.555000px;}
.wb{width:180.225000px;}
.w17{width:180.270000px;}
.w11{width:190.350000px;}
.w10{width:199.395000px;}
.w18{width:214.005000px;}
.w9{width:216.270000px;}
.w7{width:224.145000px;}
.w12{width:255.720000px;}
.wf{width:281.625000px;}
.wd{width:361.575000px;}
.w8{width:508.050000px;}
.w5{width:580.125000px;}
.w1{width:658.950000px;}
.w6{width:732.195000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:6.750000px;}
.x4{left:7.875000px;}
.x2{left:9.000000px;}
.x14{left:12.405000px;}
.xd{left:42.787500px;}
.x1{left:81.112500px;}
.x16{left:82.237500px;}
.x10{left:92.362500px;}
.xf{left:93.487500px;}
.x5{left:97.987500px;}
.x15{left:108.149987px;}
.x11{left:152.062500px;}
.xe{left:165.562500px;}
.x1c{left:171.224987px;}
.x23{left:177.975000px;}
.x22{left:188.099987px;}
.x12{left:214.012500px;}
.x6{left:233.175000px;}
.x24{left:263.595000px;}
.x9{left:273.705000px;}
.x1f{left:281.625000px;}
.x17{left:298.500000px;}
.x13{left:305.250000px;}
.x7{left:332.295000px;}
.xb{left:348.075000px;}
.x8{left:351.450000px;}
.xc{left:364.957500px;}
.x27{left:397.649987px;}
.x18{left:399.900000px;}
.xa{left:437.055000px;}
.x1d{left:444.945000px;}
.x20{left:473.100000px;}
.x25{left:486.645000px;}
.x1e{left:530.550000px;}
.x1a{left:581.250000px;}
.x26{left:701.775000px;}
.x21{left:729.945000px;}
.x1b{left:738.945000px;}
.x3{left:740.070000px;}
@media print{
.v2{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.lsc{letter-spacing:-2.421333pt;}
.lsf{letter-spacing:-1.317333pt;}
.lsd{letter-spacing:-0.704000pt;}
.lsb{letter-spacing:-0.336000pt;}
.ls10{letter-spacing:-0.227733pt;}
.lsa{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.080000pt;}
.ls5{letter-spacing:0.088000pt;}
.ls6{letter-spacing:0.194667pt;}
.ls16{letter-spacing:0.912000pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.312000pt;}
.ls11{letter-spacing:1.546667pt;}
.ls7{letter-spacing:1.637333pt;}
.ls4{letter-spacing:1.694667pt;}
.ls3{letter-spacing:1.748000pt;}
.ls2{letter-spacing:1.808000pt;}
.ls13{letter-spacing:1.924000pt;}
.ls12{letter-spacing:2.000000pt;}
.ls8{letter-spacing:2.064000pt;}
.ls9{letter-spacing:4.248000pt;}
.ls18{letter-spacing:13.677333pt;}
.lse{letter-spacing:37.677333pt;}
.ls17{letter-spacing:41.677333pt;}
.ls15{letter-spacing:57.677333pt;}
.wsb{word-spacing:-15.000000pt;}
.wsc{word-spacing:-14.924000pt;}
.wsa{word-spacing:-14.546667pt;}
.ws3{word-spacing:-14.352000pt;}
.ws2{word-spacing:-13.648000pt;}
.ws6{word-spacing:-13.389333pt;}
.ws7{word-spacing:-13.000000pt;}
.ws5{word-spacing:-11.752000pt;}
.ws9{word-spacing:-11.682667pt;}
.ws1{word-spacing:-11.138667pt;}
.ws0{word-spacing:-10.512000pt;}
.ws4{word-spacing:-7.232000pt;}
.ws8{word-spacing:0.000000pt;}
._a{margin-left:-10.189333pt;}
._9{margin-left:-8.884000pt;}
._c{margin-left:-7.228000pt;}
._19{margin-left:-6.108000pt;}
._8{margin-left:-4.793067pt;}
._15{margin-left:-3.633333pt;}
._2{margin-left:-2.496000pt;}
._1{margin-left:-1.056000pt;}
._0{width:1.728000pt;}
._6{width:2.748000pt;}
._b{width:3.726667pt;}
._18{width:4.660000pt;}
._3{width:5.653333pt;}
._5{width:7.200000pt;}
._d{width:8.234667pt;}
._7{width:9.257333pt;}
._1e{width:10.349333pt;}
._1d{width:11.810667pt;}
._10{width:13.094667pt;}
._4{width:14.624000pt;}
._1c{width:15.690667pt;}
._f{width:16.672000pt;}
._1f{width:18.492000pt;}
._17{width:19.884000pt;}
._e{width:20.816000pt;}
._14{width:23.296000pt;}
._13{width:24.740000pt;}
._11{width:27.512000pt;}
._16{width:28.912000pt;}
._12{width:32.360000pt;}
._1a{width:35.828000pt;}
._1b{width:36.825333pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:36.000000pt;}
.fs3{font-size:44.000000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:52.000000pt;}
.fs1{font-size:60.000000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:1.000000pt;}
.y3{bottom:3.000000pt;}
.ybf{bottom:3.040000pt;}
.yd3{bottom:3.986667pt;}
.y19{bottom:4.000000pt;}
.y4a{bottom:4.013333pt;}
.yae{bottom:4.026667pt;}
.y9b{bottom:4.040000pt;}
.y4d{bottom:9.000000pt;}
.ye{bottom:10.040000pt;}
.y1c{bottom:11.000000pt;}
.yc{bottom:12.000000pt;}
.y4{bottom:16.000000pt;}
.ya6{bottom:16.013333pt;}
.y9f{bottom:16.026667pt;}
.ya2{bottom:16.040000pt;}
.y2{bottom:18.000000pt;}
.y4e{bottom:19.040000pt;}
.y49{bottom:20.040000pt;}
.y4c{bottom:22.040000pt;}
.y18{bottom:25.000000pt;}
.y5{bottom:27.000000pt;}
.yb{bottom:27.026667pt;}
.y48{bottom:36.040000pt;}
.y17{bottom:40.040000pt;}
.ya{bottom:41.026667pt;}
.y1{bottom:46.033333pt;}
.y47{bottom:53.040000pt;}
.y16{bottom:54.040000pt;}
.y9{bottom:65.053333pt;}
.y15{bottom:69.066667pt;}
.y46{bottom:69.080000pt;}
.y14{bottom:78.066667pt;}
.y8{bottom:83.053333pt;}
.y45{bottom:85.066667pt;}
.ybd{bottom:89.066667pt;}
.y53{bottom:91.066667pt;}
.y13{bottom:94.066667pt;}
.y90{bottom:97.066667pt;}
.y7{bottom:98.093333pt;}
.yf7{bottom:101.066667pt;}
.y44{bottom:101.106667pt;}
.ybc{bottom:105.100000pt;}
.y52{bottom:106.100000pt;}
.y12{bottom:111.106667pt;}
.y8f{bottom:112.100000pt;}
.yf6{bottom:116.100000pt;}
.y43{bottom:118.106667pt;}
.y51{bottom:121.100000pt;}
.ybb{bottom:124.100000pt;}
.y8e{bottom:127.100000pt;}
.yf5{bottom:131.100000pt;}
.y11{bottom:134.106667pt;}
.y42{bottom:134.133333pt;}
.y50{bottom:137.106667pt;}
.yba{bottom:139.093333pt;}
.y8d{bottom:143.133333pt;}
.yf4{bottom:147.133333pt;}
.y41{bottom:150.146667pt;}
.y4f{bottom:152.133333pt;}
.yb9{bottom:155.133333pt;}
.y10{bottom:156.133333pt;}
.y8c{bottom:158.133333pt;}
.yf3{bottom:162.133333pt;}
.y4b{bottom:164.133333pt;}
.y40{bottom:167.133333pt;}
.yb8{bottom:170.133333pt;}
.y8b{bottom:173.133333pt;}
.yf2{bottom:177.133333pt;}
.y3f{bottom:183.173333pt;}
.yb7{bottom:185.173333pt;}
.y8a{bottom:189.173333pt;}
.yf1{bottom:193.173333pt;}
.y1d{bottom:196.160000pt;}
.y3e{bottom:199.173333pt;}
.y115{bottom:200.173333pt;}
.yb6{bottom:201.173333pt;}
.y89{bottom:204.173333pt;}
.yf0{bottom:208.173333pt;}
.y3d{bottom:215.213333pt;}
.yb5{bottom:216.200000pt;}
.y88{bottom:219.200000pt;}
.yef{bottom:223.200000pt;}
.yb4{bottom:231.200000pt;}
.y3c{bottom:232.200000pt;}
.y87{bottom:235.200000pt;}
.yee{bottom:239.200000pt;}
.y114{bottom:246.200000pt;}
.yb3{bottom:247.200000pt;}
.y3b{bottom:248.240000pt;}
.y86{bottom:250.200000pt;}
.yed{bottom:254.226667pt;}
.yb2{bottom:259.226667pt;}
.y113{bottom:262.240000pt;}
.y3a{bottom:264.240000pt;}
.y85{bottom:265.240000pt;}
.yec{bottom:269.226667pt;}
.yb1{bottom:275.226667pt;}
.y112{bottom:277.240000pt;}
.y39{bottom:280.280000pt;}
.y84{bottom:281.226667pt;}
.yeb{bottom:285.226667pt;}
.yb0{bottom:291.266667pt;}
.y111{bottom:292.266667pt;}
.y83{bottom:296.266667pt;}
.y2b{bottom:297.266667pt;}
.yea{bottom:300.266667pt;}
.yaf{bottom:307.266667pt;}
.y110{bottom:308.266667pt;}
.y82{bottom:311.266667pt;}
.y2a{bottom:311.280000pt;}
.y38{bottom:313.280000pt;}
.ye9{bottom:315.266667pt;}
.yad{bottom:323.266667pt;}
.y81{bottom:327.293333pt;}
.y29{bottom:327.306667pt;}
.y37{bottom:329.306667pt;}
.ye8{bottom:331.306667pt;}
.y10f{bottom:338.293333pt;}
.y80{bottom:342.293333pt;}
.y28{bottom:343.306667pt;}
.y36{bottom:346.306667pt;}
.y10e{bottom:354.293333pt;}
.y7f{bottom:357.293333pt;}
.yac{bottom:358.306667pt;}
.y27{bottom:359.346667pt;}
.ye7{bottom:361.306667pt;}
.y35{bottom:362.346667pt;}
.y10d{bottom:369.333333pt;}
.y7e{bottom:373.333333pt;}
.y26{bottom:376.346667pt;}
.ye6{bottom:377.333333pt;}
.y34{bottom:378.346667pt;}
.y10c{bottom:384.333333pt;}
.y7d{bottom:388.333333pt;}
.yab{bottom:389.333333pt;}
.y25{bottom:391.373333pt;}
.ye5{bottom:392.333333pt;}
.y33{bottom:394.373333pt;}
.y10b{bottom:400.333333pt;}
.y7c{bottom:403.373333pt;}
.yaa{bottom:404.360000pt;}
.ye4{bottom:407.360000pt;}
.y24{bottom:407.373333pt;}
.y32{bottom:411.373333pt;}
.y10a{bottom:415.373333pt;}
.y7b{bottom:419.360000pt;}
.y23{bottom:422.373333pt;}
.ye3{bottom:423.373333pt;}
.y31{bottom:427.373333pt;}
.y109{bottom:430.373333pt;}
.y7a{bottom:434.360000pt;}
.ya9{bottom:435.373333pt;}
.y22{bottom:438.400000pt;}
.y30{bottom:443.413333pt;}
.y108{bottom:446.400000pt;}
.ya8{bottom:447.400000pt;}
.y79{bottom:449.400000pt;}
.y21{bottom:453.400000pt;}
.y2f{bottom:460.400000pt;}
.y107{bottom:461.400000pt;}
.ya7{bottom:463.400000pt;}
.y78{bottom:465.400000pt;}
.ye2{bottom:469.400000pt;}
.y20{bottom:471.440000pt;}
.y2e{bottom:476.440000pt;}
.ya5{bottom:479.426667pt;}
.y77{bottom:480.440000pt;}
.ye1{bottom:484.426667pt;}
.y2d{bottom:492.440000pt;}
.ya4{bottom:495.426667pt;}
.y1f{bottom:495.440000pt;}
.ye0{bottom:499.426667pt;}
.y106{bottom:507.440000pt;}
.y2c{bottom:508.466667pt;}
.y76{bottom:511.426667pt;}
.y1e{bottom:511.466667pt;}
.ydf{bottom:515.466667pt;}
.y105{bottom:522.466667pt;}
.y75{bottom:526.466667pt;}
.ya3{bottom:527.466667pt;}
.yde{bottom:530.466667pt;}
.y104{bottom:538.466667pt;}
.y74{bottom:541.466667pt;}
.ya1{bottom:543.466667pt;}
.ydd{bottom:545.466667pt;}
.y103{bottom:553.506667pt;}
.y73{bottom:557.506667pt;}
.ya0{bottom:559.506667pt;}
.ydc{bottom:561.506667pt;}
.y102{bottom:568.506667pt;}
.y72{bottom:572.506667pt;}
.y9e{bottom:575.506667pt;}
.ydb{bottom:576.506667pt;}
.y101{bottom:584.506667pt;}
.y71{bottom:587.533333pt;}
.y9d{bottom:591.533333pt;}
.y100{bottom:599.533333pt;}
.y70{bottom:603.533333pt;}
.y9c{bottom:607.533333pt;}
.yff{bottom:614.533333pt;}
.y6f{bottom:618.533333pt;}
.yda{bottom:622.533333pt;}
.y9a{bottom:623.533333pt;}
.yfe{bottom:630.573333pt;}
.y6e{bottom:633.573333pt;}
.yd9{bottom:637.560000pt;}
.y99{bottom:639.560000pt;}
.yfd{bottom:645.573333pt;}
.y6d{bottom:649.560000pt;}
.yd8{bottom:653.560000pt;}
.y98{bottom:655.560000pt;}
.yfc{bottom:660.573333pt;}
.y6c{bottom:664.600000pt;}
.yd7{bottom:665.600000pt;}
.y97{bottom:671.600000pt;}
.yfb{bottom:676.600000pt;}
.y6b{bottom:679.600000pt;}
.yd6{bottom:681.600000pt;}
.y96{bottom:687.600000pt;}
.yfa{bottom:693.600000pt;}
.y6a{bottom:695.600000pt;}
.yd5{bottom:697.600000pt;}
.y95{bottom:703.626667pt;}
.yf9{bottom:709.626667pt;}
.y69{bottom:710.626667pt;}
.yd4{bottom:713.626667pt;}
.y1a{bottom:717.626667pt;}
.y94{bottom:719.626667pt;}
.yf8{bottom:724.626667pt;}
.y68{bottom:725.626667pt;}
.yd2{bottom:729.640000pt;}
.y93{bottom:735.666667pt;}
.y67{bottom:741.666667pt;}
.yf{bottom:744.666667pt;}
.yd1{bottom:745.666667pt;}
.y92{bottom:751.666667pt;}
.y66{bottom:756.666667pt;}
.yd0{bottom:765.666667pt;}
.y91{bottom:767.666667pt;}
.y65{bottom:771.666667pt;}
.ycf{bottom:780.706667pt;}
.y64{bottom:787.706667pt;}
.yce{bottom:795.706667pt;}
.y63{bottom:802.706667pt;}
.ycd{bottom:811.733333pt;}
.y62{bottom:817.733333pt;}
.ycc{bottom:826.733333pt;}
.y61{bottom:833.733333pt;}
.ycb{bottom:841.733333pt;}
.y60{bottom:848.773333pt;}
.yca{bottom:857.773333pt;}
.y5f{bottom:863.773333pt;}
.yc9{bottom:872.773333pt;}
.y5e{bottom:879.773333pt;}
.yc8{bottom:887.800000pt;}
.y5d{bottom:894.800000pt;}
.yc7{bottom:900.800000pt;}
.y5c{bottom:909.800000pt;}
.yd{bottom:913.800000pt;}
.yc6{bottom:916.800000pt;}
.y5b{bottom:925.840000pt;}
.yc5{bottom:932.840000pt;}
.y6{bottom:936.840000pt;}
.y5a{bottom:940.840000pt;}
.yc4{bottom:948.840000pt;}
.y59{bottom:955.840000pt;}
.yc3{bottom:964.866667pt;}
.y58{bottom:971.866667pt;}
.yc2{bottom:980.866667pt;}
.y57{bottom:986.866667pt;}
.yc1{bottom:996.893333pt;}
.y56{bottom:1001.893333pt;}
.yc0{bottom:1012.893333pt;}
.y55{bottom:1017.893333pt;}
.ybe{bottom:1028.893333pt;}
.y54{bottom:1032.933333pt;}
.h20{height:15.000000pt;}
.h21{height:15.033333pt;}
.h1f{height:16.000000pt;}
.h22{height:16.020000pt;}
.h1e{height:16.033333pt;}
.hc{height:23.033333pt;}
.h13{height:26.625000pt;}
.h14{height:27.033333pt;}
.h2{height:29.033333pt;}
.h12{height:31.828125pt;}
.h1a{height:32.033333pt;}
.h9{height:33.000000pt;}
.h19{height:35.406250pt;}
.h1c{height:36.689453pt;}
.h1b{height:37.603516pt;}
.h1d{height:37.857422pt;}
.he{height:38.289062pt;}
.hb{height:39.000000pt;}
.h18{height:41.843750pt;}
.h17{height:43.763672pt;}
.h4{height:47.742188pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h10{height:51.720703pt;}
.h11{height:53.244141pt;}
.hf{height:57.100000pt;}
.h6{height:59.677734pt;}
.h5{height:61.435547pt;}
.h8{height:63.656250pt;}
.h15{height:65.531250pt;}
.h7{height:108.100000pt;}
.hd{height:169.133333pt;}
.h16{height:521.466667pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w16{width:37.033333pt;}
.w2{width:65.100000pt;}
.w13{width:73.100000pt;}
.we{width:75.100000pt;}
.w15{width:76.100000pt;}
.w14{width:84.100000pt;}
.wa{width:89.133333pt;}
.w19{width:98.133333pt;}
.w4{width:135.160000pt;}
.wc{width:139.160000pt;}
.wb{width:160.200000pt;}
.w17{width:160.240000pt;}
.w11{width:169.200000pt;}
.w10{width:177.240000pt;}
.w18{width:190.226667pt;}
.w9{width:192.240000pt;}
.w7{width:199.240000pt;}
.w12{width:227.306667pt;}
.wf{width:250.333333pt;}
.wd{width:321.400000pt;}
.w8{width:451.600000pt;}
.w5{width:515.666667pt;}
.w1{width:585.733333pt;}
.w6{width:650.840000pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:6.000000pt;}
.x4{left:7.000000pt;}
.x2{left:8.000000pt;}
.x14{left:11.026667pt;}
.xd{left:38.033333pt;}
.x1{left:72.100000pt;}
.x16{left:73.100000pt;}
.x10{left:82.100000pt;}
.xf{left:83.100000pt;}
.x5{left:87.100000pt;}
.x15{left:96.133322pt;}
.x11{left:135.166667pt;}
.xe{left:147.166667pt;}
.x1c{left:152.199988pt;}
.x23{left:158.200000pt;}
.x22{left:167.199988pt;}
.x12{left:190.233333pt;}
.x6{left:207.266667pt;}
.x24{left:234.306667pt;}
.x9{left:243.293333pt;}
.x1f{left:250.333333pt;}
.x17{left:265.333333pt;}
.x13{left:271.333333pt;}
.x7{left:295.373333pt;}
.xb{left:309.400000pt;}
.x8{left:312.400000pt;}
.xc{left:324.406667pt;}
.x27{left:353.466655pt;}
.x18{left:355.466667pt;}
.xa{left:388.493333pt;}
.x1d{left:395.506667pt;}
.x20{left:420.533333pt;}
.x25{left:432.573333pt;}
.x1e{left:471.600000pt;}
.x1a{left:516.666667pt;}
.x26{left:623.800000pt;}
.x21{left:648.840000pt;}
.x1b{left:656.840000pt;}
.x3{left:657.840000pt;}
}




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