
    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_ddda5a19d6c7fbacd726f063.woff2')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_dbbbfd8368a8bf20074131f1.woff2')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_fb7fb72469fb6242dcf17a11.woff2')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_170fca7c9b716feb3a9d97d1.woff2')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_c9dc2c16333cbbf1116188fc.woff2')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_da499426f170ebac787d807c.woff2')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_c655788af93a8c543ce96dab.woff2')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_f6e0fbd31336bab014e3b053.woff2')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_8fe938138e1b25a9ee2849fe.woff2')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_f3fd949c446b81e3eaff61ca.woff2')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_5831ecb48f794da2c7b08604.woff2')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_0192308961c896d6d6f05300.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.946777;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_d3daf6d733efc1403fe1953e.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_a93f29580bf7abbbb59657a4.woff2')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_b367a71e9591017c89b3ba58.woff2')format("woff");}.fff{font-family:fff;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_226981ce0dc83101b7e1a57c.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.284668;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_9e0bcb31412862b812d7b8f1.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_eb9848814070f5aa7e0945ba.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_3e5a6c3c4fa1730be6e6ba5b.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.738770;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:ff14;src:url('chunks/assets/font_5cc1e6314fa6a2165c0fded8.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.120000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls10{letter-spacing:-4.680000px;}
