
    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_d22161dcb61e9cfb4f6accd0.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_79c80462f7f645535df71193.woff')format("woff");}.ff2{font-family:ff2;line-height:1.004395;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_84a8bb50bd5174bbc3f778c8.woff')format("woff");}.ff3{font-family:ff3;line-height:1.206055;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_2229a06917bae73b0e226dfa.woff')format("woff");}.ff4{font-family:ff4;line-height:0.927246;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_96afb605e6c8cc529bb37d58.woff')format("woff");}.ff5{font-family:ff5;line-height:0.909180;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_2c9d0bf8426808a4d57ad62f.woff')format("woff");}.ff6{font-family:ff6;line-height:1.000488;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_a7839decf0533381671ab911.woff')format("woff");}.ff7{font-family:ff7;line-height:0.854004;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_29777b8ec3fbc4185ca746de.woff')format("woff");}.ff8{font-family:ff8;line-height:1.004395;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_c56a678c4e1c7d672332998b.woff')format("woff");}.ff9{font-family:ff9;line-height:1.000488;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_33b047f2c0d73f087ce4028d.woff')format("woff");}.ffa{font-family:ffa;line-height:1.004395;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_9997ad147b3c69b800823a42.woff')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_21f33ffa3b742c3df4a1a01e.woff')format("woff");}.ffc{font-family:ffc;line-height:0.910645;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_29777b8ec3fbc4185ca746de.woff')format("woff");}.ffd{font-family:ffd;line-height:1.004395;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_19ff35890374c23beda04396.woff')format("woff");}.ffe{font-family:ffe;line-height:1.004395;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_f3c23538723cdc695b599ddd.woff')format("woff");}.fff{font-family:fff;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.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);}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v3{vertical-align:-8.232000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.976000px;}
