
    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_791667cfeca26bb6a2d8d3e2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_9fa1717bd1142c87191976e8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_ea89685ebc9ca75792c63da4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.113281;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_b151d6dc330e23d1d561a469.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.895996;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_6a23c2608c10fde09dbdb369.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.298705;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_51769c97391b62722ed1137c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.106934;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_e6950b06577745d881d531c1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_abbc0f994b1ff78e76c9002c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v1{vertical-align:-144.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:63.360000px;}
.v3{vertical-align:92.160000px;}
.v5{vertical-align:136.800000px;}
.v4{vertical-align:149.760000px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.090720px;}
.lsc{letter-spacing:0.396000px;}
.ls9{letter-spacing:0.432000px;}
.ls3{letter-spacing:1.370880px;}
.lsb{letter-spacing:32.592960px;}
.ls2{letter-spacing:33.120000px;}
.ls7{letter-spacing:39.983040px;}
.ls8{letter-spacing:48.479040px;}
.ls1{letter-spacing:51.456960px;}
.ls4{letter-spacing:79.198560px;}
.ls6{letter-spacing:96.744960px;}
.ls5{letter-spacing:103.199040px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd{word-spacing:-108.486720px;}
.ws20{word-spacing:-86.400000px;}
.ws3{word-spacing:-81.360000px;}
.ws19{word-spacing:-73.224000px;}
.ws9{word-spacing:-65.088000px;}
.ws7{word-spacing:-59.760000px;}
.ws5c{word-spacing:-51.641280px;}
.wsf{word-spacing:-48.816000px;}
.ws5{word-spacing:-48.240000px;}
.ws17{word-spacing:-46.837440px;}
.ws16{word-spacing:-43.283520px;}
.wse{word-spacing:-43.234560px;}
.ws51{word-spacing:-40.464000px;}
.ws5b{word-spacing:-38.430720px;}
.ws11{word-spacing:-38.076480px;}
.ws14{word-spacing:-36.829440px;}
.ws4f{word-spacing:-33.226560px;}
.ws0{word-spacing:-32.544000px;}
.ws15{word-spacing:-29.940480px;}
.ws50{word-spacing:-27.011520px;}
.ws56{word-spacing:-26.821440px;}
.wsc{word-spacing:-24.408000px;}
.ws55{word-spacing:-23.106240px;}
.ws52{word-spacing:-21.804480px;}
.ws13{word-spacing:-18.875520px;}
.ws2{word-spacing:-14.970240px;}
.ws4{word-spacing:-10.584000px;}
.ws54{word-spacing:-4.422240px;}
.ws25{word-spacing:-4.320000px;}
.ws3b{word-spacing:-3.036960px;}
.ws30{word-spacing:-3.024000px;}
.ws39{word-spacing:-2.977920px;}
.ws3c{word-spacing:-2.629440px;}
.ws53{word-spacing:-1.679040px;}
.ws1a{word-spacing:-1.389600px;}
.ws4e{word-spacing:-1.026720px;}
.ws1b{word-spacing:-0.488160px;}
.ws40{word-spacing:-0.252000px;}
.ws34{word-spacing:-0.014400px;}
.ws1{word-spacing:0.000000px;}
.ws49{word-spacing:0.108000px;}
.ws1f{word-spacing:0.338400px;}
.ws5a{word-spacing:0.550080px;}
.ws3a{word-spacing:0.679680px;}
.ws27{word-spacing:1.008000px;}
.ws58{word-spacing:1.022400px;}
.ws1c{word-spacing:1.271520px;}
.ws2d{word-spacing:2.160000px;}
.ws59{word-spacing:3.991680px;}
.ws2b{word-spacing:5.328000px;}
.ws2c{word-spacing:6.768000px;}
.ws44{word-spacing:6.840000px;}
.ws24{word-spacing:8.064000px;}
.ws21{word-spacing:8.208000px;}
.ws4c{word-spacing:9.684000px;}
.ws46{word-spacing:10.008000px;}
.ws4d{word-spacing:10.512000px;}
.ws2a{word-spacing:11.088000px;}
.ws45{word-spacing:13.152960px;}
.ws29{word-spacing:19.728000px;}
.ws1d{word-spacing:21.114720px;}
.ws3f{word-spacing:22.356000px;}
.ws1e{word-spacing:22.435200px;}
.ws42{word-spacing:23.148000px;}
.ws41{word-spacing:23.760000px;}
.ws32{word-spacing:25.221600px;}
.ws35{word-spacing:26.412480px;}
.ws28{word-spacing:26.784000px;}
.ws36{word-spacing:27.270720px;}
.ws33{word-spacing:29.033280px;}
.ws23{word-spacing:29.952000px;}
.ws4b{word-spacing:30.168000px;}
.ws5d{word-spacing:30.600000px;}
.ws2e{word-spacing:31.248000px;}
.ws47{word-spacing:34.092000px;}
.ws3e{word-spacing:34.488000px;}
.ws48{word-spacing:34.740000px;}
.ws4a{word-spacing:34.809120px;}
.ws3d{word-spacing:35.172000px;}
.ws37{word-spacing:41.415840px;}
.ws38{word-spacing:41.670720px;}
.ws2f{word-spacing:45.648000px;}
.ws43{word-spacing:61.488000px;}
.ws31{word-spacing:62.975520px;}
.ws22{word-spacing:77.040000px;}
.ws26{word-spacing:80.208000px;}
.ws12{word-spacing:148.924800px;}
.ws6{word-spacing:297.072000px;}
.ws57{word-spacing:437.057280px;}
.wsb{word-spacing:456.742080px;}
.ws18{word-spacing:610.704000px;}
.ws8{word-spacing:770.286240px;}
.ws10{word-spacing:840.960000px;}
.wsa{word-spacing:1799.136000px;}
._6{margin-left:-26.352000px;}
._7{margin-left:-22.032000px;}
._1c{margin-left:-17.712000px;}
._12{margin-left:-16.361280px;}
._8{margin-left:-13.824000px;}
._13{margin-left:-12.722400px;}
._9{margin-left:-10.584000px;}
._11{margin-left:-9.288000px;}
._1b{margin-left:-7.974720px;}
._5{margin-left:-6.696000px;}
._c{margin-left:-5.688000px;}
._4{margin-left:-4.536000px;}
._f{margin-left:-3.438720px;}
._1{margin-left:-2.376000px;}
._0{margin-left:-1.296000px;}
._3{width:1.080000px;}
._2{width:2.160000px;}
._b{width:3.991680px;}
._a{width:6.048000px;}
._3a{width:22.932000px;}
._3b{width:24.048000px;}
._39{width:25.164000px;}
._38{width:26.784000px;}
._3d{width:28.152000px;}
._27{width:29.520000px;}
._26{width:31.248000px;}
._2e{width:33.552000px;}
._29{width:35.136000px;}
._37{width:37.016640px;}
._2d{width:40.014720px;}
._23{width:41.904000px;}
._1f{width:43.469280px;}
._1e{width:44.582400px;}
._1d{width:45.588960px;}
._20{width:46.975680px;}
._18{width:52.050240px;}
._2b{width:54.792000px;}
._2c{width:56.574720px;}
._3e{width:60.027840px;}
._25{width:61.398720px;}
._34{width:63.757440px;}
._2f{width:64.961280px;}
._10{width:66.222720px;}
._21{width:67.380480px;}
._22{width:68.824800px;}
._3f{width:76.176000px;}
._14{width:77.843520px;}
._30{width:79.974720px;}
._31{width:81.072000px;}
._3c{width:87.048000px;}
._15{width:88.418880px;}
._32{width:89.677440px;}
._35{width:99.135360px;}
._33{width:101.868480px;}
._24{width:112.104000px;}
._28{width:113.760000px;}
._16{width:116.971200px;}
._2a{width:120.597120px;}
._17{width:175.861440px;}
._e{width:183.182400px;}
._36{width:200.858400px;}
._d{width:259.194240px;}
._1a{width:340.002720px;}
._19{width:1073.463840px;}
.fc13{color:rgb(242,242,242);}
.fc12{color:rgb(38,38,38);}
.fc10{color:rgb(0,0,0);}
.fce{color:rgb(0,112,192);}
.fcd{color:rgb(146,208,80);}
.fc0{color:rgb(89,89,89);}
.fc2{color:rgb(64,64,64);}
.fc4{color:rgb(255,255,255);}
.fc11{color:rgb(102,102,102);}
.fc5{color:rgb(255,255,0);}
.fc15{color:transparent;}
.fcb{color:rgb(112,48,160);}
.fcf{color:rgb(255,0,0);}
.fc7{color:rgb(255,109,255);}
.fc14{color:rgb(125,183,21);}
.fc3{color:rgb(99,145,17);}
.fc6{color:rgb(255,137,137);}
.fc8{color:rgb(0,176,240);}
.fc1{color:rgb(125,182,22);}
.fc9{color:rgb(114,191,197);}
.fca{color:rgb(255,192,0);}
.fcc{color:rgb(255,0,255);}
.fs3{font-size:66.240000px;}
.fsf{font-size:83.520000px;}
.fs8{font-size:96.480000px;}
.fs12{font-size:102.240000px;}
.fsb{font-size:108.000000px;}
.fs9{font-size:119.520000px;}
.fs10{font-size:132.480000px;}
.fs13{font-size:138.240000px;}
.fs1{font-size:144.000000px;}
.fsd{font-size:155.520000px;}
.fsa{font-size:168.480000px;}
.fs11{font-size:184.320000px;}
.fs14{font-size:185.760000px;}
.fs5{font-size:191.520000px;}
.fs0{font-size:216.000000px;}
.fs4{font-size:240.480000px;}
.fse{font-size:263.520000px;}
.fs7{font-size:288.000000px;}
.fs2{font-size:324.000000px;}
.fs6{font-size:360.000000px;}
.fsc{font-size:390.240000px;}
.yb3{bottom:-22.680000px;}
.y0{bottom:0.000000px;}
.y43{bottom:5.760000px;}
.y9{bottom:51.234000px;}
.y7{bottom:51.593400px;}
.y5{bottom:51.594000px;}
.yf6{bottom:74.274000px;}
.y97{bottom:102.354000px;}
.y52{bottom:109.554000px;}
.yeb{bottom:115.674000px;}
.y22{bottom:119.634000px;}
.y19{bottom:121.074000px;}
.y96{bottom:134.754000px;}
.y8a{bottom:136.554000px;}
.yf5{bottom:139.074000px;}
.y54{bottom:141.593400px;}
.y6e{bottom:146.274000px;}
.y7e{bottom:148.434000px;}
.yd7{bottom:149.514000px;}
.y51{bottom:149.874000px;}
.yea{bottom:151.674000px;}
.y21{bottom:158.514000px;}
.y24{bottom:159.954000px;}
.yd3{bottom:165.714000px;}
.y95{bottom:167.874000px;}
.y38{bottom:168.594000px;}
.yd6{bottom:182.274000px;}
.y7d{bottom:184.434000px;}
.y89{bottom:186.954000px;}
.ye9{bottom:187.674000px;}
.y6d{bottom:189.474000px;}
.y50{bottom:190.194000px;}
.y18{bottom:193.074000px;}
.y23{bottom:203.154000px;}
.yf4{bottom:203.874000px;}
.yd2{bottom:205.314000px;}
.ybf{bottom:216.114000px;}
.y53{bottom:217.194000px;}
.y7c{bottom:220.434000px;}
.yd5{bottom:221.874000px;}
.ye8{bottom:223.674000px;}
.y17{bottom:229.074000px;}
.y6c{bottom:232.674000px;}
.ya5{bottom:234.474000px;}
.y88{bottom:237.354000px;}
.yd1{bottom:242.034000px;}
.yc1{bottom:245.274000px;}
.y94{bottom:249.234000px;}
.y7b{bottom:256.434000px;}
.yd4{bottom:258.594000px;}
.yb0{bottom:262.194000px;}
.y4a{bottom:268.314000px;}
.yf3{bottom:268.674000px;}
.yc8{bottom:269.394000px;}
.yc0{bottom:274.074000px;}
.y6b{bottom:275.874000px;}
.y37{bottom:277.674000px;}
.yc{bottom:278.034000px;}
.y93{bottom:281.634000px;}
.y9d{bottom:281.994000px;}
.ydb{bottom:285.594000px;}
.y3c{bottom:288.114000px;}
.y26{bottom:291.714000px;}
.y7a{bottom:292.434000px;}
.ye7{bottom:295.674000px;}
.y16{bottom:301.074000px;}
.yaf{bottom:301.794000px;}
.yc7{bottom:303.594000px;}
.y2f{bottom:307.194000px;}
.y92{bottom:314.754000px;}
.y2a{bottom:318.714000px;}
.y6a{bottom:319.074000px;}
.y3f{bottom:321.594000px;}
.y2{bottom:322.314000px;}
.y32{bottom:327.354000px;}
.y4f{bottom:328.434000px;}
.ye6{bottom:331.674000px;}
.yf2{bottom:333.474000px;}
.y9c{bottom:335.994000px;}
.y36{bottom:336.714000px;}
.y87{bottom:338.154000px;}
.y15{bottom:338.514000px;}
.y25{bottom:345.714000px;}
.y2e{bottom:347.514000px;}
.y99{bottom:348.234000px;}
.y29{bottom:348.594000px;}
.y5f{bottom:349.314000px;}
.ya2{bottom:351.474000px;}
.yae{bottom:352.554000px;}
.yf{bottom:359.394000px;}
.y69{bottom:362.274000px;}
.ybd{bottom:364.074000px;}
.y79{bottom:364.434000px;}
.y31{bottom:367.674000px;}
.y56{bottom:378.474000px;}
.ya1{bottom:384.234000px;}
.yad{bottom:385.674000px;}
.y4{bottom:387.114000px;}
.y2d{bottom:387.834000px;}
.y86{bottom:388.554000px;}
.y9b{bottom:389.994000px;}
.yb{bottom:393.234000px;}
.ybe{bottom:393.954000px;}
.y91{bottom:396.114000px;}
.yf1{bottom:398.274000px;}
.y78{bottom:400.434000px;}
.y49{bottom:402.954000px;}
.ye5{bottom:403.674000px;}
.y68{bottom:405.474000px;}
.y5e{bottom:406.914000px;}
.y30{bottom:407.994000px;}
.y35{bottom:408.354000px;}
.y9e{bottom:411.594000px;}
.yd8{bottom:413.754000px;}
.y45{bottom:414.114000px;}
.y14{bottom:416.274000px;}
.y3b{bottom:416.634000px;}
.yca{bottom:419.514000px;}
.y1f{bottom:420.594000px;}
.ya0{bottom:422.754000px;}
.y41{bottom:426.714000px;}
.y2c{bottom:428.154000px;}
.y90{bottom:428.514000px;}
.y98{bottom:431.034000px;}
.yac{bottom:435.714000px;}
.y77{bottom:436.434000px;}
.y85{bottom:438.954000px;}
.y44{bottom:439.314000px;}
.ye4{bottom:439.674000px;}
.y9a{bottom:443.634000px;}
.y67{bottom:448.674000px;}
.yda{bottom:451.554000px;}
.y40{bottom:451.914000px;}
.yc9{bottom:453.714000px;}
.y9f{bottom:455.874000px;}
.y3a{bottom:456.234000px;}
.y55{bottom:457.314000px;}
.y42{bottom:458.754000px;}
.y8f{bottom:460.914000px;}
.y4e{bottom:461.274000px;}
.yf0{bottom:463.074000px;}
.y5d{bottom:464.514000px;}
.ye{bottom:467.394000px;}
.ya4{bottom:470.634000px;}
.y76{bottom:472.074000px;}
.yab{bottom:474.954000px;}
.ye3{bottom:475.674000px;}
.ybc{bottom:480.714000px;}
.y20{bottom:483.954000px;}
.y3{bottom:484.314000px;}
.y13{bottom:486.474000px;}
.y66{bottom:491.874000px;}
.y10{bottom:492.954000px;}
.y8e{bottom:493.314000px;}
.y4d{bottom:494.034000px;}
.y1e{bottom:506.994000px;}
.ybb{bottom:511.314000px;}
.ye2{bottom:511.674000px;}
.yb7{bottom:512.394000px;}
.y75{bottom:515.274000px;}
.y5c{bottom:522.114000px;}
.y12{bottom:523.194000px;}
.yaa{bottom:525.714000px;}
.y4c{bottom:527.154000px;}
.yef{bottom:527.874000px;}
.y65{bottom:535.074000px;}
.yce{bottom:538.674000px;}
.y84{bottom:539.754000px;}
.yba{bottom:542.274000px;}
.y1{bottom:543.714000px;}
.y28{bottom:546.234000px;}
.ye1{bottom:547.674000px;}
.y48{bottom:549.474000px;}
.yc4{bottom:550.554000px;}
.y74{bottom:551.274000px;}
.yd0{bottom:554.874000px;}
.ya9{bottom:558.834000px;}
.y27{bottom:560.274000px;}
.ya{bottom:566.034000px;}
.yc6{bottom:569.274000px;}
.y34{bottom:571.074000px;}
.ycd{bottom:571.434000px;}
.yb9{bottom:572.874000px;}
.y64{bottom:578.274000px;}
.y5b{bottom:579.714000px;}
.ye0{bottom:583.674000px;}
.yc3{bottom:584.754000px;}
.y73{bottom:587.274000px;}
.y83{bottom:590.154000px;}
.yee{bottom:592.674000px;}
.y1d{bottom:593.394000px;}
.y1a{bottom:594.474000px;}
.y58{bottom:601.674000px;}
.yc5{bottom:603.474000px;}
.yb8{bottom:603.834000px;}
.ya8{bottom:604.554000px;}
.ycc{bottom:611.034000px;}
.y3e{bottom:614.274000px;}
.yd9{bottom:617.514000px;}
.yc2{bottom:618.954000px;}
.ydf{bottom:619.674000px;}
.y63{bottom:621.474000px;}
.y72{bottom:623.274000px;}
.y33{bottom:630.114000px;}
.ycf{bottom:631.194000px;}
.y5a{bottom:637.314000px;}
.ya7{bottom:637.674000px;}
.y2b{bottom:639.114000px;}
.y82{bottom:640.554000px;}
.ycb{bottom:647.754000px;}
.y8d{bottom:648.834000px;}
.yde{bottom:655.674000px;}
.yed{bottom:657.474000px;}
.y71{bottom:659.274000px;}
.y11{bottom:661.434000px;}
.y62{bottom:664.674000px;}
.y47{bottom:671.154000px;}
.yd{bottom:676.914000px;}
.y1c{bottom:679.794000px;}
.yb4{bottom:680.154000px;}
.y8c{bottom:681.234000px;}
.y3d{bottom:682.674000px;}
.ya6{bottom:683.394000px;}
.y4b{bottom:687.354000px;}
.y81{bottom:690.954000px;}
.yb6{bottom:693.114000px;}
.y59{bottom:694.914000px;}
.y70{bottom:695.274000px;}
.y57{bottom:697.074000px;}
.yb2{bottom:702.834000px;}
.ya3{bottom:705.714000px;}
.y61{bottom:707.874000px;}
.y8b{bottom:713.634000px;}
.y46{bottom:717.234000px;}
.yec{bottom:722.274000px;}
.yb5{bottom:724.074000px;}
.ydd{bottom:727.674000px;}
.y6f{bottom:729.474000px;}
.y60{bottom:751.074000px;}
.y80{bottom:756.474000px;}
.y39{bottom:776.274000px;}
.y6{bottom:789.954000px;}
.y8{bottom:793.554000px;}
.ydc{bottom:795.714000px;}
.y1b{bottom:801.114000px;}
.y7f{bottom:806.874000px;}
.yb1{bottom:812.274000px;}
.h29{height:0.360000px;}
.h1a{height:25.560000px;}
.h5{height:54.628594px;}
.h19{height:68.879531px;}
.h27{height:77.519531px;}
.h2a{height:79.567734px;}
.h2c{height:84.318047px;}
.h23{height:85.788281px;}
.h2d{height:86.492812px;}
.h2b{height:87.105234px;}
.h13{height:89.068359px;}
.h22{height:97.505859px;}
.h28{height:98.568984px;}
.h21{height:103.359375px;}
.he{height:106.870154px;}
.h24{height:107.147812px;}
.h1c{height:109.257187px;}
.h3{height:118.757812px;}
.h2e{height:118.766250px;}
.h1b{height:119.607187px;}
.h26{height:120.930469px;}
.h30{height:123.930000px;}
.h1f{height:129.093750px;}
.hf{height:132.391385px;}
.h25{height:133.200000px;}
.h8{height:137.467969px;}
.h17{height:138.946641px;}
.h15{height:140.408437px;}
.h1e{height:151.039687px;}
.h12{height:152.428359px;}
.h32{height:155.039062px;}
.h9{height:157.947891px;}
.h10{height:159.507692px;}
.h31{height:166.530937px;}
.h1d{height:172.910391px;}
.h2{height:178.136719px;}
.h11{height:186.624000px;}
.h7{height:195.011719px;}
.h6{height:198.325547px;}
.h18{height:231.106641px;}
.h16{height:236.241562px;}
.hb{height:237.515625px;}
.hd{height:239.261538px;}
.h2f{height:255.566250px;}
.ha{height:258.398438px;}
.hc{height:266.377846px;}
.h4{height:267.205078px;}
.h20{height:278.853750px;}
.h14{height:352.321172px;}
.h0{height:892.914002px;}
.h1{height:893.250000px;}
.w3{width:0.720000px;}
.w2{width:132.120000px;}
.w0{width:1262.835022px;}
.w1{width:1263.000000px;}
.x77{left:-44.640000px;}
.x0{left:0.000000px;}
.xe{left:101.880000px;}
.x60{left:109.080000px;}
.x1{left:113.760000px;}
.x75{left:117.720000px;}
.x7c{left:120.960000px;}
.x3f{left:122.040000px;}
.x78{left:123.120000px;}
.x7a{left:128.520000px;}
.x2{left:131.760000px;}
.x3{left:138.240000px;}
.xc{left:140.040000px;}
.x61{left:142.560000px;}
.x16{left:148.680000px;}
.x3e{left:160.920000px;}
.x95{left:162.720000px;}
.x63{left:165.600000px;}
.x17{left:174.240000px;}
.x5f{left:177.120000px;}
.x10{left:183.240000px;}
.x59{left:185.040000px;}
.x3b{left:189.000000px;}
.xf{left:199.800000px;}
.x3a{left:202.320000px;}
.x64{left:206.280000px;}
.x24{left:208.800000px;}
.x1a{left:209.880000px;}
.x1d{left:215.640000px;}
.x12{left:216.720000px;}
.x65{left:217.800000px;}
.x5b{left:223.920000px;}
.x26{left:228.240000px;}
.x5e{left:230.040000px;}
.x14{left:236.520000px;}
.x15{left:247.680000px;}
.x7b{left:249.840000px;}
.x40{left:252.000000px;}
.x79{left:253.800000px;}
.x94{left:256.680000px;}
.x45{left:258.120000px;}
.x48{left:261.720000px;}
.x42{left:262.800000px;}
.x46{left:266.040000px;}
.x7d{left:267.840000px;}
.x76{left:274.320000px;}
.x41{left:283.680000px;}
.x88{left:288.720000px;}
.x25{left:291.960000px;}
.x56{left:296.640000px;}
.x47{left:299.880000px;}
.x5a{left:301.680000px;}
.x62{left:307.800000px;}
.x8d{left:311.760000px;}
.x8b{left:312.840000px;}
.x8c{left:313.920000px;}
.xd{left:315.360000px;}
.x44{left:317.880000px;}
.x3d{left:320.040000px;}
.x11{left:324.720000px;}
.x92{left:331.560000px;}
.x84{left:333.360000px;}
.x80{left:334.800000px;}
.x39{left:335.880000px;}
.x87{left:348.840000px;}
.x7f{left:352.080000px;}
.x83{left:353.520000px;}
.x7e{left:354.960000px;}
.x34{left:361.080000px;}
.x93{left:364.680000px;}
.xa{left:367.920000px;}
.x6a{left:369.360000px;}
.x4{left:377.280000px;}
.x7{left:385.200000px;}
.x43{left:393.120000px;}
.xb{left:400.680000px;}
.x57{left:407.520000px;}
.x5d{left:412.200000px;}
.x6{left:425.880000px;}
.x22{left:430.560000px;}
.x23{left:436.320000px;}
.x9{left:437.760000px;}
.x5{left:442.080000px;}
.x1c{left:450.000000px;}
.x1e{left:451.800000px;}
.x55{left:459.720000px;}
.x33{left:461.880000px;}
.x8{left:470.520000px;}
.x1b{left:475.200000px;}
.x2d{left:477.720000px;}
.x30{left:479.160000px;}
.x2f{left:482.040000px;}
.x91{left:488.160000px;}
.x66{left:491.760000px;}
.x36{left:495.360000px;}
.x31{left:497.880000px;}
.x27{left:500.400000px;}
.x28{left:502.560000px;}
.x3c{left:514.800000px;}
.x86{left:516.960000px;}
.x6c{left:519.480000px;}
.x35{left:523.800000px;}
.x74{left:525.600000px;}
.x58{left:529.560000px;}
.x32{left:538.200000px;}
.x13{left:540.720000px;}
.x71{left:544.680000px;}
.x2a{left:549.360000px;}
.x29{left:555.480000px;}
.x70{left:573.480000px;}
.x2e{left:574.920000px;}
.x6d{left:582.120000px;}
.x73{left:583.560000px;}
.x6b{left:588.240000px;}
.x4e{left:589.680000px;}
.x50{left:607.680000px;}
.x6e{left:612.360000px;}
.x4f{left:621.720000px;}
.x21{left:644.760000px;}
.x4a{left:653.400000px;}
.x1f{left:655.920000px;}
.x6f{left:659.160000px;}
.x72{left:661.320000px;}
.x20{left:662.760000px;}
.x85{left:680.760000px;}
.x49{left:689.400000px;}
.x8a{left:690.480000px;}
.x82{left:693.360000px;}
.x8e{left:696.600000px;}
.x4b{left:701.280000px;}
.x81{left:703.800000px;}
.x4d{left:707.040000px;}
.x4c{left:711.360000px;}
.x89{left:717.840000px;}
.x8f{left:718.920000px;}
.x90{left:767.160000px;}
.x19{left:779.400000px;}
.x2b{left:800.640000px;}
.x5c{left:802.080000px;}
.x2c{left:816.840000px;}
.x18{left:822.240000px;}
.x38{left:831.960000px;}
.x51{left:837.000000px;}
.x67{left:838.080000px;}
.x37{left:844.560000px;}
.x53{left:891.720000px;}
.x68{left:898.200000px;}
.x54{left:905.760000px;}
.x52{left:918.360000px;}
.x69{left:925.200000px;}
@media print{
.v1{vertical-align:-128.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:56.320000pt;}
.v3{vertical-align:81.920000pt;}
.v5{vertical-align:121.600000pt;}
.v4{vertical-align:133.120000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.080640pt;}
.lsc{letter-spacing:0.352000pt;}
.ls9{letter-spacing:0.384000pt;}
.ls3{letter-spacing:1.218560pt;}
.lsb{letter-spacing:28.971520pt;}
.ls2{letter-spacing:29.440000pt;}
.ls7{letter-spacing:35.540480pt;}
.ls8{letter-spacing:43.092480pt;}
.ls1{letter-spacing:45.739520pt;}
.ls4{letter-spacing:70.398720pt;}
.ls6{letter-spacing:85.995520pt;}
.ls5{letter-spacing:91.732480pt;}
.wsd{word-spacing:-96.432640pt;}
.ws20{word-spacing:-76.800000pt;}
.ws3{word-spacing:-72.320000pt;}
.ws19{word-spacing:-65.088000pt;}
.ws9{word-spacing:-57.856000pt;}
.ws7{word-spacing:-53.120000pt;}
.ws5c{word-spacing:-45.903360pt;}
.wsf{word-spacing:-43.392000pt;}
.ws5{word-spacing:-42.880000pt;}
.ws17{word-spacing:-41.633280pt;}
.ws16{word-spacing:-38.474240pt;}
.wse{word-spacing:-38.430720pt;}
.ws51{word-spacing:-35.968000pt;}
.ws5b{word-spacing:-34.160640pt;}
.ws11{word-spacing:-33.845760pt;}
.ws14{word-spacing:-32.737280pt;}
.ws4f{word-spacing:-29.534720pt;}
.ws0{word-spacing:-28.928000pt;}
.ws15{word-spacing:-26.613760pt;}
.ws50{word-spacing:-24.010240pt;}
.ws56{word-spacing:-23.841280pt;}
.wsc{word-spacing:-21.696000pt;}
.ws55{word-spacing:-20.538880pt;}
.ws52{word-spacing:-19.381760pt;}
.ws13{word-spacing:-16.778240pt;}
.ws2{word-spacing:-13.306880pt;}
.ws4{word-spacing:-9.408000pt;}
.ws54{word-spacing:-3.930880pt;}
.ws25{word-spacing:-3.840000pt;}
.ws3b{word-spacing:-2.699520pt;}
.ws30{word-spacing:-2.688000pt;}
.ws39{word-spacing:-2.647040pt;}
.ws3c{word-spacing:-2.337280pt;}
.ws53{word-spacing:-1.492480pt;}
.ws1a{word-spacing:-1.235200pt;}
.ws4e{word-spacing:-0.912640pt;}
.ws1b{word-spacing:-0.433920pt;}
.ws40{word-spacing:-0.224000pt;}
.ws34{word-spacing:-0.012800pt;}
.ws1{word-spacing:0.000000pt;}
.ws49{word-spacing:0.096000pt;}
.ws1f{word-spacing:0.300800pt;}
.ws5a{word-spacing:0.488960pt;}
.ws3a{word-spacing:0.604160pt;}
.ws27{word-spacing:0.896000pt;}
.ws58{word-spacing:0.908800pt;}
.ws1c{word-spacing:1.130240pt;}
.ws2d{word-spacing:1.920000pt;}
.ws59{word-spacing:3.548160pt;}
.ws2b{word-spacing:4.736000pt;}
.ws2c{word-spacing:6.016000pt;}
.ws44{word-spacing:6.080000pt;}
.ws24{word-spacing:7.168000pt;}
.ws21{word-spacing:7.296000pt;}
.ws4c{word-spacing:8.608000pt;}
.ws46{word-spacing:8.896000pt;}
.ws4d{word-spacing:9.344000pt;}
.ws2a{word-spacing:9.856000pt;}
.ws45{word-spacing:11.691520pt;}
.ws29{word-spacing:17.536000pt;}
.ws1d{word-spacing:18.768640pt;}
.ws3f{word-spacing:19.872000pt;}
.ws1e{word-spacing:19.942400pt;}
.ws42{word-spacing:20.576000pt;}
.ws41{word-spacing:21.120000pt;}
.ws32{word-spacing:22.419200pt;}
.ws35{word-spacing:23.477760pt;}
.ws28{word-spacing:23.808000pt;}
.ws36{word-spacing:24.240640pt;}
.ws33{word-spacing:25.807360pt;}
.ws23{word-spacing:26.624000pt;}
.ws4b{word-spacing:26.816000pt;}
.ws5d{word-spacing:27.200000pt;}
.ws2e{word-spacing:27.776000pt;}
.ws47{word-spacing:30.304000pt;}
.ws3e{word-spacing:30.656000pt;}
.ws48{word-spacing:30.880000pt;}
.ws4a{word-spacing:30.941440pt;}
.ws3d{word-spacing:31.264000pt;}
.ws37{word-spacing:36.814080pt;}
.ws38{word-spacing:37.040640pt;}
.ws2f{word-spacing:40.576000pt;}
.ws43{word-spacing:54.656000pt;}
.ws31{word-spacing:55.978240pt;}
.ws22{word-spacing:68.480000pt;}
.ws26{word-spacing:71.296000pt;}
.ws12{word-spacing:132.377600pt;}
.ws6{word-spacing:264.064000pt;}
.ws57{word-spacing:388.495360pt;}
.wsb{word-spacing:405.992960pt;}
.ws18{word-spacing:542.848000pt;}
.ws8{word-spacing:684.698880pt;}
.ws10{word-spacing:747.520000pt;}
.wsa{word-spacing:1599.232000pt;}
._6{margin-left:-23.424000pt;}
._7{margin-left:-19.584000pt;}
._1c{margin-left:-15.744000pt;}
._12{margin-left:-14.543360pt;}
._8{margin-left:-12.288000pt;}
._13{margin-left:-11.308800pt;}
._9{margin-left:-9.408000pt;}
._11{margin-left:-8.256000pt;}
._1b{margin-left:-7.088640pt;}
._5{margin-left:-5.952000pt;}
._c{margin-left:-5.056000pt;}
._4{margin-left:-4.032000pt;}
._f{margin-left:-3.056640pt;}
._1{margin-left:-2.112000pt;}
._0{margin-left:-1.152000pt;}
._3{width:0.960000pt;}
._2{width:1.920000pt;}
._b{width:3.548160pt;}
._a{width:5.376000pt;}
._3a{width:20.384000pt;}
._3b{width:21.376000pt;}
._39{width:22.368000pt;}
._38{width:23.808000pt;}
._3d{width:25.024000pt;}
._27{width:26.240000pt;}
._26{width:27.776000pt;}
._2e{width:29.824000pt;}
._29{width:31.232000pt;}
._37{width:32.903680pt;}
._2d{width:35.568640pt;}
._23{width:37.248000pt;}
._1f{width:38.639360pt;}
._1e{width:39.628800pt;}
._1d{width:40.523520pt;}
._20{width:41.756160pt;}
._18{width:46.266880pt;}
._2b{width:48.704000pt;}
._2c{width:50.288640pt;}
._3e{width:53.358080pt;}
._25{width:54.576640pt;}
._34{width:56.673280pt;}
._2f{width:57.743360pt;}
._10{width:58.864640pt;}
._21{width:59.893760pt;}
._22{width:61.177600pt;}
._3f{width:67.712000pt;}
._14{width:69.194240pt;}
._30{width:71.088640pt;}
._31{width:72.064000pt;}
._3c{width:77.376000pt;}
._15{width:78.594560pt;}
._32{width:79.713280pt;}
._35{width:88.120320pt;}
._33{width:90.549760pt;}
._24{width:99.648000pt;}
._28{width:101.120000pt;}
._16{width:103.974400pt;}
._2a{width:107.197440pt;}
._17{width:156.321280pt;}
._e{width:162.828800pt;}
._36{width:178.540800pt;}
._d{width:230.394880pt;}
._1a{width:302.224640pt;}
._19{width:954.190080pt;}
.fs3{font-size:58.880000pt;}
.fsf{font-size:74.240000pt;}
.fs8{font-size:85.760000pt;}
.fs12{font-size:90.880000pt;}
.fsb{font-size:96.000000pt;}
.fs9{font-size:106.240000pt;}
.fs10{font-size:117.760000pt;}
.fs13{font-size:122.880000pt;}
.fs1{font-size:128.000000pt;}
.fsd{font-size:138.240000pt;}
.fsa{font-size:149.760000pt;}
.fs11{font-size:163.840000pt;}
.fs14{font-size:165.120000pt;}
.fs5{font-size:170.240000pt;}
.fs0{font-size:192.000000pt;}
.fs4{font-size:213.760000pt;}
.fse{font-size:234.240000pt;}
.fs7{font-size:256.000000pt;}
.fs2{font-size:288.000000pt;}
.fs6{font-size:320.000000pt;}
.fsc{font-size:346.880000pt;}
.yb3{bottom:-20.160000pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:5.120000pt;}
.y9{bottom:45.541333pt;}
.y7{bottom:45.860800pt;}
.y5{bottom:45.861333pt;}
.yf6{bottom:66.021333pt;}
.y97{bottom:90.981333pt;}
.y52{bottom:97.381333pt;}
.yeb{bottom:102.821333pt;}
.y22{bottom:106.341333pt;}
.y19{bottom:107.621333pt;}
.y96{bottom:119.781333pt;}
.y8a{bottom:121.381333pt;}
.yf5{bottom:123.621333pt;}
.y54{bottom:125.860800pt;}
.y6e{bottom:130.021333pt;}
.y7e{bottom:131.941333pt;}
.yd7{bottom:132.901333pt;}
.y51{bottom:133.221333pt;}
.yea{bottom:134.821333pt;}
.y21{bottom:140.901333pt;}
.y24{bottom:142.181333pt;}
.yd3{bottom:147.301333pt;}
.y95{bottom:149.221333pt;}
.y38{bottom:149.861333pt;}
.yd6{bottom:162.021333pt;}
.y7d{bottom:163.941333pt;}
.y89{bottom:166.181333pt;}
.ye9{bottom:166.821333pt;}
.y6d{bottom:168.421333pt;}
.y50{bottom:169.061333pt;}
.y18{bottom:171.621333pt;}
.y23{bottom:180.581333pt;}
.yf4{bottom:181.221333pt;}
.yd2{bottom:182.501333pt;}
.ybf{bottom:192.101333pt;}
.y53{bottom:193.061333pt;}
.y7c{bottom:195.941333pt;}
.yd5{bottom:197.221333pt;}
.ye8{bottom:198.821333pt;}
.y17{bottom:203.621333pt;}
.y6c{bottom:206.821333pt;}
.ya5{bottom:208.421333pt;}
.y88{bottom:210.981333pt;}
.yd1{bottom:215.141333pt;}
.yc1{bottom:218.021333pt;}
.y94{bottom:221.541333pt;}
.y7b{bottom:227.941333pt;}
.yd4{bottom:229.861333pt;}
.yb0{bottom:233.061333pt;}
.y4a{bottom:238.501333pt;}
.yf3{bottom:238.821333pt;}
.yc8{bottom:239.461333pt;}
.yc0{bottom:243.621333pt;}
.y6b{bottom:245.221333pt;}
.y37{bottom:246.821333pt;}
.yc{bottom:247.141333pt;}
.y93{bottom:250.341333pt;}
.y9d{bottom:250.661333pt;}
.ydb{bottom:253.861333pt;}
.y3c{bottom:256.101333pt;}
.y26{bottom:259.301333pt;}
.y7a{bottom:259.941333pt;}
.ye7{bottom:262.821333pt;}
.y16{bottom:267.621333pt;}
.yaf{bottom:268.261333pt;}
.yc7{bottom:269.861333pt;}
.y2f{bottom:273.061333pt;}
.y92{bottom:279.781333pt;}
.y2a{bottom:283.301333pt;}
.y6a{bottom:283.621333pt;}
.y3f{bottom:285.861333pt;}
.y2{bottom:286.501333pt;}
.y32{bottom:290.981333pt;}
.y4f{bottom:291.941333pt;}
.ye6{bottom:294.821333pt;}
.yf2{bottom:296.421333pt;}
.y9c{bottom:298.661333pt;}
.y36{bottom:299.301333pt;}
.y87{bottom:300.581333pt;}
.y15{bottom:300.901333pt;}
.y25{bottom:307.301333pt;}
.y2e{bottom:308.901333pt;}
.y99{bottom:309.541333pt;}
.y29{bottom:309.861333pt;}
.y5f{bottom:310.501333pt;}
.ya2{bottom:312.421333pt;}
.yae{bottom:313.381333pt;}
.yf{bottom:319.461333pt;}
.y69{bottom:322.021333pt;}
.ybd{bottom:323.621333pt;}
.y79{bottom:323.941333pt;}
.y31{bottom:326.821333pt;}
.y56{bottom:336.421333pt;}
.ya1{bottom:341.541333pt;}
.yad{bottom:342.821333pt;}
.y4{bottom:344.101333pt;}
.y2d{bottom:344.741333pt;}
.y86{bottom:345.381333pt;}
.y9b{bottom:346.661333pt;}
.yb{bottom:349.541333pt;}
.ybe{bottom:350.181333pt;}
.y91{bottom:352.101333pt;}
.yf1{bottom:354.021333pt;}
.y78{bottom:355.941333pt;}
.y49{bottom:358.181333pt;}
.ye5{bottom:358.821333pt;}
.y68{bottom:360.421333pt;}
.y5e{bottom:361.701333pt;}
.y30{bottom:362.661333pt;}
.y35{bottom:362.981333pt;}
.y9e{bottom:365.861333pt;}
.yd8{bottom:367.781333pt;}
.y45{bottom:368.101333pt;}
.y14{bottom:370.021333pt;}
.y3b{bottom:370.341333pt;}
.yca{bottom:372.901333pt;}
.y1f{bottom:373.861333pt;}
.ya0{bottom:375.781333pt;}
.y41{bottom:379.301333pt;}
.y2c{bottom:380.581333pt;}
.y90{bottom:380.901333pt;}
.y98{bottom:383.141333pt;}
.yac{bottom:387.301333pt;}
.y77{bottom:387.941333pt;}
.y85{bottom:390.181333pt;}
.y44{bottom:390.501333pt;}
.ye4{bottom:390.821333pt;}
.y9a{bottom:394.341333pt;}
.y67{bottom:398.821333pt;}
.yda{bottom:401.381333pt;}
.y40{bottom:401.701333pt;}
.yc9{bottom:403.301333pt;}
.y9f{bottom:405.221333pt;}
.y3a{bottom:405.541333pt;}
.y55{bottom:406.501333pt;}
.y42{bottom:407.781333pt;}
.y8f{bottom:409.701333pt;}
.y4e{bottom:410.021333pt;}
.yf0{bottom:411.621333pt;}
.y5d{bottom:412.901333pt;}
.ye{bottom:415.461333pt;}
.ya4{bottom:418.341333pt;}
.y76{bottom:419.621333pt;}
.yab{bottom:422.181333pt;}
.ye3{bottom:422.821333pt;}
.ybc{bottom:427.301333pt;}
.y20{bottom:430.181333pt;}
.y3{bottom:430.501333pt;}
.y13{bottom:432.421333pt;}
.y66{bottom:437.221333pt;}
.y10{bottom:438.181333pt;}
.y8e{bottom:438.501333pt;}
.y4d{bottom:439.141333pt;}
.y1e{bottom:450.661333pt;}
.ybb{bottom:454.501333pt;}
.ye2{bottom:454.821333pt;}
.yb7{bottom:455.461333pt;}
.y75{bottom:458.021333pt;}
.y5c{bottom:464.101333pt;}
.y12{bottom:465.061333pt;}
.yaa{bottom:467.301333pt;}
.y4c{bottom:468.581333pt;}
.yef{bottom:469.221333pt;}
.y65{bottom:475.621333pt;}
.yce{bottom:478.821333pt;}
.y84{bottom:479.781333pt;}
.yba{bottom:482.021333pt;}
.y1{bottom:483.301333pt;}
.y28{bottom:485.541333pt;}
.ye1{bottom:486.821333pt;}
.y48{bottom:488.421333pt;}
.yc4{bottom:489.381333pt;}
.y74{bottom:490.021333pt;}
.yd0{bottom:493.221333pt;}
.ya9{bottom:496.741333pt;}
.y27{bottom:498.021333pt;}
.ya{bottom:503.141333pt;}
.yc6{bottom:506.021333pt;}
.y34{bottom:507.621333pt;}
.ycd{bottom:507.941333pt;}
.yb9{bottom:509.221333pt;}
.y64{bottom:514.021333pt;}
.y5b{bottom:515.301333pt;}
.ye0{bottom:518.821333pt;}
.yc3{bottom:519.781333pt;}
.y73{bottom:522.021333pt;}
.y83{bottom:524.581333pt;}
.yee{bottom:526.821333pt;}
.y1d{bottom:527.461333pt;}
.y1a{bottom:528.421333pt;}
.y58{bottom:534.821333pt;}
.yc5{bottom:536.421333pt;}
.yb8{bottom:536.741333pt;}
.ya8{bottom:537.381333pt;}
.ycc{bottom:543.141333pt;}
.y3e{bottom:546.021333pt;}
.yd9{bottom:548.901333pt;}
.yc2{bottom:550.181333pt;}
.ydf{bottom:550.821333pt;}
.y63{bottom:552.421333pt;}
.y72{bottom:554.021333pt;}
.y33{bottom:560.101333pt;}
.ycf{bottom:561.061333pt;}
.y5a{bottom:566.501333pt;}
.ya7{bottom:566.821333pt;}
.y2b{bottom:568.101333pt;}
.y82{bottom:569.381333pt;}
.ycb{bottom:575.781333pt;}
.y8d{bottom:576.741333pt;}
.yde{bottom:582.821333pt;}
.yed{bottom:584.421333pt;}
.y71{bottom:586.021333pt;}
.y11{bottom:587.941333pt;}
.y62{bottom:590.821333pt;}
.y47{bottom:596.581333pt;}
.yd{bottom:601.701333pt;}
.y1c{bottom:604.261333pt;}
.yb4{bottom:604.581333pt;}
.y8c{bottom:605.541333pt;}
.y3d{bottom:606.821333pt;}
.ya6{bottom:607.461333pt;}
.y4b{bottom:610.981333pt;}
.y81{bottom:614.181333pt;}
.yb6{bottom:616.101333pt;}
.y59{bottom:617.701333pt;}
.y70{bottom:618.021333pt;}
.y57{bottom:619.621333pt;}
.yb2{bottom:624.741333pt;}
.ya3{bottom:627.301333pt;}
.y61{bottom:629.221333pt;}
.y8b{bottom:634.341333pt;}
.y46{bottom:637.541333pt;}
.yec{bottom:642.021333pt;}
.yb5{bottom:643.621333pt;}
.ydd{bottom:646.821333pt;}
.y6f{bottom:648.421333pt;}
.y60{bottom:667.621333pt;}
.y80{bottom:672.421333pt;}
.y39{bottom:690.021333pt;}
.y6{bottom:702.181333pt;}
.y8{bottom:705.381333pt;}
.ydc{bottom:707.301333pt;}
.y1b{bottom:712.101333pt;}
.y7f{bottom:717.221333pt;}
.yb1{bottom:722.021333pt;}
.h29{height:0.320000pt;}
.h1a{height:22.720000pt;}
.h5{height:48.558750pt;}
.h19{height:61.226250pt;}
.h27{height:68.906250pt;}
.h2a{height:70.726875pt;}
.h2c{height:74.949375pt;}
.h23{height:76.256250pt;}
.h2d{height:76.882500pt;}
.h2b{height:77.426875pt;}
.h13{height:79.171875pt;}
.h22{height:86.671875pt;}
.h28{height:87.616875pt;}
.h21{height:91.875000pt;}
.he{height:94.995692pt;}
.h24{height:95.242500pt;}
.h1c{height:97.117500pt;}
.h3{height:105.562500pt;}
.h2e{height:105.570000pt;}
.h1b{height:106.317500pt;}
.h26{height:107.493750pt;}
.h30{height:110.160000pt;}
.h1f{height:114.750000pt;}
.hf{height:117.681231pt;}
.h25{height:118.400000pt;}
.h8{height:122.193750pt;}
.h17{height:123.508125pt;}
.h15{height:124.807500pt;}
.h1e{height:134.257500pt;}
.h12{height:135.491875pt;}
.h32{height:137.812500pt;}
.h9{height:140.398125pt;}
.h10{height:141.784615pt;}
.h31{height:148.027500pt;}
.h1d{height:153.698125pt;}
.h2{height:158.343750pt;}
.h11{height:165.888000pt;}
.h7{height:173.343750pt;}
.h6{height:176.289375pt;}
.h18{height:205.428125pt;}
.h16{height:209.992500pt;}
.hb{height:211.125000pt;}
.hd{height:212.676923pt;}
.h2f{height:227.170000pt;}
.ha{height:229.687500pt;}
.hc{height:236.780308pt;}
.h4{height:237.515625pt;}
.h20{height:247.870000pt;}
.h14{height:313.174375pt;}
.h0{height:793.701335pt;}
.h1{height:794.000000pt;}
.w3{width:0.640000pt;}
.w2{width:117.440000pt;}
.w0{width:1122.520020pt;}
.w1{width:1122.666667pt;}
.x77{left:-39.680000pt;}
.x0{left:0.000000pt;}
.xe{left:90.560000pt;}
.x60{left:96.960000pt;}
.x1{left:101.120000pt;}
.x75{left:104.640000pt;}
.x7c{left:107.520000pt;}
.x3f{left:108.480000pt;}
.x78{left:109.440000pt;}
.x7a{left:114.240000pt;}
.x2{left:117.120000pt;}
.x3{left:122.880000pt;}
.xc{left:124.480000pt;}
.x61{left:126.720000pt;}
.x16{left:132.160000pt;}
.x3e{left:143.040000pt;}
.x95{left:144.640000pt;}
.x63{left:147.200000pt;}
.x17{left:154.880000pt;}
.x5f{left:157.440000pt;}
.x10{left:162.880000pt;}
.x59{left:164.480000pt;}
.x3b{left:168.000000pt;}
.xf{left:177.600000pt;}
.x3a{left:179.840000pt;}
.x64{left:183.360000pt;}
.x24{left:185.600000pt;}
.x1a{left:186.560000pt;}
.x1d{left:191.680000pt;}
.x12{left:192.640000pt;}
.x65{left:193.600000pt;}
.x5b{left:199.040000pt;}
.x26{left:202.880000pt;}
.x5e{left:204.480000pt;}
.x14{left:210.240000pt;}
.x15{left:220.160000pt;}
.x7b{left:222.080000pt;}
.x40{left:224.000000pt;}
.x79{left:225.600000pt;}
.x94{left:228.160000pt;}
.x45{left:229.440000pt;}
.x48{left:232.640000pt;}
.x42{left:233.600000pt;}
.x46{left:236.480000pt;}
.x7d{left:238.080000pt;}
.x76{left:243.840000pt;}
.x41{left:252.160000pt;}
.x88{left:256.640000pt;}
.x25{left:259.520000pt;}
.x56{left:263.680000pt;}
.x47{left:266.560000pt;}
.x5a{left:268.160000pt;}
.x62{left:273.600000pt;}
.x8d{left:277.120000pt;}
.x8b{left:278.080000pt;}
.x8c{left:279.040000pt;}
.xd{left:280.320000pt;}
.x44{left:282.560000pt;}
.x3d{left:284.480000pt;}
.x11{left:288.640000pt;}
.x92{left:294.720000pt;}
.x84{left:296.320000pt;}
.x80{left:297.600000pt;}
.x39{left:298.560000pt;}
.x87{left:310.080000pt;}
.x7f{left:312.960000pt;}
.x83{left:314.240000pt;}
.x7e{left:315.520000pt;}
.x34{left:320.960000pt;}
.x93{left:324.160000pt;}
.xa{left:327.040000pt;}
.x6a{left:328.320000pt;}
.x4{left:335.360000pt;}
.x7{left:342.400000pt;}
.x43{left:349.440000pt;}
.xb{left:356.160000pt;}
.x57{left:362.240000pt;}
.x5d{left:366.400000pt;}
.x6{left:378.560000pt;}
.x22{left:382.720000pt;}
.x23{left:387.840000pt;}
.x9{left:389.120000pt;}
.x5{left:392.960000pt;}
.x1c{left:400.000000pt;}
.x1e{left:401.600000pt;}
.x55{left:408.640000pt;}
.x33{left:410.560000pt;}
.x8{left:418.240000pt;}
.x1b{left:422.400000pt;}
.x2d{left:424.640000pt;}
.x30{left:425.920000pt;}
.x2f{left:428.480000pt;}
.x91{left:433.920000pt;}
.x66{left:437.120000pt;}
.x36{left:440.320000pt;}
.x31{left:442.560000pt;}
.x27{left:444.800000pt;}
.x28{left:446.720000pt;}
.x3c{left:457.600000pt;}
.x86{left:459.520000pt;}
.x6c{left:461.760000pt;}
.x35{left:465.600000pt;}
.x74{left:467.200000pt;}
.x58{left:470.720000pt;}
.x32{left:478.400000pt;}
.x13{left:480.640000pt;}
.x71{left:484.160000pt;}
.x2a{left:488.320000pt;}
.x29{left:493.760000pt;}
.x70{left:509.760000pt;}
.x2e{left:511.040000pt;}
.x6d{left:517.440000pt;}
.x73{left:518.720000pt;}
.x6b{left:522.880000pt;}
.x4e{left:524.160000pt;}
.x50{left:540.160000pt;}
.x6e{left:544.320000pt;}
.x4f{left:552.640000pt;}
.x21{left:573.120000pt;}
.x4a{left:580.800000pt;}
.x1f{left:583.040000pt;}
.x6f{left:585.920000pt;}
.x72{left:587.840000pt;}
.x20{left:589.120000pt;}
.x85{left:605.120000pt;}
.x49{left:612.800000pt;}
.x8a{left:613.760000pt;}
.x82{left:616.320000pt;}
.x8e{left:619.200000pt;}
.x4b{left:623.360000pt;}
.x81{left:625.600000pt;}
.x4d{left:628.480000pt;}
.x4c{left:632.320000pt;}
.x89{left:638.080000pt;}
.x8f{left:639.040000pt;}
.x90{left:681.920000pt;}
.x19{left:692.800000pt;}
.x2b{left:711.680000pt;}
.x5c{left:712.960000pt;}
.x2c{left:726.080000pt;}
.x18{left:730.880000pt;}
.x38{left:739.520000pt;}
.x51{left:744.000000pt;}
.x67{left:744.960000pt;}
.x37{left:750.720000pt;}
.x53{left:792.640000pt;}
.x68{left:798.400000pt;}
.x54{left:805.120000pt;}
.x52{left:816.320000pt;}
.x69{left:822.400000pt;}
}




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