.ls11{letter-spacing:-3.960000px;}
.lsb{letter-spacing:-1.830000px;}
.ls1d{letter-spacing:-1.800000px;}
.ls22{letter-spacing:-0.413400px;}
.lsc{letter-spacing:-0.298200px;}
.ls17{letter-spacing:-0.106800px;}
.ls14{letter-spacing:-0.053280px;}
.lse{letter-spacing:-0.038160px;}
.lsd{letter-spacing:-0.018000px;}
.lsa{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.036000px;}
.ls12{letter-spacing:0.053280px;}
.ls2{letter-spacing:0.132600px;}
.ls19{letter-spacing:0.135600px;}
.ls1f{letter-spacing:0.153600px;}
.ls7{letter-spacing:0.174240px;}
.ls8{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.259920px;}
.ls1b{letter-spacing:0.298800px;}
.ls1c{letter-spacing:0.306600px;}
.lsf{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.447840px;}
.ls16{letter-spacing:0.466800px;}
.ls18{letter-spacing:0.612000px;}
.ls25{letter-spacing:0.666000px;}
.ls0{letter-spacing:0.756000px;}
.ls4{letter-spacing:0.786240px;}
.ls6{letter-spacing:0.900000px;}
.ls1a{letter-spacing:0.924000px;}
.ls9{letter-spacing:2.340000px;}
.ls20{letter-spacing:3.780000px;}
.ls13{letter-spacing:5.940000px;}
.ls1e{letter-spacing:7.380000px;}
.ls21{letter-spacing:10.260000px;}
.ls24{letter-spacing:15.786720px;}
.ls23{letter-spacing:45.306720px;}
.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;}
}
.ws2{word-spacing:-21.757200px;}
.ws0{word-spacing:-16.626360px;}
.ws1{word-spacing:-16.493760px;}
.ws12{word-spacing:-15.864000px;}
.ws19{word-spacing:-15.606000px;}
.ws10{word-spacing:-15.552000px;}
.ws13{word-spacing:-15.406800px;}
.ws6{word-spacing:-15.300000px;}
.ws14{word-spacing:-15.246600px;}
.ws15{word-spacing:-15.238800px;}
.ws18{word-spacing:-15.199800px;}
.ws17{word-spacing:-15.093600px;}
.ws11{word-spacing:-15.075600px;}
.wsa{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.wse{word-spacing:-14.886720px;}
.wsf{word-spacing:-14.833200px;}
.wsb{word-spacing:-13.505760px;}
.ws16{word-spacing:-13.140000px;}
.ws5{word-spacing:-12.816720px;}
.ws4{word-spacing:-12.186000px;}
.ws9{word-spacing:-10.980000px;}
.ws8{word-spacing:-10.260000px;}
.wsd{word-spacing:-9.720000px;}
.ws3{word-spacing:-8.136000px;}
.wsc{word-spacing:0.000000px;}
._14{margin-left:-7.239360px;}
._f{margin-left:-5.490960px;}
._7{margin-left:-4.123440px;}
._2{margin-left:-3.036000px;}
._0{margin-left:-1.176000px;}
._1{width:1.116000px;}
._3{width:2.160000px;}
._5{width:3.359760px;}
._b{width:4.439760px;}
._4{width:5.899440px;}
._9{width:7.230960px;}
._a{width:8.480400px;}
._6{width:10.389600px;}
._8{width:11.952000px;}
._c{width:13.175280px;}
._13{width:16.194960px;}
._11{width:19.063440px;}
._12{width:21.156000px;}
._e{width:29.500320px;}
._d{width:30.836160px;}
._10{width:176.232240px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc7{color:rgb(33,33,33);}
.fc6{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3b{bottom:3.240000px;}
.yaa{bottom:3.420000px;}
.y3{bottom:3.600000px;}
.y9d{bottom:3.780000px;}
.ye{bottom:4.140000px;}
.ye6{bottom:4.500000px;}
.y18{bottom:4.860000px;}
.yba{bottom:6.840000px;}
.y9b{bottom:7.380000px;}
.ya4{bottom:9.000000px;}
.y1a{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.y3c{bottom:15.120000px;}
.yc2{bottom:16.200000px;}
.y4{bottom:17.496000px;}
.y3a{bottom:18.000000px;}
.y2{bottom:20.196000px;}
.y38{bottom:20.880000px;}
.ycd{bottom:21.420000px;}
.yd1{bottom:21.780000px;}
.y17{bottom:29.565000px;}
.yb{bottom:30.240000px;}
.y5{bottom:31.320000px;}
.y37{bottom:38.160000px;}
.y16{bottom:46.125000px;}
.ya{bottom:46.620000px;}
.y1{bottom:52.200000px;}
.y36{bottom:55.440000px;}
.yea{bottom:57.630000px;}
.yd9{bottom:57.825000px;}
.y15{bottom:61.785000px;}
.y14{bottom:72.405000px;}
.y35{bottom:72.720000px;}
.y9{bottom:73.260000px;}
.y34{bottom:90.000000px;}
.y13{bottom:90.585000px;}
.y8{bottom:93.090000px;}
.yf3{bottom:101.916000px;}
.y121{bottom:105.156000px;}
.y33{bottom:107.130000px;}
.yc5{bottom:107.316000px;}
.y12{bottom:109.125000px;}
.y7{bottom:111.450000px;}
.y8f{bottom:111.636000px;}
.yfe{bottom:114.336000px;}
.yf2{bottom:115.956000px;}
.y51{bottom:116.496000px;}
.yc4{bottom:122.076000px;}
.y120{bottom:122.436000px;}
.y32{bottom:124.410000px;}
.yfd{bottom:128.196000px;}
.y8e{bottom:129.276000px;}
.y26{bottom:129.450000px;}
.y50{bottom:133.776000px;}
.y11{bottom:134.865000px;}
.y11f{bottom:139.716000px;}
.yc3{bottom:140.076000px;}
.y31{bottom:141.690000px;}
.y8d{bottom:146.556000px;}
.y25{bottom:146.730000px;}
.y4f{bottom:151.050000px;}
.y11e{bottom:156.990000px;}
.yc1{bottom:158.070000px;}
.y30{bottom:158.970000px;}
.y10{bottom:159.525000px;}
.y8c{bottom:163.830000px;}
.y24{bottom:164.010000px;}
.y4e{bottom:168.330000px;}
.y11d{bottom:174.090000px;}
.y2f{bottom:176.250000px;}
.y8b{bottom:180.930000px;}
.y23{bottom:181.470000px;}
.y4d{bottom:185.610000px;}
.y11c{bottom:191.370000px;}
.yc0{bottom:192.270000px;}
.y2e{bottom:193.350000px;}
.y8a{bottom:198.210000px;}
.y22{bottom:198.750000px;}
.y4c{bottom:202.710000px;}
.y11b{bottom:208.290000px;}
.ybf{bottom:209.550000px;}
.y2d{bottom:210.630000px;}
.y89{bottom:215.490000px;}
.y21{bottom:216.210000px;}
.y4b{bottom:219.990000px;}
.ybe{bottom:224.130000px;}
.y11a{bottom:225.930000px;}
.y2c{bottom:227.910000px;}
.y88{bottom:232.770000px;}
.y20{bottom:233.670000px;}
.y4a{bottom:237.270000px;}
.ybd{bottom:242.130000px;}
.y119{bottom:243.210000px;}
.y2b{bottom:245.190000px;}
.y87{bottom:250.050000px;}
.y1f{bottom:250.950000px;}
.y49{bottom:254.550000px;}
.ybc{bottom:260.130000px;}
.y118{bottom:260.310000px;}
.y2a{bottom:262.470000px;}
.y86{bottom:267.330000px;}
.y1e{bottom:271.290000px;}
.y48{bottom:271.830000px;}
.y117{bottom:277.590000px;}
.ybb{bottom:278.130000px;}
.y29{bottom:279.750000px;}
.y85{bottom:284.430000px;}
.y47{bottom:289.110000px;}
.y116{bottom:294.870000px;}
.yb9{bottom:296.130000px;}
.y28{bottom:296.850000px;}
.y1d{bottom:298.830000px;}
.y84{bottom:301.710000px;}
.yf1{bottom:302.790000px;}
.y46{bottom:306.210000px;}
.y115{bottom:312.150000px;}
.y27{bottom:314.130000px;}
.y1c{bottom:316.290000px;}
.y83{bottom:318.990000px;}
.yf0{bottom:319.710000px;}
.yb8{bottom:320.970000px;}
.y45{bottom:323.490000px;}
.y114{bottom:329.430000px;}
.yef{bottom:333.570000px;}
.y82{bottom:335.910000px;}
.y129{bottom:336.270000px;}
.yb7{bottom:338.295000px;}
.y44{bottom:340.815000px;}
.y113{bottom:346.395000px;}
.yb6{bottom:352.875000px;}
.y81{bottom:353.595000px;}
.y43{bottom:358.095000px;}
.y112{bottom:363.855000px;}
.y80{bottom:370.875000px;}
.y42{bottom:375.375000px;}
.y111{bottom:381.135000px;}
.yfc{bottom:384.915000px;}
.y7f{bottom:387.975000px;}
.yb5{bottom:388.875000px;}
.y41{bottom:392.475000px;}
.y110{bottom:398.415000px;}
.yfb{bottom:401.655000px;}
.y7e{bottom:404.895000px;}
.y128{bottom:405.255000px;}
.y40{bottom:409.755000px;}
.yb4{bottom:410.295000px;}
.yfa{bottom:415.515000px;}
.y10f{bottom:415.695000px;}
.y7d{bottom:422.535000px;}
.y3f{bottom:427.035000px;}
.yb3{bottom:427.575000px;}
.y10e{bottom:432.975000px;}
.y7c{bottom:439.815000px;}
.yb2{bottom:442.155000px;}
.y3e{bottom:443.955000px;}
.y10d{bottom:450.255000px;}
.y7b{bottom:457.095000px;}
.yb1{bottom:460.155000px;}
.y3d{bottom:461.595000px;}
.y10c{bottom:467.355000px;}
.y7a{bottom:474.195000px;}
.y39{bottom:475.095000px;}
.yb0{bottom:478.155000px;}
.y10b{bottom:484.635000px;}
.y127{bottom:491.115000px;}
.y79{bottom:491.475000px;}
.yaf{bottom:496.155000px;}
.y10a{bottom:501.915000px;}
.y1b{bottom:504.435000px;}
.y78{bottom:508.755000px;}
.yae{bottom:517.575000px;}
.y109{bottom:519.195000px;}
.yee{bottom:521.895000px;}
.y77{bottom:526.035000px;}
.yad{bottom:534.855000px;}
.y108{bottom:536.475000px;}
.yed{bottom:538.635000px;}
.y76{bottom:543.315000px;}
.yac{bottom:549.435000px;}
.ye9{bottom:553.395000px;}
.y107{bottom:553.575000px;}
.y75{bottom:560.595000px;}
.yab{bottom:567.435000px;}
.y106{bottom:570.855000px;}
.yec{bottom:571.395000px;}
.y74{bottom:577.695000px;}
.ya9{bottom:585.435000px;}
.y105{bottom:588.135000px;}
.yeb{bottom:589.395000px;}
.y73{bottom:594.975000px;}
.y104{bottom:605.085000px;}
.ya8{bottom:606.885000px;}
.ye8{bottom:607.425000px;}
.y126{bottom:611.925000px;}
.y72{bottom:612.285000px;}
.y103{bottom:622.725000px;}
.ya7{bottom:624.165000px;}
.ye5{bottom:625.425000px;}
.yf9{bottom:626.325000px;}
.y71{bottom:629.565000px;}
.ya6{bottom:638.745000px;}
.y102{bottom:639.645000px;}
.yf8{bottom:643.245000px;}
.ye7{bottom:643.425000px;}
.y70{bottom:646.485000px;}
.y125{bottom:646.845000px;}
.y101{bottom:653.505000px;}
.ya5{bottom:656.745000px;}
.yf7{bottom:657.105000px;}
.y6f{bottom:664.125000px;}
.ye4{bottom:665.205000px;}
.ya3{bottom:674.745000px;}
.y6e{bottom:681.225000px;}
.ye3{bottom:682.485000px;}
.y124{bottom:698.145000px;}
.y6d{bottom:698.505000px;}
.ye2{bottom:699.765000px;}
.ya2{bottom:701.745000px;}
.ye1{bottom:714.345000px;}
.y6c{bottom:715.785000px;}
.ya1{bottom:719.025000px;}
.ye0{bottom:732.345000px;}
.y6b{bottom:733.065000px;}
.ya0{bottom:733.605000px;}
.y6a{bottom:750.345000px;}
.y9f{bottom:751.605000px;}
.y123{bottom:767.265000px;}
.y69{bottom:767.625000px;}
.ydf{bottom:768.345000px;}
.y9e{bottom:769.605000px;}
.y68{bottom:784.725000px;}
.y9c{bottom:787.605000px;}
.yde{bottom:789.765000px;}
.y67{bottom:802.005000px;}
.y9a{bottom:805.605000px;}
.ydd{bottom:806.865000px;}
.y66{bottom:819.285000px;}
.ydc{bottom:824.145000px;}
.y99{bottom:830.985000px;}
.y19{bottom:832.065000px;}
.y65{bottom:836.565000px;}
.yd8{bottom:838.725000px;}
.y98{bottom:848.085000px;}
.y64{bottom:853.485000px;}
.y122{bottom:853.845000px;}
.ydb{bottom:856.725000px;}
.yf{bottom:861.585000px;}
.y97{bottom:862.845000px;}
.y63{bottom:870.990000px;}
.yda{bottom:874.770000px;}
.y96{bottom:880.890000px;}
.y62{bottom:888.270000px;}
.yd7{bottom:892.770000px;}
.y95{bottom:898.890000px;}
.y61{bottom:905.550000px;}
.yd5{bottom:910.770000px;}
.yf6{bottom:915.630000px;}
.y94{bottom:916.890000px;}
.y60{bottom:922.830000px;}
.yd6{bottom:928.770000px;}
.yf5{bottom:932.550000px;}
.y100{bottom:932.910000px;}
.y93{bottom:934.890000px;}
.y5f{bottom:940.110000px;}
.yf4{bottom:946.410000px;}
.yff{bottom:946.950000px;}
.yd4{bottom:950.190000px;}
.y92{bottom:952.890000px;}
.y5e{bottom:957.390000px;}
.yd3{bottom:967.470000px;}
.y91{bottom:974.130000px;}
.y5d{bottom:974.490000px;}
.yd2{bottom:984.750000px;}
.y5c{bottom:991.770000px;}
.yd0{bottom:999.330000px;}
.y5b{bottom:1009.050000px;}
.ycf{bottom:1017.330000px;}
.y5a{bottom:1026.330000px;}
.ycc{bottom:1035.330000px;}
.yd{bottom:1036.410000px;}
.y59{bottom:1043.610000px;}
.yce{bottom:1053.330000px;}
.y6{bottom:1056.390000px;}
.y58{bottom:1060.530000px;}
.y90{bottom:1060.890000px;}
.ycb{bottom:1074.750000px;}
.y57{bottom:1077.990000px;}
.yca{bottom:1092.030000px;}
.y56{bottom:1095.270000px;}
.yc9{bottom:1106.610000px;}
.y55{bottom:1112.550000px;}
.yc8{bottom:1124.610000px;}
.y54{bottom:1129.830000px;}
.yc7{bottom:1142.640000px;}
.y53{bottom:1147.140000px;}
.yc6{bottom:1164.060000px;}
.y52{bottom:1164.420000px;}
.h22{height:17.100000px;}
.h23{height:17.136000px;}
.h25{height:17.280000px;}
.h29{height:17.316000px;}
.h2d{height:17.640000px;}
.hc{height:19.440000px;}
.h27{height:20.700000px;}
.h24{height:21.240000px;}
.h26{height:22.860000px;}
.h13{height:28.968750px;}
.h1f{height:29.340000px;}
.h14{height:29.520000px;}
.h28{height:30.060000px;}
.h2{height:32.976000px;}
.h2a{height:35.280000px;}
.h2c{height:35.640000px;}
.h12{height:35.806641px;}
.h9{height:36.180000px;}
.h20{height:38.818125px;}
.h1d{height:41.726953px;}
.h1c{height:42.164648px;}
.h2f{height:43.681992px;}
.he{height:44.002969px;}
.hb{height:44.820000px;}
.h1a{height:45.770625px;}
.h17{height:47.980898px;}
.h4{height:53.709961px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h18{height:56.574492px;}
.h19{height:56.741133px;}
.h1e{height:58.651172px;}
.h10{height:59.439023px;}
.h1b{height:59.614102px;}
.h11{height:61.189805px;}
.h30{height:61.423863px;}
.h21{height:62.211094px;}
.hf{height:63.180000px;}
.h6{height:65.884219px;}
.h5{height:67.824844px;}
.h2e{height:71.136000px;}
.h2b{height:71.316000px;}
.h8{height:71.613281px;}
.h15{height:73.722656px;}
.h7{height:121.536000px;}
.hd{height:174.810000px;}
.h16{height:327.630000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:73.080000px;}
.w10{width:77.436000px;}
.wf{width:87.660000px;}
.wd{width:109.656000px;}
.w12{width:144.180000px;}
.w11{width:150.690000px;}
.w5{width:151.950000px;}
.wc{width:156.270000px;}
.w8{width:216.075000px;}
.wa{width:364.395000px;}
.wb{width:364.575000px;}
.we{width:462.135000px;}
.w9{width:515.055000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:7.560000px;}
.x2{left:8.676000px;}
.x12{left:12.600000px;}
.xb{left:21.816000px;}
.x1{left:81.000000px;}
.xc{left:85.710000px;}
.xf{left:91.110000px;}
.x4{left:98.130000px;}
.xe{left:103.350000px;}
.x31{left:107.855987px;}
.x2b{left:146.015987px;}
.x29{left:174.269987px;}
.x25{left:176.249987px;}
.xd{left:191.010000px;}
.x17{left:199.649987px;}
.x10{left:215.175000px;}
.x27{left:228.449987px;}
.x1c{left:229.529987px;}
.x5{left:232.950000px;}
.x2e{left:235.469987px;}
.x23{left:236.549987px;}
.x1d{left:238.710000px;}
.x19{left:250.589987px;}
.x18{left:265.529987px;}
.x1a{left:267.869987px;}
.x8{left:272.235000px;}
.x1b{left:274.889987px;}
.x11{left:297.075000px;}
.x15{left:306.794987px;}
.x16{left:310.934987px;}
.x13{left:314.534987px;}
.x6{left:331.995000px;}
.x1e{left:349.275000px;}
.x7{left:351.255000px;}
.xa{left:365.475000px;}
.x30{left:396.074987px;}
.x20{left:437.655000px;}
.x9{left:439.500000px;}
.x14{left:446.835000px;}
.x21{left:515.805000px;}
.x24{left:631.004987px;}
.x26{left:633.344987px;}
.x28{left:651.704987px;}
.x2a{left:655.889987px;}
.x2c{left:658.049987px;}
.x2d{left:661.829987px;}
.x2f{left:664.889987px;}
.x22{left:667.230000px;}
.x3{left:739.050000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls10{letter-spacing:-4.160000pt;}
.ls11{letter-spacing:-3.520000pt;}
.lsb{letter-spacing:-1.626667pt;}
.ls1d{letter-spacing:-1.600000pt;}
.ls22{letter-spacing:-0.367467pt;}
.lsc{letter-spacing:-0.265067pt;}
.ls17{letter-spacing:-0.094933pt;}
.ls14{letter-spacing:-0.047360pt;}
.lse{letter-spacing:-0.033920pt;}
.lsd{letter-spacing:-0.016000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.032000pt;}
.ls12{letter-spacing:0.047360pt;}
.ls2{letter-spacing:0.117867pt;}
.ls19{letter-spacing:0.120533pt;}
.ls1f{letter-spacing:0.136533pt;}
.ls7{letter-spacing:0.154880pt;}
.ls8{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.231040pt;}
.ls1b{letter-spacing:0.265600pt;}
.ls1c{letter-spacing:0.272533pt;}
.lsf{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.398080pt;}
.ls16{letter-spacing:0.414933pt;}
.ls18{letter-spacing:0.544000pt;}
.ls25{letter-spacing:0.592000pt;}
.ls0{letter-spacing:0.672000pt;}
.ls4{letter-spacing:0.698880pt;}
.ls6{letter-spacing:0.800000pt;}
.ls1a{letter-spacing:0.821333pt;}
.ls9{letter-spacing:2.080000pt;}
.ls20{letter-spacing:3.360000pt;}
.ls13{letter-spacing:5.280000pt;}
.ls1e{letter-spacing:6.560000pt;}
.ls21{letter-spacing:9.120000pt;}
.ls24{letter-spacing:14.032640pt;}
.ls23{letter-spacing:40.272640pt;}
.ws2{word-spacing:-19.339733pt;}
.ws0{word-spacing:-14.778987pt;}
.ws1{word-spacing:-14.661120pt;}
.ws12{word-spacing:-14.101333pt;}
.ws19{word-spacing:-13.872000pt;}
.ws10{word-spacing:-13.824000pt;}
.ws13{word-spacing:-13.694933pt;}
.ws6{word-spacing:-13.600000pt;}
.ws14{word-spacing:-13.552533pt;}
.ws15{word-spacing:-13.545600pt;}
.ws18{word-spacing:-13.510933pt;}
.ws17{word-spacing:-13.416533pt;}
.ws11{word-spacing:-13.400533pt;}
.wsa{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.232640pt;}
.wsf{word-spacing:-13.185067pt;}
.wsb{word-spacing:-12.005120pt;}
.ws16{word-spacing:-11.680000pt;}
.ws5{word-spacing:-11.392640pt;}
.ws4{word-spacing:-10.832000pt;}
.ws9{word-spacing:-9.760000pt;}
.ws8{word-spacing:-9.120000pt;}
.wsd{word-spacing:-8.640000pt;}
.ws3{word-spacing:-7.232000pt;}
.wsc{word-spacing:0.000000pt;}
._14{margin-left:-6.434987pt;}
._f{margin-left:-4.880853pt;}
._7{margin-left:-3.665280pt;}
._2{margin-left:-2.698667pt;}
._0{margin-left:-1.045333pt;}
._1{width:0.992000pt;}
._3{width:1.920000pt;}
._5{width:2.986453pt;}
._b{width:3.946453pt;}
._4{width:5.243947pt;}
._9{width:6.427520pt;}
._a{width:7.538133pt;}
._6{width:9.235200pt;}
._8{width:10.624000pt;}
._c{width:11.711360pt;}
._13{width:14.395520pt;}
._11{width:16.945280pt;}
._12{width:18.805333pt;}
._e{width:26.222507pt;}
._d{width:27.409920pt;}
._10{width:156.650880pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:2.880000pt;}
.yaa{bottom:3.040000pt;}
.y3{bottom:3.200000pt;}
.y9d{bottom:3.360000pt;}
.ye{bottom:3.680000pt;}
.ye6{bottom:4.000000pt;}
.y18{bottom:4.320000pt;}
.yba{bottom:6.080000pt;}
.y9b{bottom:6.560000pt;}
.ya4{bottom:8.000000pt;}
.y1a{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.y3c{bottom:13.440000pt;}
.yc2{bottom:14.400000pt;}
.y4{bottom:15.552000pt;}
.y3a{bottom:16.000000pt;}
.y2{bottom:17.952000pt;}
.y38{bottom:18.560000pt;}
.ycd{bottom:19.040000pt;}
.yd1{bottom:19.360000pt;}
.y17{bottom:26.280000pt;}
.yb{bottom:26.880000pt;}
.y5{bottom:27.840000pt;}
.y37{bottom:33.920000pt;}
.y16{bottom:41.000000pt;}
.ya{bottom:41.440000pt;}
.y1{bottom:46.400000pt;}
.y36{bottom:49.280000pt;}
.yea{bottom:51.226667pt;}
.yd9{bottom:51.400000pt;}
.y15{bottom:54.920000pt;}
.y14{bottom:64.360000pt;}
.y35{bottom:64.640000pt;}
.y9{bottom:65.120000pt;}
.y34{bottom:80.000000pt;}
.y13{bottom:80.520000pt;}
.y8{bottom:82.746667pt;}
.yf3{bottom:90.592000pt;}
.y121{bottom:93.472000pt;}
.y33{bottom:95.226667pt;}
.yc5{bottom:95.392000pt;}
.y12{bottom:97.000000pt;}
.y7{bottom:99.066667pt;}
.y8f{bottom:99.232000pt;}
.yfe{bottom:101.632000pt;}
.yf2{bottom:103.072000pt;}
.y51{bottom:103.552000pt;}
.yc4{bottom:108.512000pt;}
.y120{bottom:108.832000pt;}
.y32{bottom:110.586667pt;}
.yfd{bottom:113.952000pt;}
.y8e{bottom:114.912000pt;}
.y26{bottom:115.066667pt;}
.y50{bottom:118.912000pt;}
.y11{bottom:119.880000pt;}
.y11f{bottom:124.192000pt;}
.yc3{bottom:124.512000pt;}
.y31{bottom:125.946667pt;}
.y8d{bottom:130.272000pt;}
.y25{bottom:130.426667pt;}
.y4f{bottom:134.266667pt;}
.y11e{bottom:139.546667pt;}
.yc1{bottom:140.506667pt;}
.y30{bottom:141.306667pt;}
.y10{bottom:141.800000pt;}
.y8c{bottom:145.626667pt;}
.y24{bottom:145.786667pt;}
.y4e{bottom:149.626667pt;}
.y11d{bottom:154.746667pt;}
.y2f{bottom:156.666667pt;}
.y8b{bottom:160.826667pt;}
.y23{bottom:161.306667pt;}
.y4d{bottom:164.986667pt;}
.y11c{bottom:170.106667pt;}
.yc0{bottom:170.906667pt;}
.y2e{bottom:171.866667pt;}
.y8a{bottom:176.186667pt;}
.y22{bottom:176.666667pt;}
.y4c{bottom:180.186667pt;}
.y11b{bottom:185.146667pt;}
.ybf{bottom:186.266667pt;}
.y2d{bottom:187.226667pt;}
.y89{bottom:191.546667pt;}
.y21{bottom:192.186667pt;}
.y4b{bottom:195.546667pt;}
.ybe{bottom:199.226667pt;}
.y11a{bottom:200.826667pt;}
.y2c{bottom:202.586667pt;}
.y88{bottom:206.906667pt;}
.y20{bottom:207.706667pt;}
.y4a{bottom:210.906667pt;}
.ybd{bottom:215.226667pt;}
.y119{bottom:216.186667pt;}
.y2b{bottom:217.946667pt;}
.y87{bottom:222.266667pt;}
.y1f{bottom:223.066667pt;}
.y49{bottom:226.266667pt;}
.ybc{bottom:231.226667pt;}
.y118{bottom:231.386667pt;}
.y2a{bottom:233.306667pt;}
.y86{bottom:237.626667pt;}
.y1e{bottom:241.146667pt;}
.y48{bottom:241.626667pt;}
.y117{bottom:246.746667pt;}
.ybb{bottom:247.226667pt;}
.y29{bottom:248.666667pt;}
.y85{bottom:252.826667pt;}
.y47{bottom:256.986667pt;}
.y116{bottom:262.106667pt;}
.yb9{bottom:263.226667pt;}
.y28{bottom:263.866667pt;}
.y1d{bottom:265.626667pt;}
.y84{bottom:268.186667pt;}
.yf1{bottom:269.146667pt;}
.y46{bottom:272.186667pt;}
.y115{bottom:277.466667pt;}
.y27{bottom:279.226667pt;}
.y1c{bottom:281.146667pt;}
.y83{bottom:283.546667pt;}
.yf0{bottom:284.186667pt;}
.yb8{bottom:285.306667pt;}
.y45{bottom:287.546667pt;}
.y114{bottom:292.826667pt;}
.yef{bottom:296.506667pt;}
.y82{bottom:298.586667pt;}
.y129{bottom:298.906667pt;}
.yb7{bottom:300.706667pt;}
.y44{bottom:302.946667pt;}
.y113{bottom:307.906667pt;}
.yb6{bottom:313.666667pt;}
.y81{bottom:314.306667pt;}
.y43{bottom:318.306667pt;}
.y112{bottom:323.426667pt;}
.y80{bottom:329.666667pt;}
.y42{bottom:333.666667pt;}
.y111{bottom:338.786667pt;}
.yfc{bottom:342.146667pt;}
.y7f{bottom:344.866667pt;}
.yb5{bottom:345.666667pt;}
.y41{bottom:348.866667pt;}
.y110{bottom:354.146667pt;}
.yfb{bottom:357.026667pt;}
.y7e{bottom:359.906667pt;}
.y128{bottom:360.226667pt;}
.y40{bottom:364.226667pt;}
.yb4{bottom:364.706667pt;}
.yfa{bottom:369.346667pt;}
.y10f{bottom:369.506667pt;}
.y7d{bottom:375.586667pt;}
.y3f{bottom:379.586667pt;}
.yb3{bottom:380.066667pt;}
.y10e{bottom:384.866667pt;}
.y7c{bottom:390.946667pt;}
.yb2{bottom:393.026667pt;}
.y3e{bottom:394.626667pt;}
.y10d{bottom:400.226667pt;}
.y7b{bottom:406.306667pt;}
.yb1{bottom:409.026667pt;}
.y3d{bottom:410.306667pt;}
.y10c{bottom:415.426667pt;}
.y7a{bottom:421.506667pt;}
.y39{bottom:422.306667pt;}
.yb0{bottom:425.026667pt;}
.y10b{bottom:430.786667pt;}
.y127{bottom:436.546667pt;}
.y79{bottom:436.866667pt;}
.yaf{bottom:441.026667pt;}
.y10a{bottom:446.146667pt;}
.y1b{bottom:448.386667pt;}
.y78{bottom:452.226667pt;}
.yae{bottom:460.066667pt;}
.y109{bottom:461.506667pt;}
.yee{bottom:463.906667pt;}
.y77{bottom:467.586667pt;}
.yad{bottom:475.426667pt;}
.y108{bottom:476.866667pt;}
.yed{bottom:478.786667pt;}
.y76{bottom:482.946667pt;}
.yac{bottom:488.386667pt;}
.ye9{bottom:491.906667pt;}
.y107{bottom:492.066667pt;}
.y75{bottom:498.306667pt;}
.yab{bottom:504.386667pt;}
.y106{bottom:507.426667pt;}
.yec{bottom:507.906667pt;}
.y74{bottom:513.506667pt;}
.ya9{bottom:520.386667pt;}
.y105{bottom:522.786667pt;}
.yeb{bottom:523.906667pt;}
.y73{bottom:528.866667pt;}
.y104{bottom:537.853333pt;}
.ya8{bottom:539.453333pt;}
.ye8{bottom:539.933333pt;}
.y126{bottom:543.933333pt;}
.y72{bottom:544.253333pt;}
.y103{bottom:553.533333pt;}
.ya7{bottom:554.813333pt;}
.ye5{bottom:555.933333pt;}
.yf9{bottom:556.733333pt;}
.y71{bottom:559.613333pt;}
.ya6{bottom:567.773333pt;}
.y102{bottom:568.573333pt;}
.yf8{bottom:571.773333pt;}
.ye7{bottom:571.933333pt;}
.y70{bottom:574.653333pt;}
.y125{bottom:574.973333pt;}
.y101{bottom:580.893333pt;}
.ya5{bottom:583.773333pt;}
.yf7{bottom:584.093333pt;}
.y6f{bottom:590.333333pt;}
.ye4{bottom:591.293333pt;}
.ya3{bottom:599.773333pt;}
.y6e{bottom:605.533333pt;}
.ye3{bottom:606.653333pt;}
.y124{bottom:620.573333pt;}
.y6d{bottom:620.893333pt;}
.ye2{bottom:622.013333pt;}
.ya2{bottom:623.773333pt;}
.ye1{bottom:634.973333pt;}
.y6c{bottom:636.253333pt;}
.ya1{bottom:639.133333pt;}
.ye0{bottom:650.973333pt;}
.y6b{bottom:651.613333pt;}
.ya0{bottom:652.093333pt;}
.y6a{bottom:666.973333pt;}
.y9f{bottom:668.093333pt;}
.y123{bottom:682.013333pt;}
.y69{bottom:682.333333pt;}
.ydf{bottom:682.973333pt;}
.y9e{bottom:684.093333pt;}
.y68{bottom:697.533333pt;}
.y9c{bottom:700.093333pt;}
.yde{bottom:702.013333pt;}
.y67{bottom:712.893333pt;}
.y9a{bottom:716.093333pt;}
.ydd{bottom:717.213333pt;}
.y66{bottom:728.253333pt;}
.ydc{bottom:732.573333pt;}
.y99{bottom:738.653333pt;}
.y19{bottom:739.613333pt;}
.y65{bottom:743.613333pt;}
.yd8{bottom:745.533333pt;}
.y98{bottom:753.853333pt;}
.y64{bottom:758.653333pt;}
.y122{bottom:758.973333pt;}
.ydb{bottom:761.533333pt;}
.yf{bottom:765.853333pt;}
.y97{bottom:766.973333pt;}
.y63{bottom:774.213333pt;}
.yda{bottom:777.573333pt;}
.y96{bottom:783.013333pt;}
.y62{bottom:789.573333pt;}
.yd7{bottom:793.573333pt;}
.y95{bottom:799.013333pt;}
.y61{bottom:804.933333pt;}
.yd5{bottom:809.573333pt;}
.yf6{bottom:813.893333pt;}
.y94{bottom:815.013333pt;}
.y60{bottom:820.293333pt;}
.yd6{bottom:825.573333pt;}
.yf5{bottom:828.933333pt;}
.y100{bottom:829.253333pt;}
.y93{bottom:831.013333pt;}
.y5f{bottom:835.653333pt;}
.yf4{bottom:841.253333pt;}
.yff{bottom:841.733333pt;}
.yd4{bottom:844.613333pt;}
.y92{bottom:847.013333pt;}
.y5e{bottom:851.013333pt;}
.yd3{bottom:859.973333pt;}
.y91{bottom:865.893333pt;}
.y5d{bottom:866.213333pt;}
.yd2{bottom:875.333333pt;}
.y5c{bottom:881.573333pt;}
.yd0{bottom:888.293333pt;}
.y5b{bottom:896.933333pt;}
.ycf{bottom:904.293333pt;}
.y5a{bottom:912.293333pt;}
.ycc{bottom:920.293333pt;}
.yd{bottom:921.253333pt;}
.y59{bottom:927.653333pt;}
.yce{bottom:936.293333pt;}
.y6{bottom:939.013333pt;}
.y58{bottom:942.693333pt;}
.y90{bottom:943.013333pt;}
.ycb{bottom:955.333333pt;}
.y57{bottom:958.213333pt;}
.yca{bottom:970.693333pt;}
.y56{bottom:973.573333pt;}
.yc9{bottom:983.653333pt;}
.y55{bottom:988.933333pt;}
.yc8{bottom:999.653333pt;}
.y54{bottom:1004.293333pt;}
.yc7{bottom:1015.680000pt;}
.y53{bottom:1019.680000pt;}
.yc6{bottom:1034.720000pt;}
.y52{bottom:1035.040000pt;}
.h22{height:15.200000pt;}
.h23{height:15.232000pt;}
.h25{height:15.360000pt;}
.h29{height:15.392000pt;}
.h2d{height:15.680000pt;}
.hc{height:17.280000pt;}
.h27{height:18.400000pt;}
.h24{height:18.880000pt;}
.h26{height:20.320000pt;}
.h13{height:25.750000pt;}
.h1f{height:26.080000pt;}
.h14{height:26.240000pt;}
.h28{height:26.720000pt;}
.h2{height:29.312000pt;}
.h2a{height:31.360000pt;}
.h2c{height:31.680000pt;}
.h12{height:31.828125pt;}
.h9{height:32.160000pt;}
.h20{height:34.505000pt;}
.h1d{height:37.090625pt;}
.h1c{height:37.479688pt;}
.h2f{height:38.828437pt;}
.he{height:39.113750pt;}
.hb{height:39.840000pt;}
.h1a{height:40.685000pt;}
.h17{height:42.649687pt;}
.h4{height:47.742188pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h18{height:50.288438pt;}
.h19{height:50.436563pt;}
.h1e{height:52.134375pt;}
.h10{height:52.834688pt;}
.h1b{height:52.990313pt;}
.h11{height:54.390938pt;}
.h30{height:54.598989pt;}
.h21{height:55.298750pt;}
.hf{height:56.160000pt;}
.h6{height:58.563750pt;}
.h5{height:60.288750pt;}
.h2e{height:63.232000pt;}
.h2b{height:63.392000pt;}
.h8{height:63.656250pt;}
.h15{height:65.531250pt;}
.h7{height:108.032000pt;}
.hd{height:155.386667pt;}
.h16{height:291.226667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:64.960000pt;}
.w10{width:68.832000pt;}
.wf{width:77.920000pt;}
.wd{width:97.472000pt;}
.w12{width:128.160000pt;}
.w11{width:133.946667pt;}
.w5{width:135.066667pt;}
.wc{width:138.906667pt;}
.w8{width:192.066667pt;}
.wa{width:323.906667pt;}
.wb{width:324.066667pt;}
.we{width:410.786667pt;}
.w9{width:457.826667pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:6.720000pt;}
.x2{left:7.712000pt;}
.x12{left:11.200000pt;}
.xb{left:19.392000pt;}
.x1{left:72.000000pt;}
.xc{left:76.186667pt;}
.xf{left:80.986667pt;}
.x4{left:87.226667pt;}
.xe{left:91.866667pt;}
.x31{left:95.871988pt;}
.x2b{left:129.791988pt;}
.x29{left:154.906655pt;}
.x25{left:156.666655pt;}
.xd{left:169.786667pt;}
.x17{left:177.466655pt;}
.x10{left:191.266667pt;}
.x27{left:203.066655pt;}
.x1c{left:204.026655pt;}
.x5{left:207.066667pt;}
.x2e{left:209.306655pt;}
.x23{left:210.266655pt;}
.x1d{left:212.186667pt;}
.x19{left:222.746655pt;}
.x18{left:236.026655pt;}
.x1a{left:238.106655pt;}
.x8{left:241.986667pt;}
.x1b{left:244.346655pt;}
.x11{left:264.066667pt;}
.x15{left:272.706655pt;}
.x16{left:276.386655pt;}
.x13{left:279.586655pt;}
.x6{left:295.106667pt;}
.x1e{left:310.466667pt;}
.x7{left:312.226667pt;}
.xa{left:324.866667pt;}
.x30{left:352.066655pt;}
.x20{left:389.026667pt;}
.x9{left:390.666667pt;}
.x14{left:397.186667pt;}
.x21{left:458.493333pt;}
.x24{left:560.893322pt;}
.x26{left:562.973322pt;}
.x28{left:579.293322pt;}
.x2a{left:583.013322pt;}
.x2c{left:584.933322pt;}
.x2d{left:588.293322pt;}
.x2f{left:591.013322pt;}
.x22{left:593.093333pt;}
.x3{left:656.933333pt;}
}




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