
    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_c48538dc67dd1db2d6927cf9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2cefa0eac3aafed9cead2cb5.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6bb9a399456dacd0a1b14428.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_f7b9da4cdc3748a2e8350683.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ad499fd424d54c489e82da9a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_29d1b051633e3053742620b2.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_90e15f7efe3cd4e03a50718b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e4831546af69dcf126db6d39.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_0d74bf49adcb3726c1792fac.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.853027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ad67398d0b91de4979cf417a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.853027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.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_e84e8e9b48b7a8c174a35df6.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.084961;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.003906;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;}
.m2{transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,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);}
.m4{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,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:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v5{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.760000px;}
.v6{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls15{letter-spacing:-2.658000px;}
.ls14{letter-spacing:-1.080000px;}
.lsb{letter-spacing:-0.774000px;}
.ls9{letter-spacing:-0.720000px;}
.ls1f{letter-spacing:-0.702000px;}
.ls1a{letter-spacing:-0.540000px;}
.ls1d{letter-spacing:-0.513600px;}
.ls24{letter-spacing:-0.460200px;}
.lsa{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.305400px;}
.ls18{letter-spacing:-0.259800px;}
.ls26{letter-spacing:-0.253200px;}
.ls21{letter-spacing:-0.206400px;}
.ls19{letter-spacing:-0.106800px;}
.lsc{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.053280px;}
.ls2{letter-spacing:0.106800px;}
.ls8{letter-spacing:0.109200px;}
.ls1e{letter-spacing:0.135600px;}
.ls0{letter-spacing:0.149760px;}
.ls23{letter-spacing:0.153600px;}
.ls10{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.206400px;}
.lsd{letter-spacing:0.259800px;}
.ls1c{letter-spacing:0.259920px;}
.ls7{letter-spacing:0.305400px;}
.ls4{letter-spacing:0.306600px;}
.ls12{letter-spacing:0.357120px;}
.ls1{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.508200px;}
.ls13{letter-spacing:0.562800px;}
.lse{letter-spacing:0.900000px;}
.ls11{letter-spacing:1.620000px;}
.ls16{letter-spacing:2.340000px;}
.ls3{letter-spacing:4.500000px;}
.ls25{letter-spacing:8.814240px;}
.ls22{letter-spacing:16.506720px;}
.ls20{letter-spacing:46.026720px;}
.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;}
}
.ws9{word-spacing:-59.760000px;}
.ws3{word-spacing:-24.300000px;}
.ws4{word-spacing:-16.865400px;}
.ws5{word-spacing:-16.669200px;}
.ws0{word-spacing:-16.560000px;}
.ws2{word-spacing:-16.254600px;}
.ws8{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.246600px;}
.wse{word-spacing:-15.199800px;}
.ws15{word-spacing:-15.146400px;}
.ws1a{word-spacing:-15.093600px;}
.ws17{word-spacing:-15.075600px;}
.wsd{word-spacing:-15.046800px;}
.ws11{word-spacing:-14.993280px;}
.wsa{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.886720px;}
.ws14{word-spacing:-14.833200px;}
.ws19{word-spacing:-14.733600px;}
.ws1c{word-spacing:-14.686800px;}
.ws13{word-spacing:-14.680200px;}
.ws7{word-spacing:-14.580000px;}
.ws1b{word-spacing:-14.479800px;}
.ws16{word-spacing:-14.426400px;}
.wsb{word-spacing:-14.166000px;}
.ws12{word-spacing:-13.860000px;}
.ws1{word-spacing:-10.440000px;}
.ws6{word-spacing:-9.720000px;}
.ws18{word-spacing:-9.018000px;}
.ws10{word-spacing:0.000000px;}
._11{margin-left:-7.489920px;}
._10{margin-left:-6.451920px;}
._12{margin-left:-5.422560px;}
._1a{margin-left:-4.253760px;}
._b{margin-left:-2.951520px;}
._0{margin-left:-1.080000px;}
._13{width:1.115520px;}
._1{width:2.220000px;}
._17{width:3.257760px;}
._15{width:4.314720px;}
._16{width:6.103440px;}
._1c{width:7.175520px;}
._1b{width:8.192160px;}
._19{width:9.452880px;}
._6{width:10.800000px;}
._18{width:12.215280px;}
._14{width:13.417920px;}
._1f{width:16.636800px;}
._1e{width:17.660400px;}
._1d{width:20.364000px;}
._20{width:22.404720px;}
._7{width:76.284960px;}
._8{width:154.080000px;}
._d{width:195.240000px;}
._2{width:255.692640px;}
._3{width:357.120000px;}
._5{width:436.320000px;}
._4{width:443.286240px;}
._9{width:604.364160px;}
._e{width:653.940000px;}
._f{width:703.620000px;}
._a{width:1097.040000px;}
._c{width:1176.060000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6f{bottom:5.760000px;}
.ye{bottom:6.300000px;}
.yae{bottom:6.480000px;}
.yb0{bottom:6.660000px;}
.y71{bottom:6.840000px;}
.y6d{bottom:7.200000px;}
.y6c{bottom:7.380000px;}
.y73{bottom:7.740000px;}
.yb2{bottom:10.260000px;}
.y6{bottom:12.420000px;}
.y8{bottom:18.180000px;}
.yc{bottom:36.000000px;}
.y5{bottom:40.320000px;}
.yb{bottom:57.780000px;}
.y4{bottom:68.400000px;}
.yd{bottom:75.420000px;}
.ya{bottom:79.560000px;}
.y3{bottom:96.330000px;}
.y92{bottom:106.920000px;}
.ybd{bottom:108.720000px;}
.yd4{bottom:110.520000px;}
.y68{bottom:111.240000px;}
.yfc{bottom:115.560000px;}
.yf9{bottom:117.720000px;}
.y3a{bottom:118.080000px;}
.y2{bottom:125.670000px;}
.y91{bottom:126.720000px;}
.ybc{bottom:128.520000px;}
.yd3{bottom:130.500000px;}
.y67{bottom:131.220000px;}
.yfb{bottom:135.360000px;}
.yf8{bottom:137.520000px;}
.y39{bottom:137.880000px;}
.y90{bottom:146.700000px;}
.ybb{bottom:148.320000px;}
.yd2{bottom:150.300000px;}
.y66{bottom:151.020000px;}
.yfa{bottom:155.160000px;}
.yf7{bottom:157.500000px;}
.y38{bottom:157.680000px;}
.y8f{bottom:166.500000px;}
.yba{bottom:168.120000px;}
.yd1{bottom:170.100000px;}
.y65{bottom:170.820000px;}
.yf6{bottom:177.300000px;}
.y37{bottom:177.480000px;}
.y8e{bottom:186.300000px;}
.yb9{bottom:188.100000px;}
.yd0{bottom:189.900000px;}
.y64{bottom:190.620000px;}
.yf5{bottom:197.100000px;}
.y36{bottom:197.280000px;}
.y8d{bottom:206.100000px;}
.yb8{bottom:207.900000px;}
.ycf{bottom:209.730000px;}
.y63{bottom:210.450000px;}
.yf4{bottom:216.930000px;}
.y35{bottom:217.290000px;}
.y8c{bottom:225.930000px;}
.yb7{bottom:227.730000px;}
.yce{bottom:229.710000px;}
.y62{bottom:230.430000px;}
.yf3{bottom:236.730000px;}
.y34{bottom:237.090000px;}
.yb6{bottom:247.530000px;}
.ycd{bottom:249.510000px;}
.y61{bottom:250.230000px;}
.y8b{bottom:254.910000px;}
.yf2{bottom:256.710000px;}
.y33{bottom:256.890000px;}
.yb5{bottom:267.330000px;}
.ycc{bottom:269.310000px;}
.y60{bottom:270.030000px;}
.y8a{bottom:274.710000px;}
.yf1{bottom:276.510000px;}
.y32{bottom:276.690000px;}
.yb4{bottom:288.570000px;}
.ycb{bottom:289.110000px;}
.y5f{bottom:289.830000px;}
.y89{bottom:294.510000px;}
.yf0{bottom:296.310000px;}
.y31{bottom:296.490000px;}
.yca{bottom:308.910000px;}
.yb3{bottom:309.810000px;}
.y5e{bottom:309.990000px;}
.y88{bottom:314.310000px;}
.yef{bottom:316.110000px;}
.y30{bottom:316.470000px;}
.yb1{bottom:324.930000px;}
.yc9{bottom:328.890000px;}
.y5d{bottom:330.150000px;}
.y87{bottom:334.110000px;}
.yee{bottom:335.910000px;}
.y2f{bottom:336.270000px;}
.yc8{bottom:348.690000px;}
.yaf{bottom:349.230000px;}
.y5c{bottom:350.130000px;}
.y86{bottom:354.090000px;}
.yed{bottom:355.890000px;}
.y2e{bottom:356.070000px;}
.yc7{bottom:368.490000px;}
.y5b{bottom:369.930000px;}
.y85{bottom:373.890000px;}
.yec{bottom:375.690000px;}
.y2d{bottom:375.870000px;}
.yc6{bottom:388.290000px;}
.y5a{bottom:389.910000px;}
.yad{bottom:390.450000px;}
.y84{bottom:393.690000px;}
.yeb{bottom:395.490000px;}
.y2c{bottom:395.670000px;}
.yc5{bottom:408.090000px;}
.yac{bottom:410.970000px;}
.y83{bottom:413.490000px;}
.yea{bottom:415.290000px;}
.y2b{bottom:415.650000px;}
.y59{bottom:418.710000px;}
.yc4{bottom:428.070000px;}
.ye9{bottom:435.090000px;}
.y2a{bottom:435.450000px;}
.y58{bottom:438.510000px;}
.yab{bottom:438.870000px;}
.y82{bottom:442.290000px;}
.yc3{bottom:447.915000px;}
.ye8{bottom:455.115000px;}
.y29{bottom:455.295000px;}
.y57{bottom:458.355000px;}
.y81{bottom:462.315000px;}
.yaa{bottom:467.715000px;}
.ye7{bottom:474.915000px;}
.y28{bottom:475.095000px;}
.y56{bottom:478.155000px;}
.y80{bottom:482.115000px;}
.yc2{bottom:487.515000px;}
.ye6{bottom:494.715000px;}
.ya9{bottom:496.515000px;}
.y55{bottom:498.135000px;}
.y7f{bottom:501.915000px;}
.y27{bottom:503.895000px;}
.yc1{bottom:507.315000px;}
.ye5{bottom:514.515000px;}
.ya8{bottom:516.315000px;}
.y54{bottom:517.935000px;}
.y7e{bottom:521.715000px;}
.y26{bottom:523.875000px;}
.yc0{bottom:527.295000px;}
.ye4{bottom:534.315000px;}
.ya7{bottom:536.295000px;}
.y53{bottom:537.735000px;}
.y7d{bottom:541.515000px;}
.y25{bottom:543.675000px;}
.ybf{bottom:547.095000px;}
.ye3{bottom:554.295000px;}
.ya6{bottom:556.095000px;}
.y52{bottom:557.535000px;}
.y7c{bottom:561.495000px;}
.y24{bottom:563.475000px;}
.ye2{bottom:574.095000px;}
.ya5{bottom:575.895000px;}
.y51{bottom:577.335000px;}
.y7b{bottom:581.295000px;}
.y23{bottom:583.275000px;}
.ye1{bottom:593.895000px;}
.ya4{bottom:595.695000px;}
.y50{bottom:597.315000px;}
.y7a{bottom:601.095000px;}
.y22{bottom:603.075000px;}
.ye0{bottom:613.695000px;}
.ya3{bottom:615.495000px;}
.y4f{bottom:617.115000px;}
.y79{bottom:620.895000px;}
.y21{bottom:623.055000px;}
.ydf{bottom:633.495000px;}
.ya2{bottom:635.475000px;}
.y4e{bottom:636.915000px;}
.y78{bottom:640.695000px;}
.y20{bottom:642.855000px;}
.yde{bottom:653.475000px;}
.ya1{bottom:655.275000px;}
.y4d{bottom:656.715000px;}
.y77{bottom:660.675000px;}
.y1f{bottom:662.655000px;}
.ydd{bottom:673.275000px;}
.ya0{bottom:675.075000px;}
.y4c{bottom:676.515000px;}
.y76{bottom:680.475000px;}
.y1e{bottom:682.485000px;}
.ydc{bottom:693.105000px;}
.y9f{bottom:694.905000px;}
.y75{bottom:700.305000px;}
.y1d{bottom:702.285000px;}
.y4b{bottom:705.525000px;}
.ydb{bottom:712.905000px;}
.y9e{bottom:714.705000px;}
.y74{bottom:715.065000px;}
.y1c{bottom:722.265000px;}
.y4a{bottom:726.585000px;}
.yda{bottom:732.705000px;}
.y9d{bottom:734.685000px;}
.y72{bottom:734.865000px;}
.y1b{bottom:742.065000px;}
.y49{bottom:748.005000px;}
.yd9{bottom:752.685000px;}
.y9c{bottom:754.485000px;}
.y70{bottom:756.645000px;}
.y1a{bottom:761.865000px;}
.y48{bottom:767.805000px;}
.yd8{bottom:772.485000px;}
.ybe{bottom:774.285000px;}
.y6e{bottom:777.525000px;}
.y19{bottom:782.925000px;}
.y9b{bottom:783.285000px;}
.y47{bottom:789.225000px;}
.yd7{bottom:792.285000px;}
.y6b{bottom:798.045000px;}
.y9a{bottom:803.085000px;}
.y18{bottom:804.345000px;}
.y46{bottom:809.205000px;}
.yd6{bottom:812.085000px;}
.y99{bottom:822.885000px;}
.y17{bottom:824.325000px;}
.y6a{bottom:825.945000px;}
.y45{bottom:830.265000px;}
.yd5{bottom:831.885000px;}
.y98{bottom:842.865000px;}
.y16{bottom:845.745000px;}
.y44{bottom:850.245000px;}
.y69{bottom:851.865000px;}
.y97{bottom:862.665000px;}
.y15{bottom:865.545000px;}
.y43{bottom:871.665000px;}
.y96{bottom:882.465000px;}
.y14{bottom:885.345000px;}
.y42{bottom:891.465000px;}
.y95{bottom:902.265000px;}
.y13{bottom:910.365000px;}
.y41{bottom:911.265000px;}
.y94{bottom:922.110000px;}
.y12{bottom:925.710000px;}
.y40{bottom:931.110000px;}
.y93{bottom:942.090000px;}
.y11{bottom:947.490000px;}
.y3f{bottom:951.090000px;}
.y3e{bottom:970.890000px;}
.y10{bottom:972.330000px;}
.y3d{bottom:990.690000px;}
.yf{bottom:1004.010000px;}
.y3c{bottom:1010.490000px;}
.y3b{bottom:1030.290000px;}
.y9{bottom:1047.750000px;}
.y1{bottom:1062.330000px;}
.y7{bottom:1096.530000px;}
.h6{height:2.082656px;}
.h16{height:19.800000px;}
.h19{height:20.520000px;}
.h1a{height:20.700000px;}
.h18{height:20.880000px;}
.h15{height:21.420000px;}
.hb{height:21.780000px;}
.h1b{height:24.300000px;}
.hd{height:28.115859px;}
.h7{height:33.480000px;}
.h10{height:42.164648px;}
.he{height:43.215117px;}
.h12{height:43.506914px;}
.h4{height:46.736719px;}
.ha{height:47.901094px;}
.h14{height:48.496641px;}
.h11{height:48.975117px;}
.h17{height:48.995859px;}
.hf{height:49.255313px;}
.h13{height:50.364141px;}
.h9{height:53.224453px;}
.h1c{height:59.439023px;}
.h3{height:63.500977px;}
.h8{height:65.884219px;}
.hc{height:77.711484px;}
.h5{height:112.536000px;}
.h2{height:146.736000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w5{width:9.900000px;}
.w11{width:74.376000px;}
.wd{width:93.780000px;}
.wf{width:99.000000px;}
.w10{width:102.636000px;}
.w7{width:102.816000px;}
.w9{width:106.020000px;}
.wb{width:106.416000px;}
.wc{width:106.956000px;}
.we{width:108.756000px;}
.w8{width:111.816000px;}
.wa{width:115.056000px;}
.w6{width:117.000000px;}
.w3{width:131.796000px;}
.w2{width:654.630000px;}
.w1{width:893.250000px;}
.w4{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:53.460000px;}
.xc{left:65.159987px;}
.xf{left:75.239987px;}
.xd{left:81.035987px;}
.x6{left:99.035987px;}
.xa{left:101.375987px;}
.x1b{left:108.035987px;}
.x10{left:117.216000px;}
.x4{left:118.290000px;}
.x9{left:154.109987px;}
.x7{left:159.329987px;}
.xe{left:223.589987px;}
.x11{left:234.210000px;}
.x16{left:260.895000px;}
.xb{left:332.714987px;}
.x12{left:337.035000px;}
.x17{left:354.675000px;}
.x8{left:446.684987px;}
.x13{left:448.845000px;}
.x18{left:463.425000px;}
.x14{left:554.865000px;}
.x19{left:562.425000px;}
.x1a{left:665.070000px;}
.x15{left:669.930000px;}
.x3{left:708.090000px;}
.x5{left:829.620000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v5{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.120000pt;}
.v6{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls15{letter-spacing:-2.362667pt;}
.ls14{letter-spacing:-0.960000pt;}
.lsb{letter-spacing:-0.688000pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls1f{letter-spacing:-0.624000pt;}
.ls1a{letter-spacing:-0.480000pt;}
.ls1d{letter-spacing:-0.456533pt;}
.ls24{letter-spacing:-0.409067pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.271467pt;}
.ls18{letter-spacing:-0.230933pt;}
.ls26{letter-spacing:-0.225067pt;}
.ls21{letter-spacing:-0.183467pt;}
.ls19{letter-spacing:-0.094933pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.047360pt;}
.ls2{letter-spacing:0.094933pt;}
.ls8{letter-spacing:0.097067pt;}
.ls1e{letter-spacing:0.120533pt;}
.ls0{letter-spacing:0.133120pt;}
.ls23{letter-spacing:0.136533pt;}
.ls10{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.183467pt;}
.lsd{letter-spacing:0.230933pt;}
.ls1c{letter-spacing:0.231040pt;}
.ls7{letter-spacing:0.271467pt;}
.ls4{letter-spacing:0.272533pt;}
.ls12{letter-spacing:0.317440pt;}
.ls1{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.451733pt;}
.ls13{letter-spacing:0.500267pt;}
.lse{letter-spacing:0.800000pt;}
.ls11{letter-spacing:1.440000pt;}
.ls16{letter-spacing:2.080000pt;}
.ls3{letter-spacing:4.000000pt;}
.ls25{letter-spacing:7.834880pt;}
.ls22{letter-spacing:14.672640pt;}
.ls20{letter-spacing:40.912640pt;}
.ws9{word-spacing:-53.120000pt;}
.ws3{word-spacing:-21.600000pt;}
.ws4{word-spacing:-14.991467pt;}
.ws5{word-spacing:-14.817067pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.448533pt;}
.ws8{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.552533pt;}
.wse{word-spacing:-13.510933pt;}
.ws15{word-spacing:-13.463467pt;}
.ws1a{word-spacing:-13.416533pt;}
.ws17{word-spacing:-13.400533pt;}
.wsd{word-spacing:-13.374933pt;}
.ws11{word-spacing:-13.327360pt;}
.wsa{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.232640pt;}
.ws14{word-spacing:-13.185067pt;}
.ws19{word-spacing:-13.096533pt;}
.ws1c{word-spacing:-13.054933pt;}
.ws13{word-spacing:-13.049067pt;}
.ws7{word-spacing:-12.960000pt;}
.ws1b{word-spacing:-12.870933pt;}
.ws16{word-spacing:-12.823467pt;}
.wsb{word-spacing:-12.592000pt;}
.ws12{word-spacing:-12.320000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws6{word-spacing:-8.640000pt;}
.ws18{word-spacing:-8.016000pt;}
.ws10{word-spacing:0.000000pt;}
._11{margin-left:-6.657707pt;}
._10{margin-left:-5.735040pt;}
._12{margin-left:-4.820053pt;}
._1a{margin-left:-3.781120pt;}
._b{margin-left:-2.623573pt;}
._0{margin-left:-0.960000pt;}
._13{width:0.991573pt;}
._1{width:1.973333pt;}
._17{width:2.895787pt;}
._15{width:3.835307pt;}
._16{width:5.425280pt;}
._1c{width:6.378240pt;}
._1b{width:7.281920pt;}
._19{width:8.402560pt;}
._6{width:9.600000pt;}
._18{width:10.858027pt;}
._14{width:11.927040pt;}
._1f{width:14.788267pt;}
._1e{width:15.698133pt;}
._1d{width:18.101333pt;}
._20{width:19.915307pt;}
._7{width:67.808853pt;}
._8{width:136.960000pt;}
._d{width:173.546667pt;}
._2{width:227.282347pt;}
._3{width:317.440000pt;}
._5{width:387.840000pt;}
._4{width:394.032213pt;}
._9{width:537.212587pt;}
._e{width:581.280000pt;}
._f{width:625.440000pt;}
._a{width:975.146667pt;}
._c{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6f{bottom:5.120000pt;}
.ye{bottom:5.600000pt;}
.yae{bottom:5.760000pt;}
.yb0{bottom:5.920000pt;}
.y71{bottom:6.080000pt;}
.y6d{bottom:6.400000pt;}
.y6c{bottom:6.560000pt;}
.y73{bottom:6.880000pt;}
.yb2{bottom:9.120000pt;}
.y6{bottom:11.040000pt;}
.y8{bottom:16.160000pt;}
.yc{bottom:32.000000pt;}
.y5{bottom:35.840000pt;}
.yb{bottom:51.360000pt;}
.y4{bottom:60.800000pt;}
.yd{bottom:67.040000pt;}
.ya{bottom:70.720000pt;}
.y3{bottom:85.626667pt;}
.y92{bottom:95.040000pt;}
.ybd{bottom:96.640000pt;}
.yd4{bottom:98.240000pt;}
.y68{bottom:98.880000pt;}
.yfc{bottom:102.720000pt;}
.yf9{bottom:104.640000pt;}
.y3a{bottom:104.960000pt;}
.y2{bottom:111.706667pt;}
.y91{bottom:112.640000pt;}
.ybc{bottom:114.240000pt;}
.yd3{bottom:116.000000pt;}
.y67{bottom:116.640000pt;}
.yfb{bottom:120.320000pt;}
.yf8{bottom:122.240000pt;}
.y39{bottom:122.560000pt;}
.y90{bottom:130.400000pt;}
.ybb{bottom:131.840000pt;}
.yd2{bottom:133.600000pt;}
.y66{bottom:134.240000pt;}
.yfa{bottom:137.920000pt;}
.yf7{bottom:140.000000pt;}
.y38{bottom:140.160000pt;}
.y8f{bottom:148.000000pt;}
.yba{bottom:149.440000pt;}
.yd1{bottom:151.200000pt;}
.y65{bottom:151.840000pt;}
.yf6{bottom:157.600000pt;}
.y37{bottom:157.760000pt;}
.y8e{bottom:165.600000pt;}
.yb9{bottom:167.200000pt;}
.yd0{bottom:168.800000pt;}
.y64{bottom:169.440000pt;}
.yf5{bottom:175.200000pt;}
.y36{bottom:175.360000pt;}
.y8d{bottom:183.200000pt;}
.yb8{bottom:184.800000pt;}
.ycf{bottom:186.426667pt;}
.y63{bottom:187.066667pt;}
.yf4{bottom:192.826667pt;}
.y35{bottom:193.146667pt;}
.y8c{bottom:200.826667pt;}
.yb7{bottom:202.426667pt;}
.yce{bottom:204.186667pt;}
.y62{bottom:204.826667pt;}
.yf3{bottom:210.426667pt;}
.y34{bottom:210.746667pt;}
.yb6{bottom:220.026667pt;}
.ycd{bottom:221.786667pt;}
.y61{bottom:222.426667pt;}
.y8b{bottom:226.586667pt;}
.yf2{bottom:228.186667pt;}
.y33{bottom:228.346667pt;}
.yb5{bottom:237.626667pt;}
.ycc{bottom:239.386667pt;}
.y60{bottom:240.026667pt;}
.y8a{bottom:244.186667pt;}
.yf1{bottom:245.786667pt;}
.y32{bottom:245.946667pt;}
.yb4{bottom:256.506667pt;}
.ycb{bottom:256.986667pt;}
.y5f{bottom:257.626667pt;}
.y89{bottom:261.786667pt;}
.yf0{bottom:263.386667pt;}
.y31{bottom:263.546667pt;}
.yca{bottom:274.586667pt;}
.yb3{bottom:275.386667pt;}
.y5e{bottom:275.546667pt;}
.y88{bottom:279.386667pt;}
.yef{bottom:280.986667pt;}
.y30{bottom:281.306667pt;}
.yb1{bottom:288.826667pt;}
.yc9{bottom:292.346667pt;}
.y5d{bottom:293.466667pt;}
.y87{bottom:296.986667pt;}
.yee{bottom:298.586667pt;}
.y2f{bottom:298.906667pt;}
.yc8{bottom:309.946667pt;}
.yaf{bottom:310.426667pt;}
.y5c{bottom:311.226667pt;}
.y86{bottom:314.746667pt;}
.yed{bottom:316.346667pt;}
.y2e{bottom:316.506667pt;}
.yc7{bottom:327.546667pt;}
.y5b{bottom:328.826667pt;}
.y85{bottom:332.346667pt;}
.yec{bottom:333.946667pt;}
.y2d{bottom:334.106667pt;}
.yc6{bottom:345.146667pt;}
.y5a{bottom:346.586667pt;}
.yad{bottom:347.066667pt;}
.y84{bottom:349.946667pt;}
.yeb{bottom:351.546667pt;}
.y2c{bottom:351.706667pt;}
.yc5{bottom:362.746667pt;}
.yac{bottom:365.306667pt;}
.y83{bottom:367.546667pt;}
.yea{bottom:369.146667pt;}
.y2b{bottom:369.466667pt;}
.y59{bottom:372.186667pt;}
.yc4{bottom:380.506667pt;}
.ye9{bottom:386.746667pt;}
.y2a{bottom:387.066667pt;}
.y58{bottom:389.786667pt;}
.yab{bottom:390.106667pt;}
.y82{bottom:393.146667pt;}
.yc3{bottom:398.146667pt;}
.ye8{bottom:404.546667pt;}
.y29{bottom:404.706667pt;}
.y57{bottom:407.426667pt;}
.y81{bottom:410.946667pt;}
.yaa{bottom:415.746667pt;}
.ye7{bottom:422.146667pt;}
.y28{bottom:422.306667pt;}
.y56{bottom:425.026667pt;}
.y80{bottom:428.546667pt;}
.yc2{bottom:433.346667pt;}
.ye6{bottom:439.746667pt;}
.ya9{bottom:441.346667pt;}
.y55{bottom:442.786667pt;}
.y7f{bottom:446.146667pt;}
.y27{bottom:447.906667pt;}
.yc1{bottom:450.946667pt;}
.ye5{bottom:457.346667pt;}
.ya8{bottom:458.946667pt;}
.y54{bottom:460.386667pt;}
.y7e{bottom:463.746667pt;}
.y26{bottom:465.666667pt;}
.yc0{bottom:468.706667pt;}
.ye4{bottom:474.946667pt;}
.ya7{bottom:476.706667pt;}
.y53{bottom:477.986667pt;}
.y7d{bottom:481.346667pt;}
.y25{bottom:483.266667pt;}
.ybf{bottom:486.306667pt;}
.ye3{bottom:492.706667pt;}
.ya6{bottom:494.306667pt;}
.y52{bottom:495.586667pt;}
.y7c{bottom:499.106667pt;}
.y24{bottom:500.866667pt;}
.ye2{bottom:510.306667pt;}
.ya5{bottom:511.906667pt;}
.y51{bottom:513.186667pt;}
.y7b{bottom:516.706667pt;}
.y23{bottom:518.466667pt;}
.ye1{bottom:527.906667pt;}
.ya4{bottom:529.506667pt;}
.y50{bottom:530.946667pt;}
.y7a{bottom:534.306667pt;}
.y22{bottom:536.066667pt;}
.ye0{bottom:545.506667pt;}
.ya3{bottom:547.106667pt;}
.y4f{bottom:548.546667pt;}
.y79{bottom:551.906667pt;}
.y21{bottom:553.826667pt;}
.ydf{bottom:563.106667pt;}
.ya2{bottom:564.866667pt;}
.y4e{bottom:566.146667pt;}
.y78{bottom:569.506667pt;}
.y20{bottom:571.426667pt;}
.yde{bottom:580.866667pt;}
.ya1{bottom:582.466667pt;}
.y4d{bottom:583.746667pt;}
.y77{bottom:587.266667pt;}
.y1f{bottom:589.026667pt;}
.ydd{bottom:598.466667pt;}
.ya0{bottom:600.066667pt;}
.y4c{bottom:601.346667pt;}
.y76{bottom:604.866667pt;}
.y1e{bottom:606.653333pt;}
.ydc{bottom:616.093333pt;}
.y9f{bottom:617.693333pt;}
.y75{bottom:622.493333pt;}
.y1d{bottom:624.253333pt;}
.y4b{bottom:627.133333pt;}
.ydb{bottom:633.693333pt;}
.y9e{bottom:635.293333pt;}
.y74{bottom:635.613333pt;}
.y1c{bottom:642.013333pt;}
.y4a{bottom:645.853333pt;}
.yda{bottom:651.293333pt;}
.y9d{bottom:653.053333pt;}
.y72{bottom:653.213333pt;}
.y1b{bottom:659.613333pt;}
.y49{bottom:664.893333pt;}
.yd9{bottom:669.053333pt;}
.y9c{bottom:670.653333pt;}
.y70{bottom:672.573333pt;}
.y1a{bottom:677.213333pt;}
.y48{bottom:682.493333pt;}
.yd8{bottom:686.653333pt;}
.ybe{bottom:688.253333pt;}
.y6e{bottom:691.133333pt;}
.y19{bottom:695.933333pt;}
.y9b{bottom:696.253333pt;}
.y47{bottom:701.533333pt;}
.yd7{bottom:704.253333pt;}
.y6b{bottom:709.373333pt;}
.y9a{bottom:713.853333pt;}
.y18{bottom:714.973333pt;}
.y46{bottom:719.293333pt;}
.yd6{bottom:721.853333pt;}
.y99{bottom:731.453333pt;}
.y17{bottom:732.733333pt;}
.y6a{bottom:734.173333pt;}
.y45{bottom:738.013333pt;}
.yd5{bottom:739.453333pt;}
.y98{bottom:749.213333pt;}
.y16{bottom:751.773333pt;}
.y44{bottom:755.773333pt;}
.y69{bottom:757.213333pt;}
.y97{bottom:766.813333pt;}
.y15{bottom:769.373333pt;}
.y43{bottom:774.813333pt;}
.y96{bottom:784.413333pt;}
.y14{bottom:786.973333pt;}
.y42{bottom:792.413333pt;}
.y95{bottom:802.013333pt;}
.y13{bottom:809.213333pt;}
.y41{bottom:810.013333pt;}
.y94{bottom:819.653333pt;}
.y12{bottom:822.853333pt;}
.y40{bottom:827.653333pt;}
.y93{bottom:837.413333pt;}
.y11{bottom:842.213333pt;}
.y3f{bottom:845.413333pt;}
.y3e{bottom:863.013333pt;}
.y10{bottom:864.293333pt;}
.y3d{bottom:880.613333pt;}
.yf{bottom:892.453333pt;}
.y3c{bottom:898.213333pt;}
.y3b{bottom:915.813333pt;}
.y9{bottom:931.333333pt;}
.y1{bottom:944.293333pt;}
.y7{bottom:974.693333pt;}
.h6{height:1.851250pt;}
.h16{height:17.600000pt;}
.h19{height:18.240000pt;}
.h1a{height:18.400000pt;}
.h18{height:18.560000pt;}
.h15{height:19.040000pt;}
.hb{height:19.360000pt;}
.h1b{height:21.600000pt;}
.hd{height:24.991875pt;}
.h7{height:29.760000pt;}
.h10{height:37.479688pt;}
.he{height:38.413438pt;}
.h12{height:38.672812pt;}
.h4{height:41.543750pt;}
.ha{height:42.578750pt;}
.h14{height:43.108125pt;}
.h11{height:43.533438pt;}
.h17{height:43.551875pt;}
.hf{height:43.782500pt;}
.h13{height:44.768125pt;}
.h9{height:47.310625pt;}
.h1c{height:52.834688pt;}
.h3{height:56.445312pt;}
.h8{height:58.563750pt;}
.hc{height:69.076875pt;}
.h5{height:100.032000pt;}
.h2{height:130.432000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w5{width:8.800000pt;}
.w11{width:66.112000pt;}
.wd{width:83.360000pt;}
.wf{width:88.000000pt;}
.w10{width:91.232000pt;}
.w7{width:91.392000pt;}
.w9{width:94.240000pt;}
.wb{width:94.592000pt;}
.wc{width:95.072000pt;}
.we{width:96.672000pt;}
.w8{width:99.392000pt;}
.wa{width:102.272000pt;}
.w6{width:104.000000pt;}
.w3{width:117.152000pt;}
.w2{width:581.893333pt;}
.w1{width:794.000000pt;}
.w4{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:47.520000pt;}
.xc{left:57.919988pt;}
.xf{left:66.879988pt;}
.xd{left:72.031988pt;}
.x6{left:88.031988pt;}
.xa{left:90.111988pt;}
.x1b{left:96.031988pt;}
.x10{left:104.192000pt;}
.x4{left:105.146667pt;}
.x9{left:136.986655pt;}
.x7{left:141.626655pt;}
.xe{left:198.746655pt;}
.x11{left:208.186667pt;}
.x16{left:231.906667pt;}
.xb{left:295.746655pt;}
.x12{left:299.586667pt;}
.x17{left:315.266667pt;}
.x8{left:397.053321pt;}
.x13{left:398.973333pt;}
.x18{left:411.933333pt;}
.x14{left:493.213333pt;}
.x19{left:499.933333pt;}
.x1a{left:591.173333pt;}
.x15{left:595.493333pt;}
.x3{left:629.413333pt;}
.x5{left:737.440000pt;}
}




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