
    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_cbe41026ecc52f21ce353eb8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f5cbc286594ac38d30d517a2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.929199;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_3ef0a91898d9f6ac804c8065.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_7db542bec6f39ae858846e38.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_50d0e89a261f2dc5173aba83.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a3c9799e1a544935d5110f94.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.575000;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_93e49f48a4a7e3fe1ee02857.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ed6058eeb90f5cd3c4357f77.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.862793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_50f0bcad9fad0e6f7e7b6c86.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.862793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_762b5bda90ad8b108686a50b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a12926c207225281a226b5d2.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_41a51fa8077e926925abeae0.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_81a4a53b35d7478a1bb1f753.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.863770;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.158713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158713,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.235327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235327,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-64.800000px;}
.v2{vertical-align:-53.280000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:34.560000px;}
.v3{vertical-align:41.760000px;}
.v5{vertical-align:77.760000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.432000px;}
.ls17{letter-spacing:0.491632px;}
.lse{letter-spacing:8.282880px;}
.ls11{letter-spacing:13.069440px;}
.ls8{letter-spacing:15.984000px;}
.ls12{letter-spacing:18.864000px;}
.ls1{letter-spacing:21.242880px;}
.ls1c{letter-spacing:25.488000px;}
.ls14{letter-spacing:26.087040px;}
.ls5{letter-spacing:27.648000px;}
.ls4{letter-spacing:29.520000px;}
.ls18{letter-spacing:34.053120px;}
.ls1e{letter-spacing:34.202880px;}
.ls16{letter-spacing:42.840000px;}
.ls1a{letter-spacing:43.488000px;}
.ls3{letter-spacing:45.360000px;}
.lsa{letter-spacing:46.872000px;}
.lsd{letter-spacing:51.408000px;}
.ls9{letter-spacing:52.819200px;}
.ls2{letter-spacing:55.440000px;}
.ls19{letter-spacing:59.472000px;}
.ls21{letter-spacing:64.008000px;}
.lsf{letter-spacing:68.472000px;}
.ls10{letter-spacing:70.128000px;}
.ls1f{letter-spacing:71.280000px;}
.ls20{letter-spacing:72.432000px;}
.ls1b{letter-spacing:74.232000px;}
.lsc{letter-spacing:170.636286px;}
.ls1d{letter-spacing:199.512000px;}
.ls13{letter-spacing:234.273600px;}
.ls15{letter-spacing:235.713600px;}
.lsb{letter-spacing:329.734058px;}
.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;}
}
.ws22{word-spacing:-30.024000px;}
.ws44{word-spacing:-29.940480px;}
.ws3{word-spacing:-27.011520px;}
.ws31{word-spacing:-21.804480px;}
.ws2{word-spacing:-18.875520px;}
.ws34{word-spacing:-16.922880px;}
.ws0{word-spacing:-16.272000px;}
.ws26{word-spacing:-13.668480px;}
.wsf{word-spacing:-12.366720px;}
.ws37{word-spacing:-10.739520px;}
.ws45{word-spacing:-9.207360px;}
.ws2d{word-spacing:-4.446722px;}
.ws42{word-spacing:-4.435196px;}
.ws25{word-spacing:-3.798724px;}
.ws11{word-spacing:-3.692162px;}
.ws12{word-spacing:-3.692161px;}
.ws1d{word-spacing:-3.654719px;}
.ws8{word-spacing:-3.574085px;}
.ws21{word-spacing:-3.340800px;}
.ws5{word-spacing:-2.926080px;}
.wsc{word-spacing:-2.926079px;}
.ws7{word-spacing:-2.684160px;}
.ws6{word-spacing:-2.520001px;}
.ws28{word-spacing:-2.358726px;}
.ws16{word-spacing:-2.252160px;}
.ws35{word-spacing:-1.825921px;}
.ws24{word-spacing:-1.728000px;}
.ws27{word-spacing:-0.889923px;}
.ws29{word-spacing:-0.737279px;}
.ws43{word-spacing:-0.288000px;}
.ws23{word-spacing:-0.216000px;}
.ws1{word-spacing:0.000000px;}
.ws32{word-spacing:1.080000px;}
.ws3b{word-spacing:1.728000px;}
.ws33{word-spacing:1.946884px;}
.ws3e{word-spacing:1.978568px;}
.ws36{word-spacing:2.360159px;}
.ws41{word-spacing:2.391843px;}
.ws1c{word-spacing:3.787200px;}
.ws2a{word-spacing:6.281274px;}
.ws2b{word-spacing:6.310077px;}
.ws2c{word-spacing:7.079040px;}
.ws2e{word-spacing:9.161274px;}
.ws30{word-spacing:9.190080px;}
.ws2f{word-spacing:10.630077px;}
.wsb{word-spacing:11.364480px;}
.ws13{word-spacing:12.147844px;}
.ws9{word-spacing:14.244480px;}
.ws1f{word-spacing:14.307839px;}
.ws14{word-spacing:18.149760px;}
.ws1e{word-spacing:19.022400px;}
.ws17{word-spacing:20.338563px;}
.wsd{word-spacing:27.645120px;}
.ws10{word-spacing:29.427842px;}
.ws18{word-spacing:31.965120px;}
.ws40{word-spacing:40.776480px;}
.wse{word-spacing:42.667200px;}
.ws15{word-spacing:44.942400px;}
.ws1b{word-spacing:46.877760px;}
.wsa{word-spacing:47.715840px;}
.ws3d{word-spacing:51.217921px;}
.ws19{word-spacing:52.125120px;}
.ws1a{word-spacing:52.395839px;}
.ws3c{word-spacing:53.400963px;}
.ws3f{word-spacing:53.484480px;}
.ws39{word-spacing:84.896640px;}
.ws38{word-spacing:86.371200px;}
.ws3a{word-spacing:88.479360px;}
.ws20{word-spacing:115.827843px;}
.ws4{word-spacing:259.830725px;}
._21{margin-left:-9.587529px;}
._19{margin-left:-8.343354px;}
._22{margin-left:-7.323842px;}
._3{margin-left:-5.244481px;}
._9{margin-left:-4.155838px;}
._2{margin-left:-3.023998px;}
._8{margin-left:-2.021764px;}
._0{margin-left:-1.008000px;}
._1{width:1.045440px;}
._1f{width:2.157119px;}
._7{width:3.242876px;}
._6{width:4.911798px;}
._4{width:6.269759px;}
._5{width:7.627651px;}
._1a{width:9.780485px;}
._12{width:10.987202px;}
._b{width:12.012485px;}
._1b{width:14.204170px;}
._17{width:17.444164px;}
._16{width:18.492484px;}
._1c{width:21.009610px;}
._1d{width:23.132170px;}
._1e{width:24.747846px;}
._20{width:26.445610px;}
._d{width:27.722889px;}
._c{width:28.955520px;}
._13{width:32.163840px;}
._18{width:33.281278px;}
._f{width:42.212164px;}
._11{width:43.364160px;}
._14{width:45.414729px;}
._10{width:57.277452px;}
._e{width:61.513920px;}
._25{width:64.042556px;}
._15{width:67.256651px;}
._24{width:74.507053px;}
._23{width:76.612329px;}
._a{width:410.742724px;}
.fc7{color:rgb(51,153,255);}
.fc8{color:rgb(12,22,38);}
.fc5{color:rgb(255,147,121);}
.fc3{color:transparent;}
.fc4{color:rgb(156,82,82);}
.fc1{color:rgb(210,32,32);}
.fc9{color:rgb(89,89,89);}
.fc6{color:rgb(255,255,255);}
.fc2{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs13{font-size:33.120000px;}
.fsc{font-size:38.555460px;}
.fse{font-size:41.760000px;}
.fsb{font-size:43.159080px;}
.fs2{font-size:44.640000px;}
.fs3{font-size:47.520000px;}
.fsd{font-size:47.762700px;}
.fs8{font-size:54.720000px;}
.fsa{font-size:57.545460px;}
.fs1{font-size:60.480000px;}
.fs10{font-size:63.360000px;}
.fs0{font-size:72.000000px;}
.fsf{font-size:74.880000px;}
.fs7{font-size:83.520000px;}
.fs12{font-size:87.688800px;}
.fs5{font-size:96.480000px;}
.fs9{font-size:108.000000px;}
.fs4{font-size:119.520000px;}
.fs6{font-size:132.480000px;}
.fs11{font-size:194.400000px;}
.y0{bottom:0.000000px;}
.y38{bottom:3.960000px;}
.yf0{bottom:4.680000px;}
.y29{bottom:7.920000px;}
.y2{bottom:37.440000px;}
.y12c{bottom:180.360000px;}
.y10f{bottom:182.160000px;}
.y11c{bottom:187.560000px;}
.ye2{bottom:187.920000px;}
.y7b{bottom:191.520000px;}
.y139{bottom:199.800000px;}
.y14f{bottom:200.160000px;}
.y4c{bottom:200.520000px;}
.y12b{bottom:201.960000px;}
.y65{bottom:205.200000px;}
.y11b{bottom:209.160000px;}
.y168{bottom:210.240000px;}
.y10e{bottom:210.960000px;}
.y159{bottom:211.680000px;}
.y7a{bottom:216.720000px;}
.y12a{bottom:219.960000px;}
.y64{bottom:223.200000px;}
.y4b{bottom:226.440000px;}
.y14e{bottom:228.960000px;}
.y11a{bottom:230.760000px;}
.y18{bottom:235.440000px;}
.y158{bottom:236.160000px;}
.yff{bottom:237.240000px;}
.yba{bottom:240.120000px;}
.y63{bottom:241.200000px;}
.y129{bottom:241.560000px;}
.y79{bottom:241.920000px;}
.y10d{bottom:245.520000px;}
.y4a{bottom:252.360000px;}
.ya1{bottom:256.320000px;}
.y119{bottom:256.680000px;}
.ydb{bottom:258.120000px;}
.yfe{bottom:258.840000px;}
.y62{bottom:259.200000px;}
.y128{bottom:259.560000px;}
.ydd{bottom:260.280000px;}
.y17{bottom:260.640000px;}
.y157{bottom:262.080000px;}
.ye4{bottom:264.240000px;}
.yb9{bottom:265.320000px;}
.y167{bottom:265.680000px;}
.y78{bottom:267.120000px;}
.ya{bottom:267.840000px;}
.y132{bottom:272.880000px;}
.y10c{bottom:274.320000px;}
.ydc{bottom:275.040000px;}
.y61{bottom:277.200000px;}
.y49{bottom:278.280000px;}
.y127{bottom:281.160000px;}
.y172{bottom:281.880000px;}
.y156{bottom:283.680000px;}
.yfd{bottom:284.760000px;}
.ya0{bottom:285.120000px;}
.y16{bottom:285.840000px;}
.y166{bottom:290.880000px;}
.y77{bottom:292.320000px;}
.y14d{bottom:292.680000px;}
.y60{bottom:295.200000px;}
.yb8{bottom:295.560000px;}
.y9{bottom:296.640000px;}
.yeb{bottom:298.080000px;}
.y118{bottom:299.880000px;}
.yd9{bottom:301.680000px;}
.y10b{bottom:303.120000px;}
.y126{bottom:303.480000px;}
.y48{bottom:304.200000px;}
.y13d{bottom:308.160000px;}
.y155{bottom:309.600000px;}
.yfc{bottom:310.680000px;}
.y5f{bottom:313.200000px;}
.y9f{bottom:313.920000px;}
.y15{bottom:316.080000px;}
.y76{bottom:317.520000px;}
.y14c{bottom:317.880000px;}
.yda{bottom:318.960000px;}
.yb7{bottom:320.760000px;}
.y165{bottom:321.120000px;}
.y125{bottom:325.080000px;}
.y117{bottom:325.800000px;}
.yea{bottom:326.880000px;}
.y14a{bottom:327.240000px;}
.y47{bottom:330.120000px;}
.y131{bottom:330.480000px;}
.y5e{bottom:331.200000px;}
.yaf{bottom:331.920000px;}
.yfb{bottom:332.280000px;}
.y13c{bottom:336.960000px;}
.y10a{bottom:337.680000px;}
.y143{bottom:340.920000px;}
.y171{bottom:342.000000px;}
.y75{bottom:342.720000px;}
.y14b{bottom:343.080000px;}
.yd6{bottom:345.600000px;}
.yb6{bottom:345.960000px;}
.y14{bottom:346.320000px;}
.y116{bottom:347.400000px;}
.yd8{bottom:347.760000px;}
.y5d{bottom:349.200000px;}
.y124{bottom:351.000000px;}
.y3e{bottom:353.160000px;}
.ye3{bottom:354.240000px;}
.ye9{bottom:355.680000px;}
.y46{bottom:356.040000px;}
.y154{bottom:357.120000px;}
.yfa{bottom:358.200000px;}
.y130{bottom:359.280000px;}
.yd7{bottom:362.520000px;}
.yae{bottom:366.480000px;}
.y5c{bottom:367.200000px;}
.y13{bottom:371.520000px;}
.y123{bottom:372.600000px;}
.y115{bottom:373.320000px;}
.yb5{bottom:376.200000px;}
.y164{bottom:376.560000px;}
.y3d{bottom:378.360000px;}
.y153{bottom:378.720000px;}
.yf9{bottom:379.800000px;}
.y45{bottom:381.960000px;}
.ye8{bottom:384.480000px;}
.y149{bottom:384.840000px;}
.y12f{bottom:388.080000px;}
.y74{bottom:393.840000px;}
.y122{bottom:394.920000px;}
.yad{bottom:395.280000px;}
.y9e{bottom:400.320000px;}
.yb4{bottom:401.400000px;}
.y8{bottom:401.760000px;}
.y3c{bottom:403.560000px;}
.yf8{bottom:405.720000px;}
.y140{bottom:406.080000px;}
.ye7{bottom:413.280000px;}
.y170{bottom:414.360000px;}
.y12e{bottom:416.880000px;}
.y73{bottom:422.640000px;}
.yd3{bottom:423.720000px;}
.yac{bottom:424.080000px;}
.y5b{bottom:425.160000px;}
.y12{bottom:426.960000px;}
.yf7{bottom:427.320000px;}
.y3b{bottom:428.760000px;}
.y9d{bottom:429.120000px;}
.y44{bottom:429.480000px;}
.y13f{bottom:431.280000px;}
.y7{bottom:437.760000px;}
.y138{bottom:441.720000px;}
.y5a{bottom:446.760000px;}
.ye6{bottom:448.560000px;}
.y43{bottom:451.080000px;}
.y72{bottom:451.440000px;}
.y163{bottom:452.160000px;}
.y3a{bottom:453.960000px;}
.y13e{bottom:456.480000px;}
.yab{bottom:456.840000px;}
.y137{bottom:459.720000px;}
.y16f{bottom:483.120000px;}
.y42{bottom:493.200000px;}
.y13b{bottom:497.520000px;}
.y136{bottom:510.480000px;}
.y2a{bottom:518.400000px;}
.y39{bottom:520.920000px;}
.y59{bottom:522.720000px;}
.yd5{bottom:523.800000px;}
.y41{bottom:525.600000px;}
.y15a{bottom:530.280000px;}
.y11{bottom:537.120000px;}
.y28{bottom:538.200000px;}
.y58{bottom:538.920000px;}
.yd4{bottom:540.000000px;}
.y135{bottom:542.880000px;}
.y37{bottom:691.920000px;}
.yf6{bottom:697.680000px;}
.y71{bottom:705.240000px;}
.y57{bottom:713.160000px;}
.yaa{bottom:715.320000px;}
.y36{bottom:717.480000px;}
.yf5{bottom:722.880000px;}
.y8b{bottom:726.840000px;}
.yc9{bottom:728.280000px;}
.y114{bottom:729.360000px;}
.y70{bottom:731.160000px;}
.y56{bottom:734.760000px;}
.y35{bottom:739.080000px;}
.ya9{bottom:740.520000px;}
.yce{bottom:743.040000px;}
.y8a{bottom:743.400000px;}
.yc8{bottom:744.840000px;}
.y109{bottom:745.560000px;}
.ye1{bottom:747.720000px;}
.yf4{bottom:749.520000px;}
.y6f{bottom:752.760000px;}
.y121{bottom:753.480000px;}
.ycd{bottom:756.000000px;}
.y113{bottom:758.160000px;}
.y89{bottom:759.960000px;}
.y34{bottom:760.680000px;}
.yc7{bottom:761.400000px;}
.yb3{bottom:763.560000px;}
.ya8{bottom:765.720000px;}
.ycc{bottom:769.320000px;}
.y98{bottom:771.120000px;}
.y108{bottom:771.480000px;}
.y40{bottom:771.840000px;}
.y16e{bottom:773.280000px;}
.y162{bottom:773.640000px;}
.yf3{bottom:776.160000px;}
.y88{bottom:776.520000px;}
.yc6{bottom:777.960000px;}
.y6e{bottom:778.680000px;}
.y33{bottom:782.280000px;}
.ycb{bottom:782.640000px;}
.y120{bottom:783.720000px;}
.y27{bottom:784.080000px;}
.y97{bottom:785.520000px;}
.y55{bottom:786.600000px;}
.y112{bottom:786.960000px;}
.y148{bottom:788.040000px;}
.ya7{bottom:790.920000px;}
.y16d{bottom:791.280000px;}
.y87{bottom:793.080000px;}
.yc5{bottom:794.520000px;}
.yca{bottom:795.600000px;}
.y107{bottom:796.680000px;}
.y161{bottom:798.840000px;}
.y96{bottom:799.200000px;}
.y26{bottom:800.280000px;}
.yb2{bottom:801.000000px;}
.y10{bottom:802.080000px;}
.yf2{bottom:803.160000px;}
.y32{bottom:803.880000px;}
.y6d{bottom:806.400000px;}
.y3f{bottom:807.840000px;}
.y54{bottom:808.200000px;}
.y86{bottom:809.640000px;}
.yc4{bottom:810.720000px;}
.y16c{bottom:812.880000px;}
.y95{bottom:813.240000px;}
.yd2{bottom:813.600000px;}
.y11f{bottom:813.960000px;}
.y25{bottom:816.480000px;}
.yc1{bottom:817.920000px;}
.y106{bottom:818.280000px;}
.y92{bottom:820.440000px;}
.y9c{bottom:821.160000px;}
.y111{bottom:821.520000px;}
.y31{bottom:825.480000px;}
.y85{bottom:826.200000px;}
.y94{bottom:826.920000px;}
.yf1{bottom:828.360000px;}
.y160{bottom:829.080000px;}
.yf{bottom:832.320000px;}
.y24{bottom:832.680000px;}
.y53{bottom:834.120000px;}
.y91{bottom:834.480000px;}
.y9b{bottom:835.200000px;}
.yc0{bottom:837.720000px;}
.yb1{bottom:838.440000px;}
.y6c{bottom:839.160000px;}
.y105{bottom:839.880000px;}
.y93{bottom:840.600000px;}
.y84{bottom:842.760000px;}
.ya6{bottom:846.360000px;}
.y30{bottom:847.080000px;}
.yc3{bottom:847.800000px;}
.y90{bottom:848.520000px;}
.y23{bottom:848.880000px;}
.y9a{bottom:849.240000px;}
.yef{bottom:850.320000px;}
.y16b{bottom:852.480000px;}
.ye0{bottom:853.200000px;}
.y15f{bottom:854.280000px;}
.yee{bottom:855.000000px;}
.y52{bottom:855.720000px;}
.yd1{bottom:856.080000px;}
.ye{bottom:857.520000px;}
.y83{bottom:859.320000px;}
.y104{bottom:861.480000px;}
.y8f{bottom:862.200000px;}
.y99{bottom:862.920000px;}
.ye5{bottom:863.280000px;}
.y147{bottom:863.640000px;}
.y22{bottom:865.080000px;}
.yc2{bottom:868.320000px;}
.y2f{bottom:868.680000px;}
.y11e{bottom:870.120000px;}
.y16a{bottom:870.480000px;}
.y6{bottom:871.920000px;}
.y134{bottom:875.160000px;}
.y82{bottom:875.880000px;}
.ya5{bottom:876.600000px;}
.ybf{bottom:877.320000px;}
.y110{bottom:879.120000px;}
.yed{bottom:879.840000px;}
.y21{bottom:881.280000px;}
.y51{bottom:881.640000px;}
.y103{bottom:883.800000px;}
.y15e{bottom:884.520000px;}
.y13a{bottom:887.400000px;}
.yd{bottom:887.760000px;}
.y5{bottom:888.480000px;}
.y2e{bottom:890.280000px;}
.y6b{bottom:891.720000px;}
.y81{bottom:892.080000px;}
.y11d{bottom:895.320000px;}
.ybe{bottom:896.760000px;}
.y20{bottom:897.480000px;}
.y50{bottom:903.240000px;}
.y102{bottom:905.400000px;}
.ya4{bottom:906.120000px;}
.yec{bottom:906.840000px;}
.y133{bottom:907.560000px;}
.y80{bottom:908.640000px;}
.y15d{bottom:909.720000px;}
.y2d{bottom:911.880000px;}
.y8e{bottom:913.320000px;}
.y1f{bottom:913.680000px;}
.y146{bottom:914.040000px;}
.y6a{bottom:916.920000px;}
.yc{bottom:918.000000px;}
.ydf{bottom:920.880000px;}
.yd0{bottom:924.120000px;}
.y8d{bottom:924.840000px;}
.y7f{bottom:925.200000px;}
.y101{bottom:927.000000px;}
.ya3{bottom:927.720000px;}
.y4f{bottom:929.160000px;}
.y1e{bottom:929.880000px;}
.y169{bottom:931.680000px;}
.y2c{bottom:933.480000px;}
.ybd{bottom:934.920000px;}
.y8c{bottom:935.640000px;}
.y145{bottom:939.240000px;}
.y15c{bottom:939.960000px;}
.y12d{bottom:941.400000px;}
.yb0{bottom:942.480000px;}
.y1d{bottom:946.080000px;}
.y69{bottom:948.240000px;}
.ya2{bottom:949.320000px;}
.yde{bottom:949.680000px;}
.y151{bottom:950.760000px;}
.y100{bottom:952.920000px;}
.y2b{bottom:955.080000px;}
.ybc{bottom:956.520000px;}
.y7e{bottom:958.320000px;}
.y4{bottom:961.200000px;}
.y1c{bottom:962.280000px;}
.y144{bottom:964.440000px;}
.y15b{bottom:965.160000px;}
.y150{bottom:972.360000px;}
.y7d{bottom:974.880000px;}
.y4e{bottom:976.680000px;}
.y68{bottom:977.040000px;}
.y1b{bottom:978.480000px;}
.ycf{bottom:979.560000px;}
.ybb{bottom:982.440000px;}
.y7c{bottom:991.440000px;}
.y1a{bottom:1004.760000px;}
.y142{bottom:1023.480000px;}
.y3{bottom:1029.960000px;}
.y67{bottom:1048.320000px;}
.yb{bottom:1055.880000px;}
.y152{bottom:1056.240000px;}
.y141{bottom:1063.080000px;}
.y66{bottom:1064.520000px;}
.y19{bottom:1065.960000px;}
.y4d{bottom:1071.720000px;}
.y1{bottom:1213.560000px;}
.hd{height:21.240000px;}
.h1d{height:24.480000px;}
.hc{height:32.760000px;}
.h16{height:34.439766px;}
.h23{height:34.543125px;}
.h14{height:37.840075px;}
.h18{height:39.190078px;}
.hb{height:45.127969px;}
.h4{height:46.558125px;}
.h15{height:46.876478px;}
.h5{height:49.561875px;}
.h11{height:49.878281px;}
.h24{height:50.703840px;}
.h3{height:55.459688px;}
.h10{height:57.071250px;}
.h1f{height:57.175312px;}
.h2{height:59.378906px;}
.h13{height:60.018116px;}
.h17{height:61.754062px;}
.h1e{height:64.532160px;}
.h20{height:66.047344px;}
.ha{height:68.879531px;}
.hf{height:76.824000px;}
.h7{height:79.567734px;}
.h21{height:89.068359px;}
.h9{height:89.115840px;}
.h1c{height:91.456678px;}
.h6{height:98.568984px;}
.h22{height:100.625625px;}
.h19{height:101.138906px;}
.h12{height:102.944160px;}
.h8{height:109.257187px;}
.he{height:112.640625px;}
.h1b{height:115.236000px;}
.h1a{height:160.323047px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:2.520000px;}
.w4{width:6.480000px;}
.w2{width:162.720000px;}
.w3{width:186.840000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x4b{left:177.840000px;}
.xa{left:181.800000px;}
.x4f{left:187.920000px;}
.x1e{left:194.040000px;}
.x25{left:195.120000px;}
.x4c{left:198.720000px;}
.x1f{left:201.600000px;}
.x58{left:205.200000px;}
.x18{left:208.800000px;}
.x11{left:210.600000px;}
.x4a{left:214.200000px;}
.x3{left:217.800000px;}
.xf{left:218.880000px;}
.x53{left:221.760000px;}
.x21{left:223.560000px;}
.x59{left:225.360000px;}
.x15{left:226.440000px;}
.x19{left:228.960000px;}
.x8{left:230.760000px;}
.x50{left:231.840000px;}
.x1b{left:235.800000px;}
.x7{left:237.240000px;}
.x23{left:241.560000px;}
.x20{left:244.440000px;}
.x1a{left:246.240000px;}
.x45{left:251.640000px;}
.x1c{left:252.720000px;}
.x4{left:253.800000px;}
.x51{left:255.960000px;}
.x5{left:262.080000px;}
.x48{left:264.960000px;}
.xe{left:266.040000px;}
.x22{left:267.840000px;}
.x16{left:271.080000px;}
.x29{left:273.240000px;}
.x1d{left:276.480000px;}
.x2a{left:280.080000px;}
.x34{left:289.800000px;}
.x49{left:294.120000px;}
.x3a{left:295.920000px;}
.x3b{left:299.880000px;}
.x35{left:303.480000px;}
.x47{left:310.680000px;}
.x46{left:312.840000px;}
.x54{left:317.520000px;}
.x12{left:324.360000px;}
.x55{left:329.400000px;}
.x52{left:332.280000px;}
.x9{left:335.160000px;}
.xd{left:338.760000px;}
.x56{left:345.240000px;}
.x6{left:349.560000px;}
.x57{left:351.360000px;}
.xb{left:353.160000px;}
.x17{left:354.960000px;}
.x3e{left:361.800000px;}
.x10{left:365.400000px;}
.x3f{left:366.480000px;}
.x3c{left:375.120000px;}
.x40{left:376.560000px;}
.x3d{left:385.200000px;}
.x24{left:388.800000px;}
.x2b{left:403.920000px;}
.x2f{left:414.000000px;}
.x2d{left:415.080000px;}
.x2c{left:419.400000px;}
.x26{left:423.360000px;}
.x27{left:424.800000px;}
.x2e{left:429.480000px;}
.x28{left:433.440000px;}
.x38{left:440.280000px;}
.x39{left:445.320000px;}
.x13{left:456.120000px;}
.x37{left:459.720000px;}
.x14{left:486.360000px;}
.x42{left:501.480000px;}
.x43{left:506.520000px;}
.x44{left:517.680000px;}
.xc{left:524.520000px;}
.x41{left:527.760000px;}
.x33{left:535.680000px;}
.x31{left:542.160000px;}
.x30{left:551.160000px;}
.x32{left:562.320000px;}
.x4d{left:665.280000px;}
.x4e{left:669.240000px;}
.x1{left:769.320000px;}
.x36{left:837.000000px;}
.x2{left:846.000000px;}
@media print{
.v1{vertical-align:-57.600000pt;}
.v2{vertical-align:-47.360000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:30.720000pt;}
.v3{vertical-align:37.120000pt;}
.v5{vertical-align:69.120000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.384000pt;}
.ls17{letter-spacing:0.437006pt;}
.lse{letter-spacing:7.362560pt;}
.ls11{letter-spacing:11.617280pt;}
.ls8{letter-spacing:14.208000pt;}
.ls12{letter-spacing:16.768000pt;}
.ls1{letter-spacing:18.882560pt;}
.ls1c{letter-spacing:22.656000pt;}
.ls14{letter-spacing:23.188480pt;}
.ls5{letter-spacing:24.576000pt;}
.ls4{letter-spacing:26.240000pt;}
.ls18{letter-spacing:30.269440pt;}
.ls1e{letter-spacing:30.402560pt;}
.ls16{letter-spacing:38.080000pt;}
.ls1a{letter-spacing:38.656000pt;}
.ls3{letter-spacing:40.320000pt;}
.lsa{letter-spacing:41.664000pt;}
.lsd{letter-spacing:45.696000pt;}
.ls9{letter-spacing:46.950400pt;}
.ls2{letter-spacing:49.280000pt;}
.ls19{letter-spacing:52.864000pt;}
.ls21{letter-spacing:56.896000pt;}
.lsf{letter-spacing:60.864000pt;}
.ls10{letter-spacing:62.336000pt;}
.ls1f{letter-spacing:63.360000pt;}
.ls20{letter-spacing:64.384000pt;}
.ls1b{letter-spacing:65.984000pt;}
.lsc{letter-spacing:151.676699pt;}
.ls1d{letter-spacing:177.344000pt;}
.ls13{letter-spacing:208.243200pt;}
.ls15{letter-spacing:209.523200pt;}
.lsb{letter-spacing:293.096940pt;}
.ws22{word-spacing:-26.688000pt;}
.ws44{word-spacing:-26.613760pt;}
.ws3{word-spacing:-24.010240pt;}
.ws31{word-spacing:-19.381760pt;}
.ws2{word-spacing:-16.778240pt;}
.ws34{word-spacing:-15.042560pt;}
.ws0{word-spacing:-14.464000pt;}
.ws26{word-spacing:-12.149760pt;}
.wsf{word-spacing:-10.992640pt;}
.ws37{word-spacing:-9.546240pt;}
.ws45{word-spacing:-8.184320pt;}
.ws2d{word-spacing:-3.952642pt;}
.ws42{word-spacing:-3.942397pt;}
.ws25{word-spacing:-3.376644pt;}
.ws11{word-spacing:-3.281922pt;}
.ws12{word-spacing:-3.281921pt;}
.ws1d{word-spacing:-3.248639pt;}
.ws8{word-spacing:-3.176965pt;}
.ws21{word-spacing:-2.969600pt;}
.ws5{word-spacing:-2.600960pt;}
.wsc{word-spacing:-2.600959pt;}
.ws7{word-spacing:-2.385920pt;}
.ws6{word-spacing:-2.240001pt;}
.ws28{word-spacing:-2.096645pt;}
.ws16{word-spacing:-2.001920pt;}
.ws35{word-spacing:-1.623041pt;}
.ws24{word-spacing:-1.536000pt;}
.ws27{word-spacing:-0.791043pt;}
.ws29{word-spacing:-0.655359pt;}
.ws43{word-spacing:-0.256000pt;}
.ws23{word-spacing:-0.192000pt;}
.ws1{word-spacing:0.000000pt;}
.ws32{word-spacing:0.960000pt;}
.ws3b{word-spacing:1.536000pt;}
.ws33{word-spacing:1.730563pt;}
.ws3e{word-spacing:1.758727pt;}
.ws36{word-spacing:2.097919pt;}
.ws41{word-spacing:2.126083pt;}
.ws1c{word-spacing:3.366400pt;}
.ws2a{word-spacing:5.583355pt;}
.ws2b{word-spacing:5.608957pt;}
.ws2c{word-spacing:6.292480pt;}
.ws2e{word-spacing:8.143355pt;}
.ws30{word-spacing:8.168960pt;}
.ws2f{word-spacing:9.448957pt;}
.wsb{word-spacing:10.101760pt;}
.ws13{word-spacing:10.798083pt;}
.ws9{word-spacing:12.661760pt;}
.ws1f{word-spacing:12.718079pt;}
.ws14{word-spacing:16.133120pt;}
.ws1e{word-spacing:16.908800pt;}
.ws17{word-spacing:18.078722pt;}
.wsd{word-spacing:24.573440pt;}
.ws10{word-spacing:26.158082pt;}
.ws18{word-spacing:28.413440pt;}
.ws40{word-spacing:36.245760pt;}
.wse{word-spacing:37.926400pt;}
.ws15{word-spacing:39.948800pt;}
.ws1b{word-spacing:41.669120pt;}
.wsa{word-spacing:42.414080pt;}
.ws3d{word-spacing:45.527041pt;}
.ws19{word-spacing:46.333440pt;}
.ws1a{word-spacing:46.574079pt;}
.ws3c{word-spacing:47.467523pt;}
.ws3f{word-spacing:47.541760pt;}
.ws39{word-spacing:75.463680pt;}
.ws38{word-spacing:76.774400pt;}
.ws3a{word-spacing:78.648320pt;}
.ws20{word-spacing:102.958083pt;}
.ws4{word-spacing:230.960644pt;}
._21{margin-left:-8.522248pt;}
._19{margin-left:-7.416314pt;}
._22{margin-left:-6.510082pt;}
._3{margin-left:-4.661761pt;}
._9{margin-left:-3.694078pt;}
._2{margin-left:-2.687998pt;}
._8{margin-left:-1.797124pt;}
._0{margin-left:-0.896000pt;}
._1{width:0.929280pt;}
._1f{width:1.917439pt;}
._7{width:2.882556pt;}
._6{width:4.366043pt;}
._4{width:5.573119pt;}
._5{width:6.780135pt;}
._1a{width:8.693765pt;}
._12{width:9.766402pt;}
._b{width:10.677764pt;}
._1b{width:12.625929pt;}
._17{width:15.505924pt;}
._16{width:16.437764pt;}
._1c{width:18.675209pt;}
._1d{width:20.561929pt;}
._1e{width:21.998085pt;}
._20{width:23.507209pt;}
._d{width:24.642568pt;}
._c{width:25.738240pt;}
._13{width:28.590080pt;}
._18{width:29.583358pt;}
._f{width:37.521924pt;}
._11{width:38.545920pt;}
._14{width:40.368648pt;}
._10{width:50.913290pt;}
._e{width:54.679040pt;}
._25{width:56.926717pt;}
._15{width:59.783690pt;}
._24{width:66.228491pt;}
._23{width:68.099848pt;}
._a{width:365.104644pt;}
.fs13{font-size:29.440000pt;}
.fsc{font-size:34.271520pt;}
.fse{font-size:37.120000pt;}
.fsb{font-size:38.363627pt;}
.fs2{font-size:39.680000pt;}
.fs3{font-size:42.240000pt;}
.fsd{font-size:42.455733pt;}
.fs8{font-size:48.640000pt;}
.fsa{font-size:51.151520pt;}
.fs1{font-size:53.760000pt;}
.fs10{font-size:56.320000pt;}
.fs0{font-size:64.000000pt;}
.fsf{font-size:66.560000pt;}
.fs7{font-size:74.240000pt;}
.fs12{font-size:77.945600pt;}
.fs5{font-size:85.760000pt;}
.fs9{font-size:96.000000pt;}
.fs4{font-size:106.240000pt;}
.fs6{font-size:117.760000pt;}
.fs11{font-size:172.800000pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:3.520000pt;}
.yf0{bottom:4.160000pt;}
.y29{bottom:7.040000pt;}
.y2{bottom:33.280000pt;}
.y12c{bottom:160.320000pt;}
.y10f{bottom:161.920000pt;}
.y11c{bottom:166.720000pt;}
.ye2{bottom:167.040000pt;}
.y7b{bottom:170.240000pt;}
.y139{bottom:177.600000pt;}
.y14f{bottom:177.920000pt;}
.y4c{bottom:178.240000pt;}
.y12b{bottom:179.520000pt;}
.y65{bottom:182.400000pt;}
.y11b{bottom:185.920000pt;}
.y168{bottom:186.880000pt;}
.y10e{bottom:187.520000pt;}
.y159{bottom:188.160000pt;}
.y7a{bottom:192.640000pt;}
.y12a{bottom:195.520000pt;}
.y64{bottom:198.400000pt;}
.y4b{bottom:201.280000pt;}
.y14e{bottom:203.520000pt;}
.y11a{bottom:205.120000pt;}
.y18{bottom:209.280000pt;}
.y158{bottom:209.920000pt;}
.yff{bottom:210.880000pt;}
.yba{bottom:213.440000pt;}
.y63{bottom:214.400000pt;}
.y129{bottom:214.720000pt;}
.y79{bottom:215.040000pt;}
.y10d{bottom:218.240000pt;}
.y4a{bottom:224.320000pt;}
.ya1{bottom:227.840000pt;}
.y119{bottom:228.160000pt;}
.ydb{bottom:229.440000pt;}
.yfe{bottom:230.080000pt;}
.y62{bottom:230.400000pt;}
.y128{bottom:230.720000pt;}
.ydd{bottom:231.360000pt;}
.y17{bottom:231.680000pt;}
.y157{bottom:232.960000pt;}
.ye4{bottom:234.880000pt;}
.yb9{bottom:235.840000pt;}
.y167{bottom:236.160000pt;}
.y78{bottom:237.440000pt;}
.ya{bottom:238.080000pt;}
.y132{bottom:242.560000pt;}
.y10c{bottom:243.840000pt;}
.ydc{bottom:244.480000pt;}
.y61{bottom:246.400000pt;}
.y49{bottom:247.360000pt;}
.y127{bottom:249.920000pt;}
.y172{bottom:250.560000pt;}
.y156{bottom:252.160000pt;}
.yfd{bottom:253.120000pt;}
.ya0{bottom:253.440000pt;}
.y16{bottom:254.080000pt;}
.y166{bottom:258.560000pt;}
.y77{bottom:259.840000pt;}
.y14d{bottom:260.160000pt;}
.y60{bottom:262.400000pt;}
.yb8{bottom:262.720000pt;}
.y9{bottom:263.680000pt;}
.yeb{bottom:264.960000pt;}
.y118{bottom:266.560000pt;}
.yd9{bottom:268.160000pt;}
.y10b{bottom:269.440000pt;}
.y126{bottom:269.760000pt;}
.y48{bottom:270.400000pt;}
.y13d{bottom:273.920000pt;}
.y155{bottom:275.200000pt;}
.yfc{bottom:276.160000pt;}
.y5f{bottom:278.400000pt;}
.y9f{bottom:279.040000pt;}
.y15{bottom:280.960000pt;}
.y76{bottom:282.240000pt;}
.y14c{bottom:282.560000pt;}
.yda{bottom:283.520000pt;}
.yb7{bottom:285.120000pt;}
.y165{bottom:285.440000pt;}
.y125{bottom:288.960000pt;}
.y117{bottom:289.600000pt;}
.yea{bottom:290.560000pt;}
.y14a{bottom:290.880000pt;}
.y47{bottom:293.440000pt;}
.y131{bottom:293.760000pt;}
.y5e{bottom:294.400000pt;}
.yaf{bottom:295.040000pt;}
.yfb{bottom:295.360000pt;}
.y13c{bottom:299.520000pt;}
.y10a{bottom:300.160000pt;}
.y143{bottom:303.040000pt;}
.y171{bottom:304.000000pt;}
.y75{bottom:304.640000pt;}
.y14b{bottom:304.960000pt;}
.yd6{bottom:307.200000pt;}
.yb6{bottom:307.520000pt;}
.y14{bottom:307.840000pt;}
.y116{bottom:308.800000pt;}
.yd8{bottom:309.120000pt;}
.y5d{bottom:310.400000pt;}
.y124{bottom:312.000000pt;}
.y3e{bottom:313.920000pt;}
.ye3{bottom:314.880000pt;}
.ye9{bottom:316.160000pt;}
.y46{bottom:316.480000pt;}
.y154{bottom:317.440000pt;}
.yfa{bottom:318.400000pt;}
.y130{bottom:319.360000pt;}
.yd7{bottom:322.240000pt;}
.yae{bottom:325.760000pt;}
.y5c{bottom:326.400000pt;}
.y13{bottom:330.240000pt;}
.y123{bottom:331.200000pt;}
.y115{bottom:331.840000pt;}
.yb5{bottom:334.400000pt;}
.y164{bottom:334.720000pt;}
.y3d{bottom:336.320000pt;}
.y153{bottom:336.640000pt;}
.yf9{bottom:337.600000pt;}
.y45{bottom:339.520000pt;}
.ye8{bottom:341.760000pt;}
.y149{bottom:342.080000pt;}
.y12f{bottom:344.960000pt;}
.y74{bottom:350.080000pt;}
.y122{bottom:351.040000pt;}
.yad{bottom:351.360000pt;}
.y9e{bottom:355.840000pt;}
.yb4{bottom:356.800000pt;}
.y8{bottom:357.120000pt;}
.y3c{bottom:358.720000pt;}
.yf8{bottom:360.640000pt;}
.y140{bottom:360.960000pt;}
.ye7{bottom:367.360000pt;}
.y170{bottom:368.320000pt;}
.y12e{bottom:370.560000pt;}
.y73{bottom:375.680000pt;}
.yd3{bottom:376.640000pt;}
.yac{bottom:376.960000pt;}
.y5b{bottom:377.920000pt;}
.y12{bottom:379.520000pt;}
.yf7{bottom:379.840000pt;}
.y3b{bottom:381.120000pt;}
.y9d{bottom:381.440000pt;}
.y44{bottom:381.760000pt;}
.y13f{bottom:383.360000pt;}
.y7{bottom:389.120000pt;}
.y138{bottom:392.640000pt;}
.y5a{bottom:397.120000pt;}
.ye6{bottom:398.720000pt;}
.y43{bottom:400.960000pt;}
.y72{bottom:401.280000pt;}
.y163{bottom:401.920000pt;}
.y3a{bottom:403.520000pt;}
.y13e{bottom:405.760000pt;}
.yab{bottom:406.080000pt;}
.y137{bottom:408.640000pt;}
.y16f{bottom:429.440000pt;}
.y42{bottom:438.400000pt;}
.y13b{bottom:442.240000pt;}
.y136{bottom:453.760000pt;}
.y2a{bottom:460.800000pt;}
.y39{bottom:463.040000pt;}
.y59{bottom:464.640000pt;}
.yd5{bottom:465.600000pt;}
.y41{bottom:467.200000pt;}
.y15a{bottom:471.360000pt;}
.y11{bottom:477.440000pt;}
.y28{bottom:478.400000pt;}
.y58{bottom:479.040000pt;}
.yd4{bottom:480.000000pt;}
.y135{bottom:482.560000pt;}
.y37{bottom:615.040000pt;}
.yf6{bottom:620.160000pt;}
.y71{bottom:626.880000pt;}
.y57{bottom:633.920000pt;}
.yaa{bottom:635.840000pt;}
.y36{bottom:637.760000pt;}
.yf5{bottom:642.560000pt;}
.y8b{bottom:646.080000pt;}
.yc9{bottom:647.360000pt;}
.y114{bottom:648.320000pt;}
.y70{bottom:649.920000pt;}
.y56{bottom:653.120000pt;}
.y35{bottom:656.960000pt;}
.ya9{bottom:658.240000pt;}
.yce{bottom:660.480000pt;}
.y8a{bottom:660.800000pt;}
.yc8{bottom:662.080000pt;}
.y109{bottom:662.720000pt;}
.ye1{bottom:664.640000pt;}
.yf4{bottom:666.240000pt;}
.y6f{bottom:669.120000pt;}
.y121{bottom:669.760000pt;}
.ycd{bottom:672.000000pt;}
.y113{bottom:673.920000pt;}
.y89{bottom:675.520000pt;}
.y34{bottom:676.160000pt;}
.yc7{bottom:676.800000pt;}
.yb3{bottom:678.720000pt;}
.ya8{bottom:680.640000pt;}
.ycc{bottom:683.840000pt;}
.y98{bottom:685.440000pt;}
.y108{bottom:685.760000pt;}
.y40{bottom:686.080000pt;}
.y16e{bottom:687.360000pt;}
.y162{bottom:687.680000pt;}
.yf3{bottom:689.920000pt;}
.y88{bottom:690.240000pt;}
.yc6{bottom:691.520000pt;}
.y6e{bottom:692.160000pt;}
.y33{bottom:695.360000pt;}
.ycb{bottom:695.680000pt;}
.y120{bottom:696.640000pt;}
.y27{bottom:696.960000pt;}
.y97{bottom:698.240000pt;}
.y55{bottom:699.200000pt;}
.y112{bottom:699.520000pt;}
.y148{bottom:700.480000pt;}
.ya7{bottom:703.040000pt;}
.y16d{bottom:703.360000pt;}
.y87{bottom:704.960000pt;}
.yc5{bottom:706.240000pt;}
.yca{bottom:707.200000pt;}
.y107{bottom:708.160000pt;}
.y161{bottom:710.080000pt;}
.y96{bottom:710.400000pt;}
.y26{bottom:711.360000pt;}
.yb2{bottom:712.000000pt;}
.y10{bottom:712.960000pt;}
.yf2{bottom:713.920000pt;}
.y32{bottom:714.560000pt;}
.y6d{bottom:716.800000pt;}
.y3f{bottom:718.080000pt;}
.y54{bottom:718.400000pt;}
.y86{bottom:719.680000pt;}
.yc4{bottom:720.640000pt;}
.y16c{bottom:722.560000pt;}
.y95{bottom:722.880000pt;}
.yd2{bottom:723.200000pt;}
.y11f{bottom:723.520000pt;}
.y25{bottom:725.760000pt;}
.yc1{bottom:727.040000pt;}
.y106{bottom:727.360000pt;}
.y92{bottom:729.280000pt;}
.y9c{bottom:729.920000pt;}
.y111{bottom:730.240000pt;}
.y31{bottom:733.760000pt;}
.y85{bottom:734.400000pt;}
.y94{bottom:735.040000pt;}
.yf1{bottom:736.320000pt;}
.y160{bottom:736.960000pt;}
.yf{bottom:739.840000pt;}
.y24{bottom:740.160000pt;}
.y53{bottom:741.440000pt;}
.y91{bottom:741.760000pt;}
.y9b{bottom:742.400000pt;}
.yc0{bottom:744.640000pt;}
.yb1{bottom:745.280000pt;}
.y6c{bottom:745.920000pt;}
.y105{bottom:746.560000pt;}
.y93{bottom:747.200000pt;}
.y84{bottom:749.120000pt;}
.ya6{bottom:752.320000pt;}
.y30{bottom:752.960000pt;}
.yc3{bottom:753.600000pt;}
.y90{bottom:754.240000pt;}
.y23{bottom:754.560000pt;}
.y9a{bottom:754.880000pt;}
.yef{bottom:755.840000pt;}
.y16b{bottom:757.760000pt;}
.ye0{bottom:758.400000pt;}
.y15f{bottom:759.360000pt;}
.yee{bottom:760.000000pt;}
.y52{bottom:760.640000pt;}
.yd1{bottom:760.960000pt;}
.ye{bottom:762.240000pt;}
.y83{bottom:763.840000pt;}
.y104{bottom:765.760000pt;}
.y8f{bottom:766.400000pt;}
.y99{bottom:767.040000pt;}
.ye5{bottom:767.360000pt;}
.y147{bottom:767.680000pt;}
.y22{bottom:768.960000pt;}
.yc2{bottom:771.840000pt;}
.y2f{bottom:772.160000pt;}
.y11e{bottom:773.440000pt;}
.y16a{bottom:773.760000pt;}
.y6{bottom:775.040000pt;}
.y134{bottom:777.920000pt;}
.y82{bottom:778.560000pt;}
.ya5{bottom:779.200000pt;}
.ybf{bottom:779.840000pt;}
.y110{bottom:781.440000pt;}
.yed{bottom:782.080000pt;}
.y21{bottom:783.360000pt;}
.y51{bottom:783.680000pt;}
.y103{bottom:785.600000pt;}
.y15e{bottom:786.240000pt;}
.y13a{bottom:788.800000pt;}
.yd{bottom:789.120000pt;}
.y5{bottom:789.760000pt;}
.y2e{bottom:791.360000pt;}
.y6b{bottom:792.640000pt;}
.y81{bottom:792.960000pt;}
.y11d{bottom:795.840000pt;}
.ybe{bottom:797.120000pt;}
.y20{bottom:797.760000pt;}
.y50{bottom:802.880000pt;}
.y102{bottom:804.800000pt;}
.ya4{bottom:805.440000pt;}
.yec{bottom:806.080000pt;}
.y133{bottom:806.720000pt;}
.y80{bottom:807.680000pt;}
.y15d{bottom:808.640000pt;}
.y2d{bottom:810.560000pt;}
.y8e{bottom:811.840000pt;}
.y1f{bottom:812.160000pt;}
.y146{bottom:812.480000pt;}
.y6a{bottom:815.040000pt;}
.yc{bottom:816.000000pt;}
.ydf{bottom:818.560000pt;}
.yd0{bottom:821.440000pt;}
.y8d{bottom:822.080000pt;}
.y7f{bottom:822.400000pt;}
.y101{bottom:824.000000pt;}
.ya3{bottom:824.640000pt;}
.y4f{bottom:825.920000pt;}
.y1e{bottom:826.560000pt;}
.y169{bottom:828.160000pt;}
.y2c{bottom:829.760000pt;}
.ybd{bottom:831.040000pt;}
.y8c{bottom:831.680000pt;}
.y145{bottom:834.880000pt;}
.y15c{bottom:835.520000pt;}
.y12d{bottom:836.800000pt;}
.yb0{bottom:837.760000pt;}
.y1d{bottom:840.960000pt;}
.y69{bottom:842.880000pt;}
.ya2{bottom:843.840000pt;}
.yde{bottom:844.160000pt;}
.y151{bottom:845.120000pt;}
.y100{bottom:847.040000pt;}
.y2b{bottom:848.960000pt;}
.ybc{bottom:850.240000pt;}
.y7e{bottom:851.840000pt;}
.y4{bottom:854.400000pt;}
.y1c{bottom:855.360000pt;}
.y144{bottom:857.280000pt;}
.y15b{bottom:857.920000pt;}
.y150{bottom:864.320000pt;}
.y7d{bottom:866.560000pt;}
.y4e{bottom:868.160000pt;}
.y68{bottom:868.480000pt;}
.y1b{bottom:869.760000pt;}
.ycf{bottom:870.720000pt;}
.ybb{bottom:873.280000pt;}
.y7c{bottom:881.280000pt;}
.y1a{bottom:893.120000pt;}
.y142{bottom:909.760000pt;}
.y3{bottom:915.520000pt;}
.y67{bottom:931.840000pt;}
.yb{bottom:938.560000pt;}
.y152{bottom:938.880000pt;}
.y141{bottom:944.960000pt;}
.y66{bottom:946.240000pt;}
.y19{bottom:947.520000pt;}
.y4d{bottom:952.640000pt;}
.y1{bottom:1078.720000pt;}
.hd{height:18.880000pt;}
.h1d{height:21.760000pt;}
.hc{height:29.120000pt;}
.h16{height:30.613125pt;}
.h23{height:30.705000pt;}
.h14{height:33.635623pt;}
.h18{height:34.835625pt;}
.hb{height:40.113750pt;}
.h4{height:41.385000pt;}
.h15{height:41.667980pt;}
.h5{height:44.055000pt;}
.h11{height:44.336250pt;}
.h24{height:45.070080pt;}
.h3{height:49.297500pt;}
.h10{height:50.730000pt;}
.h1f{height:50.822500pt;}
.h2{height:52.781250pt;}
.h13{height:53.349437pt;}
.h17{height:54.892500pt;}
.h1e{height:57.361920pt;}
.h20{height:58.708750pt;}
.ha{height:61.226250pt;}
.hf{height:68.288000pt;}
.h7{height:70.726875pt;}
.h21{height:79.171875pt;}
.h9{height:79.214080pt;}
.h1c{height:81.294825pt;}
.h6{height:87.616875pt;}
.h22{height:89.445000pt;}
.h19{height:89.901250pt;}
.h12{height:91.505920pt;}
.h8{height:97.117500pt;}
.he{height:100.125000pt;}
.h1b{height:102.432000pt;}
.h1a{height:142.509375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:2.240000pt;}
.w4{width:5.760000pt;}
.w2{width:144.640000pt;}
.w3{width:166.080000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x4b{left:158.080000pt;}
.xa{left:161.600000pt;}
.x4f{left:167.040000pt;}
.x1e{left:172.480000pt;}
.x25{left:173.440000pt;}
.x4c{left:176.640000pt;}
.x1f{left:179.200000pt;}
.x58{left:182.400000pt;}
.x18{left:185.600000pt;}
.x11{left:187.200000pt;}
.x4a{left:190.400000pt;}
.x3{left:193.600000pt;}
.xf{left:194.560000pt;}
.x53{left:197.120000pt;}
.x21{left:198.720000pt;}
.x59{left:200.320000pt;}
.x15{left:201.280000pt;}
.x19{left:203.520000pt;}
.x8{left:205.120000pt;}
.x50{left:206.080000pt;}
.x1b{left:209.600000pt;}
.x7{left:210.880000pt;}
.x23{left:214.720000pt;}
.x20{left:217.280000pt;}
.x1a{left:218.880000pt;}
.x45{left:223.680000pt;}
.x1c{left:224.640000pt;}
.x4{left:225.600000pt;}
.x51{left:227.520000pt;}
.x5{left:232.960000pt;}
.x48{left:235.520000pt;}
.xe{left:236.480000pt;}
.x22{left:238.080000pt;}
.x16{left:240.960000pt;}
.x29{left:242.880000pt;}
.x1d{left:245.760000pt;}
.x2a{left:248.960000pt;}
.x34{left:257.600000pt;}
.x49{left:261.440000pt;}
.x3a{left:263.040000pt;}
.x3b{left:266.560000pt;}
.x35{left:269.760000pt;}
.x47{left:276.160000pt;}
.x46{left:278.080000pt;}
.x54{left:282.240000pt;}
.x12{left:288.320000pt;}
.x55{left:292.800000pt;}
.x52{left:295.360000pt;}
.x9{left:297.920000pt;}
.xd{left:301.120000pt;}
.x56{left:306.880000pt;}
.x6{left:310.720000pt;}
.x57{left:312.320000pt;}
.xb{left:313.920000pt;}
.x17{left:315.520000pt;}
.x3e{left:321.600000pt;}
.x10{left:324.800000pt;}
.x3f{left:325.760000pt;}
.x3c{left:333.440000pt;}
.x40{left:334.720000pt;}
.x3d{left:342.400000pt;}
.x24{left:345.600000pt;}
.x2b{left:359.040000pt;}
.x2f{left:368.000000pt;}
.x2d{left:368.960000pt;}
.x2c{left:372.800000pt;}
.x26{left:376.320000pt;}
.x27{left:377.600000pt;}
.x2e{left:381.760000pt;}
.x28{left:385.280000pt;}
.x38{left:391.360000pt;}
.x39{left:395.840000pt;}
.x13{left:405.440000pt;}
.x37{left:408.640000pt;}
.x14{left:432.320000pt;}
.x42{left:445.760000pt;}
.x43{left:450.240000pt;}
.x44{left:460.160000pt;}
.xc{left:466.240000pt;}
.x41{left:469.120000pt;}
.x33{left:476.160000pt;}
.x31{left:481.920000pt;}
.x30{left:489.920000pt;}
.x32{left:499.840000pt;}
.x4d{left:591.360000pt;}
.x4e{left:594.880000pt;}
.x1{left:683.840000pt;}
.x36{left:744.000000pt;}
.x2{left:752.000000pt;}
}




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