
    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_4ba322a3601cb8a352f2dfcb.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_0d43a4562fe4c1f0214a47d4.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_adc7dfa380cd9b5e72bb5284.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_1b089777c537b2e06e4dc306.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_d0c7cbf13512a2d9c24f43b0.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_014c7e9aad8360bf67fa4078.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e28ea8b608fba66ac762a553.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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_e1ad915ea92c247cf44eb570.woff')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_1dd1636a67456a37ec0345c8.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_7037ebd3071ae2e1ded28dac.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_b3dccae993a96d0b60eb9bc3.woff')format("woff");}.ffc{font-family:ffc;line-height:0.923340;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_8db9da7545d992eae76a9162.woff')format("woff");}.ffd{font-family:ffd;line-height:0.923340;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_5419a29d4503343f1888f06c.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_26f6ca7d13cc3c85abed1464.woff')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;}
@font-face{font-family:ff10;src:url('chunks/assets/font_5e3704657d286a4d6eeb37ef.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_e1897bf49c6bcb8820bb5908.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_35560cb6d5bc02465fa6f467.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff13{font-family:ff13;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;}
.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:-15.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.ls13{letter-spacing:-2.400000px;}
.ls8{letter-spacing:-2.160000px;}
.ls18{letter-spacing:-1.200000px;}
.lsa{letter-spacing:-0.432000px;}
.ls15{letter-spacing:-0.412800px;}
.ls9{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.120000px;}
.ls6{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.060000px;}
.ls1{letter-spacing:0.138000px;}
.ls0{letter-spacing:0.222000px;}
.ls12{letter-spacing:0.240000px;}
.ls2{letter-spacing:0.322800px;}
.ls4{letter-spacing:0.600000px;}
.ls3{letter-spacing:0.840000px;}
.ls10{letter-spacing:1.800000px;}
.lsd{letter-spacing:3.000000px;}
.lsf{letter-spacing:3.060000px;}
.ls16{letter-spacing:3.600000px;}
.lsb{letter-spacing:4.200000px;}
.lse{letter-spacing:5.460000px;}
.ls5{letter-spacing:10.260000px;}
.ls17{letter-spacing:21.187200px;}
.lsc{letter-spacing:27.000000px;}
.ls14{letter-spacing:48.787200px;}
.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;}
}
.ws3{word-spacing:-21.360000px;}
.ws2{word-spacing:-16.560000px;}
.wsa{word-spacing:-15.240000px;}
.ws1{word-spacing:-15.054000px;}
.ws6{word-spacing:-15.000000px;}
.ws9{word-spacing:-14.880000px;}
.wsc{word-spacing:-14.400000px;}
.ws7{word-spacing:-13.560000px;}
.wsd{word-spacing:-13.200000px;}
.wsb{word-spacing:-12.600000px;}
.ws0{word-spacing:-12.426000px;}
.ws4{word-spacing:-8.949600px;}
.ws5{word-spacing:-8.136000px;}
.ws8{word-spacing:0.000000px;}
._1e{margin-left:-7.968000px;}
._19{margin-left:-6.828000px;}
._17{margin-left:-5.700000px;}
._4{margin-left:-4.662000px;}
._2{margin-left:-3.042000px;}
._0{margin-left:-1.242000px;}
._1{width:1.080000px;}
._3{width:2.886000px;}
._9{width:4.020000px;}
._10{width:5.100000px;}
._b{width:6.774000px;}
._a{width:8.100000px;}
._d{width:9.900000px;}
._14{width:11.400000px;}
._11{width:13.362000px;}
._1d{width:15.518400px;}
._5{width:17.100000px;}
._6{width:18.108000px;}
._c{width:19.140000px;}
._8{width:20.562000px;}
._7{width:21.900000px;}
._18{width:23.580000px;}
._f{width:25.260000px;}
._e{width:26.940000px;}
._13{width:27.942000px;}
._12{width:29.040000px;}
._15{width:41.076000px;}
._1c{width:49.761600px;}
._1a{width:53.452800px;}
._1b{width:55.468800px;}
._16{width:201.000000px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:39.600000px;}
.fs3{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:57.600000px;}
.fs4{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.000000px;}
.y7{bottom:-0.015000px;}
.y0{bottom:0.000000px;}
.y1b{bottom:0.300000px;}
.ya6{bottom:3.285000px;}
.y9d{bottom:3.300000px;}
.y9f{bottom:3.315000px;}
.y3{bottom:3.600000px;}
.y48{bottom:3.615000px;}
.y4d{bottom:3.900000px;}
.y19{bottom:4.800000px;}
.yc1{bottom:7.800000px;}
.yba{bottom:7.815000px;}
.ybf{bottom:7.845000px;}
.yf{bottom:9.600000px;}
.y4b{bottom:10.515000px;}
.y1c{bottom:12.585000px;}
.ycb{bottom:12.900000px;}
.yd{bottom:14.100000px;}
.y4{bottom:17.400000px;}
.y2{bottom:20.100000px;}
.y47{bottom:20.700000px;}
.y4c{bottom:22.200000px;}
.y4a{bottom:25.200000px;}
.y18{bottom:29.400000px;}
.yd8{bottom:30.000000px;}
.yc{bottom:30.300000px;}
.yca{bottom:30.345000px;}
.y5{bottom:32.400000px;}
.ybd{bottom:35.400000px;}
.y46{bottom:38.115000px;}
.yc5{bottom:40.500000px;}
.y17{bottom:45.900000px;}
.yb{bottom:46.800000px;}
.ydb{bottom:52.500000px;}
.ybc{bottom:52.545000px;}
.y1{bottom:54.937500px;}
.y45{bottom:55.215000px;}
.yc4{bottom:57.600000px;}
.y16{bottom:62.400000px;}
.y44{bottom:72.615000px;}
.ya{bottom:73.800000px;}
.yc3{bottom:75.000000px;}
.y15{bottom:75.300000px;}
.y43{bottom:89.700000px;}
.y9{bottom:93.300000px;}
.y14{bottom:93.600000px;}
.y9b{bottom:96.937500px;}
.y42{bottom:107.115000px;}
.y5c{bottom:109.837500px;}
.ye3{bottom:110.437500px;}
.y8{bottom:111.300000px;}
.y13{bottom:112.500000px;}
.y9a{bottom:114.937500px;}
.y2f{bottom:115.515000px;}
.y41{bottom:124.200000px;}
.y5b{bottom:126.937500px;}
.ye2{bottom:127.837500px;}
.y2e{bottom:130.845000px;}
.y99{bottom:132.937500px;}
.y12{bottom:138.300000px;}
.y40{bottom:141.645000px;}
.ye8{bottom:143.437500px;}
.y5a{bottom:144.337500px;}
.ye1{bottom:144.937500px;}
.y2d{bottom:148.545000px;}
.y98{bottom:150.930000px;}
.y3f{bottom:158.745000px;}
.ye7{bottom:159.630000px;}
.y59{bottom:161.430000px;}
.ye0{bottom:162.345000px;}
.y11{bottom:162.945000px;}
.y2c{bottom:165.945000px;}
.y97{bottom:168.930000px;}
.ye6{bottom:176.130000px;}
.y3e{bottom:176.145000px;}
.y58{bottom:178.530000px;}
.ydf{bottom:179.430000px;}
.y2b{bottom:183.045000px;}
.y96{bottom:186.930000px;}
.ye5{bottom:192.630000px;}
.y3d{bottom:193.245000px;}
.y57{bottom:195.930000px;}
.yde{bottom:196.845000px;}
.y2a{bottom:200.745000px;}
.y123{bottom:207.975000px;}
.y95{bottom:208.575000px;}
.ye4{bottom:208.875000px;}
.y3c{bottom:210.345000px;}
.yda{bottom:211.275000px;}
.y56{bottom:213.075000px;}
.y29{bottom:218.145000px;}
.y122{bottom:224.475000px;}
.y94{bottom:225.675000px;}
.y3b{bottom:227.745000px;}
.y55{bottom:230.475000px;}
.ydd{bottom:233.775000px;}
.y28{bottom:235.545000px;}
.y121{bottom:240.975000px;}
.y93{bottom:243.075000px;}
.y3a{bottom:244.845000px;}
.y54{bottom:247.575000px;}
.y27{bottom:252.945000px;}
.ydc{bottom:255.975000px;}
.y120{bottom:257.175000px;}
.y92{bottom:260.175000px;}
.y39{bottom:262.245000px;}
.y53{bottom:264.975000px;}
.y26{bottom:270.345000px;}
.y11f{bottom:273.675000px;}
.y91{bottom:277.575000px;}
.yd7{bottom:278.475000px;}
.y38{bottom:279.345000px;}
.y52{bottom:282.075000px;}
.y25{bottom:287.745000px;}
.y11e{bottom:289.875000px;}
.y90{bottom:294.675000px;}
.y37{bottom:296.775000px;}
.y51{bottom:299.475000px;}
.yd9{bottom:300.675000px;}
.y24{bottom:305.175000px;}
.y11d{bottom:306.375000px;}
.y8f{bottom:312.075000px;}
.y36{bottom:313.875000px;}
.y50{bottom:316.575000px;}
.y23{bottom:322.575000px;}
.y11c{bottom:322.875000px;}
.yd6{bottom:323.175000px;}
.y8e{bottom:329.175000px;}
.y35{bottom:331.290000px;}
.y4f{bottom:333.975000px;}
.y11b{bottom:339.075000px;}
.y22{bottom:339.990000px;}
.yd5{bottom:345.375000px;}
.y8d{bottom:346.575000px;}
.y34{bottom:348.390000px;}
.y4e{bottom:351.675000px;}
.y11a{bottom:355.575000px;}
.y21{bottom:357.375000px;}
.y8c{bottom:363.675000px;}
.y33{bottom:365.775000px;}
.y49{bottom:366.105000px;}
.yd4{bottom:371.205000px;}
.y119{bottom:371.805000px;}
.y20{bottom:374.790000px;}
.y8b{bottom:381.105000px;}
.y32{bottom:382.875000px;}
.y118{bottom:388.305000px;}
.yd3{bottom:388.620000px;}
.y8a{bottom:398.205000px;}
.y31{bottom:400.290000px;}
.y1f{bottom:402.375000px;}
.y1d{bottom:402.705000px;}
.y117{bottom:404.820000px;}
.yd2{bottom:405.705000px;}
.y89{bottom:415.620000px;}
.y30{bottom:417.375000px;}
.y1e{bottom:420.075000px;}
.y116{bottom:421.005000px;}
.yd1{bottom:423.120000px;}
.y88{bottom:432.705000px;}
.y115{bottom:437.505000px;}
.yd0{bottom:440.205000px;}
.y87{bottom:450.120000px;}
.y114{bottom:454.005000px;}
.ycf{bottom:457.605000px;}
.y86{bottom:467.205000px;}
.y113{bottom:470.205000px;}
.yce{bottom:474.705000px;}
.y85{bottom:484.605000px;}
.y112{bottom:486.705000px;}
.ycd{bottom:492.120000px;}
.y84{bottom:501.705000px;}
.y111{bottom:502.905000px;}
.yc9{bottom:506.505000px;}
.y83{bottom:519.105000px;}
.y110{bottom:519.405000px;}
.ycc{bottom:529.050000px;}
.y10f{bottom:535.950000px;}
.y82{bottom:536.250000px;}
.yc2{bottom:551.250000px;}
.y10e{bottom:552.150000px;}
.y81{bottom:553.650000px;}
.y10d{bottom:568.650000px;}
.y80{bottom:570.750000px;}
.yc8{bottom:573.750000px;}
.y10c{bottom:585.150000px;}
.y7f{bottom:588.150000px;}
.yc7{bottom:595.950000px;}
.y10b{bottom:601.350000px;}
.y7e{bottom:605.250000px;}
.y10a{bottom:617.850000px;}
.yc6{bottom:618.450000px;}
.y7d{bottom:622.650000px;}
.y109{bottom:634.050000px;}
.y7c{bottom:639.750000px;}
.ybb{bottom:640.650000px;}
.y108{bottom:650.550000px;}
.y7b{bottom:657.150000px;}
.yc0{bottom:663.150000px;}
.y107{bottom:667.050000px;}
.y7a{bottom:674.250000px;}
.y106{bottom:683.250000px;}
.ybe{bottom:685.350000px;}
.y79{bottom:691.650000px;}
.y105{bottom:699.780000px;}
.yb9{bottom:707.880000px;}
.y78{bottom:708.780000px;}
.y104{bottom:716.280000px;}
.y77{bottom:726.195000px;}
.y103{bottom:732.480000px;}
.yb8{bottom:733.695000px;}
.y76{bottom:743.280000px;}
.y102{bottom:748.995000px;}
.yb7{bottom:750.780000px;}
.y75{bottom:760.695000px;}
.y101{bottom:765.180000px;}
.yb6{bottom:768.195000px;}
.y74{bottom:777.795000px;}
.y100{bottom:781.695000px;}
.yb5{bottom:785.295000px;}
.y73{bottom:795.195000px;}
.yff{bottom:798.195000px;}
.yb4{bottom:802.695000px;}
.y72{bottom:812.295000px;}
.yfe{bottom:814.380000px;}
.yb3{bottom:819.780000px;}
.y71{bottom:829.695000px;}
.yfd{bottom:830.880000px;}
.y1a{bottom:833.895000px;}
.yb2{bottom:837.195000px;}
.y70{bottom:846.795000px;}
.yfc{bottom:847.080000px;}
.yb1{bottom:854.295000px;}
.y10{bottom:863.625000px;}
.y6f{bottom:864.225000px;}
.yb0{bottom:871.725000px;}
.yfb{bottom:880.125000px;}
.y6e{bottom:881.325000px;}
.yaf{bottom:888.825000px;}
.yfa{bottom:896.325000px;}
.y6d{bottom:898.725000px;}
.yae{bottom:906.225000px;}
.yf9{bottom:912.825000px;}
.y6c{bottom:915.825000px;}
.yad{bottom:923.325000px;}
.yf8{bottom:929.325000px;}
.y6b{bottom:933.225000px;}
.yac{bottom:940.725000px;}
.yf7{bottom:945.525000px;}
.y6a{bottom:950.325000px;}
.yab{bottom:957.825000px;}
.yf6{bottom:962.025000px;}
.y69{bottom:967.725000px;}
.yaa{bottom:972.525000px;}
.yf5{bottom:978.225000px;}
.y68{bottom:984.825000px;}
.ya9{bottom:990.525000px;}
.yf4{bottom:994.725000px;}
.y67{bottom:1002.225000px;}
.ya8{bottom:1008.525000px;}
.yf3{bottom:1011.225000px;}
.y66{bottom:1019.325000px;}
.ya7{bottom:1026.570000px;}
.yf2{bottom:1027.455000px;}
.y65{bottom:1036.755000px;}
.ye{bottom:1041.570000px;}
.yf1{bottom:1043.955000px;}
.ya5{bottom:1044.570000px;}
.y64{bottom:1053.855000px;}
.yf0{bottom:1060.455000px;}
.ya4{bottom:1062.555000px;}
.y6{bottom:1066.770000px;}
.y63{bottom:1071.255000px;}
.yef{bottom:1076.655000px;}
.ya3{bottom:1080.555000px;}
.y62{bottom:1088.370000px;}
.yee{bottom:1093.155000px;}
.ya2{bottom:1098.555000px;}
.y61{bottom:1105.755000px;}
.yed{bottom:1109.355000px;}
.ya1{bottom:1116.555000px;}
.y60{bottom:1122.855000px;}
.yec{bottom:1125.870000px;}
.ya0{bottom:1134.555000px;}
.y5f{bottom:1140.255000px;}
.yeb{bottom:1142.370000px;}
.y9e{bottom:1152.555000px;}
.y5e{bottom:1157.370000px;}
.yea{bottom:1158.570000px;}
.y9c{bottom:1170.570000px;}
.y5d{bottom:1174.455000px;}
.ye9{bottom:1175.070000px;}
.h22{height:17.100000px;}
.h21{height:17.137500px;}
.h20{height:17.400000px;}
.h1f{height:17.437500px;}
.h23{height:21.600000px;}
.h25{height:21.637500px;}
.hb{height:24.900000px;}
.h11{height:28.968750px;}
.h12{height:29.722500px;}
.h2{height:33.000000px;}
.h8{height:36.000000px;}
.h1d{height:36.600000px;}
.h1a{height:38.625000px;}
.h2b{height:40.218750px;}
.h2c{height:40.640625px;}
.h1c{height:41.894531px;}
.h2a{height:41.934375px;}
.h1b{height:42.333984px;}
.h19{height:42.451172px;}
.h28{height:43.800000px;}
.h27{height:44.137500px;}
.hd{height:44.179688px;}
.ha{height:45.000000px;}
.h18{height:46.350000px;}
.h15{height:47.742188px;}
.h1e{height:48.281250px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h17{height:57.290625px;}
.hf{height:59.677734px;}
.h16{height:61.435547px;}
.h10{height:62.147461px;}
.he{height:63.000000px;}
.h29{height:66.300000px;}
.h24{height:66.337500px;}
.h5{height:67.579102px;}
.h6{height:71.613281px;}
.h13{height:73.722656px;}
.h26{height:88.800000px;}
.h7{height:121.522500px;}
.hc{height:177.945000px;}
.h14{height:431.175000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w3{width:73.237500px;}
.w14{width:83.437500px;}
.w13{width:84.600000px;}
.w15{width:100.537500px;}
.we{width:111.937500px;}
.wf{width:121.237500px;}
.w5{width:151.830000px;}
.w12{width:184.875000px;}
.w10{width:186.630000px;}
.w11{width:186.675000px;}
.w8{width:223.275000px;}
.wd{width:231.075000px;}
.wc{width:263.175000px;}
.wb{width:327.720000px;}
.wa{width:401.220000px;}
.w9{width:507.750000px;}
.w6{width:579.495000px;}
.w2{width:658.080000px;}
.w7{width:731.325000px;}
.w4{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:7.500000px;}
.x2{left:8.700000px;}
.xb{left:10.800000px;}
.x11{left:12.600000px;}
.xe{left:18.600000px;}
.x1f{left:54.037487px;}
.x1{left:81.037500px;}
.x4{left:98.137500px;}
.x15{left:110.137487px;}
.x19{left:152.144987px;}
.xd{left:165.037500px;}
.xc{left:177.037500px;}
.xf{left:215.182500px;}
.x5{left:232.875000px;}
.x1a{left:269.475000px;}
.x8{left:272.475000px;}
.x12{left:292.319987px;}
.x10{left:304.320000px;}
.x6{left:331.920000px;}
.x16{left:346.020000px;}
.x7{left:351.120000px;}
.xa{left:365.512500px;}
.x9{left:439.650000px;}
.x1b{left:457.050000px;}
.x14{left:483.750000px;}
.x1e{left:558.495000px;}
.x17{left:577.695000px;}
.x1c{left:642.525000px;}
.x18{left:690.225000px;}
.x1d{left:728.025000px;}
.x3{left:739.125000px;}
@media print{
.v2{vertical-align:-13.866667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.ls13{letter-spacing:-2.133333pt;}
.ls8{letter-spacing:-1.920000pt;}
.ls18{letter-spacing:-1.066667pt;}
.lsa{letter-spacing:-0.384000pt;}
.ls15{letter-spacing:-0.366933pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.106667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.053333pt;}
.ls1{letter-spacing:0.122667pt;}
.ls0{letter-spacing:0.197333pt;}
.ls12{letter-spacing:0.213333pt;}
.ls2{letter-spacing:0.286933pt;}
.ls4{letter-spacing:0.533333pt;}
.ls3{letter-spacing:0.746667pt;}
.ls10{letter-spacing:1.600000pt;}
.lsd{letter-spacing:2.666667pt;}
.lsf{letter-spacing:2.720000pt;}
.ls16{letter-spacing:3.200000pt;}
.lsb{letter-spacing:3.733333pt;}
.lse{letter-spacing:4.853333pt;}
.ls5{letter-spacing:9.120000pt;}
.ls17{letter-spacing:18.833067pt;}
.lsc{letter-spacing:24.000000pt;}
.ls14{letter-spacing:43.366400pt;}
.ws3{word-spacing:-18.986667pt;}
.ws2{word-spacing:-14.720000pt;}
.wsa{word-spacing:-13.546667pt;}
.ws1{word-spacing:-13.381333pt;}
.ws6{word-spacing:-13.333333pt;}
.ws9{word-spacing:-13.226667pt;}
.wsc{word-spacing:-12.800000pt;}
.ws7{word-spacing:-12.053333pt;}
.wsd{word-spacing:-11.733333pt;}
.wsb{word-spacing:-11.200000pt;}
.ws0{word-spacing:-11.045333pt;}
.ws4{word-spacing:-7.955200pt;}
.ws5{word-spacing:-7.232000pt;}
.ws8{word-spacing:0.000000pt;}
._1e{margin-left:-7.082667pt;}
._19{margin-left:-6.069333pt;}
._17{margin-left:-5.066667pt;}
._4{margin-left:-4.144000pt;}
._2{margin-left:-2.704000pt;}
._0{margin-left:-1.104000pt;}
._1{width:0.960000pt;}
._3{width:2.565333pt;}
._9{width:3.573333pt;}
._10{width:4.533333pt;}
._b{width:6.021333pt;}
._a{width:7.200000pt;}
._d{width:8.800000pt;}
._14{width:10.133333pt;}
._11{width:11.877333pt;}
._1d{width:13.794133pt;}
._5{width:15.200000pt;}
._6{width:16.096000pt;}
._c{width:17.013333pt;}
._8{width:18.277333pt;}
._7{width:19.466667pt;}
._18{width:20.960000pt;}
._f{width:22.453333pt;}
._e{width:23.946667pt;}
._13{width:24.837333pt;}
._12{width:25.813333pt;}
._15{width:36.512000pt;}
._1c{width:44.232533pt;}
._1a{width:47.513600pt;}
._1b{width:49.305600pt;}
._16{width:178.666667pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:35.200000pt;}
.fs3{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:51.200000pt;}
.fs4{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.666667pt;}
.y7{bottom:-0.013333pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:0.266667pt;}
.ya6{bottom:2.920000pt;}
.y9d{bottom:2.933333pt;}
.y9f{bottom:2.946667pt;}
.y3{bottom:3.200000pt;}
.y48{bottom:3.213333pt;}
.y4d{bottom:3.466667pt;}
.y19{bottom:4.266667pt;}
.yc1{bottom:6.933333pt;}
.yba{bottom:6.946667pt;}
.ybf{bottom:6.973333pt;}
.yf{bottom:8.533333pt;}
.y4b{bottom:9.346667pt;}
.y1c{bottom:11.186667pt;}
.ycb{bottom:11.466667pt;}
.yd{bottom:12.533333pt;}
.y4{bottom:15.466667pt;}
.y2{bottom:17.866667pt;}
.y47{bottom:18.400000pt;}
.y4c{bottom:19.733333pt;}
.y4a{bottom:22.400000pt;}
.y18{bottom:26.133333pt;}
.yd8{bottom:26.666667pt;}
.yc{bottom:26.933333pt;}
.yca{bottom:26.973333pt;}
.y5{bottom:28.800000pt;}
.ybd{bottom:31.466667pt;}
.y46{bottom:33.880000pt;}
.yc5{bottom:36.000000pt;}
.y17{bottom:40.800000pt;}
.yb{bottom:41.600000pt;}
.ydb{bottom:46.666667pt;}
.ybc{bottom:46.706667pt;}
.y1{bottom:48.833333pt;}
.y45{bottom:49.080000pt;}
.yc4{bottom:51.200000pt;}
.y16{bottom:55.466667pt;}
.y44{bottom:64.546667pt;}
.ya{bottom:65.600000pt;}
.yc3{bottom:66.666667pt;}
.y15{bottom:66.933333pt;}
.y43{bottom:79.733333pt;}
.y9{bottom:82.933333pt;}
.y14{bottom:83.200000pt;}
.y9b{bottom:86.166667pt;}
.y42{bottom:95.213333pt;}
.y5c{bottom:97.633333pt;}
.ye3{bottom:98.166667pt;}
.y8{bottom:98.933333pt;}
.y13{bottom:100.000000pt;}
.y9a{bottom:102.166667pt;}
.y2f{bottom:102.680000pt;}
.y41{bottom:110.400000pt;}
.y5b{bottom:112.833333pt;}
.ye2{bottom:113.633333pt;}
.y2e{bottom:116.306667pt;}
.y99{bottom:118.166667pt;}
.y12{bottom:122.933333pt;}
.y40{bottom:125.906667pt;}
.ye8{bottom:127.500000pt;}
.y5a{bottom:128.300000pt;}
.ye1{bottom:128.833333pt;}
.y2d{bottom:132.040000pt;}
.y98{bottom:134.160000pt;}
.y3f{bottom:141.106667pt;}
.ye7{bottom:141.893333pt;}
.y59{bottom:143.493333pt;}
.ye0{bottom:144.306667pt;}
.y11{bottom:144.840000pt;}
.y2c{bottom:147.506667pt;}
.y97{bottom:150.160000pt;}
.ye6{bottom:156.560000pt;}
.y3e{bottom:156.573333pt;}
.y58{bottom:158.693333pt;}
.ydf{bottom:159.493333pt;}
.y2b{bottom:162.706667pt;}
.y96{bottom:166.160000pt;}
.ye5{bottom:171.226667pt;}
.y3d{bottom:171.773333pt;}
.y57{bottom:174.160000pt;}
.yde{bottom:174.973333pt;}
.y2a{bottom:178.440000pt;}
.y123{bottom:184.866667pt;}
.y95{bottom:185.400000pt;}
.ye4{bottom:185.666667pt;}
.y3c{bottom:186.973333pt;}
.yda{bottom:187.800000pt;}
.y56{bottom:189.400000pt;}
.y29{bottom:193.906667pt;}
.y122{bottom:199.533333pt;}
.y94{bottom:200.600000pt;}
.y3b{bottom:202.440000pt;}
.y55{bottom:204.866667pt;}
.ydd{bottom:207.800000pt;}
.y28{bottom:209.373333pt;}
.y121{bottom:214.200000pt;}
.y93{bottom:216.066667pt;}
.y3a{bottom:217.640000pt;}
.y54{bottom:220.066667pt;}
.y27{bottom:224.840000pt;}
.ydc{bottom:227.533333pt;}
.y120{bottom:228.600000pt;}
.y92{bottom:231.266667pt;}
.y39{bottom:233.106667pt;}
.y53{bottom:235.533333pt;}
.y26{bottom:240.306667pt;}
.y11f{bottom:243.266667pt;}
.y91{bottom:246.733333pt;}
.yd7{bottom:247.533333pt;}
.y38{bottom:248.306667pt;}
.y52{bottom:250.733333pt;}
.y25{bottom:255.773333pt;}
.y11e{bottom:257.666667pt;}
.y90{bottom:261.933333pt;}
.y37{bottom:263.800000pt;}
.y51{bottom:266.200000pt;}
.yd9{bottom:267.266667pt;}
.y24{bottom:271.266667pt;}
.y11d{bottom:272.333333pt;}
.y8f{bottom:277.400000pt;}
.y36{bottom:279.000000pt;}
.y50{bottom:281.400000pt;}
.y23{bottom:286.733333pt;}
.y11c{bottom:287.000000pt;}
.yd6{bottom:287.266667pt;}
.y8e{bottom:292.600000pt;}
.y35{bottom:294.480000pt;}
.y4f{bottom:296.866667pt;}
.y11b{bottom:301.400000pt;}
.y22{bottom:302.213333pt;}
.yd5{bottom:307.000000pt;}
.y8d{bottom:308.066667pt;}
.y34{bottom:309.680000pt;}
.y4e{bottom:312.600000pt;}
.y11a{bottom:316.066667pt;}
.y21{bottom:317.666667pt;}
.y8c{bottom:323.266667pt;}
.y33{bottom:325.133333pt;}
.y49{bottom:325.426667pt;}
.yd4{bottom:329.960000pt;}
.y119{bottom:330.493333pt;}
.y20{bottom:333.146667pt;}
.y8b{bottom:338.760000pt;}
.y32{bottom:340.333333pt;}
.y118{bottom:345.160000pt;}
.yd3{bottom:345.440000pt;}
.y8a{bottom:353.960000pt;}
.y31{bottom:355.813333pt;}
.y1f{bottom:357.666667pt;}
.y1d{bottom:357.960000pt;}
.y117{bottom:359.840000pt;}
.yd2{bottom:360.626667pt;}
.y89{bottom:369.440000pt;}
.y30{bottom:371.000000pt;}
.y1e{bottom:373.400000pt;}
.y116{bottom:374.226667pt;}
.yd1{bottom:376.106667pt;}
.y88{bottom:384.626667pt;}
.y115{bottom:388.893333pt;}
.yd0{bottom:391.293333pt;}
.y87{bottom:400.106667pt;}
.y114{bottom:403.560000pt;}
.ycf{bottom:406.760000pt;}
.y86{bottom:415.293333pt;}
.y113{bottom:417.960000pt;}
.yce{bottom:421.960000pt;}
.y85{bottom:430.760000pt;}
.y112{bottom:432.626667pt;}
.ycd{bottom:437.440000pt;}
.y84{bottom:445.960000pt;}
.y111{bottom:447.026667pt;}
.yc9{bottom:450.226667pt;}
.y83{bottom:461.426667pt;}
.y110{bottom:461.693333pt;}
.ycc{bottom:470.266667pt;}
.y10f{bottom:476.400000pt;}
.y82{bottom:476.666667pt;}
.yc2{bottom:490.000000pt;}
.y10e{bottom:490.800000pt;}
.y81{bottom:492.133333pt;}
.y10d{bottom:505.466667pt;}
.y80{bottom:507.333333pt;}
.yc8{bottom:510.000000pt;}
.y10c{bottom:520.133333pt;}
.y7f{bottom:522.800000pt;}
.yc7{bottom:529.733333pt;}
.y10b{bottom:534.533333pt;}
.y7e{bottom:538.000000pt;}
.y10a{bottom:549.200000pt;}
.yc6{bottom:549.733333pt;}
.y7d{bottom:553.466667pt;}
.y109{bottom:563.600000pt;}
.y7c{bottom:568.666667pt;}
.ybb{bottom:569.466667pt;}
.y108{bottom:578.266667pt;}
.y7b{bottom:584.133333pt;}
.yc0{bottom:589.466667pt;}
.y107{bottom:592.933333pt;}
.y7a{bottom:599.333333pt;}
.y106{bottom:607.333333pt;}
.ybe{bottom:609.200000pt;}
.y79{bottom:614.800000pt;}
.y105{bottom:622.026667pt;}
.yb9{bottom:629.226667pt;}
.y78{bottom:630.026667pt;}
.y104{bottom:636.693333pt;}
.y77{bottom:645.506667pt;}
.y103{bottom:651.093333pt;}
.yb8{bottom:652.173333pt;}
.y76{bottom:660.693333pt;}
.y102{bottom:665.773333pt;}
.yb7{bottom:667.360000pt;}
.y75{bottom:676.173333pt;}
.y101{bottom:680.160000pt;}
.yb6{bottom:682.840000pt;}
.y74{bottom:691.373333pt;}
.y100{bottom:694.840000pt;}
.yb5{bottom:698.040000pt;}
.y73{bottom:706.840000pt;}
.yff{bottom:709.506667pt;}
.yb4{bottom:713.506667pt;}
.y72{bottom:722.040000pt;}
.yfe{bottom:723.893333pt;}
.yb3{bottom:728.693333pt;}
.y71{bottom:737.506667pt;}
.yfd{bottom:738.560000pt;}
.y1a{bottom:741.240000pt;}
.yb2{bottom:744.173333pt;}
.y70{bottom:752.706667pt;}
.yfc{bottom:752.960000pt;}
.yb1{bottom:759.373333pt;}
.y10{bottom:767.666667pt;}
.y6f{bottom:768.200000pt;}
.yb0{bottom:774.866667pt;}
.yfb{bottom:782.333333pt;}
.y6e{bottom:783.400000pt;}
.yaf{bottom:790.066667pt;}
.yfa{bottom:796.733333pt;}
.y6d{bottom:798.866667pt;}
.yae{bottom:805.533333pt;}
.yf9{bottom:811.400000pt;}
.y6c{bottom:814.066667pt;}
.yad{bottom:820.733333pt;}
.yf8{bottom:826.066667pt;}
.y6b{bottom:829.533333pt;}
.yac{bottom:836.200000pt;}
.yf7{bottom:840.466667pt;}
.y6a{bottom:844.733333pt;}
.yab{bottom:851.400000pt;}
.yf6{bottom:855.133333pt;}
.y69{bottom:860.200000pt;}
.yaa{bottom:864.466667pt;}
.yf5{bottom:869.533333pt;}
.y68{bottom:875.400000pt;}
.ya9{bottom:880.466667pt;}
.yf4{bottom:884.200000pt;}
.y67{bottom:890.866667pt;}
.ya8{bottom:896.466667pt;}
.yf3{bottom:898.866667pt;}
.y66{bottom:906.066667pt;}
.ya7{bottom:912.506667pt;}
.yf2{bottom:913.293333pt;}
.y65{bottom:921.560000pt;}
.ye{bottom:925.840000pt;}
.yf1{bottom:927.960000pt;}
.ya5{bottom:928.506667pt;}
.y64{bottom:936.760000pt;}
.yf0{bottom:942.626667pt;}
.ya4{bottom:944.493333pt;}
.y6{bottom:948.240000pt;}
.y63{bottom:952.226667pt;}
.yef{bottom:957.026667pt;}
.ya3{bottom:960.493333pt;}
.y62{bottom:967.440000pt;}
.yee{bottom:971.693333pt;}
.ya2{bottom:976.493333pt;}
.y61{bottom:982.893333pt;}
.yed{bottom:986.093333pt;}
.ya1{bottom:992.493333pt;}
.y60{bottom:998.093333pt;}
.yec{bottom:1000.773333pt;}
.ya0{bottom:1008.493333pt;}
.y5f{bottom:1013.560000pt;}
.yeb{bottom:1015.440000pt;}
.y9e{bottom:1024.493333pt;}
.y5e{bottom:1028.773333pt;}
.yea{bottom:1029.840000pt;}
.y9c{bottom:1040.506667pt;}
.y5d{bottom:1043.960000pt;}
.ye9{bottom:1044.506667pt;}
.h22{height:15.200000pt;}
.h21{height:15.233333pt;}
.h20{height:15.466667pt;}
.h1f{height:15.500000pt;}
.h23{height:19.200000pt;}
.h25{height:19.233333pt;}
.hb{height:22.133333pt;}
.h11{height:25.750000pt;}
.h12{height:26.420000pt;}
.h2{height:29.333333pt;}
.h8{height:32.000000pt;}
.h1d{height:32.533333pt;}
.h1a{height:34.333333pt;}
.h2b{height:35.750000pt;}
.h2c{height:36.125000pt;}
.h1c{height:37.239583pt;}
.h2a{height:37.275000pt;}
.h1b{height:37.630208pt;}
.h19{height:37.734375pt;}
.h28{height:38.933333pt;}
.h27{height:39.233333pt;}
.hd{height:39.270833pt;}
.ha{height:40.000000pt;}
.h18{height:41.200000pt;}
.h15{height:42.437500pt;}
.h1e{height:42.916667pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h17{height:50.925000pt;}
.hf{height:53.046875pt;}
.h16{height:54.609375pt;}
.h10{height:55.242187pt;}
.he{height:56.000000pt;}
.h29{height:58.933333pt;}
.h24{height:58.966667pt;}
.h5{height:60.070312pt;}
.h6{height:63.656250pt;}
.h13{height:65.531250pt;}
.h26{height:78.933333pt;}
.h7{height:108.020000pt;}
.hc{height:158.173333pt;}
.h14{height:383.266667pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w3{width:65.100000pt;}
.w14{width:74.166667pt;}
.w13{width:75.200000pt;}
.w15{width:89.366667pt;}
.we{width:99.500000pt;}
.wf{width:107.766667pt;}
.w5{width:134.960000pt;}
.w12{width:164.333333pt;}
.w10{width:165.893333pt;}
.w11{width:165.933333pt;}
.w8{width:198.466667pt;}
.wd{width:205.400000pt;}
.wc{width:233.933333pt;}
.wb{width:291.306667pt;}
.wa{width:356.640000pt;}
.w9{width:451.333333pt;}
.w6{width:515.106667pt;}
.w2{width:584.960000pt;}
.w7{width:650.066667pt;}
.w4{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:6.666667pt;}
.x2{left:7.733333pt;}
.xb{left:9.600000pt;}
.x11{left:11.200000pt;}
.xe{left:16.533333pt;}
.x1f{left:48.033322pt;}
.x1{left:72.033333pt;}
.x4{left:87.233333pt;}
.x15{left:97.899988pt;}
.x19{left:135.239988pt;}
.xd{left:146.700000pt;}
.xc{left:157.366667pt;}
.xf{left:191.273333pt;}
.x5{left:207.000000pt;}
.x1a{left:239.533333pt;}
.x8{left:242.200000pt;}
.x12{left:259.839988pt;}
.x10{left:270.506667pt;}
.x6{left:295.040000pt;}
.x16{left:307.573333pt;}
.x7{left:312.106667pt;}
.xa{left:324.900000pt;}
.x9{left:390.800000pt;}
.x1b{left:406.266667pt;}
.x14{left:430.000000pt;}
.x1e{left:496.440000pt;}
.x17{left:513.506667pt;}
.x1c{left:571.133333pt;}
.x18{left:613.533333pt;}
.x1d{left:647.133333pt;}
.x3{left:657.000000pt;}
}




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