.v1{vertical-align:32.754000px;}
.ls1{letter-spacing:-1.620000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:5.976000px;}
.ls3{letter-spacing:12.060000px;}
.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.000000px;}
.ws3{word-spacing:-18.000000px;}
.ws4{word-spacing:-10.494000px;}
.ws23{word-spacing:-7.488000px;}
.ws31{word-spacing:-6.984000px;}
.ws34{word-spacing:-4.920000px;}
.ws2c{word-spacing:-4.248000px;}
.ws1a{word-spacing:-4.104000px;}
.ws7{word-spacing:-3.312000px;}
.ws1{word-spacing:-3.240000px;}
.ws1b{word-spacing:-3.168000px;}
.ws18{word-spacing:-3.024000px;}
.ws26{word-spacing:-2.592000px;}
.ws11{word-spacing:-2.220000px;}
.ws19{word-spacing:-2.160000px;}
.wsa{word-spacing:-2.040000px;}
.ws16{word-spacing:-1.680000px;}
.ws21{word-spacing:-1.296000px;}
.ws32{word-spacing:-0.720000px;}
.ws35{word-spacing:-0.660000px;}
.ws15{word-spacing:-0.540000px;}
.ws28{word-spacing:-0.432000px;}
.ws24{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
.ws10{word-spacing:0.120000px;}
.ws29{word-spacing:0.144000px;}
.ws1e{word-spacing:0.180000px;}
.wsb{word-spacing:0.780000px;}
.ws1f{word-spacing:1.140000px;}
.wsf{word-spacing:1.200000px;}
.ws13{word-spacing:1.296000px;}
.ws2b{word-spacing:1.440000px;}
.wsc{word-spacing:1.980000px;}
.ws30{word-spacing:2.160000px;}
.ws8{word-spacing:2.376000px;}
.ws2f{word-spacing:2.520000px;}
.ws36{word-spacing:2.700000px;}
.ws20{word-spacing:3.120000px;}
.ws9{word-spacing:3.384000px;}
.ws2e{word-spacing:4.320000px;}
.ws5{word-spacing:4.608000px;}
.wsd{word-spacing:4.920000px;}
.ws22{word-spacing:5.256000px;}
.ws14{word-spacing:5.340000px;}
.ws1d{word-spacing:5.520000px;}
.ws2a{word-spacing:5.616000px;}
.ws6{word-spacing:5.976000px;}
.ws33{word-spacing:6.000000px;}
.ws1c{word-spacing:6.600000px;}
.wse{word-spacing:8.400000px;}
.ws17{word-spacing:8.424000px;}
.ws37{word-spacing:11.160000px;}
.ws12{word-spacing:11.808000px;}
.ws25{word-spacing:12.096000px;}
.ws2d{word-spacing:14.112000px;}
.ws27{word-spacing:22.680000px;}
._21{margin-left:-11.167200px;}
._1e{margin-left:-9.648000px;}
._1c{margin-left:-8.474400px;}
._d{margin-left:-7.290000px;}
._2{margin-left:-5.877000px;}
._1{margin-left:-4.039200px;}
._0{margin-left:-2.105400px;}
._13{margin-left:-1.082400px;}
._11{width:1.174800px;}
._18{width:2.220600px;}
._3{width:3.222000px;}
._6{width:5.167800px;}
._f{width:6.342600px;}
._5{width:7.537200px;}
._b{width:9.114600px;}
._a{width:10.744800px;}
._10{width:12.447600px;}
._e{width:13.721400px;}
._4{width:14.744400px;}
._1b{width:15.956400px;}
._7{width:17.694600px;}
._c{width:18.730800px;}
._1d{width:19.981200px;}
._17{width:21.026400px;}
._12{width:22.030800px;}
._1f{width:23.307600px;}
._15{width:25.423200px;}
._14{width:27.898200px;}
._19{width:28.915200px;}
._20{width:32.248800px;}
._22{width:34.754400px;}
._23{width:35.794200px;}
._27{width:36.878400px;}
._28{width:38.224800px;}
._24{width:41.263200px;}
._16{width:43.586400px;}
._26{width:65.311200px;}
._25{width:68.335200px;}
._9{width:78.573000px;}
._8{width:80.467200px;}
._1a{width:85.980000px;}
.fc4{color:rgb(100,99,99);}
.fc3{color:rgb(96,124,180);}
.fc2{color:rgb(74,74,73);}
.fc1{color:rgb(1,2,2);}
.fc5{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:41.976000px;}
.fs6{font-size:48.972000px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y5e{bottom:46.489950px;}
.y33{bottom:56.625900px;}
.y1{bottom:59.803050px;}
.y31{bottom:60.865950px;}
.y5d{bottom:62.689950px;}
.y32{bottom:72.825900px;}
.y5c{bottom:106.297500px;}
.y3{bottom:106.299150px;}
.yd6{bottom:112.533150px;}
.yc1{bottom:117.137100px;}
.ya8{bottom:118.872600px;}
.yee{bottom:120.913500px;}
.y5b{bottom:124.297500px;}
.y81{bottom:124.299150px;}
.y17f{bottom:134.640600px;}
.y1d{bottom:134.725950px;}
.y162{bottom:137.883150px;}
.yd5{bottom:139.533150px;}
.y5a{bottom:142.297500px;}
.y80{bottom:142.299150px;}
.yc0{bottom:144.137100px;}
.ya7{bottom:145.872600px;}
.yed{bottom:147.913500px;}
.y121{bottom:150.419550px;}
.y12d{bottom:154.368600px;}
.y1c{bottom:154.525950px;}
.y30{bottom:154.542450px;}
.y15e{bottom:156.025200px;}
.y59{bottom:160.297500px;}
.y7f{bottom:160.299150px;}
.y17e{bottom:161.640600px;}
.yd4{bottom:166.533150px;}
.y161{bottom:169.131150px;}
.y120{bottom:170.219550px;}
.ybf{bottom:171.137100px;}
.ya6{bottom:172.872600px;}
.y2f{bottom:174.342450px;}
.yec{bottom:174.913500px;}
.y58{bottom:178.297500px;}
.y7e{bottom:178.299150px;}
.y12c{bottom:181.368600px;}
.y1b{bottom:182.823450px;}
.y15d{bottom:183.025200px;}
.y11f{bottom:190.019550px;}
.y17d{bottom:192.888600px;}
.yd3{bottom:193.533150px;}
.y7d{bottom:196.299150px;}
.ybe{bottom:198.137100px;}
.ya5{bottom:199.872600px;}
.y160{bottom:200.379150px;}
.yeb{bottom:201.913500px;}
.y2e{bottom:202.639950px;}
.y57{bottom:204.802500px;}
.y12b{bottom:208.368600px;}
.y11e{bottom:209.819550px;}
.y15c{bottom:210.025200px;}
.yfd{bottom:211.041000px;}
.y14e{bottom:214.299150px;}
.y17c{bottom:219.888600px;}
.y56{bottom:222.802500px;}
.ybd{bottom:225.137100px;}
.ya4{bottom:226.872600px;}
.y1a{bottom:228.132450px;}
.yea{bottom:228.913500px;}
.yd2{bottom:229.029150px;}
.y11d{bottom:229.619550px;}
.yfc{bottom:230.841000px;}
.y14d{bottom:232.299150px;}
.y99{bottom:235.368600px;}
.y55{bottom:240.802500px;}
.y12a{bottom:243.864600px;}
.y17b{bottom:246.888600px;}
.y19{bottom:247.932450px;}
.y2d{bottom:247.948950px;}
.y15f{bottom:248.638950px;}
.y14c{bottom:250.299150px;}
.yfb{bottom:250.641000px;}
.ybc{bottom:252.137100px;}
.y7c{bottom:252.833100px;}
.ya3{bottom:253.872600px;}
.yd1{bottom:256.029150px;}
.y15b{bottom:258.285000px;}
.y98{bottom:262.368600px;}
.y54{bottom:267.307500px;}
.y18{bottom:267.732450px;}
.y2c{bottom:267.748950px;}
.yfa{bottom:270.441000px;}
.y129{bottom:270.864600px;}
.y17a{bottom:278.136600px;}
.ybb{bottom:279.137100px;}
.y7b{bottom:279.833100px;}
.ya2{bottom:280.872600px;}
.yd0{bottom:283.029150px;}
.y53{bottom:285.307500px;}
.y17{bottom:287.532450px;}
.y2b{bottom:287.548950px;}
.y97{bottom:289.368600px;}
.yf9{bottom:290.241000px;}
.y128{bottom:297.864600px;}
.y52{bottom:303.307500px;}
.y179{bottom:305.136600px;}
.y14b{bottom:305.754750px;}
.yba{bottom:306.137100px;}
.y7a{bottom:306.833100px;}
.y16{bottom:307.332450px;}
.y2a{bottom:307.348950px;}
.ya1{bottom:307.872600px;}
.ycf{bottom:310.029150px;}
.yf8{bottom:310.041000px;}
.y96{bottom:316.368600px;}
.y11c{bottom:316.931400px;}
.ye9{bottom:323.425350px;}
.y127{bottom:324.864600px;}
.y15{bottom:327.132450px;}
.y29{bottom:327.148950px;}
.y14a{bottom:332.754750px;}
.yb9{bottom:333.137100px;}
.ya0{bottom:334.872600px;}
.y178{bottom:336.384600px;}
.yce{bottom:337.029150px;}
.ye8{bottom:343.225350px;}
.y95{bottom:343.368600px;}
.y11b{bottom:343.931400px;}
.y51{bottom:346.905000px;}
.y14{bottom:346.932450px;}
.y28{bottom:346.948950px;}
.y126{bottom:351.864600px;}
.y149{bottom:359.754750px;}
.yb8{bottom:360.137100px;}
.y15a{bottom:361.872600px;}
.ye7{bottom:363.025350px;}
.y177{bottom:363.384600px;}
.ycd{bottom:364.029150px;}
.y13{bottom:366.732450px;}
.y27{bottom:366.748950px;}
.y94{bottom:370.368600px;}
.y11a{bottom:370.931400px;}
.y50{bottom:373.905000px;}
.y125{bottom:378.864600px;}
.ye6{bottom:382.825350px;}
.y12{bottom:386.532450px;}
.y26{bottom:386.548950px;}
.y148{bottom:386.754750px;}
.y159{bottom:388.872600px;}
.y176{bottom:394.632600px;}
.yb7{bottom:395.633100px;}
.y93{bottom:397.368600px;}
.y119{bottom:397.931400px;}
.y4f{bottom:400.905000px;}
.y79{bottom:401.344950px;}
.y124{bottom:405.864600px;}
.y11{bottom:406.332450px;}
.y25{bottom:406.348950px;}
.y18f{bottom:413.136600px;}
.y147{bottom:413.754750px;}
.y158{bottom:415.872600px;}
.y78{bottom:421.144950px;}
.y175{bottom:421.632600px;}
.yb6{bottom:422.633100px;}
.y92{bottom:424.368600px;}
.y118{bottom:424.931400px;}
.y10{bottom:426.132450px;}
.y24{bottom:426.148950px;}
.y4e{bottom:427.905000px;}
.y123{bottom:432.864600px;}
.y146{bottom:440.754750px;}
.y77{bottom:440.944950px;}
.y157{bottom:442.872600px;}
.y18e{bottom:444.384600px;}
.yf{bottom:445.932450px;}
.y23{bottom:445.948950px;}
.yb5{bottom:449.633100px;}
.y91{bottom:451.368600px;}
.y117{bottom:451.931400px;}
.y174{bottom:452.880600px;}
.ycc{bottom:454.041000px;}
.y4d{bottom:454.905000px;}
.y101{bottom:459.864600px;}
.y76{bottom:460.744950px;}
.ye{bottom:465.732450px;}
.y22{bottom:465.748950px;}
.y156{bottom:469.872600px;}
.ye5{bottom:470.145000px;}
.y18d{bottom:471.384600px;}
.ycb{bottom:473.841000px;}
.y145{bottom:476.250750px;}
.yb4{bottom:476.633100px;}
.y90{bottom:478.368600px;}
.y116{bottom:478.931400px;}
.y173{bottom:479.880600px;}
.y75{bottom:480.544950px;}
.y4c{bottom:481.905000px;}
.yd{bottom:485.532450px;}
.y21{bottom:485.548950px;}
.yf7{bottom:486.864600px;}
.yca{bottom:493.641000px;}
.y155{bottom:496.872600px;}
.ye4{bottom:497.145000px;}
.y18c{bottom:502.632600px;}
.y144{bottom:503.250750px;}
.yb3{bottom:503.633100px;}
.yc{bottom:505.332450px;}
.y20{bottom:505.348950px;}
.y8f{bottom:505.368600px;}
.y115{bottom:505.931400px;}
.y4b{bottom:508.905000px;}
.y172{bottom:511.128600px;}
.yc9{bottom:513.441000px;}
.yf6{bottom:513.864600px;}
.y154{bottom:523.872600px;}
.ye3{bottom:524.145000px;}
.yb{bottom:525.132450px;}
.y1f{bottom:525.148950px;}
.y18b{bottom:529.632600px;}
.y143{bottom:530.250750px;}
.yb2{bottom:530.633100px;}
.y8e{bottom:532.368600px;}
.y114{bottom:532.931400px;}
.yc8{bottom:533.241000px;}
.y171{bottom:538.128600px;}
.yf5{bottom:540.864600px;}
.y4a{bottom:544.401000px;}
.y153{bottom:550.872600px;}
.yc7{bottom:553.041000px;}
.y18a{bottom:556.632600px;}
.y142{bottom:557.250750px;}
.yb1{bottom:557.633100px;}
.ya{bottom:557.686950px;}
.y1e{bottom:557.703450px;}
.y9f{bottom:559.368600px;}
.ye2{bottom:559.641000px;}
.y113{bottom:559.931400px;}
.y74{bottom:567.856650px;}
.y8d{bottom:567.864600px;}
.y170{bottom:569.376600px;}
.y49{bottom:571.401000px;}
.y152{bottom:577.872600px;}
.y141{bottom:584.250750px;}
.yb0{bottom:584.633100px;}
.y9e{bottom:586.368600px;}
.ye1{bottom:586.641000px;}
.y112{bottom:586.931400px;}
.y189{bottom:587.880600px;}
.y73{bottom:594.856650px;}
.y8c{bottom:594.864600px;}
.y16f{bottom:596.376600px;}
.y48{bottom:598.401000px;}
.y151{bottom:604.872600px;}
.y140{bottom:611.250750px;}
.yaf{bottom:611.633100px;}
.y9d{bottom:613.368600px;}
.ye0{bottom:613.641000px;}
.y188{bottom:614.880600px;}
.y72{bottom:621.856650px;}
.y8b{bottom:621.864600px;}
.y47{bottom:625.401000px;}
.y16e{bottom:627.624600px;}
.y150{bottom:631.872600px;}
.yae{bottom:638.633100px;}
.y9c{bottom:640.368600px;}
.ydf{bottom:640.641000px;}
.y187{bottom:641.880600px;}
.y13f{bottom:646.746750px;}
.y71{bottom:648.856650px;}
.y8a{bottom:648.864600px;}
.y46{bottom:652.401000px;}
.y16d{bottom:654.624600px;}
.yad{bottom:665.633100px;}
.y111{bottom:666.443100px;}
.y9b{bottom:667.368600px;}
.yde{bottom:667.641000px;}
.y186{bottom:673.128600px;}
.y13e{bottom:673.746750px;}
.y70{bottom:675.856650px;}
.y89{bottom:675.864600px;}
.y45{bottom:679.401000px;}
.y122{bottom:684.360600px;}
.y16c{bottom:685.872600px;}
.y110{bottom:686.243100px;}
.yac{bottom:692.633100px;}
.y9a{bottom:694.368600px;}
.ydd{bottom:694.641000px;}
.y13d{bottom:700.746750px;}
.y6f{bottom:702.856650px;}
.y88{bottom:702.864600px;}
.y185{bottom:704.376600px;}
.y10f{bottom:706.043100px;}
.y44{bottom:706.401000px;}
.y100{bottom:711.360600px;}
.y16b{bottom:712.872600px;}
.yc6{bottom:721.368600px;}
.ydc{bottom:721.641000px;}
.y10e{bottom:725.843100px;}
.y13c{bottom:727.746750px;}
.y6e{bottom:729.856650px;}
.y87{bottom:729.864600px;}
.y184{bottom:731.376600px;}
.y43{bottom:733.401000px;}
.yff{bottom:738.360600px;}
.y16a{bottom:744.120600px;}
.yc5{bottom:748.368600px;}
.ydb{bottom:748.641000px;}
.y13b{bottom:754.746750px;}
.y6d{bottom:756.856650px;}
.y86{bottom:756.864600px;}
.y42{bottom:760.401000px;}
.y183{bottom:762.624600px;}
.yfe{bottom:765.360600px;}
.y169{bottom:771.120600px;}
.yc4{bottom:775.368600px;}
.yda{bottom:775.641000px;}
.y13a{bottom:781.746750px;}
.y6c{bottom:783.864600px;}
.yab{bottom:784.943700px;}
.y41{bottom:787.401000px;}
.yf4{bottom:792.360600px;}
.y182{bottom:793.872600px;}
.y10d{bottom:797.022900px;}
.yc3{bottom:802.368600px;}
.yd9{bottom:802.641000px;}
.y139{bottom:808.746750px;}
.y6b{bottom:810.864600px;}
.y40{bottom:814.401000px;}
.yf3{bottom:819.360600px;}
.y10c{bottom:824.022900px;}
.y181{bottom:825.120600px;}
.yc2{bottom:829.368600px;}
.yd8{bottom:829.641000px;}
.y5{bottom:833.405100px;}
.y138{bottom:835.746750px;}
.y6a{bottom:837.864600px;}
.y3f{bottom:841.408950px;}
.yf2{bottom:846.360600px;}
.y10b{bottom:851.022900px;}
.y14f{bottom:856.368600px;}
.y4{bottom:861.702600px;}
.y137{bottom:862.746750px;}
.y69{bottom:864.864600px;}
.y3e{bottom:868.408950px;}
.yf1{bottom:873.360600px;}
.y10a{bottom:878.022900px;}
.y168{bottom:883.368600px;}
.y136{bottom:889.746750px;}
.y68{bottom:891.864600px;}
.y3d{bottom:895.408950px;}
.yf0{bottom:900.360600px;}
.y109{bottom:905.022900px;}
.y167{bottom:914.616600px;}
.y135{bottom:916.746750px;}
.y67{bottom:918.864600px;}
.yd7{bottom:921.951600px;}
.yef{bottom:927.360600px;}
.y3c{bottom:930.904950px;}
.y108{bottom:932.022900px;}
.y166{bottom:941.616600px;}
.y134{bottom:943.746750px;}
.y66{bottom:945.864600px;}
.y9{bottom:949.748850px;}
.y85{bottom:954.360600px;}
.y3b{bottom:957.904950px;}
.y107{bottom:959.022900px;}
.y165{bottom:968.616600px;}
.y133{bottom:970.746750px;}
.y8{bottom:971.348850px;}
.y65{bottom:972.864600px;}
.y84{bottom:981.360600px;}
.y3a{bottom:984.904950px;}
.y106{bottom:986.022900px;}
.y64{bottom:999.864600px;}
.y7{bottom:1005.704700px;}
.y83{bottom:1008.360600px;}
.y39{bottom:1011.904950px;}
.y105{bottom:1013.022900px;}
.y63{bottom:1026.864600px;}
.y180{bottom:1031.112600px;}
.y6{bottom:1032.704700px;}
.y82{bottom:1035.360600px;}
.y38{bottom:1038.904950px;}
.y104{bottom:1040.022900px;}
.yaa{bottom:1053.864600px;}
.y164{bottom:1058.112600px;}
.y62{bottom:1062.360600px;}
.y132{bottom:1065.258600px;}
.y37{bottom:1065.904950px;}
.y103{bottom:1067.022900px;}
.ya9{bottom:1080.864600px;}
.y131{bottom:1085.058600px;}
.y163{bottom:1085.112600px;}
.y61{bottom:1089.360600px;}
.y36{bottom:1092.904950px;}
.y130{bottom:1104.858600px;}
.y60{bottom:1116.360600px;}
.y12f{bottom:1124.658600px;}
.y35{bottom:1141.164900px;}
.y102{bottom:1143.215550px;}
.y5f{bottom:1143.360600px;}
.y12e{bottom:1144.458600px;}
.y2{bottom:1187.898450px;}
.y34{bottom:1204.375350px;}
.h3{height:39.049805px;}
.hc{height:41.689453px;}
.h9{height:43.183594px;}
.hd{height:43.388672px;}
.h8{height:46.664062px;}
.h2{height:50.027344px;}
.h7{height:51.820312px;}
.h4{height:55.488281px;}
.he{height:59.390625px;}
.h5{height:61.037109px;}
.hb{height:66.585938px;}
.ha{height:67.378734px;}
.h6{height:69.829102px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:73.338150px;}
.x7{left:86.527500px;}
.x2{left:106.299150px;}
.xb{left:127.559100px;}
.xf{left:131.805150px;}
.xe{left:148.818900px;}
.x6{left:455.455650px;}
.x5{left:465.484200px;}
.x8{left:492.632700px;}
.x4{left:689.966700px;}
.xd{left:698.752800px;}
.x9{left:706.047450px;}
.x1{left:793.488150px;}
.x3{left:832.882950px;}
.xc{left:838.695600px;}
@media print{
.v3{vertical-align:-7.317333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.312000pt;}
.v1{vertical-align:29.114667pt;}
.ls1{letter-spacing:-1.440000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:5.312000pt;}
.ls3{letter-spacing:10.720000pt;}
.ws2{word-spacing:-18.666667pt;}
.ws3{word-spacing:-16.000000pt;}
.ws4{word-spacing:-9.328000pt;}
.ws23{word-spacing:-6.656000pt;}
.ws31{word-spacing:-6.208000pt;}
.ws34{word-spacing:-4.373333pt;}
.ws2c{word-spacing:-3.776000pt;}
.ws1a{word-spacing:-3.648000pt;}
.ws7{word-spacing:-2.944000pt;}
.ws1{word-spacing:-2.880000pt;}
.ws1b{word-spacing:-2.816000pt;}
.ws18{word-spacing:-2.688000pt;}
.ws26{word-spacing:-2.304000pt;}
.ws11{word-spacing:-1.973333pt;}
.ws19{word-spacing:-1.920000pt;}
.wsa{word-spacing:-1.813333pt;}
.ws16{word-spacing:-1.493333pt;}
.ws21{word-spacing:-1.152000pt;}
.ws32{word-spacing:-0.640000pt;}
.ws35{word-spacing:-0.586667pt;}
.ws15{word-spacing:-0.480000pt;}
.ws28{word-spacing:-0.384000pt;}
.ws24{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
.ws10{word-spacing:0.106667pt;}
.ws29{word-spacing:0.128000pt;}
.ws1e{word-spacing:0.160000pt;}
.wsb{word-spacing:0.693333pt;}
.ws1f{word-spacing:1.013333pt;}
.wsf{word-spacing:1.066667pt;}
.ws13{word-spacing:1.152000pt;}
.ws2b{word-spacing:1.280000pt;}
.wsc{word-spacing:1.760000pt;}
.ws30{word-spacing:1.920000pt;}
.ws8{word-spacing:2.112000pt;}
.ws2f{word-spacing:2.240000pt;}
.ws36{word-spacing:2.400000pt;}
.ws20{word-spacing:2.773333pt;}
.ws9{word-spacing:3.008000pt;}
.ws2e{word-spacing:3.840000pt;}
.ws5{word-spacing:4.096000pt;}
.wsd{word-spacing:4.373333pt;}
.ws22{word-spacing:4.672000pt;}
.ws14{word-spacing:4.746667pt;}
.ws1d{word-spacing:4.906667pt;}
.ws2a{word-spacing:4.992000pt;}
.ws6{word-spacing:5.312000pt;}
.ws33{word-spacing:5.333333pt;}
.ws1c{word-spacing:5.866667pt;}
.wse{word-spacing:7.466667pt;}
.ws17{word-spacing:7.488000pt;}
.ws37{word-spacing:9.920000pt;}
.ws12{word-spacing:10.496000pt;}
.ws25{word-spacing:10.752000pt;}
.ws2d{word-spacing:12.544000pt;}
.ws27{word-spacing:20.160000pt;}
._21{margin-left:-9.926400pt;}
._1e{margin-left:-8.576000pt;}
._1c{margin-left:-7.532800pt;}
._d{margin-left:-6.480000pt;}
._2{margin-left:-5.224000pt;}
._1{margin-left:-3.590400pt;}
._0{margin-left:-1.871467pt;}
._13{margin-left:-0.962133pt;}
._11{width:1.044267pt;}
._18{width:1.973867pt;}
._3{width:2.864000pt;}
._6{width:4.593600pt;}
._f{width:5.637867pt;}
._5{width:6.699733pt;}
._b{width:8.101867pt;}
._a{width:9.550933pt;}
._10{width:11.064533pt;}
._e{width:12.196800pt;}
._4{width:13.106133pt;}
._1b{width:14.183467pt;}
._7{width:15.728533pt;}
._c{width:16.649600pt;}
._1d{width:17.761067pt;}
._17{width:18.690133pt;}
._12{width:19.582933pt;}
._1f{width:20.717867pt;}
._15{width:22.598400pt;}
._14{width:24.798400pt;}
._19{width:25.702400pt;}
._20{width:28.665600pt;}
._22{width:30.892800pt;}
._23{width:31.817067pt;}
._27{width:32.780800pt;}
._28{width:33.977600pt;}
._24{width:36.678400pt;}
._16{width:38.743467pt;}
._26{width:58.054400pt;}
._25{width:60.742400pt;}
._9{width:69.842667pt;}
._8{width:71.526400pt;}
._1a{width:76.426667pt;}
.fs7{font-size:37.312000pt;}
.fs6{font-size:43.530667pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y5e{bottom:41.324400pt;}
.y33{bottom:50.334133pt;}
.y1{bottom:53.158267pt;}
.y31{bottom:54.103067pt;}
.y5d{bottom:55.724400pt;}
.y32{bottom:64.734133pt;}
.y5c{bottom:94.486667pt;}
.y3{bottom:94.488133pt;}
.yd6{bottom:100.029467pt;}
.yc1{bottom:104.121867pt;}
.ya8{bottom:105.664533pt;}
.yee{bottom:107.478667pt;}
.y5b{bottom:110.486667pt;}
.y81{bottom:110.488133pt;}
.y17f{bottom:119.680533pt;}
.y1d{bottom:119.756400pt;}
.y162{bottom:122.562800pt;}
.yd5{bottom:124.029467pt;}
.y5a{bottom:126.486667pt;}
.y80{bottom:126.488133pt;}
.yc0{bottom:128.121867pt;}
.ya7{bottom:129.664533pt;}
.yed{bottom:131.478667pt;}
.y121{bottom:133.706267pt;}
.y12d{bottom:137.216533pt;}
.y1c{bottom:137.356400pt;}
.y30{bottom:137.371067pt;}
.y15e{bottom:138.689067pt;}
.y59{bottom:142.486667pt;}
.y7f{bottom:142.488133pt;}
.y17e{bottom:143.680533pt;}
.yd4{bottom:148.029467pt;}
.y161{bottom:150.338800pt;}
.y120{bottom:151.306267pt;}
.ybf{bottom:152.121867pt;}
.ya6{bottom:153.664533pt;}
.y2f{bottom:154.971067pt;}
.yec{bottom:155.478667pt;}
.y58{bottom:158.486667pt;}
.y7e{bottom:158.488133pt;}
.y12c{bottom:161.216533pt;}
.y1b{bottom:162.509733pt;}
.y15d{bottom:162.689067pt;}
.y11f{bottom:168.906267pt;}
.y17d{bottom:171.456533pt;}
.yd3{bottom:172.029467pt;}
.y7d{bottom:174.488133pt;}
.ybe{bottom:176.121867pt;}
.ya5{bottom:177.664533pt;}
.y160{bottom:178.114800pt;}
.yeb{bottom:179.478667pt;}
.y2e{bottom:180.124400pt;}
.y57{bottom:182.046667pt;}
.y12b{bottom:185.216533pt;}
.y11e{bottom:186.506267pt;}
.y15c{bottom:186.689067pt;}
.yfd{bottom:187.592000pt;}
.y14e{bottom:190.488133pt;}
.y17c{bottom:195.456533pt;}
.y56{bottom:198.046667pt;}
.ybd{bottom:200.121867pt;}
.ya4{bottom:201.664533pt;}
.y1a{bottom:202.784400pt;}
.yea{bottom:203.478667pt;}
.yd2{bottom:203.581467pt;}
.y11d{bottom:204.106267pt;}
.yfc{bottom:205.192000pt;}
.y14d{bottom:206.488133pt;}
.y99{bottom:209.216533pt;}
.y55{bottom:214.046667pt;}
.y12a{bottom:216.768533pt;}
.y17b{bottom:219.456533pt;}
.y19{bottom:220.384400pt;}
.y2d{bottom:220.399067pt;}
.y15f{bottom:221.012400pt;}
.y14c{bottom:222.488133pt;}
.yfb{bottom:222.792000pt;}
.ybc{bottom:224.121867pt;}
.y7c{bottom:224.740533pt;}
.ya3{bottom:225.664533pt;}
.yd1{bottom:227.581467pt;}
.y15b{bottom:229.586667pt;}
.y98{bottom:233.216533pt;}
.y54{bottom:237.606667pt;}
.y18{bottom:237.984400pt;}
.y2c{bottom:237.999067pt;}
.yfa{bottom:240.392000pt;}
.y129{bottom:240.768533pt;}
.y17a{bottom:247.232533pt;}
.ybb{bottom:248.121867pt;}
.y7b{bottom:248.740533pt;}
.ya2{bottom:249.664533pt;}
.yd0{bottom:251.581467pt;}
.y53{bottom:253.606667pt;}
.y17{bottom:255.584400pt;}
.y2b{bottom:255.599067pt;}
.y97{bottom:257.216533pt;}
.yf9{bottom:257.992000pt;}
.y128{bottom:264.768533pt;}
.y52{bottom:269.606667pt;}
.y179{bottom:271.232533pt;}
.y14b{bottom:271.782000pt;}
.yba{bottom:272.121867pt;}
.y7a{bottom:272.740533pt;}
.y16{bottom:273.184400pt;}
.y2a{bottom:273.199067pt;}
.ya1{bottom:273.664533pt;}
.ycf{bottom:275.581467pt;}
.yf8{bottom:275.592000pt;}
.y96{bottom:281.216533pt;}
.y11c{bottom:281.716800pt;}
.ye9{bottom:287.489200pt;}
.y127{bottom:288.768533pt;}
.y15{bottom:290.784400pt;}
.y29{bottom:290.799067pt;}
.y14a{bottom:295.782000pt;}
.yb9{bottom:296.121867pt;}
.ya0{bottom:297.664533pt;}
.y178{bottom:299.008533pt;}
.yce{bottom:299.581467pt;}
.ye8{bottom:305.089200pt;}
.y95{bottom:305.216533pt;}
.y11b{bottom:305.716800pt;}
.y51{bottom:308.360000pt;}
.y14{bottom:308.384400pt;}
.y28{bottom:308.399067pt;}
.y126{bottom:312.768533pt;}
.y149{bottom:319.782000pt;}
.yb8{bottom:320.121867pt;}
.y15a{bottom:321.664533pt;}
.ye7{bottom:322.689200pt;}
.y177{bottom:323.008533pt;}
.ycd{bottom:323.581467pt;}
.y13{bottom:325.984400pt;}
.y27{bottom:325.999067pt;}
.y94{bottom:329.216533pt;}
.y11a{bottom:329.716800pt;}
.y50{bottom:332.360000pt;}
.y125{bottom:336.768533pt;}
.ye6{bottom:340.289200pt;}
.y12{bottom:343.584400pt;}
.y26{bottom:343.599067pt;}
.y148{bottom:343.782000pt;}
.y159{bottom:345.664533pt;}
.y176{bottom:350.784533pt;}
.yb7{bottom:351.673867pt;}
.y93{bottom:353.216533pt;}
.y119{bottom:353.716800pt;}
.y4f{bottom:356.360000pt;}
.y79{bottom:356.751067pt;}
.y124{bottom:360.768533pt;}
.y11{bottom:361.184400pt;}
.y25{bottom:361.199067pt;}
.y18f{bottom:367.232533pt;}
.y147{bottom:367.782000pt;}
.y158{bottom:369.664533pt;}
.y78{bottom:374.351067pt;}
.y175{bottom:374.784533pt;}
.yb6{bottom:375.673867pt;}
.y92{bottom:377.216533pt;}
.y118{bottom:377.716800pt;}
.y10{bottom:378.784400pt;}
.y24{bottom:378.799067pt;}
.y4e{bottom:380.360000pt;}
.y123{bottom:384.768533pt;}
.y146{bottom:391.782000pt;}
.y77{bottom:391.951067pt;}
.y157{bottom:393.664533pt;}
.y18e{bottom:395.008533pt;}
.yf{bottom:396.384400pt;}
.y23{bottom:396.399067pt;}
.yb5{bottom:399.673867pt;}
.y91{bottom:401.216533pt;}
.y117{bottom:401.716800pt;}
.y174{bottom:402.560533pt;}
.ycc{bottom:403.592000pt;}
.y4d{bottom:404.360000pt;}
.y101{bottom:408.768533pt;}
.y76{bottom:409.551067pt;}
.ye{bottom:413.984400pt;}
.y22{bottom:413.999067pt;}
.y156{bottom:417.664533pt;}
.ye5{bottom:417.906667pt;}
.y18d{bottom:419.008533pt;}
.ycb{bottom:421.192000pt;}
.y145{bottom:423.334000pt;}
.yb4{bottom:423.673867pt;}
.y90{bottom:425.216533pt;}
.y116{bottom:425.716800pt;}
.y173{bottom:426.560533pt;}
.y75{bottom:427.151067pt;}
.y4c{bottom:428.360000pt;}
.yd{bottom:431.584400pt;}
.y21{bottom:431.599067pt;}
.yf7{bottom:432.768533pt;}
.yca{bottom:438.792000pt;}
.y155{bottom:441.664533pt;}
.ye4{bottom:441.906667pt;}
.y18c{bottom:446.784533pt;}
.y144{bottom:447.334000pt;}
.yb3{bottom:447.673867pt;}
.yc{bottom:449.184400pt;}
.y20{bottom:449.199067pt;}
.y8f{bottom:449.216533pt;}
.y115{bottom:449.716800pt;}
.y4b{bottom:452.360000pt;}
.y172{bottom:454.336533pt;}
.yc9{bottom:456.392000pt;}
.yf6{bottom:456.768533pt;}
.y154{bottom:465.664533pt;}
.ye3{bottom:465.906667pt;}
.yb{bottom:466.784400pt;}
.y1f{bottom:466.799067pt;}
.y18b{bottom:470.784533pt;}
.y143{bottom:471.334000pt;}
.yb2{bottom:471.673867pt;}
.y8e{bottom:473.216533pt;}
.y114{bottom:473.716800pt;}
.yc8{bottom:473.992000pt;}
.y171{bottom:478.336533pt;}
.yf5{bottom:480.768533pt;}
.y4a{bottom:483.912000pt;}
.y153{bottom:489.664533pt;}
.yc7{bottom:491.592000pt;}
.y18a{bottom:494.784533pt;}
.y142{bottom:495.334000pt;}
.yb1{bottom:495.673867pt;}
.ya{bottom:495.721733pt;}
.y1e{bottom:495.736400pt;}
.y9f{bottom:497.216533pt;}
.ye2{bottom:497.458667pt;}
.y113{bottom:497.716800pt;}
.y74{bottom:504.761467pt;}
.y8d{bottom:504.768533pt;}
.y170{bottom:506.112533pt;}
.y49{bottom:507.912000pt;}
.y152{bottom:513.664533pt;}
.y141{bottom:519.334000pt;}
.yb0{bottom:519.673867pt;}
.y9e{bottom:521.216533pt;}
.ye1{bottom:521.458667pt;}
.y112{bottom:521.716800pt;}
.y189{bottom:522.560533pt;}
.y73{bottom:528.761467pt;}
.y8c{bottom:528.768533pt;}
.y16f{bottom:530.112533pt;}
.y48{bottom:531.912000pt;}
.y151{bottom:537.664533pt;}
.y140{bottom:543.334000pt;}
.yaf{bottom:543.673867pt;}
.y9d{bottom:545.216533pt;}
.ye0{bottom:545.458667pt;}
.y188{bottom:546.560533pt;}
.y72{bottom:552.761467pt;}
.y8b{bottom:552.768533pt;}
.y47{bottom:555.912000pt;}
.y16e{bottom:557.888533pt;}
.y150{bottom:561.664533pt;}
.yae{bottom:567.673867pt;}
.y9c{bottom:569.216533pt;}
.ydf{bottom:569.458667pt;}
.y187{bottom:570.560533pt;}
.y13f{bottom:574.886000pt;}
.y71{bottom:576.761467pt;}
.y8a{bottom:576.768533pt;}
.y46{bottom:579.912000pt;}
.y16d{bottom:581.888533pt;}
.yad{bottom:591.673867pt;}
.y111{bottom:592.393867pt;}
.y9b{bottom:593.216533pt;}
.yde{bottom:593.458667pt;}
.y186{bottom:598.336533pt;}
.y13e{bottom:598.886000pt;}
.y70{bottom:600.761467pt;}
.y89{bottom:600.768533pt;}
.y45{bottom:603.912000pt;}
.y122{bottom:608.320533pt;}
.y16c{bottom:609.664533pt;}
.y110{bottom:609.993867pt;}
.yac{bottom:615.673867pt;}
.y9a{bottom:617.216533pt;}
.ydd{bottom:617.458667pt;}
.y13d{bottom:622.886000pt;}
.y6f{bottom:624.761467pt;}
.y88{bottom:624.768533pt;}
.y185{bottom:626.112533pt;}
.y10f{bottom:627.593867pt;}
.y44{bottom:627.912000pt;}
.y100{bottom:632.320533pt;}
.y16b{bottom:633.664533pt;}
.yc6{bottom:641.216533pt;}
.ydc{bottom:641.458667pt;}
.y10e{bottom:645.193867pt;}
.y13c{bottom:646.886000pt;}
.y6e{bottom:648.761467pt;}
.y87{bottom:648.768533pt;}
.y184{bottom:650.112533pt;}
.y43{bottom:651.912000pt;}
.yff{bottom:656.320533pt;}
.y16a{bottom:661.440533pt;}
.yc5{bottom:665.216533pt;}
.ydb{bottom:665.458667pt;}
.y13b{bottom:670.886000pt;}
.y6d{bottom:672.761467pt;}
.y86{bottom:672.768533pt;}
.y42{bottom:675.912000pt;}
.y183{bottom:677.888533pt;}
.yfe{bottom:680.320533pt;}
.y169{bottom:685.440533pt;}
.yc4{bottom:689.216533pt;}
.yda{bottom:689.458667pt;}
.y13a{bottom:694.886000pt;}
.y6c{bottom:696.768533pt;}
.yab{bottom:697.727733pt;}
.y41{bottom:699.912000pt;}
.yf4{bottom:704.320533pt;}
.y182{bottom:705.664533pt;}
.y10d{bottom:708.464800pt;}
.yc3{bottom:713.216533pt;}
.yd9{bottom:713.458667pt;}
.y139{bottom:718.886000pt;}
.y6b{bottom:720.768533pt;}
.y40{bottom:723.912000pt;}
.yf3{bottom:728.320533pt;}
.y10c{bottom:732.464800pt;}
.y181{bottom:733.440533pt;}
.yc2{bottom:737.216533pt;}
.yd8{bottom:737.458667pt;}
.y5{bottom:740.804533pt;}
.y138{bottom:742.886000pt;}
.y6a{bottom:744.768533pt;}
.y3f{bottom:747.919067pt;}
.yf2{bottom:752.320533pt;}
.y10b{bottom:756.464800pt;}
.y14f{bottom:761.216533pt;}
.y4{bottom:765.957867pt;}
.y137{bottom:766.886000pt;}
.y69{bottom:768.768533pt;}
.y3e{bottom:771.919067pt;}
.yf1{bottom:776.320533pt;}
.y10a{bottom:780.464800pt;}
.y168{bottom:785.216533pt;}
.y136{bottom:790.886000pt;}
.y68{bottom:792.768533pt;}
.y3d{bottom:795.919067pt;}
.yf0{bottom:800.320533pt;}
.y109{bottom:804.464800pt;}
.y167{bottom:812.992533pt;}
.y135{bottom:814.886000pt;}
.y67{bottom:816.768533pt;}
.yd7{bottom:819.512533pt;}
.yef{bottom:824.320533pt;}
.y3c{bottom:827.471067pt;}
.y108{bottom:828.464800pt;}
.y166{bottom:836.992533pt;}
.y134{bottom:838.886000pt;}
.y66{bottom:840.768533pt;}
.y9{bottom:844.221200pt;}
.y85{bottom:848.320533pt;}
.y3b{bottom:851.471067pt;}
.y107{bottom:852.464800pt;}
.y165{bottom:860.992533pt;}
.y133{bottom:862.886000pt;}
.y8{bottom:863.421200pt;}
.y65{bottom:864.768533pt;}
.y84{bottom:872.320533pt;}
.y3a{bottom:875.471067pt;}
.y106{bottom:876.464800pt;}
.y64{bottom:888.768533pt;}
.y7{bottom:893.959733pt;}
.y83{bottom:896.320533pt;}
.y39{bottom:899.471067pt;}
.y105{bottom:900.464800pt;}
.y63{bottom:912.768533pt;}
.y180{bottom:916.544533pt;}
.y6{bottom:917.959733pt;}
.y82{bottom:920.320533pt;}
.y38{bottom:923.471067pt;}
.y104{bottom:924.464800pt;}
.yaa{bottom:936.768533pt;}
.y164{bottom:940.544533pt;}
.y62{bottom:944.320533pt;}
.y132{bottom:946.896533pt;}
.y37{bottom:947.471067pt;}
.y103{bottom:948.464800pt;}
.ya9{bottom:960.768533pt;}
.y131{bottom:964.496533pt;}
.y163{bottom:964.544533pt;}
.y61{bottom:968.320533pt;}
.y36{bottom:971.471067pt;}
.y130{bottom:982.096533pt;}
.y60{bottom:992.320533pt;}
.y12f{bottom:999.696533pt;}
.y35{bottom:1014.368800pt;}
.y102{bottom:1016.191600pt;}
.y5f{bottom:1016.320533pt;}
.y12e{bottom:1017.296533pt;}
.y2{bottom:1055.909733pt;}
.y34{bottom:1070.555867pt;}
.h3{height:34.710938pt;}
.hc{height:37.057292pt;}
.h9{height:38.385417pt;}
.hd{height:38.567708pt;}
.h8{height:41.479167pt;}
.h2{height:44.468750pt;}
.h7{height:46.062500pt;}
.h4{height:49.322917pt;}
.he{height:52.791667pt;}
.h5{height:54.255208pt;}
.hb{height:59.187500pt;}
.ha{height:59.892208pt;}
.h6{height:62.070312pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:65.189467pt;}
.x7{left:76.913333pt;}
.x2{left:94.488133pt;}
.xb{left:113.385867pt;}
.xf{left:117.160133pt;}
.xe{left:132.283467pt;}
.x6{left:404.849467pt;}
.x5{left:413.763733pt;}
.x8{left:437.895733pt;}
.x4{left:613.303733pt;}
.xd{left:621.113600pt;}
.x9{left:627.597733pt;}
.x1{left:705.322800pt;}
.x3{left:740.340400pt;}
.xc{left:745.507200pt;}
}




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