
    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_c1a61492a1005f7238641e81.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.159000;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_6e023b6ac14f08c411204138.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.159000;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_fa87ef9db91153c2451a9730.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.136000;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_080d89b6a2d7bc605d7313c7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.132000;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_c35568d667e5781669eeb592.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.138000;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_177e6f34049d8feb78bf0445.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.121000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:16.766400px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.660000px;}
.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;}
}
.ws0{word-spacing:-31.467000px;}
.ws9{word-spacing:-17.928000px;}
.wsb2{word-spacing:-14.250000px;}
.ws8{word-spacing:-12.240000px;}
.ws1{word-spacing:-12.087000px;}
.ws2{word-spacing:-7.856550px;}
.ws4{word-spacing:-3.840000px;}
.ws5a{word-spacing:-3.630000px;}
.ws3f{word-spacing:-3.300000px;}
.ws48{word-spacing:-3.234000px;}
.ws54{word-spacing:-3.168000px;}
.wsa6{word-spacing:-3.036000px;}
.wsa9{word-spacing:-2.970000px;}
.wsa4{word-spacing:-2.904000px;}
.ws86{word-spacing:-2.838000px;}
.ws36{word-spacing:-2.772000px;}
.ws80{word-spacing:-2.706000px;}
.ws55{word-spacing:-2.508000px;}
.ws1b{word-spacing:-2.442000px;}
.ws51{word-spacing:-2.376000px;}
.ws4a{word-spacing:-2.310000px;}
.ws35{word-spacing:-2.244000px;}
.wsd{word-spacing:-2.178000px;}
.ws53{word-spacing:-2.112000px;}
.wsbe{word-spacing:-2.109000px;}
.wsb{word-spacing:-2.091000px;}
.wsbf{word-spacing:-2.052000px;}
.ws26{word-spacing:-2.046000px;}
.ws7f{word-spacing:-1.980000px;}
.ws6b{word-spacing:-1.914000px;}
.wsae{word-spacing:-1.848000px;}
.ws7c{word-spacing:-1.782000px;}
.ws87{word-spacing:-1.716000px;}
.ws2b{word-spacing:-1.650000px;}
.ws7d{word-spacing:-1.584000px;}
.ws9e{word-spacing:-1.518000px;}
.ws4b{word-spacing:-1.452000px;}
.ws1d{word-spacing:-1.386000px;}
.wsc0{word-spacing:-1.368000px;}
.ws9c{word-spacing:-1.320000px;}
.ws88{word-spacing:-1.254000px;}
.ws6{word-spacing:-1.224000px;}
.ws3d{word-spacing:-1.188000px;}
.ws85{word-spacing:-1.122000px;}
.wsbc{word-spacing:-1.083000px;}
.ws2c{word-spacing:-1.056000px;}
.ws69{word-spacing:-0.990000px;}
.wsc6{word-spacing:-0.969000px;}
.ws76{word-spacing:-0.924000px;}
.wsb7{word-spacing:-0.912000px;}
.ws73{word-spacing:-0.858000px;}
.ws61{word-spacing:-0.792000px;}
.ws7{word-spacing:-0.765000px;}
.ws81{word-spacing:-0.726000px;}
.ws5d{word-spacing:-0.660000px;}
.ws56{word-spacing:-0.594000px;}
.ws43{word-spacing:-0.528000px;}
.ws6a{word-spacing:-0.462000px;}
.ws84{word-spacing:-0.396000px;}
.ws3e{word-spacing:-0.330000px;}
.ws5{word-spacing:-0.306000px;}
.ws4c{word-spacing:-0.264000px;}
.ws52{word-spacing:-0.198000px;}
.ws3b{word-spacing:-0.132000px;}
.ws2a{word-spacing:-0.066000px;}
.ws3{word-spacing:0.000000px;}
.ws1a{word-spacing:0.066000px;}
.ws40{word-spacing:0.132000px;}
.ws38{word-spacing:0.198000px;}
.ws13{word-spacing:0.264000px;}
.ws47{word-spacing:0.330000px;}
.ws83{word-spacing:0.396000px;}
.wsc4{word-spacing:0.399000px;}
.wsba{word-spacing:0.456000px;}
.ws7e{word-spacing:0.462000px;}
.ws58{word-spacing:0.528000px;}
.wse{word-spacing:0.594000px;}
.ws57{word-spacing:0.660000px;}
.ws59{word-spacing:0.726000px;}
.ws42{word-spacing:0.792000px;}
.wsa{word-spacing:0.816000px;}
.ws72{word-spacing:0.858000px;}
.ws2d{word-spacing:0.924000px;}
.ws12{word-spacing:0.990000px;}
.ws50{word-spacing:1.056000px;}
.wsa0{word-spacing:1.122000px;}
.ws5b{word-spacing:1.188000px;}
.ws7b{word-spacing:1.254000px;}
.ws79{word-spacing:1.320000px;}
.ws77{word-spacing:1.386000px;}
.ws27{word-spacing:1.452000px;}
.wsc1{word-spacing:1.482000px;}
.ws24{word-spacing:1.518000px;}
.ws34{word-spacing:1.584000px;}
.ws71{word-spacing:1.650000px;}
.ws97{word-spacing:1.716000px;}
.wsb9{word-spacing:1.767000px;}
.ws3a{word-spacing:1.782000px;}
.ws41{word-spacing:1.848000px;}
.ws65{word-spacing:1.914000px;}
.ws8e{word-spacing:1.980000px;}
.wsb8{word-spacing:1.995000px;}
.ws82{word-spacing:2.046000px;}
.ws37{word-spacing:2.112000px;}
.ws75{word-spacing:2.178000px;}
.wsc5{word-spacing:2.223000px;}
.ws5c{word-spacing:2.244000px;}
.wsa2{word-spacing:2.310000px;}
.ws67{word-spacing:2.376000px;}
.wsa8{word-spacing:2.442000px;}
.ws8a{word-spacing:2.508000px;}
.ws30{word-spacing:2.574000px;}
.ws78{word-spacing:2.640000px;}
.wsb3{word-spacing:2.679000px;}
.ws92{word-spacing:2.706000px;}
.ws22{word-spacing:2.772000px;}
.ws16{word-spacing:2.838000px;}
.ws96{word-spacing:2.904000px;}
.ws18{word-spacing:2.970000px;}
.ws63{word-spacing:3.036000px;}
.wsbd{word-spacing:3.078000px;}
.ws9d{word-spacing:3.102000px;}
.wsb5{word-spacing:3.135000px;}
.ws5f{word-spacing:3.168000px;}
.ws44{word-spacing:3.234000px;}
.ws3c{word-spacing:3.300000px;}
.ws89{word-spacing:3.366000px;}
.wsc3{word-spacing:3.420000px;}
.ws39{word-spacing:3.432000px;}
.wsa1{word-spacing:3.498000px;}
.ws45{word-spacing:3.564000px;}
.ws31{word-spacing:3.630000px;}
.ws14{word-spacing:3.696000px;}
.wsbb{word-spacing:3.705000px;}
.ws8c{word-spacing:3.762000px;}
.ws2f{word-spacing:3.828000px;}
.ws33{word-spacing:3.894000px;}
.ws64{word-spacing:3.960000px;}
.ws11{word-spacing:4.026000px;}
.wsb4{word-spacing:4.047000px;}
.ws20{word-spacing:4.092000px;}
.ws49{word-spacing:4.158000px;}
.ws4e{word-spacing:4.224000px;}
.ws74{word-spacing:4.290000px;}
.ws46{word-spacing:4.356000px;}
.ws70{word-spacing:4.422000px;}
.ws93{word-spacing:4.488000px;}
.ws19{word-spacing:4.554000px;}
.wsad{word-spacing:4.620000px;}
.ws15{word-spacing:4.686000px;}
.wsf{word-spacing:4.752000px;}
.ws91{word-spacing:4.818000px;}
.wsc2{word-spacing:4.845000px;}
.ws29{word-spacing:4.884000px;}
.ws2e{word-spacing:4.950000px;}
.ws66{word-spacing:5.016000px;}
.wsaa{word-spacing:5.148000px;}
.ws4d{word-spacing:5.214000px;}
.ws8b{word-spacing:5.280000px;}
.ws25{word-spacing:5.346000px;}
.wsa5{word-spacing:5.412000px;}
.ws17{word-spacing:5.478000px;}
.ws1f{word-spacing:5.544000px;}
.wsac{word-spacing:5.610000px;}
.ws90{word-spacing:5.742000px;}
.wsb1{word-spacing:5.808000px;}
.ws1e{word-spacing:5.874000px;}
.ws6e{word-spacing:5.940000px;}
.ws32{word-spacing:6.006000px;}
.wsb6{word-spacing:6.042000px;}
.wsa3{word-spacing:6.138000px;}
.ws62{word-spacing:6.204000px;}
.ws4f{word-spacing:6.270000px;}
.ws98{word-spacing:6.336000px;}
.ws60{word-spacing:6.402000px;}
.ws23{word-spacing:6.468000px;}
.ws9a{word-spacing:6.534000px;}
.wsab{word-spacing:6.600000px;}
.ws1c{word-spacing:6.666000px;}
.ws7a{word-spacing:6.798000px;}
.ws6c{word-spacing:6.864000px;}
.ws9b{word-spacing:6.930000px;}
.wsc{word-spacing:7.062000px;}
.ws28{word-spacing:7.128000px;}
.ws10{word-spacing:7.194000px;}
.ws68{word-spacing:7.260000px;}
.ws9f{word-spacing:7.326000px;}
.wsaf{word-spacing:7.392000px;}
.ws94{word-spacing:7.590000px;}
.ws8f{word-spacing:7.788000px;}
.ws99{word-spacing:7.986000px;}
.ws5e{word-spacing:8.052000px;}
.wsa7{word-spacing:8.118000px;}
.ws6d{word-spacing:8.382000px;}
.wsb0{word-spacing:8.448000px;}
.ws8d{word-spacing:8.514000px;}
.ws21{word-spacing:8.976000px;}
.ws95{word-spacing:9.042000px;}
.ws6f{word-spacing:9.768000px;}
._8{margin-left:-15.120000px;}
._f{margin-left:-11.856900px;}
._a{margin-left:-10.752000px;}
._9{margin-left:-8.568000px;}
._b{margin-left:-6.468600px;}
._1{margin-left:-5.400000px;}
._3{margin-left:-3.600000px;}
._0{margin-left:-2.280000px;}
._2{margin-left:-1.140000px;}
._7{width:1.116900px;}
._5{width:2.468400px;}
._4{width:3.840000px;}
._6{width:5.712000px;}
._e{width:12.210000px;}
._c{width:18.619200px;}
._d{width:26.496000px;}
.fc2{color:rgb(180,19,29);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs2{font-size:33.150000px;}
.fs3{font-size:43.200000px;}
.fs1{font-size:51.000000px;}
.fs9{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs4{font-size:108.000000px;}
.fs6{font-size:120.000000px;}
.fs5{font-size:168.000000px;}
.y0{bottom:0.000000px;}
.y135{bottom:81.079800px;}
.y116{bottom:81.293250px;}
.y4b{bottom:84.027900px;}
.y2b{bottom:84.173250px;}
.yfa{bottom:85.485300px;}
.y18d{bottom:85.882950px;}
.y15d{bottom:86.128800px;}
.yd4{bottom:87.465300px;}
.y4a{bottom:89.509800px;}
.y76{bottom:92.514300px;}
.y95{bottom:93.395250px;}
.yb8{bottom:95.187300px;}
.y11e{bottom:98.899800px;}
.y134{bottom:100.879800px;}
.y115{bottom:101.093250px;}
.yf9{bottom:105.285300px;}
.y18c{bottom:105.682950px;}
.y15c{bottom:105.928800px;}
.y16d{bottom:106.157400px;}
.yd3{bottom:107.265300px;}
.y49{bottom:109.309800px;}
.y75{bottom:112.314300px;}
.y94{bottom:113.195250px;}
.yb7{bottom:114.987300px;}
.y2a{bottom:116.990700px;}
.y11d{bottom:118.699800px;}
.y133{bottom:120.679800px;}
.y114{bottom:120.893250px;}
.yf8{bottom:125.085300px;}
.y15b{bottom:125.728800px;}
.y16c{bottom:125.957400px;}
.yd2{bottom:127.065300px;}
.y48{bottom:129.109800px;}
.y74{bottom:132.114300px;}
.y93{bottom:132.995250px;}
.yb6{bottom:134.787300px;}
.ye5{bottom:138.499800px;}
.y132{bottom:140.479800px;}
.y113{bottom:140.693250px;}
.yf7{bottom:144.885300px;}
.y15a{bottom:145.528800px;}
.y16b{bottom:145.757400px;}
.y47{bottom:148.909800px;}
.y73{bottom:151.914300px;}
.y92{bottom:152.795250px;}
.yd1{bottom:153.250800px;}
.ye4{bottom:158.299800px;}
.y131{bottom:160.279800px;}
.y112{bottom:160.493250px;}
.yb5{bottom:160.972800px;}
.yf6{bottom:164.685300px;}
.y29{bottom:165.520350px;}
.y16a{bottom:165.557400px;}
.y72{bottom:171.714300px;}
.y91{bottom:172.595250px;}
.yd0{bottom:173.050800px;}
.y46{bottom:175.095300px;}
.ye3{bottom:178.099800px;}
.y130{bottom:180.079800px;}
.y111{bottom:180.293250px;}
.yb4{bottom:180.772800px;}
.y28{bottom:180.820350px;}
.yf5{bottom:184.485300px;}
.y169{bottom:185.357400px;}
.y71{bottom:191.514300px;}
.ycf{bottom:192.850800px;}
.y45{bottom:194.895300px;}
.ye2{bottom:197.899800px;}
.y90{bottom:198.780750px;}
.y12f{bottom:199.879800px;}
.y110{bottom:200.093250px;}
.y27{bottom:200.366100px;}
.yb3{bottom:200.572800px;}
.yf4{bottom:204.285300px;}
.y168{bottom:205.157400px;}
.y70{bottom:211.314300px;}
.yce{bottom:212.650800px;}
.y44{bottom:214.695300px;}
.ye1{bottom:217.699800px;}
.y8f{bottom:218.580750px;}
.y12e{bottom:219.679800px;}
.yb2{bottom:220.372800px;}
.y167{bottom:224.957400px;}
.y10f{bottom:226.278750px;}
.yf3{bottom:230.470800px;}
.y159{bottom:231.114300px;}
.ycd{bottom:232.450800px;}
.y43{bottom:234.495300px;}
.y6f{bottom:237.499800px;}
.y8e{bottom:238.380750px;}
.y150{bottom:239.479800px;}
.yb1{bottom:240.172800px;}
.y26{bottom:241.178850px;}
.y138{bottom:243.885300px;}
.y166{bottom:244.757400px;}
.y12d{bottom:245.865300px;}
.y10e{bottom:246.078750px;}
.yf2{bottom:250.270800px;}
.y158{bottom:250.914300px;}
.ycc{bottom:252.250800px;}
.y42{bottom:254.295300px;}
.y25{bottom:256.478850px;}
.y6e{bottom:257.299800px;}
.y8d{bottom:258.180750px;}
.yb0{bottom:259.972800px;}
.y137{bottom:263.685300px;}
.y165{bottom:264.557400px;}
.y12c{bottom:265.665300px;}
.y10d{bottom:265.878750px;}
.yf1{bottom:270.070800px;}
.y157{bottom:270.714300px;}
.y24{bottom:271.778850px;}
.ycb{bottom:272.050800px;}
.y41{bottom:274.095300px;}
.y6d{bottom:277.099800px;}
.y8c{bottom:277.980750px;}
.yaf{bottom:279.772800px;}
.y136{bottom:283.485300px;}
.y164{bottom:284.357400px;}
.y12b{bottom:285.465300px;}
.y10c{bottom:285.678750px;}
.y23{bottom:287.078850px;}
.yf0{bottom:289.870800px;}
.yca{bottom:291.850800px;}
.y40{bottom:293.895300px;}
.y6c{bottom:296.899800px;}
.y8b{bottom:297.780750px;}
.yae{bottom:299.572800px;}
.y22{bottom:302.378850px;}
.y11c{bottom:303.285300px;}
.y163{bottom:304.157400px;}
.y14f{bottom:305.265300px;}
.y10b{bottom:305.478750px;}
.yef{bottom:309.670800px;}
.yc9{bottom:311.650800px;}
.y3f{bottom:313.695300px;}
.y6b{bottom:316.699800px;}
.y8a{bottom:317.580750px;}
.y21{bottom:317.678850px;}
.yad{bottom:319.372800px;}
.y11b{bottom:323.085300px;}
.y162{bottom:323.957400px;}
.y14e{bottom:325.065300px;}
.y10a{bottom:325.278750px;}
.yee{bottom:329.470800px;}
.yc8{bottom:331.450800px;}
.y20{bottom:332.978850px;}
.y3e{bottom:333.495300px;}
.y6a{bottom:336.499800px;}
.y89{bottom:337.380750px;}
.yac{bottom:339.172800px;}
.y11a{bottom:342.885300px;}
.y161{bottom:343.757400px;}
.y14d{bottom:344.865300px;}
.y109{bottom:345.078750px;}
.y1f{bottom:348.278850px;}
.yed{bottom:349.270800px;}
.yc7{bottom:351.250800px;}
.y3d{bottom:353.295300px;}
.y69{bottom:356.299800px;}
.y88{bottom:357.180750px;}
.yab{bottom:358.972800px;}
.y119{bottom:362.685300px;}
.y160{bottom:363.557400px;}
.y1e{bottom:363.578850px;}
.y14c{bottom:364.665300px;}
.y108{bottom:364.878750px;}
.yec{bottom:369.070800px;}
.yc6{bottom:371.050800px;}
.y3c{bottom:373.095300px;}
.y68{bottom:376.099800px;}
.y87{bottom:376.980750px;}
.yaa{bottom:378.772800px;}
.y1d{bottom:378.878850px;}
.y118{bottom:382.485300px;}
.y15f{bottom:383.357400px;}
.y14b{bottom:384.465300px;}
.y107{bottom:384.678750px;}
.yeb{bottom:388.870800px;}
.yc5{bottom:390.850800px;}
.y3b{bottom:392.895300px;}
.y1c{bottom:394.178850px;}
.y67{bottom:395.899800px;}
.y86{bottom:396.780750px;}
.ya9{bottom:398.572800px;}
.y117{bottom:402.285300px;}
.y14a{bottom:404.265300px;}
.y106{bottom:404.478750px;}
.yea{bottom:408.670800px;}
.y1b{bottom:409.478850px;}
.yc4{bottom:410.650800px;}
.y3a{bottom:412.695300px;}
.y18b{bottom:414.616650px;}
.y66{bottom:415.699800px;}
.y15e{bottom:415.913250px;}
.y85{bottom:416.580750px;}
.y12a{bottom:417.036300px;}
.ya8{bottom:418.372800px;}
.ye0{bottom:422.085300px;}
.y149{bottom:424.065300px;}
.y1a{bottom:424.794750px;}
.ye9{bottom:428.470800px;}
.yc3{bottom:430.450800px;}
.y105{bottom:430.664250px;}
.y18a{bottom:431.716650px;}
.y39{bottom:432.495300px;}
.y156{bottom:435.499800px;}
.y84{bottom:436.380750px;}
.y129{bottom:436.836300px;}
.ya7{bottom:438.172800px;}
.y65{bottom:441.885300px;}
.y148{bottom:443.865300px;}
.y19{bottom:444.340500px;}
.ye8{bottom:448.270800px;}
.y189{bottom:448.816650px;}
.yc2{bottom:450.250800px;}
.y104{bottom:450.464250px;}
.y38{bottom:452.295300px;}
.y155{bottom:455.299800px;}
.y83{bottom:456.180750px;}
.y128{bottom:456.636300px;}
.y64{bottom:461.685300px;}
.y188{bottom:465.916650px;}
.ye7{bottom:468.070800px;}
.yc1{bottom:470.050800px;}
.y103{bottom:470.264250px;}
.ya6{bottom:470.727300px;}
.y154{bottom:475.099800px;}
.y82{bottom:475.980750px;}
.y127{bottom:476.436300px;}
.y63{bottom:481.485300px;}
.y187{bottom:483.016650px;}
.y37{bottom:484.851150px;}
.y18{bottom:485.153250px;}
.ye6{bottom:487.870800px;}
.yc0{bottom:489.850800px;}
.y102{bottom:490.064250px;}
.y153{bottom:494.899800px;}
.y81{bottom:495.780750px;}
.y126{bottom:496.236300px;}
.y186{bottom:500.116650px;}
.y17{bottom:500.453250px;}
.y62{bottom:501.285300px;}
.ydf{bottom:507.670800px;}
.y147{bottom:509.650800px;}
.y152{bottom:514.699800px;}
.y80{bottom:515.580750px;}
.ybf{bottom:516.036300px;}
.y185{bottom:517.216650px;}
.y16{bottom:519.999000px;}
.y61{bottom:521.085300px;}
.ya5{bottom:522.421800px;}
.y101{bottom:522.618750px;}
.yde{bottom:527.470800px;}
.y146{bottom:529.450800px;}
.y184{bottom:534.316650px;}
.y151{bottom:534.499800px;}
.y7f{bottom:535.380750px;}
.ybe{bottom:535.836300px;}
.y60{bottom:540.885300px;}
.ya4{bottom:542.221800px;}
.ydd{bottom:547.270800px;}
.y36{bottom:548.970750px;}
.y145{bottom:549.250800px;}
.y183{bottom:551.416650px;}
.y7e{bottom:555.180750px;}
.ybd{bottom:555.636300px;}
.y5f{bottom:560.685300px;}
.y15{bottom:560.811750px;}
.ya3{bottom:562.021800px;}
.y35{bottom:564.270750px;}
.ydc{bottom:567.070800px;}
.y182{bottom:568.516650px;}
.y144{bottom:569.050800px;}
.y100{bottom:574.313250px;}
.y7d{bottom:574.980750px;}
.ybc{bottom:575.436300px;}
.y14{bottom:576.111750px;}
.y34{bottom:579.570750px;}
.y5e{bottom:580.485300px;}
.ya2{bottom:581.821800px;}
.y181{bottom:585.616650px;}
.ydb{bottom:586.870800px;}
.y143{bottom:588.850800px;}
.y13{bottom:591.411750px;}
.yff{bottom:594.113250px;}
.y7c{bottom:594.780750px;}
.ybb{bottom:595.236300px;}
.y5d{bottom:600.285300px;}
.ya1{bottom:601.621800px;}
.y180{bottom:602.716650px;}
.yda{bottom:606.670800px;}
.y12{bottom:606.711750px;}
.y142{bottom:608.650800px;}
.yfe{bottom:613.913250px;}
.y7b{bottom:614.580750px;}
.yba{bottom:615.036300px;}
.y33{bottom:616.130700px;}
.y17f{bottom:619.816650px;}
.y5c{bottom:620.085300px;}
.ya0{bottom:621.421800px;}
.y11{bottom:622.011750px;}
.yd9{bottom:626.470800px;}
.y141{bottom:628.450800px;}
.yfd{bottom:633.713250px;}
.y7a{bottom:634.380750px;}
.y32{bottom:635.930700px;}
.y17e{bottom:636.916650px;}
.y10{bottom:637.311750px;}
.y5b{bottom:639.885300px;}
.y9f{bottom:641.221800px;}
.yd8{bottom:646.270800px;}
.yb9{bottom:647.590800px;}
.y140{bottom:648.250800px;}
.yf{bottom:652.611750px;}
.yfc{bottom:653.513250px;}
.y17d{bottom:654.016650px;}
.y5a{bottom:659.685300px;}
.y31{bottom:659.982600px;}
.y125{bottom:661.021800px;}
.yd7{bottom:666.070800px;}
.y79{bottom:666.935250px;}
.ye{bottom:667.911750px;}
.y17c{bottom:671.116650px;}
.y9e{bottom:673.776300px;}
.y13f{bottom:674.436300px;}
.y59{bottom:679.485300px;}
.y124{bottom:680.821800px;}
.yd{bottom:683.211750px;}
.yd6{bottom:685.870800px;}
.yfb{bottom:686.069250px;}
.y17b{bottom:688.216650px;}
.y13e{bottom:694.236300px;}
.yc{bottom:698.511750px;}
.y58{bottom:699.285300px;}
.y78{bottom:699.491250px;}
.y123{bottom:700.621800px;}
.y30{bottom:702.992100px;}
.y17a{bottom:705.316650px;}
.yd5{bottom:705.670800px;}
.yb{bottom:713.811750px;}
.y13d{bottom:714.036300px;}
.y57{bottom:719.085300px;}
.y122{bottom:720.421800px;}
.y179{bottom:722.416650px;}
.y9d{bottom:725.470800px;}
.ya{bottom:729.111750px;}
.y56{bottom:738.885300px;}
.y178{bottom:739.516650px;}
.y121{bottom:740.221800px;}
.y4c{bottom:741.352950px;}
.y9{bottom:744.411750px;}
.y9c{bottom:745.270800px;}
.y2f{bottom:753.392100px;}
.y177{bottom:756.616650px;}
.y55{bottom:758.685300px;}
.y120{bottom:760.021800px;}
.y8{bottom:763.957500px;}
.y9b{bottom:765.070800px;}
.y176{bottom:773.716650px;}
.y54{bottom:778.485300px;}
.y13c{bottom:779.821800px;}
.y9a{bottom:784.870800px;}
.y175{bottom:790.816650px;}
.y11f{bottom:792.576300px;}
.y53{bottom:798.285300px;}
.y13b{bottom:799.621800px;}
.y2e{bottom:803.792100px;}
.y99{bottom:804.670800px;}
.y7{bottom:804.770250px;}
.y174{bottom:807.916650px;}
.y52{bottom:818.085300px;}
.y13a{bottom:819.421800px;}
.y6{bottom:820.070250px;}
.y98{bottom:824.470800px;}
.y173{bottom:825.016650px;}
.y51{bottom:837.885300px;}
.y5{bottom:839.628150px;}
.y172{bottom:842.116650px;}
.y97{bottom:844.270800px;}
.y139{bottom:851.976300px;}
.y2d{bottom:854.192100px;}
.y50{bottom:857.685300px;}
.y171{bottom:859.216650px;}
.y96{bottom:864.070800px;}
.y4{bottom:866.133150px;}
.y170{bottom:876.316650px;}
.y77{bottom:877.485300px;}
.y4f{bottom:883.870800px;}
.y3{bottom:884.133150px;}
.y16f{bottom:893.416650px;}
.y4e{bottom:903.670800px;}
.y2c{bottom:904.592100px;}
.y2{bottom:906.378150px;}
.y16e{bottom:923.272650px;}
.y4d{bottom:923.470800px;}
.y1{bottom:924.378150px;}
.h7{height:39.312000px;}
.hd{height:44.013000px;}
.hc{height:44.319000px;}
.h4{height:45.441000px;}
.h5{height:46.410000px;}
.h6{height:46.932900px;}
.h11{height:47.652000px;}
.h10{height:49.191000px;}
.h3{height:53.460000px;}
.h2{height:54.600000px;}
.hb{height:56.958000px;}
.h12{height:57.354000px;}
.hf{height:60.060000px;}
.he{height:65.520000px;}
.h8{height:93.204000px;}
.ha{height:103.560000px;}
.h9{height:152.880000px;}
.h0{height:1045.984500px;}
.h1{height:1046.250000px;}
.w0{width:748.347000px;}
.w1{width:748.500000px;}
.x0{left:0.000000px;}
.x17{left:29.657400px;}
.x18{left:72.414000px;}
.x15{left:76.535400px;}
.x16{left:97.795350px;}
.x8{left:114.807810px;}
.x9{left:136.061805px;}
.x14{left:182.834700px;}
.x11{left:208.224900px;}
.x10{left:214.582110px;}
.x1{left:224.302950px;}
.x3{left:229.933050px;}
.x7{left:237.871065px;}
.x4{left:244.515450px;}
.x13{left:263.530200px;}
.xd{left:265.702830px;}
.x2{left:275.738250px;}
.x5{left:277.149450px;}
.xe{left:294.473670px;}
.x6{left:312.628650px;}
.xc{left:375.270750px;}
.xf{left:378.357750px;}
.x12{left:434.689650px;}
.xb{left:675.354150px;}
.x19{left:684.022650px;}
.xa{left:722.290350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:14.903467pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.586667pt;}
.ws0{word-spacing:-27.970667pt;}
.ws9{word-spacing:-15.936000pt;}
.wsb2{word-spacing:-12.666667pt;}
.ws8{word-spacing:-10.880000pt;}
.ws1{word-spacing:-10.744000pt;}
.ws2{word-spacing:-6.983600pt;}
.ws4{word-spacing:-3.413333pt;}
.ws5a{word-spacing:-3.226667pt;}
.ws3f{word-spacing:-2.933333pt;}
.ws48{word-spacing:-2.874667pt;}
.ws54{word-spacing:-2.816000pt;}
.wsa6{word-spacing:-2.698667pt;}
.wsa9{word-spacing:-2.640000pt;}
.wsa4{word-spacing:-2.581333pt;}
.ws86{word-spacing:-2.522667pt;}
.ws36{word-spacing:-2.464000pt;}
.ws80{word-spacing:-2.405333pt;}
.ws55{word-spacing:-2.229333pt;}
.ws1b{word-spacing:-2.170667pt;}
.ws51{word-spacing:-2.112000pt;}
.ws4a{word-spacing:-2.053333pt;}
.ws35{word-spacing:-1.994667pt;}
.wsd{word-spacing:-1.936000pt;}
.ws53{word-spacing:-1.877333pt;}
.wsbe{word-spacing:-1.874667pt;}
.wsb{word-spacing:-1.858667pt;}
.wsbf{word-spacing:-1.824000pt;}
.ws26{word-spacing:-1.818667pt;}
.ws7f{word-spacing:-1.760000pt;}
.ws6b{word-spacing:-1.701333pt;}
.wsae{word-spacing:-1.642667pt;}
.ws7c{word-spacing:-1.584000pt;}
.ws87{word-spacing:-1.525333pt;}
.ws2b{word-spacing:-1.466667pt;}
.ws7d{word-spacing:-1.408000pt;}
.ws9e{word-spacing:-1.349333pt;}
.ws4b{word-spacing:-1.290667pt;}
.ws1d{word-spacing:-1.232000pt;}
.wsc0{word-spacing:-1.216000pt;}
.ws9c{word-spacing:-1.173333pt;}
.ws88{word-spacing:-1.114667pt;}
.ws6{word-spacing:-1.088000pt;}
.ws3d{word-spacing:-1.056000pt;}
.ws85{word-spacing:-0.997333pt;}
.wsbc{word-spacing:-0.962667pt;}
.ws2c{word-spacing:-0.938667pt;}
.ws69{word-spacing:-0.880000pt;}
.wsc6{word-spacing:-0.861333pt;}
.ws76{word-spacing:-0.821333pt;}
.wsb7{word-spacing:-0.810667pt;}
.ws73{word-spacing:-0.762667pt;}
.ws61{word-spacing:-0.704000pt;}
.ws7{word-spacing:-0.680000pt;}
.ws81{word-spacing:-0.645333pt;}
.ws5d{word-spacing:-0.586667pt;}
.ws56{word-spacing:-0.528000pt;}
.ws43{word-spacing:-0.469333pt;}
.ws6a{word-spacing:-0.410667pt;}
.ws84{word-spacing:-0.352000pt;}
.ws3e{word-spacing:-0.293333pt;}
.ws5{word-spacing:-0.272000pt;}
.ws4c{word-spacing:-0.234667pt;}
.ws52{word-spacing:-0.176000pt;}
.ws3b{word-spacing:-0.117333pt;}
.ws2a{word-spacing:-0.058667pt;}
.ws3{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.058667pt;}
.ws40{word-spacing:0.117333pt;}
.ws38{word-spacing:0.176000pt;}
.ws13{word-spacing:0.234667pt;}
.ws47{word-spacing:0.293333pt;}
.ws83{word-spacing:0.352000pt;}
.wsc4{word-spacing:0.354667pt;}
.wsba{word-spacing:0.405333pt;}
.ws7e{word-spacing:0.410667pt;}
.ws58{word-spacing:0.469333pt;}
.wse{word-spacing:0.528000pt;}
.ws57{word-spacing:0.586667pt;}
.ws59{word-spacing:0.645333pt;}
.ws42{word-spacing:0.704000pt;}
.wsa{word-spacing:0.725333pt;}
.ws72{word-spacing:0.762667pt;}
.ws2d{word-spacing:0.821333pt;}
.ws12{word-spacing:0.880000pt;}
.ws50{word-spacing:0.938667pt;}
.wsa0{word-spacing:0.997333pt;}
.ws5b{word-spacing:1.056000pt;}
.ws7b{word-spacing:1.114667pt;}
.ws79{word-spacing:1.173333pt;}
.ws77{word-spacing:1.232000pt;}
.ws27{word-spacing:1.290667pt;}
.wsc1{word-spacing:1.317333pt;}
.ws24{word-spacing:1.349333pt;}
.ws34{word-spacing:1.408000pt;}
.ws71{word-spacing:1.466667pt;}
.ws97{word-spacing:1.525333pt;}
.wsb9{word-spacing:1.570667pt;}
.ws3a{word-spacing:1.584000pt;}
.ws41{word-spacing:1.642667pt;}
.ws65{word-spacing:1.701333pt;}
.ws8e{word-spacing:1.760000pt;}
.wsb8{word-spacing:1.773333pt;}
.ws82{word-spacing:1.818667pt;}
.ws37{word-spacing:1.877333pt;}
.ws75{word-spacing:1.936000pt;}
.wsc5{word-spacing:1.976000pt;}
.ws5c{word-spacing:1.994667pt;}
.wsa2{word-spacing:2.053333pt;}
.ws67{word-spacing:2.112000pt;}
.wsa8{word-spacing:2.170667pt;}
.ws8a{word-spacing:2.229333pt;}
.ws30{word-spacing:2.288000pt;}
.ws78{word-spacing:2.346667pt;}
.wsb3{word-spacing:2.381333pt;}
.ws92{word-spacing:2.405333pt;}
.ws22{word-spacing:2.464000pt;}
.ws16{word-spacing:2.522667pt;}
.ws96{word-spacing:2.581333pt;}
.ws18{word-spacing:2.640000pt;}
.ws63{word-spacing:2.698667pt;}
.wsbd{word-spacing:2.736000pt;}
.ws9d{word-spacing:2.757333pt;}
.wsb5{word-spacing:2.786667pt;}
.ws5f{word-spacing:2.816000pt;}
.ws44{word-spacing:2.874667pt;}
.ws3c{word-spacing:2.933333pt;}
.ws89{word-spacing:2.992000pt;}
.wsc3{word-spacing:3.040000pt;}
.ws39{word-spacing:3.050667pt;}
.wsa1{word-spacing:3.109333pt;}
.ws45{word-spacing:3.168000pt;}
.ws31{word-spacing:3.226667pt;}
.ws14{word-spacing:3.285333pt;}
.wsbb{word-spacing:3.293333pt;}
.ws8c{word-spacing:3.344000pt;}
.ws2f{word-spacing:3.402667pt;}
.ws33{word-spacing:3.461333pt;}
.ws64{word-spacing:3.520000pt;}
.ws11{word-spacing:3.578667pt;}
.wsb4{word-spacing:3.597333pt;}
.ws20{word-spacing:3.637333pt;}
.ws49{word-spacing:3.696000pt;}
.ws4e{word-spacing:3.754667pt;}
.ws74{word-spacing:3.813333pt;}
.ws46{word-spacing:3.872000pt;}
.ws70{word-spacing:3.930667pt;}
.ws93{word-spacing:3.989333pt;}
.ws19{word-spacing:4.048000pt;}
.wsad{word-spacing:4.106667pt;}
.ws15{word-spacing:4.165333pt;}
.wsf{word-spacing:4.224000pt;}
.ws91{word-spacing:4.282667pt;}
.wsc2{word-spacing:4.306667pt;}
.ws29{word-spacing:4.341333pt;}
.ws2e{word-spacing:4.400000pt;}
.ws66{word-spacing:4.458667pt;}
.wsaa{word-spacing:4.576000pt;}
.ws4d{word-spacing:4.634667pt;}
.ws8b{word-spacing:4.693333pt;}
.ws25{word-spacing:4.752000pt;}
.wsa5{word-spacing:4.810667pt;}
.ws17{word-spacing:4.869333pt;}
.ws1f{word-spacing:4.928000pt;}
.wsac{word-spacing:4.986667pt;}
.ws90{word-spacing:5.104000pt;}
.wsb1{word-spacing:5.162667pt;}
.ws1e{word-spacing:5.221333pt;}
.ws6e{word-spacing:5.280000pt;}
.ws32{word-spacing:5.338667pt;}
.wsb6{word-spacing:5.370667pt;}
.wsa3{word-spacing:5.456000pt;}
.ws62{word-spacing:5.514667pt;}
.ws4f{word-spacing:5.573333pt;}
.ws98{word-spacing:5.632000pt;}
.ws60{word-spacing:5.690667pt;}
.ws23{word-spacing:5.749333pt;}
.ws9a{word-spacing:5.808000pt;}
.wsab{word-spacing:5.866667pt;}
.ws1c{word-spacing:5.925333pt;}
.ws7a{word-spacing:6.042667pt;}
.ws6c{word-spacing:6.101333pt;}
.ws9b{word-spacing:6.160000pt;}
.wsc{word-spacing:6.277333pt;}
.ws28{word-spacing:6.336000pt;}
.ws10{word-spacing:6.394667pt;}
.ws68{word-spacing:6.453333pt;}
.ws9f{word-spacing:6.512000pt;}
.wsaf{word-spacing:6.570667pt;}
.ws94{word-spacing:6.746667pt;}
.ws8f{word-spacing:6.922667pt;}
.ws99{word-spacing:7.098667pt;}
.ws5e{word-spacing:7.157333pt;}
.wsa7{word-spacing:7.216000pt;}
.ws6d{word-spacing:7.450667pt;}
.wsb0{word-spacing:7.509333pt;}
.ws8d{word-spacing:7.568000pt;}
.ws21{word-spacing:7.978667pt;}
.ws95{word-spacing:8.037333pt;}
.ws6f{word-spacing:8.682667pt;}
._8{margin-left:-13.440000pt;}
._f{margin-left:-10.539467pt;}
._a{margin-left:-9.557333pt;}
._9{margin-left:-7.616000pt;}
._b{margin-left:-5.749867pt;}
._1{margin-left:-4.800000pt;}
._3{margin-left:-3.200000pt;}
._0{margin-left:-2.026667pt;}
._2{margin-left:-1.013333pt;}
._7{width:0.992800pt;}
._5{width:2.194133pt;}
._4{width:3.413333pt;}
._6{width:5.077333pt;}
._e{width:10.853333pt;}
._c{width:16.550400pt;}
._d{width:23.552000pt;}
.fs2{font-size:29.466667pt;}
.fs3{font-size:38.400000pt;}
.fs1{font-size:45.333333pt;}
.fs9{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs4{font-size:96.000000pt;}
.fs6{font-size:106.666667pt;}
.fs5{font-size:149.333333pt;}
.y0{bottom:0.000000pt;}
.y135{bottom:72.070933pt;}
.y116{bottom:72.260667pt;}
.y4b{bottom:74.691467pt;}
.y2b{bottom:74.820667pt;}
.yfa{bottom:75.986933pt;}
.y18d{bottom:76.340400pt;}
.y15d{bottom:76.558933pt;}
.yd4{bottom:77.746933pt;}
.y4a{bottom:79.564267pt;}
.y76{bottom:82.234933pt;}
.y95{bottom:83.018000pt;}
.yb8{bottom:84.610933pt;}
.y11e{bottom:87.910933pt;}
.y134{bottom:89.670933pt;}
.y115{bottom:89.860667pt;}
.yf9{bottom:93.586933pt;}
.y18c{bottom:93.940400pt;}
.y15c{bottom:94.158933pt;}
.y16d{bottom:94.362133pt;}
.yd3{bottom:95.346933pt;}
.y49{bottom:97.164267pt;}
.y75{bottom:99.834933pt;}
.y94{bottom:100.618000pt;}
.yb7{bottom:102.210933pt;}
.y2a{bottom:103.991733pt;}
.y11d{bottom:105.510933pt;}
.y133{bottom:107.270933pt;}
.y114{bottom:107.460667pt;}
.yf8{bottom:111.186933pt;}
.y15b{bottom:111.758933pt;}
.y16c{bottom:111.962133pt;}
.yd2{bottom:112.946933pt;}
.y48{bottom:114.764267pt;}
.y74{bottom:117.434933pt;}
.y93{bottom:118.218000pt;}
.yb6{bottom:119.810933pt;}
.ye5{bottom:123.110933pt;}
.y132{bottom:124.870933pt;}
.y113{bottom:125.060667pt;}
.yf7{bottom:128.786933pt;}
.y15a{bottom:129.358933pt;}
.y16b{bottom:129.562133pt;}
.y47{bottom:132.364267pt;}
.y73{bottom:135.034933pt;}
.y92{bottom:135.818000pt;}
.yd1{bottom:136.222933pt;}
.ye4{bottom:140.710933pt;}
.y131{bottom:142.470933pt;}
.y112{bottom:142.660667pt;}
.yb5{bottom:143.086933pt;}
.yf6{bottom:146.386933pt;}
.y29{bottom:147.129200pt;}
.y16a{bottom:147.162133pt;}
.y72{bottom:152.634933pt;}
.y91{bottom:153.418000pt;}
.yd0{bottom:153.822933pt;}
.y46{bottom:155.640267pt;}
.ye3{bottom:158.310933pt;}
.y130{bottom:160.070933pt;}
.y111{bottom:160.260667pt;}
.yb4{bottom:160.686933pt;}
.y28{bottom:160.729200pt;}
.yf5{bottom:163.986933pt;}
.y169{bottom:164.762133pt;}
.y71{bottom:170.234933pt;}
.ycf{bottom:171.422933pt;}
.y45{bottom:173.240267pt;}
.ye2{bottom:175.910933pt;}
.y90{bottom:176.694000pt;}
.y12f{bottom:177.670933pt;}
.y110{bottom:177.860667pt;}
.y27{bottom:178.103200pt;}
.yb3{bottom:178.286933pt;}
.yf4{bottom:181.586933pt;}
.y168{bottom:182.362133pt;}
.y70{bottom:187.834933pt;}
.yce{bottom:189.022933pt;}
.y44{bottom:190.840267pt;}
.ye1{bottom:193.510933pt;}
.y8f{bottom:194.294000pt;}
.y12e{bottom:195.270933pt;}
.yb2{bottom:195.886933pt;}
.y167{bottom:199.962133pt;}
.y10f{bottom:201.136667pt;}
.yf3{bottom:204.862933pt;}
.y159{bottom:205.434933pt;}
.ycd{bottom:206.622933pt;}
.y43{bottom:208.440267pt;}
.y6f{bottom:211.110933pt;}
.y8e{bottom:211.894000pt;}
.y150{bottom:212.870933pt;}
.yb1{bottom:213.486933pt;}
.y26{bottom:214.381200pt;}
.y138{bottom:216.786933pt;}
.y166{bottom:217.562133pt;}
.y12d{bottom:218.546933pt;}
.y10e{bottom:218.736667pt;}
.yf2{bottom:222.462933pt;}
.y158{bottom:223.034933pt;}
.ycc{bottom:224.222933pt;}
.y42{bottom:226.040267pt;}
.y25{bottom:227.981200pt;}
.y6e{bottom:228.710933pt;}
.y8d{bottom:229.494000pt;}
.yb0{bottom:231.086933pt;}
.y137{bottom:234.386933pt;}
.y165{bottom:235.162133pt;}
.y12c{bottom:236.146933pt;}
.y10d{bottom:236.336667pt;}
.yf1{bottom:240.062933pt;}
.y157{bottom:240.634933pt;}
.y24{bottom:241.581200pt;}
.ycb{bottom:241.822933pt;}
.y41{bottom:243.640267pt;}
.y6d{bottom:246.310933pt;}
.y8c{bottom:247.094000pt;}
.yaf{bottom:248.686933pt;}
.y136{bottom:251.986933pt;}
.y164{bottom:252.762133pt;}
.y12b{bottom:253.746933pt;}
.y10c{bottom:253.936667pt;}
.y23{bottom:255.181200pt;}
.yf0{bottom:257.662933pt;}
.yca{bottom:259.422933pt;}
.y40{bottom:261.240267pt;}
.y6c{bottom:263.910933pt;}
.y8b{bottom:264.694000pt;}
.yae{bottom:266.286933pt;}
.y22{bottom:268.781200pt;}
.y11c{bottom:269.586933pt;}
.y163{bottom:270.362133pt;}
.y14f{bottom:271.346933pt;}
.y10b{bottom:271.536667pt;}
.yef{bottom:275.262933pt;}
.yc9{bottom:277.022933pt;}
.y3f{bottom:278.840267pt;}
.y6b{bottom:281.510933pt;}
.y8a{bottom:282.294000pt;}
.y21{bottom:282.381200pt;}
.yad{bottom:283.886933pt;}
.y11b{bottom:287.186933pt;}
.y162{bottom:287.962133pt;}
.y14e{bottom:288.946933pt;}
.y10a{bottom:289.136667pt;}
.yee{bottom:292.862933pt;}
.yc8{bottom:294.622933pt;}
.y20{bottom:295.981200pt;}
.y3e{bottom:296.440267pt;}
.y6a{bottom:299.110933pt;}
.y89{bottom:299.894000pt;}
.yac{bottom:301.486933pt;}
.y11a{bottom:304.786933pt;}
.y161{bottom:305.562133pt;}
.y14d{bottom:306.546933pt;}
.y109{bottom:306.736667pt;}
.y1f{bottom:309.581200pt;}
.yed{bottom:310.462933pt;}
.yc7{bottom:312.222933pt;}
.y3d{bottom:314.040267pt;}
.y69{bottom:316.710933pt;}
.y88{bottom:317.494000pt;}
.yab{bottom:319.086933pt;}
.y119{bottom:322.386933pt;}
.y160{bottom:323.162133pt;}
.y1e{bottom:323.181200pt;}
.y14c{bottom:324.146933pt;}
.y108{bottom:324.336667pt;}
.yec{bottom:328.062933pt;}
.yc6{bottom:329.822933pt;}
.y3c{bottom:331.640267pt;}
.y68{bottom:334.310933pt;}
.y87{bottom:335.094000pt;}
.yaa{bottom:336.686933pt;}
.y1d{bottom:336.781200pt;}
.y118{bottom:339.986933pt;}
.y15f{bottom:340.762133pt;}
.y14b{bottom:341.746933pt;}
.y107{bottom:341.936667pt;}
.yeb{bottom:345.662933pt;}
.yc5{bottom:347.422933pt;}
.y3b{bottom:349.240267pt;}
.y1c{bottom:350.381200pt;}
.y67{bottom:351.910933pt;}
.y86{bottom:352.694000pt;}
.ya9{bottom:354.286933pt;}
.y117{bottom:357.586933pt;}
.y14a{bottom:359.346933pt;}
.y106{bottom:359.536667pt;}
.yea{bottom:363.262933pt;}
.y1b{bottom:363.981200pt;}
.yc4{bottom:365.022933pt;}
.y3a{bottom:366.840267pt;}
.y18b{bottom:368.548133pt;}
.y66{bottom:369.510933pt;}
.y15e{bottom:369.700667pt;}
.y85{bottom:370.294000pt;}
.y12a{bottom:370.698933pt;}
.ya8{bottom:371.886933pt;}
.ye0{bottom:375.186933pt;}
.y149{bottom:376.946933pt;}
.y1a{bottom:377.595333pt;}
.ye9{bottom:380.862933pt;}
.yc3{bottom:382.622933pt;}
.y105{bottom:382.812667pt;}
.y18a{bottom:383.748133pt;}
.y39{bottom:384.440267pt;}
.y156{bottom:387.110933pt;}
.y84{bottom:387.894000pt;}
.y129{bottom:388.298933pt;}
.ya7{bottom:389.486933pt;}
.y65{bottom:392.786933pt;}
.y148{bottom:394.546933pt;}
.y19{bottom:394.969333pt;}
.ye8{bottom:398.462933pt;}
.y189{bottom:398.948133pt;}
.yc2{bottom:400.222933pt;}
.y104{bottom:400.412667pt;}
.y38{bottom:402.040267pt;}
.y155{bottom:404.710933pt;}
.y83{bottom:405.494000pt;}
.y128{bottom:405.898933pt;}
.y64{bottom:410.386933pt;}
.y188{bottom:414.148133pt;}
.ye7{bottom:416.062933pt;}
.yc1{bottom:417.822933pt;}
.y103{bottom:418.012667pt;}
.ya6{bottom:418.424267pt;}
.y154{bottom:422.310933pt;}
.y82{bottom:423.094000pt;}
.y127{bottom:423.498933pt;}
.y63{bottom:427.986933pt;}
.y187{bottom:429.348133pt;}
.y37{bottom:430.978800pt;}
.y18{bottom:431.247333pt;}
.ye6{bottom:433.662933pt;}
.yc0{bottom:435.422933pt;}
.y102{bottom:435.612667pt;}
.y153{bottom:439.910933pt;}
.y81{bottom:440.694000pt;}
.y126{bottom:441.098933pt;}
.y186{bottom:444.548133pt;}
.y17{bottom:444.847333pt;}
.y62{bottom:445.586933pt;}
.ydf{bottom:451.262933pt;}
.y147{bottom:453.022933pt;}
.y152{bottom:457.510933pt;}
.y80{bottom:458.294000pt;}
.ybf{bottom:458.698933pt;}
.y185{bottom:459.748133pt;}
.y16{bottom:462.221333pt;}
.y61{bottom:463.186933pt;}
.ya5{bottom:464.374933pt;}
.y101{bottom:464.550000pt;}
.yde{bottom:468.862933pt;}
.y146{bottom:470.622933pt;}
.y184{bottom:474.948133pt;}
.y151{bottom:475.110933pt;}
.y7f{bottom:475.894000pt;}
.ybe{bottom:476.298933pt;}
.y60{bottom:480.786933pt;}
.ya4{bottom:481.974933pt;}
.ydd{bottom:486.462933pt;}
.y36{bottom:487.974000pt;}
.y145{bottom:488.222933pt;}
.y183{bottom:490.148133pt;}
.y7e{bottom:493.494000pt;}
.ybd{bottom:493.898933pt;}
.y5f{bottom:498.386933pt;}
.y15{bottom:498.499333pt;}
.ya3{bottom:499.574933pt;}
.y35{bottom:501.574000pt;}
.ydc{bottom:504.062933pt;}
.y182{bottom:505.348133pt;}
.y144{bottom:505.822933pt;}
.y100{bottom:510.500667pt;}
.y7d{bottom:511.094000pt;}
.ybc{bottom:511.498933pt;}
.y14{bottom:512.099333pt;}
.y34{bottom:515.174000pt;}
.y5e{bottom:515.986933pt;}
.ya2{bottom:517.174933pt;}
.y181{bottom:520.548133pt;}
.ydb{bottom:521.662933pt;}
.y143{bottom:523.422933pt;}
.y13{bottom:525.699333pt;}
.yff{bottom:528.100667pt;}
.y7c{bottom:528.694000pt;}
.ybb{bottom:529.098933pt;}
.y5d{bottom:533.586933pt;}
.ya1{bottom:534.774933pt;}
.y180{bottom:535.748133pt;}
.yda{bottom:539.262933pt;}
.y12{bottom:539.299333pt;}
.y142{bottom:541.022933pt;}
.yfe{bottom:545.700667pt;}
.y7b{bottom:546.294000pt;}
.yba{bottom:546.698933pt;}
.y33{bottom:547.671733pt;}
.y17f{bottom:550.948133pt;}
.y5c{bottom:551.186933pt;}
.ya0{bottom:552.374933pt;}
.y11{bottom:552.899333pt;}
.yd9{bottom:556.862933pt;}
.y141{bottom:558.622933pt;}
.yfd{bottom:563.300667pt;}
.y7a{bottom:563.894000pt;}
.y32{bottom:565.271733pt;}
.y17e{bottom:566.148133pt;}
.y10{bottom:566.499333pt;}
.y5b{bottom:568.786933pt;}
.y9f{bottom:569.974933pt;}
.yd8{bottom:574.462933pt;}
.yb9{bottom:575.636267pt;}
.y140{bottom:576.222933pt;}
.yf{bottom:580.099333pt;}
.yfc{bottom:580.900667pt;}
.y17d{bottom:581.348133pt;}
.y5a{bottom:586.386933pt;}
.y31{bottom:586.651200pt;}
.y125{bottom:587.574933pt;}
.yd7{bottom:592.062933pt;}
.y79{bottom:592.831333pt;}
.ye{bottom:593.699333pt;}
.y17c{bottom:596.548133pt;}
.y9e{bottom:598.912267pt;}
.y13f{bottom:599.498933pt;}
.y59{bottom:603.986933pt;}
.y124{bottom:605.174933pt;}
.yd{bottom:607.299333pt;}
.yd6{bottom:609.662933pt;}
.yfb{bottom:609.839333pt;}
.y17b{bottom:611.748133pt;}
.y13e{bottom:617.098933pt;}
.yc{bottom:620.899333pt;}
.y58{bottom:621.586933pt;}
.y78{bottom:621.770000pt;}
.y123{bottom:622.774933pt;}
.y30{bottom:624.881867pt;}
.y17a{bottom:626.948133pt;}
.yd5{bottom:627.262933pt;}
.yb{bottom:634.499333pt;}
.y13d{bottom:634.698933pt;}
.y57{bottom:639.186933pt;}
.y122{bottom:640.374933pt;}
.y179{bottom:642.148133pt;}
.y9d{bottom:644.862933pt;}
.ya{bottom:648.099333pt;}
.y56{bottom:656.786933pt;}
.y178{bottom:657.348133pt;}
.y121{bottom:657.974933pt;}
.y4c{bottom:658.980400pt;}
.y9{bottom:661.699333pt;}
.y9c{bottom:662.462933pt;}
.y2f{bottom:669.681867pt;}
.y177{bottom:672.548133pt;}
.y55{bottom:674.386933pt;}
.y120{bottom:675.574933pt;}
.y8{bottom:679.073333pt;}
.y9b{bottom:680.062933pt;}
.y176{bottom:687.748133pt;}
.y54{bottom:691.986933pt;}
.y13c{bottom:693.174933pt;}
.y9a{bottom:697.662933pt;}
.y175{bottom:702.948133pt;}
.y11f{bottom:704.512267pt;}
.y53{bottom:709.586933pt;}
.y13b{bottom:710.774933pt;}
.y2e{bottom:714.481867pt;}
.y99{bottom:715.262933pt;}
.y7{bottom:715.351333pt;}
.y174{bottom:718.148133pt;}
.y52{bottom:727.186933pt;}
.y13a{bottom:728.374933pt;}
.y6{bottom:728.951333pt;}
.y98{bottom:732.862933pt;}
.y173{bottom:733.348133pt;}
.y51{bottom:744.786933pt;}
.y5{bottom:746.336133pt;}
.y172{bottom:748.548133pt;}
.y97{bottom:750.462933pt;}
.y139{bottom:757.312267pt;}
.y2d{bottom:759.281867pt;}
.y50{bottom:762.386933pt;}
.y171{bottom:763.748133pt;}
.y96{bottom:768.062933pt;}
.y4{bottom:769.896133pt;}
.y170{bottom:778.948133pt;}
.y77{bottom:779.986933pt;}
.y4f{bottom:785.662933pt;}
.y3{bottom:785.896133pt;}
.y16f{bottom:794.148133pt;}
.y4e{bottom:803.262933pt;}
.y2c{bottom:804.081867pt;}
.y2{bottom:805.669467pt;}
.y16e{bottom:820.686800pt;}
.y4d{bottom:820.862933pt;}
.y1{bottom:821.669467pt;}
.h7{height:34.944000pt;}
.hd{height:39.122667pt;}
.hc{height:39.394667pt;}
.h4{height:40.392000pt;}
.h5{height:41.253333pt;}
.h6{height:41.718133pt;}
.h11{height:42.357333pt;}
.h10{height:43.725333pt;}
.h3{height:47.520000pt;}
.h2{height:48.533333pt;}
.hb{height:50.629333pt;}
.h12{height:50.981333pt;}
.hf{height:53.386667pt;}
.he{height:58.240000pt;}
.h8{height:82.848000pt;}
.ha{height:92.053333pt;}
.h9{height:135.893333pt;}
.h0{height:929.764000pt;}
.h1{height:930.000000pt;}
.w0{width:665.197333pt;}
.w1{width:665.333333pt;}
.x0{left:0.000000pt;}
.x17{left:26.362133pt;}
.x18{left:64.368000pt;}
.x15{left:68.031467pt;}
.x16{left:86.929200pt;}
.x8{left:102.051387pt;}
.x9{left:120.943827pt;}
.x14{left:162.519733pt;}
.x11{left:185.088800pt;}
.x10{left:190.739653pt;}
.x1{left:199.380400pt;}
.x3{left:204.384933pt;}
.x7{left:211.440947pt;}
.x4{left:217.347067pt;}
.x13{left:234.249067pt;}
.xd{left:236.180293pt;}
.x2{left:245.100667pt;}
.x5{left:246.355067pt;}
.xe{left:261.754373pt;}
.x6{left:277.892133pt;}
.xc{left:333.574000pt;}
.xf{left:336.318000pt;}
.x12{left:386.390800pt;}
.xb{left:600.314800pt;}
.x19{left:608.020133pt;}
.xa{left:642.035867pt;}
}




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