
    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_21508e00c940ca87d8f710ff.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.934000;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_a6cd88775914ef0be431d7e4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.986816;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_9a84bf8cee5dd96ee079adae.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.984863;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_10bf90270598e841861a79ea.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.934000;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_54f3266b779bbcefcad4680c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.984863;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_c83df455aee84d0a34ff819c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.975586;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_92766f5ec48e21ebc34fb34e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970215;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.247567,0.000000,-0.034793,0.247567,0,0);-ms-transform:matrix(0.247567,0.000000,-0.034793,0.247567,0,0);-webkit-transform:matrix(0.247567,0.000000,-0.034793,0.247567,0,0);}
.m1{transform:matrix(0.248137,0.000000,-0.030466,0.248137,0,0);-ms-transform:matrix(0.248137,0.000000,-0.030466,0.248137,0,0);-webkit-transform:matrix(0.248137,0.000000,-0.030466,0.248137,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);}
.v4{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.976000px;}
.v2{vertical-align:32.400000px;}
.v1{vertical-align:43.656000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.400000px;}
.ls1{letter-spacing:2.760000px;}
.ls3{letter-spacing:9.600000px;}
.ls5{letter-spacing:940.242000px;}
.ls4{letter-spacing:940.244400px;}
.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;}
}
.ws4{word-spacing:-46.368000px;}
.ws44{word-spacing:-24.840000px;}
.ws8c{word-spacing:-23.184000px;}
.ws2c{word-spacing:-19.872000px;}
.wse{word-spacing:-18.216000px;}
.ws5{word-spacing:-18.084000px;}
.wsf{word-spacing:-16.440000px;}
.ws1e{word-spacing:-16.080000px;}
.ws7{word-spacing:-14.796000px;}
.ws24{word-spacing:-13.152000px;}
.ws50{word-spacing:-8.856000px;}
.ws80{word-spacing:-7.272000px;}
.ws1c{word-spacing:-7.128000px;}
.ws7d{word-spacing:-6.624000px;}
.ws52{word-spacing:-5.976000px;}
.ws62{word-spacing:-4.968000px;}
.ws46{word-spacing:-4.824000px;}
.ws6f{word-spacing:-4.752000px;}
.ws7a{word-spacing:-4.680000px;}
.ws7b{word-spacing:-4.608000px;}
.ws82{word-spacing:-4.248000px;}
.ws45{word-spacing:-4.176000px;}
.ws55{word-spacing:-4.032000px;}
.ws34{word-spacing:-3.816000px;}
.ws4b{word-spacing:-3.456000px;}
.ws49{word-spacing:-3.384000px;}
.ws16{word-spacing:-3.168000px;}
.ws8d{word-spacing:-2.880000px;}
.wsa{word-spacing:-2.592000px;}
.ws68{word-spacing:-2.520000px;}
.ws69{word-spacing:-2.448000px;}
.ws51{word-spacing:-2.376000px;}
.ws15{word-spacing:-2.304000px;}
.ws48{word-spacing:-2.232000px;}
.ws76{word-spacing:-1.728000px;}
.ws85{word-spacing:-1.656000px;}
.ws33{word-spacing:-1.368000px;}
.ws6d{word-spacing:-1.080000px;}
.ws6a{word-spacing:-0.936000px;}
.ws38{word-spacing:-0.792000px;}
.ws74{word-spacing:-0.720000px;}
.ws2b{word-spacing:-0.432000px;}
.ws79{word-spacing:-0.288000px;}
.ws89{word-spacing:-0.216000px;}
.ws5a{word-spacing:-0.198000px;}
.ws8{word-spacing:-0.144000px;}
.ws0{word-spacing:0.000000px;}
.ws12{word-spacing:0.072000px;}
.ws17{word-spacing:0.216000px;}
.ws56{word-spacing:0.288000px;}
.ws1f{word-spacing:0.864000px;}
.ws40{word-spacing:0.936000px;}
.wsc{word-spacing:1.080000px;}
.wsd{word-spacing:1.296000px;}
.ws4e{word-spacing:1.368000px;}
.wsb{word-spacing:1.512000px;}
.ws1{word-spacing:1.944000px;}
.ws61{word-spacing:2.016000px;}
.ws84{word-spacing:2.088000px;}
.ws14{word-spacing:2.232000px;}
.ws26{word-spacing:2.304000px;}
.ws86{word-spacing:2.448000px;}
.ws75{word-spacing:2.592000px;}
.ws58{word-spacing:2.736000px;}
.ws13{word-spacing:3.168000px;}
.ws22{word-spacing:3.240000px;}
.ws10{word-spacing:3.384000px;}
.ws18{word-spacing:3.456000px;}
.ws81{word-spacing:3.672000px;}
.ws2{word-spacing:3.744000px;}
.ws54{word-spacing:3.816000px;}
.ws83{word-spacing:3.960000px;}
.ws8e{word-spacing:4.248000px;}
.ws32{word-spacing:4.464000px;}
.ws63{word-spacing:4.536000px;}
.ws8a{word-spacing:4.608000px;}
.ws5e{word-spacing:4.680000px;}
.ws67{word-spacing:4.896000px;}
.ws3{word-spacing:4.968000px;}
.ws21{word-spacing:5.112000px;}
.ws7c{word-spacing:5.184000px;}
.ws41{word-spacing:5.400000px;}
.ws42{word-spacing:5.472000px;}
.ws6c{word-spacing:5.832000px;}
.ws23{word-spacing:6.048000px;}
.ws88{word-spacing:6.192000px;}
.ws3b{word-spacing:6.336000px;}
.ws87{word-spacing:6.480000px;}
.ws43{word-spacing:6.624000px;}
.ws28{word-spacing:6.696000px;}
.ws64{word-spacing:6.768000px;}
.ws1a{word-spacing:6.840000px;}
.ws5d{word-spacing:6.912000px;}
.ws72{word-spacing:6.984000px;}
.ws2d{word-spacing:7.200000px;}
.ws70{word-spacing:7.560000px;}
.ws39{word-spacing:7.632000px;}
.ws11{word-spacing:7.992000px;}
.ws37{word-spacing:8.136000px;}
.ws6e{word-spacing:8.280000px;}
.ws73{word-spacing:8.496000px;}
.ws7f{word-spacing:8.712000px;}
.ws3d{word-spacing:8.784000px;}
.ws3c{word-spacing:8.856000px;}
.ws8b{word-spacing:8.928000px;}
.ws9{word-spacing:9.072000px;}
.ws47{word-spacing:9.288000px;}
.ws1b{word-spacing:9.720000px;}
.ws2e{word-spacing:9.792000px;}
.ws20{word-spacing:9.864000px;}
.ws66{word-spacing:9.936000px;}
.ws65{word-spacing:10.008000px;}
.ws3e{word-spacing:10.224000px;}
.ws3f{word-spacing:10.296000px;}
.ws59{word-spacing:10.368000px;}
.ws7e{word-spacing:10.512000px;}
.ws71{word-spacing:10.728000px;}
.ws27{word-spacing:10.872000px;}
.ws57{word-spacing:11.304000px;}
.ws19{word-spacing:11.448000px;}
.ws77{word-spacing:11.520000px;}
.ws2f{word-spacing:11.664000px;}
.ws30{word-spacing:11.736000px;}
.ws4c{word-spacing:11.880000px;}
.ws53{word-spacing:12.456000px;}
.ws4a{word-spacing:12.672000px;}
.ws60{word-spacing:12.816000px;}
.ws2a{word-spacing:14.328000px;}
.ws78{word-spacing:14.976000px;}
.ws1d{word-spacing:15.480000px;}
.ws4f{word-spacing:17.640000px;}
.ws6b{word-spacing:18.288000px;}
.ws5f{word-spacing:18.720000px;}
.ws31{word-spacing:19.224000px;}
.ws35{word-spacing:20.160000px;}
.ws36{word-spacing:20.304000px;}
.ws3a{word-spacing:20.376000px;}
.ws5c{word-spacing:26.640000px;}
.ws4d{word-spacing:27.144000px;}
.ws29{word-spacing:29.304000px;}
.ws25{word-spacing:44.136000px;}
.ws5b{word-spacing:72.432000px;}
.ws6{word-spacing:436.923000px;}
._1f{margin-left:-2101.421400px;}
._2{margin-left:-10.267200px;}
._3{margin-left:-8.804400px;}
._0{margin-left:-7.104000px;}
._11{margin-left:-5.349000px;}
._6{margin-left:-4.248000px;}
._9{margin-left:-2.857200px;}
._1{margin-left:-1.807800px;}
._4{width:1.683600px;}
._7{width:3.465000px;}
._8{width:4.653600px;}
._f{width:5.739000px;}
._1d{width:6.745800px;}
._10{width:9.105600px;}
._5{width:10.267200px;}
._1b{width:11.440800px;}
._1a{width:13.420800px;}
._13{width:15.504000px;}
._14{width:17.029200px;}
._16{width:18.143400px;}
._1c{width:26.481600px;}
._12{width:67.500000px;}
._15{width:115.398600px;}
._c{width:124.329000px;}
._d{width:175.948800px;}
._17{width:242.988000px;}
._1e{width:247.242600px;}
._19{width:249.724200px;}
._e{width:293.715000px;}
._18{width:347.149200px;}
._a{width:483.423000px;}
._b{width:502.710000px;}
.fc7{color:rgb(50,185,212);}
.fc5{color:rgb(109,199,42);}
.fc4{color:rgb(50,186,212);}
.fc2{color:rgb(2,80,126);}
.fc1{color:rgb(111,198,41);}
.fc6{color:rgb(0,0,0);}
.fc3{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fse{font-size:27.984000px;}
.fsc{font-size:41.976000px;}
.fsa{font-size:42.412770px;}
.fsf{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs5{font-size:60.450556px;}
.fs9{font-size:60.589647px;}
.fs6{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs10{font-size:72.707594px;}
.fs3{font-size:84.000000px;}
.fsb{font-size:90.000000px;}
.fs0{font-size:96.000000px;}
.fs11{font-size:102.000000px;}
.fsd{font-size:120.000000px;}
.fs1{font-size:138.000000px;}
.fs4{font-size:168.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:35.393850px;}
.ybe{bottom:60.890250px;}
.yfe{bottom:68.243700px;}
.y94{bottom:69.441750px;}
.y181{bottom:70.497600px;}
.y34{bottom:79.114950px;}
.ybd{bottom:79.286250px;}
.yfd{bottom:89.843700px;}
.y180{bottom:92.097600px;}
.y11c{bottom:93.979200px;}
.y93{bottom:107.152950px;}
.yfc{bottom:111.443700px;}
.y17f{bottom:113.697600px;}
.y11b{bottom:115.579200px;}
.y6e{bottom:118.211250px;}
.y17d{bottom:122.263950px;}
.y33{bottom:122.793000px;}
.y92{bottom:123.352950px;}
.y43{bottom:130.282500px;}
.y66{bottom:132.611100px;}
.yfb{bottom:133.043700px;}
.y6d{bottom:136.211250px;}
.y8d{bottom:137.081400px;}
.y11a{bottom:137.179200px;}
.y32{bottom:138.993000px;}
.y30{bottom:143.435850px;}
.y17c{bottom:143.863950px;}
.y91{bottom:145.181400px;}
.y42{bottom:146.482500px;}
.y17e{bottom:152.305500px;}
.y65{bottom:152.410500px;}
.y8c{bottom:153.282000px;}
.y6c{bottom:154.212000px;}
.yfa{bottom:154.644000px;}
.y119{bottom:158.779500px;}
.y41{bottom:159.082500px;}
.y90{bottom:161.382000px;}
.y31{bottom:166.779000px;}
.y8b{bottom:169.482000px;}
.y64{bottom:170.410500px;}
.y40{bottom:171.682500px;}
.y6b{bottom:172.210500px;}
.y15b{bottom:180.063000px;}
.y118{bottom:180.379500px;}
.y8f{bottom:183.210000px;}
.y63{bottom:188.410500px;}
.y6a{bottom:190.212000px;}
.y2f{bottom:191.865000px;}
.yf9{bottom:193.251000px;}
.y2d{bottom:194.679000px;}
.y2{bottom:199.311000px;}
.y8e{bottom:199.410000px;}
.y15a{bottom:201.663000px;}
.y117{bottom:201.979500px;}
.y3f{bottom:204.187500px;}
.y62{bottom:206.410500px;}
.y69{bottom:208.210500px;}
.y2c{bottom:210.879000px;}
.y2e{bottom:215.322000px;}
.yf8{bottom:220.251000px;}
.y8a{bottom:221.238000px;}
.y3e{bottom:222.187500px;}
.y159{bottom:223.263000px;}
.y116{bottom:223.579500px;}
.y61{bottom:224.410500px;}
.ydc{bottom:225.301500px;}
.y68{bottom:226.212000px;}
.y2b{bottom:237.150000px;}
.y89{bottom:237.438000px;}
.y29{bottom:239.964000px;}
.y60{bottom:242.412000px;}
.y86{bottom:243.066000px;}
.y67{bottom:244.210500px;}
.y158{bottom:244.863000px;}
.y115{bottom:245.179500px;}
.y3b{bottom:246.813000px;}
.ydb{bottom:246.901500px;}
.y28{bottom:256.164000px;}
.y2a{bottom:258.978000px;}
.y85{bottom:259.266000px;}
.y5f{bottom:262.212000px;}
.y186{bottom:262.933500px;}
.y157{bottom:266.463000px;}
.y114{bottom:266.779500px;}
.yda{bottom:268.501500px;}
.y84{bottom:275.466000px;}
.yf7{bottom:277.015500px;}
.y1{bottom:279.972000px;}
.y27{bottom:280.806000px;}
.y5e{bottom:282.010500px;}
.y3a{bottom:282.706500px;}
.y185{bottom:284.533500px;}
.y83{bottom:291.666000px;}
.y26{bottom:297.006000px;}
.y88{bottom:297.294000px;}
.yf6{bottom:298.615500px;}
.y113{bottom:305.386500px;}
.yd9{bottom:307.108500px;}
.y39{bottom:311.662500px;}
.y87{bottom:313.495500px;}
.y156{bottom:313.573500px;}
.y25{bottom:318.835500px;}
.yf5{bottom:320.215500px;}
.yd8{bottom:328.708500px;}
.yb8{bottom:330.193500px;}
.y6f{bottom:334.548000px;}
.y155{bottom:335.173500px;}
.y82{bottom:335.323500px;}
.y38{bottom:340.618500px;}
.y24{bottom:340.663500px;}
.yf4{bottom:341.815500px;}
.yd7{bottom:350.308500px;}
.y81{bottom:351.523500px;}
.y23{bottom:351.577500px;}
.y154{bottom:356.773500px;}
.y7e{bottom:357.151500px;}
.y112{bottom:362.151000px;}
.yf3{bottom:363.415500px;}
.y37{bottom:369.574500px;}
.y7d{bottom:373.351500px;}
.yb7{bottom:374.956500px;}
.y8{bottom:377.055000px;}
.y153{bottom:378.373500px;}
.y111{bottom:383.751000px;}
.yb3{bottom:384.072000px;}
.y22{bottom:384.319500px;}
.yf2{bottom:385.015500px;}
.yd6{bottom:388.917000px;}
.y7c{bottom:389.551500px;}
.yb6{bottom:392.956500px;}
.y36{bottom:398.530500px;}
.y7{bottom:398.655000px;}
.y152{bottom:399.975000px;}
.y21{bottom:400.519500px;}
.yb2{bottom:403.870500px;}
.y110{bottom:405.351000px;}
.y7b{bottom:405.751500px;}
.yf1{bottom:406.615500px;}
.y5d{bottom:409.107000px;}
.yb5{bottom:410.956500px;}
.y80{bottom:411.379500px;}
.y20{bottom:416.719500px;}
.y6{bottom:420.255000px;}
.y151{bottom:421.575000px;}
.yb1{bottom:423.670500px;}
.y10f{bottom:426.951000px;}
.y35{bottom:427.486500px;}
.y7f{bottom:427.579500px;}
.y184{bottom:429.820500px;}
.yb4{bottom:436.414500px;}
.y1f{bottom:438.549000px;}
.y5{bottom:441.855000px;}
.yf0{bottom:445.222500px;}
.y10e{bottom:448.551000px;}
.y7a{bottom:449.407500px;}
.y3d{bottom:455.370000px;}
.y183{bottom:455.671500px;}
.yd5{bottom:458.436000px;}
.yb0{bottom:459.336000px;}
.y1e{bottom:461.469000px;}
.y5c{bottom:465.871500px;}
.y150{bottom:468.685500px;}
.yef{bottom:472.222500px;}
.y3c{bottom:473.370000px;}
.yd4{bottom:480.036000px;}
.y4{bottom:481.027500px;}
.y1d{bottom:481.269000px;}
.yaf{bottom:482.256000px;}
.y10d{bottom:487.158000px;}
.y5b{bottom:487.471500px;}
.ya2{bottom:488.832000px;}
.y14f{bottom:490.285500px;}
.y182{bottom:494.280000px;}
.yae{bottom:500.256000px;}
.yaa{bottom:501.270000px;}
.yd3{bottom:501.636000px;}
.y79{bottom:504.985500px;}
.ya1{bottom:508.632000px;}
.y5a{bottom:509.071500px;}
.y14e{bottom:511.885500px;}
.ya9{bottom:521.070000px;}
.y3{bottom:522.427500px;}
.yad{bottom:523.176000px;}
.y78{bottom:527.236500px;}
.ya0{bottom:528.432000px;}
.y59{bottom:530.671500px;}
.y14d{bottom:533.485500px;}
.yee{bottom:538.774500px;}
.y17{bottom:539.694000px;}
.yd2{bottom:540.244500px;}
.yac{bottom:546.097500px;}
.y77{bottom:549.489000px;}
.y58{bottom:552.271500px;}
.y14c{bottom:555.085500px;}
.y10c{bottom:557.068500px;}
.y16{bottom:561.294000px;}
.yd1{bottom:561.844500px;}
.yab{bottom:564.097500px;}
.y57{bottom:573.871500px;}
.y14b{bottom:576.685500px;}
.ye9{bottom:577.599000px;}
.y15{bottom:582.894000px;}
.yd0{bottom:583.444500px;}
.ya8{bottom:587.017500px;}
.yeb{bottom:588.945000px;}
.y12c{bottom:594.855000px;}
.ye8{bottom:597.399000px;}
.y14a{bottom:598.285500px;}
.y14{bottom:604.494000px;}
.ya7{bottom:605.017500px;}
.ycf{bottom:605.044500px;}
.ya4{bottom:606.031500px;}
.yea{bottom:606.945000px;}
.ye0{bottom:609.519000px;}
.y12b{bottom:612.855000px;}
.y128{bottom:613.869000px;}
.y56{bottom:617.071500px;}
.ye7{bottom:617.199000px;}
.y149{bottom:619.885500px;}
.ya3{bottom:625.831500px;}
.y13{bottom:626.094000px;}
.ya6{bottom:627.937500px;}
.ydf{bottom:629.319000px;}
.y127{bottom:633.669000px;}
.y12a{bottom:635.775000px;}
.y120{bottom:635.889000px;}
.y55{bottom:638.671500px;}
.ye6{bottom:641.211000px;}
.ye3{bottom:641.326500px;}
.y148{bottom:641.485500px;}
.yce{bottom:643.653000px;}
.ya5{bottom:645.937500px;}
.yde{bottom:649.119000px;}
.y129{bottom:653.775000px;}
.y11f{bottom:655.689000px;}
.ye5{bottom:659.211000px;}
.y54{bottom:660.271500px;}
.ye2{bottom:661.126500px;}
.y147{bottom:663.085500px;}
.ycd{bottom:665.253000px;}
.y9f{bottom:668.857500px;}
.y12{bottom:669.294000px;}
.y11e{bottom:675.489000px;}
.y126{bottom:676.695000px;}
.y123{bottom:676.810500px;}
.ye1{bottom:680.926500px;}
.y53{bottom:681.871500px;}
.ye4{bottom:682.132500px;}
.y146{bottom:684.685500px;}
.ycc{bottom:686.853000px;}
.y11{bottom:690.894000px;}
.y122{bottom:696.610500px;}
.y125{bottom:699.616500px;}
.y52{bottom:703.471500px;}
.y16c{bottom:703.579500px;}
.ydd{bottom:705.052500px;}
.y145{bottom:706.285500px;}
.y10{bottom:712.494000px;}
.y121{bottom:716.410500px;}
.y124{bottom:717.616500px;}
.y17b{bottom:718.446000px;}
.y51{bottom:725.071500px;}
.y16b{bottom:725.179500px;}
.ycb{bottom:725.460000px;}
.y144{bottom:727.885500px;}
.y17a{bottom:740.047500px;}
.y11d{bottom:740.536500px;}
.y50{bottom:746.671500px;}
.y16a{bottom:746.779500px;}
.yca{bottom:747.060000px;}
.ybc{bottom:749.040000px;}
.y19{bottom:756.858000px;}
.y1a{bottom:760.458000px;}
.y179{bottom:761.647500px;}
.y109{bottom:764.745000px;}
.y169{bottom:768.379500px;}
.yc9{bottom:768.660000px;}
.ybb{bottom:770.640000px;}
.y143{bottom:774.997500px;}
.y1b{bottom:776.274000px;}
.y18{bottom:778.458000px;}
.y4f{bottom:789.871500px;}
.y168{bottom:789.979500px;}
.y136{bottom:796.098000px;}
.y142{bottom:796.597500px;}
.y108{bottom:803.353500px;}
.y178{bottom:804.846000px;}
.yc8{bottom:807.268500px;}
.y9e{bottom:810.097500px;}
.y4e{bottom:811.471500px;}
.y167{bottom:811.579500px;}
.y141{bottom:818.197500px;}
.y177{bottom:826.446000px;}
.y107{bottom:827.587500px;}
.y9d{bottom:831.697500px;}
.y4d{bottom:833.071500px;}
.y166{bottom:833.179500px;}
.y135{bottom:836.694000px;}
.y140{bottom:839.797500px;}
.y176{bottom:848.046000px;}
.y106{bottom:849.187500px;}
.y9c{bottom:853.297500px;}
.y4c{bottom:854.671500px;}
.y165{bottom:854.779500px;}
.y134{bottom:858.294000px;}
.y13f{bottom:861.397500px;}
.y175{bottom:869.646000px;}
.y105{bottom:870.787500px;}
.y9b{bottom:874.897500px;}
.y4b{bottom:876.271500px;}
.y164{bottom:876.379500px;}
.yc7{bottom:876.787500px;}
.y133{bottom:879.894000px;}
.y13e{bottom:882.997500px;}
.y174{bottom:891.246000px;}
.y104{bottom:892.387500px;}
.y9a{bottom:896.497500px;}
.y4a{bottom:897.871500px;}
.y163{bottom:897.979500px;}
.yc6{bottom:898.387500px;}
.y132{bottom:901.494000px;}
.y103{bottom:913.987500px;}
.y1c{bottom:917.806500px;}
.y99{bottom:918.097500px;}
.yc5{bottom:919.987500px;}
.y131{bottom:923.094000px;}
.y76{bottom:932.320500px;}
.y173{bottom:934.446000px;}
.y102{bottom:935.587500px;}
.y13d{bottom:937.063500px;}
.y98{bottom:939.697500px;}
.y49{bottom:941.071500px;}
.yc4{bottom:941.587500px;}
.y130{bottom:944.694000px;}
.y162{bottom:945.090000px;}
.y75{bottom:953.920500px;}
.y172{bottom:956.046000px;}
.y101{bottom:957.187500px;}
.y13c{bottom:958.663500px;}
.y97{bottom:961.297500px;}
.y48{bottom:962.671500px;}
.yf{bottom:963.828000px;}
.y12f{bottom:966.294000px;}
.y161{bottom:966.691500px;}
.y74{bottom:975.520500px;}
.y171{bottom:977.646000px;}
.y100{bottom:978.787500px;}
.yc3{bottom:980.196000px;}
.y13b{bottom:980.263500px;}
.y96{bottom:982.897500px;}
.y47{bottom:984.271500px;}
.ye{bottom:985.428000px;}
.y12e{bottom:987.894000px;}
.y160{bottom:988.291500px;}
.y73{bottom:997.120500px;}
.y170{bottom:999.246000px;}
.yff{bottom:1000.387500px;}
.yc2{bottom:1001.796000px;}
.y13a{bottom:1001.863500px;}
.y95{bottom:1004.497500px;}
.y46{bottom:1005.871500px;}
.yd{bottom:1007.028000px;}
.y12d{bottom:1009.494000px;}
.y15f{bottom:1009.891500px;}
.y72{bottom:1018.720500px;}
.y16f{bottom:1020.846000px;}
.yc1{bottom:1023.396000px;}
.y139{bottom:1023.463500px;}
.y45{bottom:1027.471500px;}
.yc{bottom:1028.628000px;}
.y15e{bottom:1031.491500px;}
.y71{bottom:1040.320500px;}
.y16e{bottom:1042.446000px;}
.yc0{bottom:1044.996000px;}
.y138{bottom:1045.063500px;}
.yed{bottom:1045.758000px;}
.y10b{bottom:1046.874000px;}
.y15d{bottom:1053.090000px;}
.yba{bottom:1054.048500px;}
.y15c{bottom:1074.691500px;}
.yb{bottom:1080.249000px;}
.y44{bottom:1081.312500px;}
.yec{bottom:1081.758000px;}
.y16d{bottom:1082.376000px;}
.y10a{bottom:1082.874000px;}
.ybf{bottom:1083.603000px;}
.y137{bottom:1083.670500px;}
.y70{bottom:1084.501500px;}
.yb9{bottom:1090.048500px;}
.ya{bottom:1191.709500px;}
.h19{height:20.974336px;}
.h10{height:31.788868px;}
.h1a{height:35.976562px;}
.hc{height:40.473633px;}
.h15{height:40.605469px;}
.h12{height:44.970703px;}
.hb{height:45.117188px;}
.h7{height:45.308400px;}
.hf{height:45.560575px;}
.ha{height:48.855469px;}
.h13{height:49.467773px;}
.h9{height:49.628906px;}
.h4{height:53.964844px;}
.h14{height:54.140625px;}
.h1b{height:54.495193px;}
.h16{height:55.437504px;}
.h5{height:61.236000px;}
.h8{height:63.164062px;}
.h11{height:67.675781px;}
.h2{height:69.984000px;}
.he{height:72.873633px;}
.h1c{height:76.699219px;}
.hd{height:84.129633px;}
.h18{height:88.828125px;}
.h17{height:90.234375px;}
.h3{height:103.769531px;}
.h6{height:126.328125px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x29{left:61.653600px;}
.x2{left:63.779550px;}
.x24{left:65.905500px;}
.x25{left:68.403600px;}
.x2a{left:70.529550px;}
.x5{left:72.470700px;}
.x9{left:88.071150px;}
.x1b{left:89.291400px;}
.x3{left:91.924350px;}
.x4{left:98.545350px;}
.x33{left:106.299150px;}
.x21{left:107.549400px;}
.xe{left:109.388250px;}
.x1d{left:114.803100px;}
.x1c{left:116.291400px;}
.xa{left:120.195150px;}
.x34{left:186.378000px;}
.x30{left:191.281500px;}
.x31{left:192.565500px;}
.x2e{left:214.015500px;}
.x22{left:216.685500px;}
.x28{left:233.763000px;}
.x2d{left:236.353500px;}
.x26{left:244.110000px;}
.x2b{left:247.920000px;}
.x6{left:263.463000px;}
.x23{left:268.087500px;}
.xf{left:269.197500px;}
.x10{left:289.920000px;}
.x1e{left:348.502500px;}
.xb{left:350.266500px;}
.x1f{left:375.502500px;}
.xc{left:399.895500px;}
.x27{left:471.591000px;}
.x2c{left:475.401000px;}
.x32{left:518.740500px;}
.x8{left:595.522500px;}
.x13{left:603.487500px;}
.x20{left:609.471000px;}
.xd{left:612.567000px;}
.x1a{left:614.835000px;}
.x15{left:621.444000px;}
.x12{left:625.023000px;}
.x18{left:630.811500px;}
.x16{left:635.688000px;}
.x11{left:642.214500px;}
.x19{left:645.741000px;}
.x14{left:650.203500px;}
.x1{left:661.449000px;}
.x17{left:680.047500px;}
.x2f{left:777.175500px;}
.x7{left:788.851500px;}
@media print{
.v4{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.312000pt;}
.v2{vertical-align:28.800000pt;}
.v1{vertical-align:38.805333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:2.133333pt;}
.ls1{letter-spacing:2.453333pt;}
.ls3{letter-spacing:8.533333pt;}
.ls5{letter-spacing:835.770667pt;}
.ls4{letter-spacing:835.772800pt;}
.ws4{word-spacing:-41.216000pt;}
.ws44{word-spacing:-22.080000pt;}
.ws8c{word-spacing:-20.608000pt;}
.ws2c{word-spacing:-17.664000pt;}
.wse{word-spacing:-16.192000pt;}
.ws5{word-spacing:-16.074667pt;}
.wsf{word-spacing:-14.613333pt;}
.ws1e{word-spacing:-14.293333pt;}
.ws7{word-spacing:-13.152000pt;}
.ws24{word-spacing:-11.690667pt;}
.ws50{word-spacing:-7.872000pt;}
.ws80{word-spacing:-6.464000pt;}
.ws1c{word-spacing:-6.336000pt;}
.ws7d{word-spacing:-5.888000pt;}
.ws52{word-spacing:-5.312000pt;}
.ws62{word-spacing:-4.416000pt;}
.ws46{word-spacing:-4.288000pt;}
.ws6f{word-spacing:-4.224000pt;}
.ws7a{word-spacing:-4.160000pt;}
.ws7b{word-spacing:-4.096000pt;}
.ws82{word-spacing:-3.776000pt;}
.ws45{word-spacing:-3.712000pt;}
.ws55{word-spacing:-3.584000pt;}
.ws34{word-spacing:-3.392000pt;}
.ws4b{word-spacing:-3.072000pt;}
.ws49{word-spacing:-3.008000pt;}
.ws16{word-spacing:-2.816000pt;}
.ws8d{word-spacing:-2.560000pt;}
.wsa{word-spacing:-2.304000pt;}
.ws68{word-spacing:-2.240000pt;}
.ws69{word-spacing:-2.176000pt;}
.ws51{word-spacing:-2.112000pt;}
.ws15{word-spacing:-2.048000pt;}
.ws48{word-spacing:-1.984000pt;}
.ws76{word-spacing:-1.536000pt;}
.ws85{word-spacing:-1.472000pt;}
.ws33{word-spacing:-1.216000pt;}
.ws6d{word-spacing:-0.960000pt;}
.ws6a{word-spacing:-0.832000pt;}
.ws38{word-spacing:-0.704000pt;}
.ws74{word-spacing:-0.640000pt;}
.ws2b{word-spacing:-0.384000pt;}
.ws79{word-spacing:-0.256000pt;}
.ws89{word-spacing:-0.192000pt;}
.ws5a{word-spacing:-0.176000pt;}
.ws8{word-spacing:-0.128000pt;}
.ws0{word-spacing:0.000000pt;}
.ws12{word-spacing:0.064000pt;}
.ws17{word-spacing:0.192000pt;}
.ws56{word-spacing:0.256000pt;}
.ws1f{word-spacing:0.768000pt;}
.ws40{word-spacing:0.832000pt;}
.wsc{word-spacing:0.960000pt;}
.wsd{word-spacing:1.152000pt;}
.ws4e{word-spacing:1.216000pt;}
.wsb{word-spacing:1.344000pt;}
.ws1{word-spacing:1.728000pt;}
.ws61{word-spacing:1.792000pt;}
.ws84{word-spacing:1.856000pt;}
.ws14{word-spacing:1.984000pt;}
.ws26{word-spacing:2.048000pt;}
.ws86{word-spacing:2.176000pt;}
.ws75{word-spacing:2.304000pt;}
.ws58{word-spacing:2.432000pt;}
.ws13{word-spacing:2.816000pt;}
.ws22{word-spacing:2.880000pt;}
.ws10{word-spacing:3.008000pt;}
.ws18{word-spacing:3.072000pt;}
.ws81{word-spacing:3.264000pt;}
.ws2{word-spacing:3.328000pt;}
.ws54{word-spacing:3.392000pt;}
.ws83{word-spacing:3.520000pt;}
.ws8e{word-spacing:3.776000pt;}
.ws32{word-spacing:3.968000pt;}
.ws63{word-spacing:4.032000pt;}
.ws8a{word-spacing:4.096000pt;}
.ws5e{word-spacing:4.160000pt;}
.ws67{word-spacing:4.352000pt;}
.ws3{word-spacing:4.416000pt;}
.ws21{word-spacing:4.544000pt;}
.ws7c{word-spacing:4.608000pt;}
.ws41{word-spacing:4.800000pt;}
.ws42{word-spacing:4.864000pt;}
.ws6c{word-spacing:5.184000pt;}
.ws23{word-spacing:5.376000pt;}
.ws88{word-spacing:5.504000pt;}
.ws3b{word-spacing:5.632000pt;}
.ws87{word-spacing:5.760000pt;}
.ws43{word-spacing:5.888000pt;}
.ws28{word-spacing:5.952000pt;}
.ws64{word-spacing:6.016000pt;}
.ws1a{word-spacing:6.080000pt;}
.ws5d{word-spacing:6.144000pt;}
.ws72{word-spacing:6.208000pt;}
.ws2d{word-spacing:6.400000pt;}
.ws70{word-spacing:6.720000pt;}
.ws39{word-spacing:6.784000pt;}
.ws11{word-spacing:7.104000pt;}
.ws37{word-spacing:7.232000pt;}
.ws6e{word-spacing:7.360000pt;}
.ws73{word-spacing:7.552000pt;}
.ws7f{word-spacing:7.744000pt;}
.ws3d{word-spacing:7.808000pt;}
.ws3c{word-spacing:7.872000pt;}
.ws8b{word-spacing:7.936000pt;}
.ws9{word-spacing:8.064000pt;}
.ws47{word-spacing:8.256000pt;}
.ws1b{word-spacing:8.640000pt;}
.ws2e{word-spacing:8.704000pt;}
.ws20{word-spacing:8.768000pt;}
.ws66{word-spacing:8.832000pt;}
.ws65{word-spacing:8.896000pt;}
.ws3e{word-spacing:9.088000pt;}
.ws3f{word-spacing:9.152000pt;}
.ws59{word-spacing:9.216000pt;}
.ws7e{word-spacing:9.344000pt;}
.ws71{word-spacing:9.536000pt;}
.ws27{word-spacing:9.664000pt;}
.ws57{word-spacing:10.048000pt;}
.ws19{word-spacing:10.176000pt;}
.ws77{word-spacing:10.240000pt;}
.ws2f{word-spacing:10.368000pt;}
.ws30{word-spacing:10.432000pt;}
.ws4c{word-spacing:10.560000pt;}
.ws53{word-spacing:11.072000pt;}
.ws4a{word-spacing:11.264000pt;}
.ws60{word-spacing:11.392000pt;}
.ws2a{word-spacing:12.736000pt;}
.ws78{word-spacing:13.312000pt;}
.ws1d{word-spacing:13.760000pt;}
.ws4f{word-spacing:15.680000pt;}
.ws6b{word-spacing:16.256000pt;}
.ws5f{word-spacing:16.640000pt;}
.ws31{word-spacing:17.088000pt;}
.ws35{word-spacing:17.920000pt;}
.ws36{word-spacing:18.048000pt;}
.ws3a{word-spacing:18.112000pt;}
.ws5c{word-spacing:23.680000pt;}
.ws4d{word-spacing:24.128000pt;}
.ws29{word-spacing:26.048000pt;}
.ws25{word-spacing:39.232000pt;}
.ws5b{word-spacing:64.384000pt;}
.ws6{word-spacing:388.376000pt;}
._1f{margin-left:-1867.930133pt;}
._2{margin-left:-9.126400pt;}
._3{margin-left:-7.826133pt;}
._0{margin-left:-6.314667pt;}
._11{margin-left:-4.754667pt;}
._6{margin-left:-3.776000pt;}
._9{margin-left:-2.539733pt;}
._1{margin-left:-1.606933pt;}
._4{width:1.496533pt;}
._7{width:3.080000pt;}
._8{width:4.136533pt;}
._f{width:5.101333pt;}
._1d{width:5.996267pt;}
._10{width:8.093867pt;}
._5{width:9.126400pt;}
._1b{width:10.169600pt;}
._1a{width:11.929600pt;}
._13{width:13.781333pt;}
._14{width:15.137067pt;}
._16{width:16.127467pt;}
._1c{width:23.539200pt;}
._12{width:60.000000pt;}
._15{width:102.576533pt;}
._c{width:110.514667pt;}
._d{width:156.398933pt;}
._17{width:215.989333pt;}
._1e{width:219.771200pt;}
._19{width:221.977067pt;}
._e{width:261.080000pt;}
._18{width:308.577067pt;}
._a{width:429.709333pt;}
._b{width:446.853333pt;}
.fse{font-size:24.874667pt;}
.fsc{font-size:37.312000pt;}
.fsa{font-size:37.700240pt;}
.fsf{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs5{font-size:53.733828pt;}
.fs9{font-size:53.857464pt;}
.fs6{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs10{font-size:64.628972pt;}
.fs3{font-size:74.666667pt;}
.fsb{font-size:80.000000pt;}
.fs0{font-size:85.333333pt;}
.fs11{font-size:90.666667pt;}
.fsd{font-size:106.666667pt;}
.fs1{font-size:122.666667pt;}
.fs4{font-size:149.333333pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:31.461200pt;}
.ybe{bottom:54.124667pt;}
.yfe{bottom:60.661067pt;}
.y94{bottom:61.726000pt;}
.y181{bottom:62.664533pt;}
.y34{bottom:70.324400pt;}
.ybd{bottom:70.476667pt;}
.yfd{bottom:79.861067pt;}
.y180{bottom:81.864533pt;}
.y11c{bottom:83.537067pt;}
.y93{bottom:95.247067pt;}
.yfc{bottom:99.061067pt;}
.y17f{bottom:101.064533pt;}
.y11b{bottom:102.737067pt;}
.y6e{bottom:105.076667pt;}
.y17d{bottom:108.679067pt;}
.y33{bottom:109.149333pt;}
.y92{bottom:109.647067pt;}
.y43{bottom:115.806667pt;}
.y66{bottom:117.876533pt;}
.yfb{bottom:118.261067pt;}
.y6d{bottom:121.076667pt;}
.y8d{bottom:121.850133pt;}
.y11a{bottom:121.937067pt;}
.y32{bottom:123.549333pt;}
.y30{bottom:127.498533pt;}
.y17c{bottom:127.879067pt;}
.y91{bottom:129.050133pt;}
.y42{bottom:130.206667pt;}
.y17e{bottom:135.382667pt;}
.y65{bottom:135.476000pt;}
.y8c{bottom:136.250667pt;}
.y6c{bottom:137.077333pt;}
.yfa{bottom:137.461333pt;}
.y119{bottom:141.137333pt;}
.y41{bottom:141.406667pt;}
.y90{bottom:143.450667pt;}
.y31{bottom:148.248000pt;}
.y8b{bottom:150.650667pt;}
.y64{bottom:151.476000pt;}
.y40{bottom:152.606667pt;}
.y6b{bottom:153.076000pt;}
.y15b{bottom:160.056000pt;}
.y118{bottom:160.337333pt;}
.y8f{bottom:162.853333pt;}
.y63{bottom:167.476000pt;}
.y6a{bottom:169.077333pt;}
.y2f{bottom:170.546667pt;}
.yf9{bottom:171.778667pt;}
.y2d{bottom:173.048000pt;}
.y2{bottom:177.165333pt;}
.y8e{bottom:177.253333pt;}
.y15a{bottom:179.256000pt;}
.y117{bottom:179.537333pt;}
.y3f{bottom:181.500000pt;}
.y62{bottom:183.476000pt;}
.y69{bottom:185.076000pt;}
.y2c{bottom:187.448000pt;}
.y2e{bottom:191.397333pt;}
.yf8{bottom:195.778667pt;}
.y8a{bottom:196.656000pt;}
.y3e{bottom:197.500000pt;}
.y159{bottom:198.456000pt;}
.y116{bottom:198.737333pt;}
.y61{bottom:199.476000pt;}
.ydc{bottom:200.268000pt;}
.y68{bottom:201.077333pt;}
.y2b{bottom:210.800000pt;}
.y89{bottom:211.056000pt;}
.y29{bottom:213.301333pt;}
.y60{bottom:215.477333pt;}
.y86{bottom:216.058667pt;}
.y67{bottom:217.076000pt;}
.y158{bottom:217.656000pt;}
.y115{bottom:217.937333pt;}
.y3b{bottom:219.389333pt;}
.ydb{bottom:219.468000pt;}
.y28{bottom:227.701333pt;}
.y2a{bottom:230.202667pt;}
.y85{bottom:230.458667pt;}
.y5f{bottom:233.077333pt;}
.y186{bottom:233.718667pt;}
.y157{bottom:236.856000pt;}
.y114{bottom:237.137333pt;}
.yda{bottom:238.668000pt;}
.y84{bottom:244.858667pt;}
.yf7{bottom:246.236000pt;}
.y1{bottom:248.864000pt;}
.y27{bottom:249.605333pt;}
.y5e{bottom:250.676000pt;}
.y3a{bottom:251.294667pt;}
.y185{bottom:252.918667pt;}
.y83{bottom:259.258667pt;}
.y26{bottom:264.005333pt;}
.y88{bottom:264.261333pt;}
.yf6{bottom:265.436000pt;}
.y113{bottom:271.454667pt;}
.yd9{bottom:272.985333pt;}
.y39{bottom:277.033333pt;}
.y87{bottom:278.662667pt;}
.y156{bottom:278.732000pt;}
.y25{bottom:283.409333pt;}
.yf5{bottom:284.636000pt;}
.yd8{bottom:292.185333pt;}
.yb8{bottom:293.505333pt;}
.y6f{bottom:297.376000pt;}
.y155{bottom:297.932000pt;}
.y82{bottom:298.065333pt;}
.y38{bottom:302.772000pt;}
.y24{bottom:302.812000pt;}
.yf4{bottom:303.836000pt;}
.yd7{bottom:311.385333pt;}
.y81{bottom:312.465333pt;}
.y23{bottom:312.513333pt;}
.y154{bottom:317.132000pt;}
.y7e{bottom:317.468000pt;}
.y112{bottom:321.912000pt;}
.yf3{bottom:323.036000pt;}
.y37{bottom:328.510667pt;}
.y7d{bottom:331.868000pt;}
.yb7{bottom:333.294667pt;}
.y8{bottom:335.160000pt;}
.y153{bottom:336.332000pt;}
.y111{bottom:341.112000pt;}
.yb3{bottom:341.397333pt;}
.y22{bottom:341.617333pt;}
.yf2{bottom:342.236000pt;}
.yd6{bottom:345.704000pt;}
.y7c{bottom:346.268000pt;}
.yb6{bottom:349.294667pt;}
.y36{bottom:354.249333pt;}
.y7{bottom:354.360000pt;}
.y152{bottom:355.533333pt;}
.y21{bottom:356.017333pt;}
.yb2{bottom:358.996000pt;}
.y110{bottom:360.312000pt;}
.y7b{bottom:360.668000pt;}
.yf1{bottom:361.436000pt;}
.y5d{bottom:363.650667pt;}
.yb5{bottom:365.294667pt;}
.y80{bottom:365.670667pt;}
.y20{bottom:370.417333pt;}
.y6{bottom:373.560000pt;}
.y151{bottom:374.733333pt;}
.yb1{bottom:376.596000pt;}
.y10f{bottom:379.512000pt;}
.y35{bottom:379.988000pt;}
.y7f{bottom:380.070667pt;}
.y184{bottom:382.062667pt;}
.yb4{bottom:387.924000pt;}
.y1f{bottom:389.821333pt;}
.y5{bottom:392.760000pt;}
.yf0{bottom:395.753333pt;}
.y10e{bottom:398.712000pt;}
.y7a{bottom:399.473333pt;}
.y3d{bottom:404.773333pt;}
.y183{bottom:405.041333pt;}
.yd5{bottom:407.498667pt;}
.yb0{bottom:408.298667pt;}
.y1e{bottom:410.194667pt;}
.y5c{bottom:414.108000pt;}
.y150{bottom:416.609333pt;}
.yef{bottom:419.753333pt;}
.y3c{bottom:420.773333pt;}
.yd4{bottom:426.698667pt;}
.y4{bottom:427.580000pt;}
.y1d{bottom:427.794667pt;}
.yaf{bottom:428.672000pt;}
.y10d{bottom:433.029333pt;}
.y5b{bottom:433.308000pt;}
.ya2{bottom:434.517333pt;}
.y14f{bottom:435.809333pt;}
.y182{bottom:439.360000pt;}
.yae{bottom:444.672000pt;}
.yaa{bottom:445.573333pt;}
.yd3{bottom:445.898667pt;}
.y79{bottom:448.876000pt;}
.ya1{bottom:452.117333pt;}
.y5a{bottom:452.508000pt;}
.y14e{bottom:455.009333pt;}
.ya9{bottom:463.173333pt;}
.y3{bottom:464.380000pt;}
.yad{bottom:465.045333pt;}
.y78{bottom:468.654667pt;}
.ya0{bottom:469.717333pt;}
.y59{bottom:471.708000pt;}
.y14d{bottom:474.209333pt;}
.yee{bottom:478.910667pt;}
.y17{bottom:479.728000pt;}
.yd2{bottom:480.217333pt;}
.yac{bottom:485.420000pt;}
.y77{bottom:488.434667pt;}
.y58{bottom:490.908000pt;}
.y14c{bottom:493.409333pt;}
.y10c{bottom:495.172000pt;}
.y16{bottom:498.928000pt;}
.yd1{bottom:499.417333pt;}
.yab{bottom:501.420000pt;}
.y57{bottom:510.108000pt;}
.y14b{bottom:512.609333pt;}
.ye9{bottom:513.421333pt;}
.y15{bottom:518.128000pt;}
.yd0{bottom:518.617333pt;}
.ya8{bottom:521.793333pt;}
.yeb{bottom:523.506667pt;}
.y12c{bottom:528.760000pt;}
.ye8{bottom:531.021333pt;}
.y14a{bottom:531.809333pt;}
.y14{bottom:537.328000pt;}
.ya7{bottom:537.793333pt;}
.ycf{bottom:537.817333pt;}
.ya4{bottom:538.694667pt;}
.yea{bottom:539.506667pt;}
.ye0{bottom:541.794667pt;}
.y12b{bottom:544.760000pt;}
.y128{bottom:545.661333pt;}
.y56{bottom:548.508000pt;}
.ye7{bottom:548.621333pt;}
.y149{bottom:551.009333pt;}
.ya3{bottom:556.294667pt;}
.y13{bottom:556.528000pt;}
.ya6{bottom:558.166667pt;}
.ydf{bottom:559.394667pt;}
.y127{bottom:563.261333pt;}
.y12a{bottom:565.133333pt;}
.y120{bottom:565.234667pt;}
.y55{bottom:567.708000pt;}
.ye6{bottom:569.965333pt;}
.ye3{bottom:570.068000pt;}
.y148{bottom:570.209333pt;}
.yce{bottom:572.136000pt;}
.ya5{bottom:574.166667pt;}
.yde{bottom:576.994667pt;}
.y129{bottom:581.133333pt;}
.y11f{bottom:582.834667pt;}
.ye5{bottom:585.965333pt;}
.y54{bottom:586.908000pt;}
.ye2{bottom:587.668000pt;}
.y147{bottom:589.409333pt;}
.ycd{bottom:591.336000pt;}
.y9f{bottom:594.540000pt;}
.y12{bottom:594.928000pt;}
.y11e{bottom:600.434667pt;}
.y126{bottom:601.506667pt;}
.y123{bottom:601.609333pt;}
.ye1{bottom:605.268000pt;}
.y53{bottom:606.108000pt;}
.ye4{bottom:606.340000pt;}
.y146{bottom:608.609333pt;}
.ycc{bottom:610.536000pt;}
.y11{bottom:614.128000pt;}
.y122{bottom:619.209333pt;}
.y125{bottom:621.881333pt;}
.y52{bottom:625.308000pt;}
.y16c{bottom:625.404000pt;}
.ydd{bottom:626.713333pt;}
.y145{bottom:627.809333pt;}
.y10{bottom:633.328000pt;}
.y121{bottom:636.809333pt;}
.y124{bottom:637.881333pt;}
.y17b{bottom:638.618667pt;}
.y51{bottom:644.508000pt;}
.y16b{bottom:644.604000pt;}
.ycb{bottom:644.853333pt;}
.y144{bottom:647.009333pt;}
.y17a{bottom:657.820000pt;}
.y11d{bottom:658.254667pt;}
.y50{bottom:663.708000pt;}
.y16a{bottom:663.804000pt;}
.yca{bottom:664.053333pt;}
.ybc{bottom:665.813333pt;}
.y19{bottom:672.762667pt;}
.y1a{bottom:675.962667pt;}
.y179{bottom:677.020000pt;}
.y109{bottom:679.773333pt;}
.y169{bottom:683.004000pt;}
.yc9{bottom:683.253333pt;}
.ybb{bottom:685.013333pt;}
.y143{bottom:688.886667pt;}
.y1b{bottom:690.021333pt;}
.y18{bottom:691.962667pt;}
.y4f{bottom:702.108000pt;}
.y168{bottom:702.204000pt;}
.y136{bottom:707.642667pt;}
.y142{bottom:708.086667pt;}
.y108{bottom:714.092000pt;}
.y178{bottom:715.418667pt;}
.yc8{bottom:717.572000pt;}
.y9e{bottom:720.086667pt;}
.y4e{bottom:721.308000pt;}
.y167{bottom:721.404000pt;}
.y141{bottom:727.286667pt;}
.y177{bottom:734.618667pt;}
.y107{bottom:735.633333pt;}
.y9d{bottom:739.286667pt;}
.y4d{bottom:740.508000pt;}
.y166{bottom:740.604000pt;}
.y135{bottom:743.728000pt;}
.y140{bottom:746.486667pt;}
.y176{bottom:753.818667pt;}
.y106{bottom:754.833333pt;}
.y9c{bottom:758.486667pt;}
.y4c{bottom:759.708000pt;}
.y165{bottom:759.804000pt;}
.y134{bottom:762.928000pt;}
.y13f{bottom:765.686667pt;}
.y175{bottom:773.018667pt;}
.y105{bottom:774.033333pt;}
.y9b{bottom:777.686667pt;}
.y4b{bottom:778.908000pt;}
.y164{bottom:779.004000pt;}
.yc7{bottom:779.366667pt;}
.y133{bottom:782.128000pt;}
.y13e{bottom:784.886667pt;}
.y174{bottom:792.218667pt;}
.y104{bottom:793.233333pt;}
.y9a{bottom:796.886667pt;}
.y4a{bottom:798.108000pt;}
.y163{bottom:798.204000pt;}
.yc6{bottom:798.566667pt;}
.y132{bottom:801.328000pt;}
.y103{bottom:812.433333pt;}
.y1c{bottom:815.828000pt;}
.y99{bottom:816.086667pt;}
.yc5{bottom:817.766667pt;}
.y131{bottom:820.528000pt;}
.y76{bottom:828.729333pt;}
.y173{bottom:830.618667pt;}
.y102{bottom:831.633333pt;}
.y13d{bottom:832.945333pt;}
.y98{bottom:835.286667pt;}
.y49{bottom:836.508000pt;}
.yc4{bottom:836.966667pt;}
.y130{bottom:839.728000pt;}
.y162{bottom:840.080000pt;}
.y75{bottom:847.929333pt;}
.y172{bottom:849.818667pt;}
.y101{bottom:850.833333pt;}
.y13c{bottom:852.145333pt;}
.y97{bottom:854.486667pt;}
.y48{bottom:855.708000pt;}
.yf{bottom:856.736000pt;}
.y12f{bottom:858.928000pt;}
.y161{bottom:859.281333pt;}
.y74{bottom:867.129333pt;}
.y171{bottom:869.018667pt;}
.y100{bottom:870.033333pt;}
.yc3{bottom:871.285333pt;}
.y13b{bottom:871.345333pt;}
.y96{bottom:873.686667pt;}
.y47{bottom:874.908000pt;}
.ye{bottom:875.936000pt;}
.y12e{bottom:878.128000pt;}
.y160{bottom:878.481333pt;}
.y73{bottom:886.329333pt;}
.y170{bottom:888.218667pt;}
.yff{bottom:889.233333pt;}
.yc2{bottom:890.485333pt;}
.y13a{bottom:890.545333pt;}
.y95{bottom:892.886667pt;}
.y46{bottom:894.108000pt;}
.yd{bottom:895.136000pt;}
.y12d{bottom:897.328000pt;}
.y15f{bottom:897.681333pt;}
.y72{bottom:905.529333pt;}
.y16f{bottom:907.418667pt;}
.yc1{bottom:909.685333pt;}
.y139{bottom:909.745333pt;}
.y45{bottom:913.308000pt;}
.yc{bottom:914.336000pt;}
.y15e{bottom:916.881333pt;}
.y71{bottom:924.729333pt;}
.y16e{bottom:926.618667pt;}
.yc0{bottom:928.885333pt;}
.y138{bottom:928.945333pt;}
.yed{bottom:929.562667pt;}
.y10b{bottom:930.554667pt;}
.y15d{bottom:936.080000pt;}
.yba{bottom:936.932000pt;}
.y15c{bottom:955.281333pt;}
.yb{bottom:960.221333pt;}
.y44{bottom:961.166667pt;}
.yec{bottom:961.562667pt;}
.y16d{bottom:962.112000pt;}
.y10a{bottom:962.554667pt;}
.ybf{bottom:963.202667pt;}
.y137{bottom:963.262667pt;}
.y70{bottom:964.001333pt;}
.yb9{bottom:968.932000pt;}
.ya{bottom:1059.297333pt;}
.h19{height:18.643854pt;}
.h10{height:28.256772pt;}
.h1a{height:31.979167pt;}
.hc{height:35.976562pt;}
.h15{height:36.093750pt;}
.h12{height:39.973958pt;}
.hb{height:40.104167pt;}
.h7{height:40.274134pt;}
.hf{height:40.498289pt;}
.ha{height:43.427083pt;}
.h13{height:43.971354pt;}
.h9{height:44.114583pt;}
.h4{height:47.968750pt;}
.h14{height:48.125000pt;}
.h1b{height:48.440172pt;}
.h16{height:49.277781pt;}
.h5{height:54.432000pt;}
.h8{height:56.145833pt;}
.h11{height:60.156250pt;}
.h2{height:62.208000pt;}
.he{height:64.776562pt;}
.h1c{height:68.177083pt;}
.hd{height:74.781896pt;}
.h18{height:78.958333pt;}
.h17{height:80.208333pt;}
.h3{height:92.239583pt;}
.h6{height:112.291667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x29{left:54.803200pt;}
.x2{left:56.692933pt;}
.x24{left:58.582667pt;}
.x25{left:60.803200pt;}
.x2a{left:62.692933pt;}
.x5{left:64.418400pt;}
.x9{left:78.285467pt;}
.x1b{left:79.370133pt;}
.x3{left:81.710533pt;}
.x4{left:87.595867pt;}
.x33{left:94.488133pt;}
.x21{left:95.599467pt;}
.xe{left:97.234000pt;}
.x1d{left:102.047200pt;}
.x1c{left:103.370133pt;}
.xa{left:106.840133pt;}
.x34{left:165.669333pt;}
.x30{left:170.028000pt;}
.x31{left:171.169333pt;}
.x2e{left:190.236000pt;}
.x22{left:192.609333pt;}
.x28{left:207.789333pt;}
.x2d{left:210.092000pt;}
.x26{left:216.986667pt;}
.x2b{left:220.373333pt;}
.x6{left:234.189333pt;}
.x23{left:238.300000pt;}
.xf{left:239.286667pt;}
.x10{left:257.706667pt;}
.x1e{left:309.780000pt;}
.xb{left:311.348000pt;}
.x1f{left:333.780000pt;}
.xc{left:355.462667pt;}
.x27{left:419.192000pt;}
.x2c{left:422.578667pt;}
.x32{left:461.102667pt;}
.x8{left:529.353333pt;}
.x13{left:536.433333pt;}
.x20{left:541.752000pt;}
.xd{left:544.504000pt;}
.x1a{left:546.520000pt;}
.x15{left:552.394667pt;}
.x12{left:555.576000pt;}
.x18{left:560.721333pt;}
.x16{left:565.056000pt;}
.x11{left:570.857333pt;}
.x19{left:573.992000pt;}
.x14{left:577.958667pt;}
.x1{left:587.954667pt;}
.x17{left:604.486667pt;}
.x2f{left:690.822667pt;}
.x7{left:701.201333pt;}
}




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