
    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_af96e7143a9f9ce3b56d706d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.963200;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_7cd368995836b4411e3f0aae.woff')format("woff");}.ff2{font-family:ff2;line-height:0.959000;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_996b4be03473d5a384d2d438.woff')format("woff");}.ff3{font-family:ff3;line-height:0.913413;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_2c8f6f370f8796f69186b89a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.011000;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_c1d3a3fa6134756e790a5f70.woff')format("woff");}.ff5{font-family:ff5;line-height:0.974000;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_34b80dc3f694ce1e6a47a4a1.woff')format("woff");}.ff6{font-family:ff6;line-height:1.112000;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_da2294c7fd24bd522abeb58d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.929000;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_5659918fa05bcd04bc587407.woff')format("woff");}.ff8{font-family:ff8;line-height:0.974000;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_633c0664c338e0087fd1a03f.woff')format("woff");}.ff9{font-family:ff9;line-height:0.916000;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_7bd9f6ef052c544a720b0566.woff')format("woff");}.ffa{font-family:ffa;line-height:0.962000;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_b21008f9031dd15d76197ebb.woff')format("woff");}.ffb{font-family:ffb;line-height:0.965820;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_8add831674475e12d2abc9b9.woff')format("woff");}.ffc{font-family:ffc;line-height:0.929000;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_d6885df50007899725f4471b.woff')format("woff");}.ffd{font-family:ffd;line-height:0.918000;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_6e754e2f895fdd8b4ad8cc0b.woff')format("woff");}.ffe{font-family:ffe;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-18.591600px;}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-5.076000px;}
.ls11{letter-spacing:-2.040000px;}
.lse{letter-spacing:-1.350000px;}
.ls8{letter-spacing:-1.200000px;}
.ls7{letter-spacing:-1.080000px;}
.ls9{letter-spacing:-0.840000px;}
.ls1{letter-spacing:-0.486000px;}
.lsb{letter-spacing:-0.420000px;}
.ls3{letter-spacing:-0.396000px;}
.ls5{letter-spacing:-0.324000px;}
.ls0{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.054000px;}
.ls6{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.270000px;}
.ls2{letter-spacing:0.594000px;}
.lsd{letter-spacing:0.918000px;}
.lsc{letter-spacing:3.888000px;}
.ls4{letter-spacing:73.854000px;}
.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;}
}
.ws21{word-spacing:-84.000000px;}
.ws22{word-spacing:-24.000000px;}
.ws3{word-spacing:-14.400000px;}
.ws2{word-spacing:-12.000000px;}
.ws28{word-spacing:-11.820000px;}
.ws5a{word-spacing:-11.718000px;}
.ws23{word-spacing:-11.640000px;}
.ws50{word-spacing:-11.220000px;}
.ws5b{word-spacing:-11.070000px;}
.ws4a{word-spacing:-10.800000px;}
.ws2d{word-spacing:-10.560000px;}
.ws49{word-spacing:-10.440000px;}
.ws0{word-spacing:-9.600000px;}
.ws1{word-spacing:-8.400000px;}
.ws35{word-spacing:-4.620000px;}
.ws11{word-spacing:-3.960000px;}
.ws48{word-spacing:-3.600000px;}
.ws38{word-spacing:-2.940000px;}
.wsc{word-spacing:-2.904000px;}
.ws6{word-spacing:-2.508000px;}
.ws26{word-spacing:-2.160000px;}
.ws27{word-spacing:-2.100000px;}
.ws54{word-spacing:-1.560000px;}
.wsf{word-spacing:-1.254000px;}
.ws5d{word-spacing:-1.020000px;}
.ws16{word-spacing:-0.990000px;}
.ws56{word-spacing:-0.960000px;}
.ws25{word-spacing:-0.900000px;}
.ws40{word-spacing:-0.780000px;}
.wse{word-spacing:-0.594000px;}
.ws34{word-spacing:-0.420000px;}
.ws39{word-spacing:-0.360000px;}
.ws19{word-spacing:-0.330000px;}
.ws1f{word-spacing:-0.264000px;}
.ws33{word-spacing:-0.240000px;}
.ws5e{word-spacing:-0.180000px;}
.ws12{word-spacing:-0.066000px;}
.ws61{word-spacing:-0.054000px;}
.ws4{word-spacing:0.000000px;}
.wsa{word-spacing:0.132000px;}
.ws3b{word-spacing:0.180000px;}
.ws2a{word-spacing:0.240000px;}
.ws1c{word-spacing:0.324000px;}
.ws17{word-spacing:0.396000px;}
.ws2c{word-spacing:0.420000px;}
.ws5{word-spacing:0.486000px;}
.ws2e{word-spacing:0.780000px;}
.ws29{word-spacing:0.900000px;}
.ws45{word-spacing:0.960000px;}
.ws9{word-spacing:0.990000px;}
.ws10{word-spacing:1.188000px;}
.ws8{word-spacing:1.320000px;}
.ws5f{word-spacing:1.350000px;}
.ws24{word-spacing:1.560000px;}
.ws15{word-spacing:2.178000px;}
.ws53{word-spacing:2.220000px;}
.ws1d{word-spacing:2.508000px;}
.ws43{word-spacing:2.520000px;}
.ws59{word-spacing:2.640000px;}
.ws31{word-spacing:2.820000px;}
.ws4d{word-spacing:3.180000px;}
.ws18{word-spacing:3.300000px;}
.ws2b{word-spacing:4.140000px;}
.wsb{word-spacing:4.290000px;}
.ws32{word-spacing:4.740000px;}
.ws46{word-spacing:4.800000px;}
.ws47{word-spacing:4.860000px;}
.ws52{word-spacing:5.076000px;}
.ws42{word-spacing:5.100000px;}
.ws44{word-spacing:5.160000px;}
.ws55{word-spacing:5.520000px;}
.ws3f{word-spacing:6.360000px;}
.ws2f{word-spacing:6.420000px;}
.ws3e{word-spacing:6.540000px;}
.ws3c{word-spacing:6.660000px;}
.ws37{word-spacing:6.720000px;}
.ws41{word-spacing:6.900000px;}
.ws3a{word-spacing:7.200000px;}
.ws20{word-spacing:7.392000px;}
.ws57{word-spacing:7.440000px;}
.ws3d{word-spacing:7.500000px;}
.ws36{word-spacing:7.620000px;}
.ws30{word-spacing:8.040000px;}
.wsd{word-spacing:8.184000px;}
.ws14{word-spacing:8.646000px;}
.ws4c{word-spacing:8.760000px;}
.ws4b{word-spacing:9.486000px;}
.ws13{word-spacing:9.636000px;}
.ws1e{word-spacing:10.296000px;}
.ws60{word-spacing:12.312000px;}
.ws51{word-spacing:13.680000px;}
.ws4e{word-spacing:16.560000px;}
.ws1a{word-spacing:19.404000px;}
.ws4f{word-spacing:20.880000px;}
.ws58{word-spacing:24.900000px;}
.ws1b{word-spacing:32.400000px;}
.ws7{word-spacing:36.000000px;}
.ws5c{word-spacing:52.849200px;}
._14{margin-left:-58.410000px;}
._1e{margin-left:-24.000000px;}
._1b{margin-left:-9.960000px;}
._1d{margin-left:-7.920000px;}
._3{margin-left:-6.900000px;}
._2{margin-left:-5.565000px;}
._7{margin-left:-4.527000px;}
._1{margin-left:-2.860200px;}
._0{margin-left:-1.092000px;}
._4{width:1.775400px;}
._a{width:2.884200px;}
._9{width:4.320000px;}
._8{width:5.999400px;}
._5{width:7.111800px;}
._6{width:8.278200px;}
._d{width:9.592200px;}
._12{width:10.623600px;}
._13{width:12.083400px;}
._1f{width:13.186800px;}
._10{width:14.463600px;}
._11{width:15.688800px;}
._17{width:16.714200px;}
._16{width:17.919000px;}
._1c{width:19.153200px;}
._e{width:20.829600px;}
._f{width:22.317600px;}
._20{width:25.440000px;}
._c{width:32.400000px;}
._b{width:36.000000px;}
._19{width:52.140000px;}
._1a{width:53.526000px;}
._18{width:64.416000px;}
._15{width:73.854000px;}
.fc5{color:rgb(255,255,255);}
.fc2{color:rgb(35,31,32);}
.fc4{color:rgb(238,76,168);}
.fc1{color:rgb(123,121,121);}
.fc3{color:rgb(214,218,1);}
.fc0{color:rgb(233,17,141);}
.fs1{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs8{font-size:108.000000px;}
.fs4{font-size:120.000000px;}
.fs3{font-size:150.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:40.541100px;}
.y5{bottom:55.545600px;}
.y7{bottom:61.919250px;}
.y4{bottom:70.550100px;}
.y3{bottom:85.554600px;}
.y2{bottom:100.559100px;}
.y1{bottom:115.559100px;}
.y189{bottom:157.322850px;}
.y40{bottom:157.393950px;}
.y65{bottom:159.026400px;}
.ya4{bottom:170.948400px;}
.y13d{bottom:171.008400px;}
.y114{bottom:177.020400px;}
.y124{bottom:177.021900px;}
.y3f{bottom:178.398450px;}
.y83{bottom:179.969400px;}
.y64{bottom:180.030900px;}
.y175{bottom:186.035400px;}
.y188{bottom:187.222650px;}
.y154{bottom:190.534950px;}
.ya3{bottom:191.952900px;}
.y13c{bottom:192.012900px;}
.y113{bottom:198.024900px;}
.y123{bottom:198.026400px;}
.y3e{bottom:199.402950px;}
.y82{bottom:200.973900px;}
.y63{bottom:201.035400px;}
.y1c{bottom:205.234200px;}
.y183{bottom:205.535400px;}
.yd7{bottom:207.007500px;}
.y153{bottom:210.034950px;}
.y13b{bottom:213.017400px;}
.yfb{bottom:214.458900px;}
.ybb{bottom:219.005400px;}
.y122{bottom:219.030900px;}
.y3d{bottom:220.407450px;}
.y81{bottom:221.978400px;}
.y174{bottom:225.035400px;}
.y1b{bottom:227.486100px;}
.yd6{bottom:228.012000px;}
.y152{bottom:229.534950px;}
.ya2{bottom:233.945400px;}
.y13a{bottom:234.021900px;}
.yfa{bottom:235.463400px;}
.yba{bottom:240.009900px;}
.y112{bottom:240.017400px;}
.y121{bottom:240.035400px;}
.y3c{bottom:241.411950px;}
.y80{bottom:242.982900px;}
.y62{bottom:243.035400px;}
.y173{bottom:244.535400px;}
.yd5{bottom:249.016500px;}
.ya1{bottom:254.949900px;}
.y139{bottom:255.026400px;}
.yf9{bottom:256.467900px;}
.yb9{bottom:261.014400px;}
.y111{bottom:261.021900px;}
.y7f{bottom:263.987400px;}
.y184{bottom:264.035400px;}
.y151{bottom:268.534950px;}
.yd4{bottom:270.021000px;}
.y187{bottom:271.355400px;}
.ya0{bottom:275.954400px;}
.y138{bottom:276.030900px;}
.yf8{bottom:277.472400px;}
.yb8{bottom:282.018900px;}
.y110{bottom:282.026400px;}
.y120{bottom:282.035400px;}
.y1a{bottom:282.108600px;}
.y3b{bottom:283.404450px;}
.y172{bottom:283.535400px;}
.y7e{bottom:284.991900px;}
.y150{bottom:288.034950px;}
.y186{bottom:289.350900px;}
.y9f{bottom:296.958900px;}
.y137{bottom:297.035400px;}
.y19{bottom:300.104100px;}
.y10f{bottom:303.030900px;}
.y171{bottom:303.035400px;}
.y3a{bottom:304.408950px;}
.y7d{bottom:305.996400px;}
.y185{bottom:307.346400px;}
.yd3{bottom:312.013500px;}
.y9e{bottom:317.963400px;}
.y18{bottom:318.099600px;}
.yf7{bottom:319.464900px;}
.y182{bottom:322.535400px;}
.y61{bottom:323.982900px;}
.yb7{bottom:324.011400px;}
.y10e{bottom:324.035400px;}
.y39{bottom:325.413450px;}
.y7c{bottom:327.000900px;}
.y14f{bottom:327.034950px;}
.yd2{bottom:333.018000px;}
.y17{bottom:336.095100px;}
.y9d{bottom:338.967900px;}
.y136{bottom:339.035400px;}
.yf6{bottom:340.469400px;}
.y170{bottom:342.035400px;}
.y60{bottom:344.987400px;}
.y38{bottom:346.417950px;}
.y14e{bottom:346.534950px;}
.y7b{bottom:348.005400px;}
.yd1{bottom:354.022500px;}
.y16{bottom:354.090600px;}
.yf5{bottom:361.473900px;}
.y16f{bottom:361.535400px;}
.y11f{bottom:362.967900px;}
.y5f{bottom:365.991900px;}
.yb6{bottom:366.003900px;}
.y14d{bottom:366.034950px;}
.y10d{bottom:366.035400px;}
.y37{bottom:367.422450px;}
.y15{bottom:372.086100px;}
.yd0{bottom:375.027000px;}
.y135{bottom:375.035400px;}
.y9c{bottom:380.960400px;}
.y16e{bottom:381.035400px;}
.yf4{bottom:382.478400px;}
.y11e{bottom:383.972400px;}
.y5e{bottom:386.996400px;}
.yb5{bottom:387.008400px;}
.y36{bottom:388.426950px;}
.y7a{bottom:389.997900px;}
.y14{bottom:394.338150px;}
.y181{bottom:400.535400px;}
.y9b{bottom:401.964900px;}
.yf3{bottom:403.482900px;}
.y14c{bottom:406.534950px;}
.yb4{bottom:408.012900px;}
.y35{bottom:409.431450px;}
.y79{bottom:411.002400px;}
.ycf{bottom:417.019500px;}
.y16d{bottom:420.035400px;}
.y9a{bottom:422.969400px;}
.yf2{bottom:424.487400px;}
.y11d{bottom:425.964900px;}
.y5d{bottom:428.988900px;}
.yb3{bottom:429.017400px;}
.y78{bottom:432.006900px;}
.yce{bottom:438.024000px;}
.y16c{bottom:439.535400px;}
.y99{bottom:443.973900px;}
.y11c{bottom:446.969400px;}
.y10c{bottom:446.985900px;}
.y13{bottom:448.938150px;}
.y5c{bottom:449.993400px;}
.yb2{bottom:450.021900px;}
.y34{bottom:451.431450px;}
.y134{bottom:452.990400px;}
.y77{bottom:453.011400px;}
.y180{bottom:459.035400px;}
.y98{bottom:464.978400px;}
.yf1{bottom:466.479900px;}
.y11b{bottom:467.973900px;}
.y10b{bottom:467.990400px;}
.y12{bottom:469.938150px;}
.y5b{bottom:470.997900px;}
.yb1{bottom:471.026400px;}
.y133{bottom:473.994900px;}
.y76{bottom:474.015900px;}
.y16b{bottom:478.535400px;}
.ycd{bottom:480.016500px;}
.y14b{bottom:484.534950px;}
.y97{bottom:485.982900px;}
.yf0{bottom:487.484400px;}
.y11a{bottom:488.978400px;}
.y11{bottom:490.938150px;}
.y5a{bottom:492.002400px;}
.yb0{bottom:492.030900px;}
.y132{bottom:494.999400px;}
.y75{bottom:495.020400px;}
.y16a{bottom:498.035400px;}
.ycc{bottom:501.021000px;}
.y33{bottom:502.431450px;}
.y96{bottom:506.987400px;}
.yef{bottom:508.488900px;}
.y10a{bottom:509.982900px;}
.y10{bottom:511.938150px;}
.y59{bottom:513.006900px;}
.yaf{bottom:513.035400px;}
.y131{bottom:516.003900px;}
.y74{bottom:516.024900px;}
.y17f{bottom:517.535400px;}
.ycb{bottom:522.025500px;}
.y14a{bottom:526.534950px;}
.y95{bottom:527.991900px;}
.yee{bottom:529.493400px;}
.y109{bottom:530.987400px;}
.y58{bottom:534.011400px;}
.y130{bottom:537.008400px;}
.y73{bottom:537.029400px;}
.y169{bottom:537.035400px;}
.yca{bottom:543.030000px;}
.yf{bottom:551.238150px;}
.y119{bottom:551.975400px;}
.y57{bottom:555.015900px;}
.yae{bottom:555.035400px;}
.y168{bottom:556.535400px;}
.y12f{bottom:558.012900px;}
.yc9{bottom:564.034500px;}
.y94{bottom:569.984400px;}
.yed{bottom:571.485900px;}
.ye{bottom:572.238150px;}
.y108{bottom:572.979900px;}
.y56{bottom:576.020400px;}
.y17e{bottom:576.035400px;}
.y12e{bottom:579.017400px;}
.y72{bottom:579.021900px;}
.y32{bottom:580.426950px;}
.y93{bottom:590.988900px;}
.yec{bottom:592.490400px;}
.yd{bottom:593.238150px;}
.y107{bottom:593.984400px;}
.y167{bottom:595.535400px;}
.y12d{bottom:600.021900px;}
.y71{bottom:600.026400px;}
.y31{bottom:601.431450px;}
.y149{bottom:604.534950px;}
.yc8{bottom:606.034500px;}
.y92{bottom:611.993400px;}
.yeb{bottom:613.494900px;}
.yc{bottom:614.238150px;}
.y106{bottom:614.988900px;}
.y166{bottom:615.035400px;}
.y55{bottom:618.012900px;}
.y12c{bottom:621.026400px;}
.y70{bottom:621.030900px;}
.y30{bottom:622.435950px;}
.y91{bottom:632.997900px;}
.yea{bottom:634.499400px;}
.y17d{bottom:634.535400px;}
.yad{bottom:635.960400px;}
.y54{bottom:639.017400px;}
.y12b{bottom:642.030900px;}
.y6f{bottom:642.035400px;}
.y148{bottom:646.534950px;}
.y90{bottom:654.002400px;}
.y165{bottom:654.035400px;}
.ye9{bottom:655.503900px;}
.yac{bottom:656.964900px;}
.y105{bottom:656.981400px;}
.y53{bottom:660.021900px;}
.yb{bottom:662.042100px;}
.y12a{bottom:663.035400px;}
.y2f{bottom:664.428450px;}
.y164{bottom:673.535400px;}
.y8f{bottom:675.006900px;}
.ye8{bottom:676.508400px;}
.yab{bottom:677.969400px;}
.y104{bottom:677.985900px;}
.y52{bottom:681.026400px;}
.y147{bottom:682.534950px;}
.yc7{bottom:684.018450px;}
.y6e{bottom:684.035400px;}
.y2e{bottom:685.432950px;}
.y17c{bottom:693.035400px;}
.y8e{bottom:696.011400px;}
.ya{bottom:698.042100px;}
.yaa{bottom:698.973900px;}
.y103{bottom:698.990400px;}
.y51{bottom:702.030900px;}
.yc6{bottom:705.022950px;}
.y129{bottom:705.035400px;}
.y163{bottom:712.535400px;}
.y8d{bottom:717.015900px;}
.ye7{bottom:718.500900px;}
.ya9{bottom:719.978400px;}
.y102{bottom:719.994900px;}
.y50{bottom:723.035400px;}
.yc5{bottom:726.027450px;}
.y2d{bottom:727.425450px;}
.y162{bottom:732.035400px;}
.ye6{bottom:739.505400px;}
.ya8{bottom:740.982900px;}
.y101{bottom:740.999400px;}
.y9{bottom:742.545900px;}
.yc4{bottom:747.031950px;}
.y2c{bottom:748.429950px;}
.y17b{bottom:751.535400px;}
.y8c{bottom:759.008400px;}
.ye5{bottom:760.509900px;}
.y146{bottom:760.534950px;}
.ya7{bottom:761.987400px;}
.y100{bottom:762.003900px;}
.y6d{bottom:765.017400px;}
.y4f{bottom:765.035400px;}
.yc3{bottom:768.036450px;}
.y161{bottom:771.035400px;}
.y8b{bottom:780.012900px;}
.ye4{bottom:781.514400px;}
.y128{bottom:782.975400px;}
.ya6{bottom:782.991900px;}
.y118{bottom:783.008400px;}
.y6c{bottom:786.021900px;}
.y8{bottom:787.545900px;}
.y2b{bottom:790.422450px;}
.y160{bottom:790.535400px;}
.y8a{bottom:801.017400px;}
.y145{bottom:802.534950px;}
.y127{bottom:803.979900px;}
.yff{bottom:803.996400px;}
.y6b{bottom:807.026400px;}
.yc2{bottom:810.028950px;}
.y17a{bottom:810.035400px;}
.y2a{bottom:811.426950px;}
.y89{bottom:822.021900px;}
.ye3{bottom:823.506900px;}
.ya5{bottom:824.984400px;}
.yfe{bottom:825.000900px;}
.y6a{bottom:828.030900px;}
.y15f{bottom:829.535400px;}
.y29{bottom:832.431450px;}
.y88{bottom:843.026400px;}
.ye2{bottom:844.511400px;}
.y4e{bottom:845.988900px;}
.yfd{bottom:846.005400px;}
.y69{bottom:849.035400px;}
.yc1{bottom:852.021450px;}
.y87{bottom:864.030900px;}
.ye1{bottom:865.515900px;}
.y4d{bottom:866.993400px;}
.yfc{bottom:867.009900px;}
.y179{bottom:868.535400px;}
.yc0{bottom:873.025950px;}
.y28{bottom:874.431450px;}
.y144{bottom:880.534950px;}
.y86{bottom:885.035400px;}
.ye0{bottom:886.520400px;}
.y4c{bottom:887.997900px;}
.y117{bottom:888.014400px;}
.y15e{bottom:888.035400px;}
.y68{bottom:891.035400px;}
.ybf{bottom:894.030450px;}
.y15d{bottom:907.535400px;}
.y4b{bottom:909.002400px;}
.y116{bottom:909.018900px;}
.ybe{bottom:915.034950px;}
.y143{bottom:922.534950px;}
.y85{bottom:927.035400px;}
.ydf{bottom:928.512900px;}
.y4a{bottom:930.006900px;}
.y115{bottom:930.023400px;}
.y27{bottom:931.431450px;}
.y15c{bottom:946.535400px;}
.yde{bottom:949.517400px;}
.y49{bottom:951.011400px;}
.y26{bottom:953.683350px;}
.ybd{bottom:957.034950px;}
.y15b{bottom:966.035400px;}
.ydd{bottom:970.521900px;}
.y48{bottom:972.015900px;}
.y84{bottom:978.035400px;}
.y15a{bottom:985.535400px;}
.ydc{bottom:991.526400px;}
.y126{bottom:993.003900px;}
.y47{bottom:993.020400px;}
.y142{bottom:1000.517400px;}
.y178{bottom:1005.035400px;}
.y25{bottom:1008.310500px;}
.ydb{bottom:1012.530900px;}
.y125{bottom:1014.008400px;}
.y67{bottom:1014.024900px;}
.y141{bottom:1021.521900px;}
.y159{bottom:1024.535400px;}
.y24{bottom:1026.306000px;}
.yda{bottom:1033.535400px;}
.y46{bottom:1035.012900px;}
.y66{bottom:1035.029400px;}
.y140{bottom:1042.526400px;}
.y158{bottom:1044.035400px;}
.y23{bottom:1044.301500px;}
.y45{bottom:1056.017400px;}
.ybc{bottom:1056.033900px;}
.y22{bottom:1062.297000px;}
.y13f{bottom:1063.530900px;}
.y177{bottom:1063.535400px;}
.yd9{bottom:1075.535400px;}
.y44{bottom:1077.021900px;}
.y21{bottom:1080.292500px;}
.y157{bottom:1083.035400px;}
.y13e{bottom:1084.535400px;}
.y43{bottom:1098.026400px;}
.y20{bottom:1098.288000px;}
.y156{bottom:1102.535400px;}
.y1f{bottom:1116.283500px;}
.y42{bottom:1119.030900px;}
.y176{bottom:1122.035400px;}
.yd8{bottom:1126.535400px;}
.y1e{bottom:1138.535400px;}
.y41{bottom:1140.035400px;}
.y155{bottom:1141.535400px;}
.y1d{bottom:1198.796700px;}
.h3{height:31.920000px;}
.hd{height:32.508000px;}
.h2{height:36.432000px;}
.h4{height:41.040000px;}
.hc{height:41.796000px;}
.h15{height:43.800000px;}
.h16{height:45.600000px;}
.h8{height:46.440000px;}
.hb{height:48.816000px;}
.h10{height:51.084000px;}
.ha{height:52.560000px;}
.h9{height:54.240000px;}
.h7{height:54.780000px;}
.hf{height:59.664000px;}
.h11{height:77.436000px;}
.h12{height:82.080000px;}
.h13{height:82.582031px;}
.h6{height:85.200000px;}
.h14{height:87.600000px;}
.he{height:91.080000px;}
.h5{height:113.850000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x3{left:97.245300px;}
.x7{left:114.805350px;}
.x9{left:121.039350px;}
.x5{left:126.107850px;}
.xb{left:127.564350px;}
.xa{left:129.589350px;}
.x6{left:144.571350px;}
.x4{left:147.755850px;}
.xc{left:239.260050px;}
.x2{left:783.717900px;}
.x8{left:784.993800px;}
@media print{
.v1{vertical-align:-16.525867pt;}
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-4.512000pt;}
.ls11{letter-spacing:-1.813333pt;}
.lse{letter-spacing:-1.200000pt;}
.ls8{letter-spacing:-1.066667pt;}
.ls7{letter-spacing:-0.960000pt;}
.ls9{letter-spacing:-0.746667pt;}
.ls1{letter-spacing:-0.432000pt;}
.lsb{letter-spacing:-0.373333pt;}
.ls3{letter-spacing:-0.352000pt;}
.ls5{letter-spacing:-0.288000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.048000pt;}
.ls6{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.240000pt;}
.ls2{letter-spacing:0.528000pt;}
.lsd{letter-spacing:0.816000pt;}
.lsc{letter-spacing:3.456000pt;}
.ls4{letter-spacing:65.648000pt;}
.ws21{word-spacing:-74.666667pt;}
.ws22{word-spacing:-21.333333pt;}
.ws3{word-spacing:-12.800000pt;}
.ws2{word-spacing:-10.666667pt;}
.ws28{word-spacing:-10.506667pt;}
.ws5a{word-spacing:-10.416000pt;}
.ws23{word-spacing:-10.346667pt;}
.ws50{word-spacing:-9.973333pt;}
.ws5b{word-spacing:-9.840000pt;}
.ws4a{word-spacing:-9.600000pt;}
.ws2d{word-spacing:-9.386667pt;}
.ws49{word-spacing:-9.280000pt;}
.ws0{word-spacing:-8.533333pt;}
.ws1{word-spacing:-7.466667pt;}
.ws35{word-spacing:-4.106667pt;}
.ws11{word-spacing:-3.520000pt;}
.ws48{word-spacing:-3.200000pt;}
.ws38{word-spacing:-2.613333pt;}
.wsc{word-spacing:-2.581333pt;}
.ws6{word-spacing:-2.229333pt;}
.ws26{word-spacing:-1.920000pt;}
.ws27{word-spacing:-1.866667pt;}
.ws54{word-spacing:-1.386667pt;}
.wsf{word-spacing:-1.114667pt;}
.ws5d{word-spacing:-0.906667pt;}
.ws16{word-spacing:-0.880000pt;}
.ws56{word-spacing:-0.853333pt;}
.ws25{word-spacing:-0.800000pt;}
.ws40{word-spacing:-0.693333pt;}
.wse{word-spacing:-0.528000pt;}
.ws34{word-spacing:-0.373333pt;}
.ws39{word-spacing:-0.320000pt;}
.ws19{word-spacing:-0.293333pt;}
.ws1f{word-spacing:-0.234667pt;}
.ws33{word-spacing:-0.213333pt;}
.ws5e{word-spacing:-0.160000pt;}
.ws12{word-spacing:-0.058667pt;}
.ws61{word-spacing:-0.048000pt;}
.ws4{word-spacing:0.000000pt;}
.wsa{word-spacing:0.117333pt;}
.ws3b{word-spacing:0.160000pt;}
.ws2a{word-spacing:0.213333pt;}
.ws1c{word-spacing:0.288000pt;}
.ws17{word-spacing:0.352000pt;}
.ws2c{word-spacing:0.373333pt;}
.ws5{word-spacing:0.432000pt;}
.ws2e{word-spacing:0.693333pt;}
.ws29{word-spacing:0.800000pt;}
.ws45{word-spacing:0.853333pt;}
.ws9{word-spacing:0.880000pt;}
.ws10{word-spacing:1.056000pt;}
.ws8{word-spacing:1.173333pt;}
.ws5f{word-spacing:1.200000pt;}
.ws24{word-spacing:1.386667pt;}
.ws15{word-spacing:1.936000pt;}
.ws53{word-spacing:1.973333pt;}
.ws1d{word-spacing:2.229333pt;}
.ws43{word-spacing:2.240000pt;}
.ws59{word-spacing:2.346667pt;}
.ws31{word-spacing:2.506667pt;}
.ws4d{word-spacing:2.826667pt;}
.ws18{word-spacing:2.933333pt;}
.ws2b{word-spacing:3.680000pt;}
.wsb{word-spacing:3.813333pt;}
.ws32{word-spacing:4.213333pt;}
.ws46{word-spacing:4.266667pt;}
.ws47{word-spacing:4.320000pt;}
.ws52{word-spacing:4.512000pt;}
.ws42{word-spacing:4.533333pt;}
.ws44{word-spacing:4.586667pt;}
.ws55{word-spacing:4.906667pt;}
.ws3f{word-spacing:5.653333pt;}
.ws2f{word-spacing:5.706667pt;}
.ws3e{word-spacing:5.813333pt;}
.ws3c{word-spacing:5.920000pt;}
.ws37{word-spacing:5.973333pt;}
.ws41{word-spacing:6.133333pt;}
.ws3a{word-spacing:6.400000pt;}
.ws20{word-spacing:6.570667pt;}
.ws57{word-spacing:6.613333pt;}
.ws3d{word-spacing:6.666667pt;}
.ws36{word-spacing:6.773333pt;}
.ws30{word-spacing:7.146667pt;}
.wsd{word-spacing:7.274667pt;}
.ws14{word-spacing:7.685333pt;}
.ws4c{word-spacing:7.786667pt;}
.ws4b{word-spacing:8.432000pt;}
.ws13{word-spacing:8.565333pt;}
.ws1e{word-spacing:9.152000pt;}
.ws60{word-spacing:10.944000pt;}
.ws51{word-spacing:12.160000pt;}
.ws4e{word-spacing:14.720000pt;}
.ws1a{word-spacing:17.248000pt;}
.ws4f{word-spacing:18.560000pt;}
.ws58{word-spacing:22.133333pt;}
.ws1b{word-spacing:28.800000pt;}
.ws7{word-spacing:32.000000pt;}
.ws5c{word-spacing:46.977067pt;}
._14{margin-left:-51.920000pt;}
._1e{margin-left:-21.333333pt;}
._1b{margin-left:-8.853333pt;}
._1d{margin-left:-7.040000pt;}
._3{margin-left:-6.133333pt;}
._2{margin-left:-4.946667pt;}
._7{margin-left:-4.024000pt;}
._1{margin-left:-2.542400pt;}
._0{margin-left:-0.970667pt;}
._4{width:1.578133pt;}
._a{width:2.563733pt;}
._9{width:3.840000pt;}
._8{width:5.332800pt;}
._5{width:6.321600pt;}
._6{width:7.358400pt;}
._d{width:8.526400pt;}
._12{width:9.443200pt;}
._13{width:10.740800pt;}
._1f{width:11.721600pt;}
._10{width:12.856533pt;}
._11{width:13.945600pt;}
._17{width:14.857067pt;}
._16{width:15.928000pt;}
._1c{width:17.025067pt;}
._e{width:18.515200pt;}
._f{width:19.837867pt;}
._20{width:22.613333pt;}
._c{width:28.800000pt;}
._b{width:32.000000pt;}
._19{width:46.346667pt;}
._1a{width:47.578667pt;}
._18{width:57.258667pt;}
._15{width:65.648000pt;}
.fs1{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs8{font-size:96.000000pt;}
.fs4{font-size:106.666667pt;}
.fs3{font-size:133.333333pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:36.036533pt;}
.y5{bottom:49.373867pt;}
.y7{bottom:55.039333pt;}
.y4{bottom:62.711200pt;}
.y3{bottom:76.048533pt;}
.y2{bottom:89.385867pt;}
.y1{bottom:102.719200pt;}
.y189{bottom:139.842533pt;}
.y40{bottom:139.905733pt;}
.y65{bottom:141.356800pt;}
.ya4{bottom:151.954133pt;}
.y13d{bottom:152.007467pt;}
.y114{bottom:157.351467pt;}
.y124{bottom:157.352800pt;}
.y3f{bottom:158.576400pt;}
.y83{bottom:159.972800pt;}
.y64{bottom:160.027467pt;}
.y175{bottom:165.364800pt;}
.y188{bottom:166.420133pt;}
.y154{bottom:169.364400pt;}
.ya3{bottom:170.624800pt;}
.y13c{bottom:170.678133pt;}
.y113{bottom:176.022133pt;}
.y123{bottom:176.023467pt;}
.y3e{bottom:177.247067pt;}
.y82{bottom:178.643467pt;}
.y63{bottom:178.698133pt;}
.y1c{bottom:182.430400pt;}
.y183{bottom:182.698133pt;}
.yd7{bottom:184.006667pt;}
.y153{bottom:186.697733pt;}
.y13b{bottom:189.348800pt;}
.yfb{bottom:190.630133pt;}
.ybb{bottom:194.671467pt;}
.y122{bottom:194.694133pt;}
.y3d{bottom:195.917733pt;}
.y81{bottom:197.314133pt;}
.y174{bottom:200.031467pt;}
.y1b{bottom:202.209867pt;}
.yd6{bottom:202.677333pt;}
.y152{bottom:204.031067pt;}
.ya2{bottom:207.951467pt;}
.y13a{bottom:208.019467pt;}
.yfa{bottom:209.300800pt;}
.yba{bottom:213.342133pt;}
.y112{bottom:213.348800pt;}
.y121{bottom:213.364800pt;}
.y3c{bottom:214.588400pt;}
.y80{bottom:215.984800pt;}
.y62{bottom:216.031467pt;}
.y173{bottom:217.364800pt;}
.yd5{bottom:221.348000pt;}
.ya1{bottom:226.622133pt;}
.y139{bottom:226.690133pt;}
.yf9{bottom:227.971467pt;}
.yb9{bottom:232.012800pt;}
.y111{bottom:232.019467pt;}
.y7f{bottom:234.655467pt;}
.y184{bottom:234.698133pt;}
.y151{bottom:238.697733pt;}
.yd4{bottom:240.018667pt;}
.y187{bottom:241.204800pt;}
.ya0{bottom:245.292800pt;}
.y138{bottom:245.360800pt;}
.yf8{bottom:246.642133pt;}
.yb8{bottom:250.683467pt;}
.y110{bottom:250.690133pt;}
.y120{bottom:250.698133pt;}
.y1a{bottom:250.763200pt;}
.y3b{bottom:251.915067pt;}
.y172{bottom:252.031467pt;}
.y7e{bottom:253.326133pt;}
.y150{bottom:256.031067pt;}
.y186{bottom:257.200800pt;}
.y9f{bottom:263.963467pt;}
.y137{bottom:264.031467pt;}
.y19{bottom:266.759200pt;}
.y10f{bottom:269.360800pt;}
.y171{bottom:269.364800pt;}
.y3a{bottom:270.585733pt;}
.y7d{bottom:271.996800pt;}
.y185{bottom:273.196800pt;}
.yd3{bottom:277.345333pt;}
.y9e{bottom:282.634133pt;}
.y18{bottom:282.755200pt;}
.yf7{bottom:283.968800pt;}
.y182{bottom:286.698133pt;}
.y61{bottom:287.984800pt;}
.yb7{bottom:288.010133pt;}
.y10e{bottom:288.031467pt;}
.y39{bottom:289.256400pt;}
.y7c{bottom:290.667467pt;}
.y14f{bottom:290.697733pt;}
.yd2{bottom:296.016000pt;}
.y17{bottom:298.751200pt;}
.y9d{bottom:301.304800pt;}
.y136{bottom:301.364800pt;}
.yf6{bottom:302.639467pt;}
.y170{bottom:304.031467pt;}
.y60{bottom:306.655467pt;}
.y38{bottom:307.927067pt;}
.y14e{bottom:308.031067pt;}
.y7b{bottom:309.338133pt;}
.yd1{bottom:314.686667pt;}
.y16{bottom:314.747200pt;}
.yf5{bottom:321.310133pt;}
.y16f{bottom:321.364800pt;}
.y11f{bottom:322.638133pt;}
.y5f{bottom:325.326133pt;}
.yb6{bottom:325.336800pt;}
.y14d{bottom:325.364400pt;}
.y10d{bottom:325.364800pt;}
.y37{bottom:326.597733pt;}
.y15{bottom:330.743200pt;}
.yd0{bottom:333.357333pt;}
.y135{bottom:333.364800pt;}
.y9c{bottom:338.631467pt;}
.y16e{bottom:338.698133pt;}
.yf4{bottom:339.980800pt;}
.y11e{bottom:341.308800pt;}
.y5e{bottom:343.996800pt;}
.yb5{bottom:344.007467pt;}
.y36{bottom:345.268400pt;}
.y7a{bottom:346.664800pt;}
.y14{bottom:350.522800pt;}
.y181{bottom:356.031467pt;}
.y9b{bottom:357.302133pt;}
.yf3{bottom:358.651467pt;}
.y14c{bottom:361.364400pt;}
.yb4{bottom:362.678133pt;}
.y35{bottom:363.939067pt;}
.y79{bottom:365.335467pt;}
.ycf{bottom:370.684000pt;}
.y16d{bottom:373.364800pt;}
.y9a{bottom:375.972800pt;}
.yf2{bottom:377.322133pt;}
.y11d{bottom:378.635467pt;}
.y5d{bottom:381.323467pt;}
.yb3{bottom:381.348800pt;}
.y78{bottom:384.006133pt;}
.yce{bottom:389.354667pt;}
.y16c{bottom:390.698133pt;}
.y99{bottom:394.643467pt;}
.y11c{bottom:397.306133pt;}
.y10c{bottom:397.320800pt;}
.y13{bottom:399.056133pt;}
.y5c{bottom:399.994133pt;}
.yb2{bottom:400.019467pt;}
.y34{bottom:401.272400pt;}
.y134{bottom:402.658133pt;}
.y77{bottom:402.676800pt;}
.y180{bottom:408.031467pt;}
.y98{bottom:413.314133pt;}
.yf1{bottom:414.648800pt;}
.y11b{bottom:415.976800pt;}
.y10b{bottom:415.991467pt;}
.y12{bottom:417.722800pt;}
.y5b{bottom:418.664800pt;}
.yb1{bottom:418.690133pt;}
.y133{bottom:421.328800pt;}
.y76{bottom:421.347467pt;}
.y16b{bottom:425.364800pt;}
.ycd{bottom:426.681333pt;}
.y14b{bottom:430.697733pt;}
.y97{bottom:431.984800pt;}
.yf0{bottom:433.319467pt;}
.y11a{bottom:434.647467pt;}
.y11{bottom:436.389467pt;}
.y5a{bottom:437.335467pt;}
.yb0{bottom:437.360800pt;}
.y132{bottom:439.999467pt;}
.y75{bottom:440.018133pt;}
.y16a{bottom:442.698133pt;}
.ycc{bottom:445.352000pt;}
.y33{bottom:446.605733pt;}
.y96{bottom:450.655467pt;}
.yef{bottom:451.990133pt;}
.y10a{bottom:453.318133pt;}
.y10{bottom:455.056133pt;}
.y59{bottom:456.006133pt;}
.yaf{bottom:456.031467pt;}
.y131{bottom:458.670133pt;}
.y74{bottom:458.688800pt;}
.y17f{bottom:460.031467pt;}
.ycb{bottom:464.022667pt;}
.y14a{bottom:468.031067pt;}
.y95{bottom:469.326133pt;}
.yee{bottom:470.660800pt;}
.y109{bottom:471.988800pt;}
.y58{bottom:474.676800pt;}
.y130{bottom:477.340800pt;}
.y73{bottom:477.359467pt;}
.y169{bottom:477.364800pt;}
.yca{bottom:482.693333pt;}
.yf{bottom:489.989467pt;}
.y119{bottom:490.644800pt;}
.y57{bottom:493.347467pt;}
.yae{bottom:493.364800pt;}
.y168{bottom:494.698133pt;}
.y12f{bottom:496.011467pt;}
.yc9{bottom:501.364000pt;}
.y94{bottom:506.652800pt;}
.yed{bottom:507.987467pt;}
.ye{bottom:508.656133pt;}
.y108{bottom:509.315467pt;}
.y56{bottom:512.018133pt;}
.y17e{bottom:512.031467pt;}
.y12e{bottom:514.682133pt;}
.y72{bottom:514.686133pt;}
.y32{bottom:515.935067pt;}
.y93{bottom:525.323467pt;}
.yec{bottom:526.658133pt;}
.yd{bottom:527.322800pt;}
.y107{bottom:527.986133pt;}
.y167{bottom:529.364800pt;}
.y12d{bottom:533.352800pt;}
.y71{bottom:533.356800pt;}
.y31{bottom:534.605733pt;}
.y149{bottom:537.364400pt;}
.yc8{bottom:538.697333pt;}
.y92{bottom:543.994133pt;}
.yeb{bottom:545.328800pt;}
.yc{bottom:545.989467pt;}
.y106{bottom:546.656800pt;}
.y166{bottom:546.698133pt;}
.y55{bottom:549.344800pt;}
.y12c{bottom:552.023467pt;}
.y70{bottom:552.027467pt;}
.y30{bottom:553.276400pt;}
.y91{bottom:562.664800pt;}
.yea{bottom:563.999467pt;}
.y17d{bottom:564.031467pt;}
.yad{bottom:565.298133pt;}
.y54{bottom:568.015467pt;}
.y12b{bottom:570.694133pt;}
.y6f{bottom:570.698133pt;}
.y148{bottom:574.697733pt;}
.y90{bottom:581.335467pt;}
.y165{bottom:581.364800pt;}
.ye9{bottom:582.670133pt;}
.yac{bottom:583.968800pt;}
.y105{bottom:583.983467pt;}
.y53{bottom:586.686133pt;}
.yb{bottom:588.481867pt;}
.y12a{bottom:589.364800pt;}
.y2f{bottom:590.603067pt;}
.y164{bottom:598.698133pt;}
.y8f{bottom:600.006133pt;}
.ye8{bottom:601.340800pt;}
.yab{bottom:602.639467pt;}
.y104{bottom:602.654133pt;}
.y52{bottom:605.356800pt;}
.y147{bottom:606.697733pt;}
.yc7{bottom:608.016400pt;}
.y6e{bottom:608.031467pt;}
.y2e{bottom:609.273733pt;}
.y17c{bottom:616.031467pt;}
.y8e{bottom:618.676800pt;}
.ya{bottom:620.481867pt;}
.yaa{bottom:621.310133pt;}
.y103{bottom:621.324800pt;}
.y51{bottom:624.027467pt;}
.yc6{bottom:626.687067pt;}
.y129{bottom:626.698133pt;}
.y163{bottom:633.364800pt;}
.y8d{bottom:637.347467pt;}
.ye7{bottom:638.667467pt;}
.ya9{bottom:639.980800pt;}
.y102{bottom:639.995467pt;}
.y50{bottom:642.698133pt;}
.yc5{bottom:645.357733pt;}
.y2d{bottom:646.600400pt;}
.y162{bottom:650.698133pt;}
.ye6{bottom:657.338133pt;}
.ya8{bottom:658.651467pt;}
.y101{bottom:658.666133pt;}
.y9{bottom:660.040800pt;}
.yc4{bottom:664.028400pt;}
.y2c{bottom:665.271067pt;}
.y17b{bottom:668.031467pt;}
.y8c{bottom:674.674133pt;}
.ye5{bottom:676.008800pt;}
.y146{bottom:676.031067pt;}
.ya7{bottom:677.322133pt;}
.y100{bottom:677.336800pt;}
.y6d{bottom:680.015467pt;}
.y4f{bottom:680.031467pt;}
.yc3{bottom:682.699067pt;}
.y161{bottom:685.364800pt;}
.y8b{bottom:693.344800pt;}
.ye4{bottom:694.679467pt;}
.y128{bottom:695.978133pt;}
.ya6{bottom:695.992800pt;}
.y118{bottom:696.007467pt;}
.y6c{bottom:698.686133pt;}
.y8{bottom:700.040800pt;}
.y2b{bottom:702.597733pt;}
.y160{bottom:702.698133pt;}
.y8a{bottom:712.015467pt;}
.y145{bottom:713.364400pt;}
.y127{bottom:714.648800pt;}
.yff{bottom:714.663467pt;}
.y6b{bottom:717.356800pt;}
.yc2{bottom:720.025733pt;}
.y17a{bottom:720.031467pt;}
.y2a{bottom:721.268400pt;}
.y89{bottom:730.686133pt;}
.ye3{bottom:732.006133pt;}
.ya5{bottom:733.319467pt;}
.yfe{bottom:733.334133pt;}
.y6a{bottom:736.027467pt;}
.y15f{bottom:737.364800pt;}
.y29{bottom:739.939067pt;}
.y88{bottom:749.356800pt;}
.ye2{bottom:750.676800pt;}
.y4e{bottom:751.990133pt;}
.yfd{bottom:752.004800pt;}
.y69{bottom:754.698133pt;}
.yc1{bottom:757.352400pt;}
.y87{bottom:768.027467pt;}
.ye1{bottom:769.347467pt;}
.y4d{bottom:770.660800pt;}
.yfc{bottom:770.675467pt;}
.y179{bottom:772.031467pt;}
.yc0{bottom:776.023067pt;}
.y28{bottom:777.272400pt;}
.y144{bottom:782.697733pt;}
.y86{bottom:786.698133pt;}
.ye0{bottom:788.018133pt;}
.y4c{bottom:789.331467pt;}
.y117{bottom:789.346133pt;}
.y15e{bottom:789.364800pt;}
.y68{bottom:792.031467pt;}
.ybf{bottom:794.693733pt;}
.y15d{bottom:806.698133pt;}
.y4b{bottom:808.002133pt;}
.y116{bottom:808.016800pt;}
.ybe{bottom:813.364400pt;}
.y143{bottom:820.031067pt;}
.y85{bottom:824.031467pt;}
.ydf{bottom:825.344800pt;}
.y4a{bottom:826.672800pt;}
.y115{bottom:826.687467pt;}
.y27{bottom:827.939067pt;}
.y15c{bottom:841.364800pt;}
.yde{bottom:844.015467pt;}
.y49{bottom:845.343467pt;}
.y26{bottom:847.718533pt;}
.ybd{bottom:850.697733pt;}
.y15b{bottom:858.698133pt;}
.ydd{bottom:862.686133pt;}
.y48{bottom:864.014133pt;}
.y84{bottom:869.364800pt;}
.y15a{bottom:876.031467pt;}
.ydc{bottom:881.356800pt;}
.y126{bottom:882.670133pt;}
.y47{bottom:882.684800pt;}
.y142{bottom:889.348800pt;}
.y178{bottom:893.364800pt;}
.y25{bottom:896.276000pt;}
.ydb{bottom:900.027467pt;}
.y125{bottom:901.340800pt;}
.y67{bottom:901.355467pt;}
.y141{bottom:908.019467pt;}
.y159{bottom:910.698133pt;}
.y24{bottom:912.272000pt;}
.yda{bottom:918.698133pt;}
.y46{bottom:920.011467pt;}
.y66{bottom:920.026133pt;}
.y140{bottom:926.690133pt;}
.y158{bottom:928.031467pt;}
.y23{bottom:928.268000pt;}
.y45{bottom:938.682133pt;}
.ybc{bottom:938.696800pt;}
.y22{bottom:944.264000pt;}
.y13f{bottom:945.360800pt;}
.y177{bottom:945.364800pt;}
.yd9{bottom:956.031467pt;}
.y44{bottom:957.352800pt;}
.y21{bottom:960.260000pt;}
.y157{bottom:962.698133pt;}
.y13e{bottom:964.031467pt;}
.y43{bottom:976.023467pt;}
.y20{bottom:976.256000pt;}
.y156{bottom:980.031467pt;}
.y1f{bottom:992.252000pt;}
.y42{bottom:994.694133pt;}
.y176{bottom:997.364800pt;}
.yd8{bottom:1001.364800pt;}
.y1e{bottom:1012.031467pt;}
.y41{bottom:1013.364800pt;}
.y155{bottom:1014.698133pt;}
.y1d{bottom:1065.597067pt;}
.h3{height:28.373333pt;}
.hd{height:28.896000pt;}
.h2{height:32.384000pt;}
.h4{height:36.480000pt;}
.hc{height:37.152000pt;}
.h15{height:38.933333pt;}
.h16{height:40.533333pt;}
.h8{height:41.280000pt;}
.hb{height:43.392000pt;}
.h10{height:45.408000pt;}
.ha{height:46.720000pt;}
.h9{height:48.213333pt;}
.h7{height:48.693333pt;}
.hf{height:53.034667pt;}
.h11{height:68.832000pt;}
.h12{height:72.960000pt;}
.h13{height:73.406250pt;}
.h6{height:75.733333pt;}
.h14{height:77.866667pt;}
.he{height:80.960000pt;}
.h5{height:101.200000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x3{left:86.440267pt;}
.x7{left:102.049200pt;}
.x9{left:107.590533pt;}
.x5{left:112.095867pt;}
.xb{left:113.390533pt;}
.xa{left:115.190533pt;}
.x6{left:128.507867pt;}
.x4{left:131.338533pt;}
.xc{left:212.675600pt;}
.x2{left:696.638133pt;}
.x8{left:697.772267pt;}
}




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