
    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_d05e45887f4c2594a4209267.woff')format("woff");}.ff1{font-family:ff1;line-height:0.753418;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_570a94d55b5a96503c4be219.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_faa9c94f7475db3317758edf.woff')format("woff");}.ff3{font-family:ff3;line-height:1.060059;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_760b1759543e45652f44c0a0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933105;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_beff3d630886c27f9116520c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.060059;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_7111d1d24b4b0799916a97d6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.753906;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_31b18933a12a1f161d1f27b0.woff')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_26850c8ff19fbf3502df2a0b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.835000;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_6cba2b8ec8cf4076172c59f4.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_f37d719bd6172c17a8e57ff1.woff')format("woff");}.ffa{font-family:ffa;line-height:0.976562;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_881c84a1874dcc1a80f46322.woff')format("woff");}.ffb{font-family:ffb;line-height:1.284180;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_9f89d92525555cbe5fc061bc.woff')format("woff");}.ffc{font-family:ffc;line-height:0.968262;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_de3fb8e1acaf82015058120b.woff')format("woff");}.ffd{font-family:ffd;line-height:0.694336;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_f519d19b0a34208a3203a059.woff')format("woff");}.ffe{font-family:ffe;line-height:0.892578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_3ad9ee1ea168ed2ebf85d0dd.woff')format("woff");}.fff{font-family:fff;line-height:1.035156;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:ff10;src:url('chunks/assets/font_ff3b78bcdf4390ca5861f950.woff')format("woff");}.ff10{font-family:ff10;line-height:0.942871;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:ff11;src:url('chunks/assets/font_cbbd6aec3afd9ee78ce84ae0.woff')format("woff");}.ff11{font-family:ff11;line-height:1.402354;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:ff12;src:url('chunks/assets/font_35fdd57d0bad0d416a41fc46.woff')format("woff");}.ff12{font-family:ff12;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-33.120000px;}
.v4{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:27.360000px;}
.v1{vertical-align:33.120000px;}
.lse{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.414600px;}
.ls10{letter-spacing:-0.305400px;}
.ls7{letter-spacing:-0.190200px;}
.ls19{letter-spacing:-0.152400px;}
.ls9{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.114000px;}
.ls1b{letter-spacing:-0.109200px;}
.lsc{letter-spacing:-0.106800px;}
.lsa{letter-spacing:-0.008640px;}
.ls6{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.017280px;}
.ls2{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.078000px;}
.ls16{letter-spacing:0.080400px;}
.lsd{letter-spacing:0.152400px;}
.ls4{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.187200px;}
.ls14{letter-spacing:0.262080px;}
.ls13{letter-spacing:0.305280px;}
.ls15{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.414600px;}
.ls3{letter-spacing:0.576000px;}
.ls1a{letter-spacing:26.225280px;}
.ls12{letter-spacing:39.881280px;}
.ls17{letter-spacing:59.321280px;}
.ls18{letter-spacing:59.345280px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws12{word-spacing:-66.240000px;}
.ws13{word-spacing:-24.176880px;}
.ws0{word-spacing:-24.062880px;}
.ws7{word-spacing:-19.457280px;}
.ws1{word-spacing:-19.010880px;}
.ws3{word-spacing:-18.532800px;}
.ws2{word-spacing:-18.342600px;}
.ws9{word-spacing:-17.280000px;}
.wsf{word-spacing:-16.974600px;}
.ws11{word-spacing:-16.865400px;}
.wsd{word-spacing:-16.712400px;}
.wsa{word-spacing:-16.560000px;}
.ws15{word-spacing:-16.450800px;}
.ws14{word-spacing:-16.407600px;}
.wse{word-spacing:-16.254600px;}
.ws5{word-spacing:-15.912000px;}
.ws6{word-spacing:-15.696000px;}
.wsc{word-spacing:-14.833200px;}
.ws4{word-spacing:-14.650800px;}
.ws8{word-spacing:-12.060000px;}
.ws10{word-spacing:-10.440000px;}
.wsb{word-spacing:0.000000px;}
._16{margin-left:-2.119680px;}
._0{margin-left:-1.095120px;}
._1{width:1.044000px;}
._4{width:2.583360px;}
._3b{width:3.678480px;}
._3{width:4.769280px;}
._8{width:6.094080px;}
._7{width:8.081280px;}
._9{width:9.308880px;}
._a{width:11.260800px;}
._17{width:13.140000px;}
._2{width:14.572800px;}
._6{width:17.622240px;}
._5{width:18.812160px;}
._e{width:20.401920px;}
._c{width:22.322880px;}
._b{width:23.682960px;}
._10{width:25.568640px;}
._11{width:26.632800px;}
._14{width:28.284480px;}
._d{width:29.410560px;}
._21{width:30.602880px;}
._22{width:31.988640px;}
._1d{width:33.665760px;}
._20{width:35.407440px;}
._1f{width:36.763200px;}
._1e{width:38.286720px;}
._25{width:40.187280px;}
._12{width:41.415840px;}
._3d{width:42.460080px;}
._2a{width:44.115840px;}
._44{width:45.374400px;}
._54{width:46.434240px;}
._3f{width:47.560320px;}
._5b{width:48.589200px;}
._2d{width:49.680000px;}
._2e{width:51.534720px;}
._2f{width:52.660800px;}
._15{width:54.714240px;}
._56{width:55.796400px;}
._2b{width:56.833920px;}
._2c{width:58.357440px;}
._33{width:59.549760px;}
._39{width:60.877440px;}
._35{width:61.950240px;}
._30{width:63.259200px;}
._51{width:64.489200px;}
._3e{width:65.808000px;}
._26{width:67.101120px;}
._13{width:69.132960px;}
._40{width:70.611840px;}
._46{width:72.797760px;}
._29{width:74.061120px;}
._28{width:75.182400px;}
._23{width:76.242240px;}
._45{width:77.500800px;}
._24{width:78.693120px;}
._18{width:80.150400px;}
._34{width:82.137600px;}
._67{width:83.197440px;}
._48{width:84.720960px;}
._4e{width:86.525280px;}
._36{width:87.585120px;}
._65{width:88.629120px;}
._41{width:89.887680px;}
._4a{width:91.152720px;}
._49{width:92.685600px;}
._55{width:93.913200px;}
._62{width:95.385600px;}
._47{width:96.644160px;}
._4f{width:98.631360px;}
._58{width:100.087680px;}
._27{width:102.091680px;}
._3c{width:103.798080px;}
._5c{width:107.176320px;}
._66{width:108.185760px;}
._4d{width:113.336640px;}
._4c{width:114.528960px;}
._31{width:118.039680px;}
._32{width:119.298240px;}
._52{width:120.424320px;}
._3a{width:125.127360px;}
._57{width:127.909440px;}
._53{width:135.145440px;}
._19{width:137.381760px;}
._50{width:139.129920px;}
._5e{width:140.321520px;}
._43{width:141.554880px;}
._38{width:142.961760px;}
._37{width:144.087840px;}
._42{width:148.412880px;}
._f{width:151.822080px;}
._1c{width:152.893440px;}
._60{width:154.390320px;}
._59{width:165.268800px;}
._5a{width:167.388480px;}
._1a{width:189.617520px;}
._1b{width:197.647200px;}
._5f{width:198.918720px;}
._5d{width:210.113280px;}
._63{width:220.314240px;}
._64{width:221.572800px;}
._61{width:268.012800px;}
._4b{width:306.230400px;}
.fc2{color:rgb(192,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:18.000000px;}
.fs5{font-size:23.760000px;}
.fsa{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fsc{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs8{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs7{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fs9{font-size:92.880000px;}
.y0{bottom:0.000000px;}
.yc{bottom:0.900000px;}
.y1b{bottom:1.260000px;}
.y11{bottom:1.800000px;}
.y3{bottom:3.420000px;}
.y140{bottom:3.585000px;}
.y7c{bottom:3.600000px;}
.yfa{bottom:3.630000px;}
.y10e{bottom:3.765000px;}
.yd0{bottom:3.780000px;}
.y13e{bottom:3.945000px;}
.y82{bottom:3.960000px;}
.y110{bottom:3.990000px;}
.yd7{bottom:4.125000px;}
.y80{bottom:4.140000px;}
.yb4{bottom:6.300000px;}
.y8{bottom:6.660000px;}
.ya{bottom:7.380000px;}
.yf{bottom:7.560000px;}
.y6{bottom:8.460000px;}
.ye6{bottom:13.140000px;}
.yce{bottom:13.320000px;}
.yd8{bottom:13.485000px;}
.yd4{bottom:13.500000px;}
.yb2{bottom:15.840000px;}
.yb7{bottom:16.020000px;}
.ybc{bottom:16.065000px;}
.ycf{bottom:22.680000px;}
.y86{bottom:22.860000px;}
.yd6{bottom:23.025000px;}
.yd3{bottom:23.040000px;}
.yb0{bottom:25.200000px;}
.yb8{bottom:25.560000px;}
.ybd{bottom:25.605000px;}
.y18{bottom:26.460000px;}
.y5{bottom:33.120000px;}
.ye{bottom:33.300000px;}
.yb1{bottom:34.740000px;}
.yb6{bottom:35.100000px;}
.ybb{bottom:35.145000px;}
.y8a{bottom:41.940000px;}
.y7e{bottom:43.380000px;}
.yb3{bottom:44.280000px;}
.y17{bottom:47.880000px;}
.y1{bottom:51.480000px;}
.y16{bottom:70.605000px;}
.y3f{bottom:75.240000px;}
.y15{bottom:101.565000px;}
.yae{bottom:113.760000px;}
.y114{bottom:114.120000px;}
.ye4{bottom:118.080000px;}
.y14d{bottom:122.400000px;}
.y3b{bottom:124.380000px;}
.y14{bottom:125.505000px;}
.y113{bottom:129.780000px;}
.y74{bottom:133.740000px;}
.y6a{bottom:134.100000px;}
.yad{bottom:138.420000px;}
.y13{bottom:140.805000px;}
.ye3{bottom:143.100000px;}
.y12a{bottom:145.080000px;}
.y14b{bottom:147.060000px;}
.y112{bottom:148.680000px;}
.y3a{bottom:149.040000px;}
.y79{bottom:158.400000px;}
.y69{bottom:158.760000px;}
.yac{bottom:163.080000px;}
.ye2{bottom:167.760000px;}
.y129{bottom:169.740000px;}
.y14a{bottom:171.720000px;}
.y39{bottom:173.700000px;}
.y78{bottom:183.060000px;}
.y68{bottom:183.420000px;}
.y111{bottom:186.660000px;}
.yab{bottom:187.740000px;}
.ye1{bottom:192.420000px;}
.y128{bottom:194.400000px;}
.y149{bottom:196.380000px;}
.y38{bottom:198.360000px;}
.y10f{bottom:205.740000px;}
.y77{bottom:207.750000px;}
.y67{bottom:208.110000px;}
.yaa{bottom:212.430000px;}
.ye0{bottom:217.110000px;}
.y127{bottom:219.090000px;}
.y148{bottom:221.070000px;}
.y37{bottom:223.050000px;}
.y10d{bottom:225.405000px;}
.y66{bottom:232.770000px;}
.ya9{bottom:237.090000px;}
.ydf{bottom:241.770000px;}
.y126{bottom:243.750000px;}
.y147{bottom:245.730000px;}
.y36{bottom:247.710000px;}
.y10c{bottom:254.550000px;}
.y6d{bottom:257.070000px;}
.y65{bottom:257.430000px;}
.ya8{bottom:261.750000px;}
.yde{bottom:266.430000px;}
.y125{bottom:268.410000px;}
.y146{bottom:270.390000px;}
.y35{bottom:272.550000px;}
.y10b{bottom:279.570000px;}
.y6c{bottom:281.730000px;}
.y64{bottom:282.090000px;}
.ya7{bottom:286.410000px;}
.ydd{bottom:291.090000px;}
.y124{bottom:293.070000px;}
.y145{bottom:294.690000px;}
.y14c{bottom:295.050000px;}
.y34{bottom:297.210000px;}
.y10a{bottom:304.230000px;}
.y63{bottom:306.750000px;}
.ya6{bottom:311.070000px;}
.ydc{bottom:315.750000px;}
.y123{bottom:317.730000px;}
.y144{bottom:319.710000px;}
.y33{bottom:321.870000px;}
.y109{bottom:328.890000px;}
.y12c{bottom:331.050000px;}
.y62{bottom:331.410000px;}
.y143{bottom:335.385000px;}
.ya5{bottom:335.730000px;}
.ydb{bottom:340.410000px;}
.y122{bottom:342.570000px;}
.y32{bottom:346.530000px;}
.y108{bottom:353.550000px;}
.y142{bottom:354.465000px;}
.y12d{bottom:355.710000px;}
.y61{bottom:356.070000px;}
.ya4{bottom:360.390000px;}
.yda{bottom:365.070000px;}
.y121{bottom:367.230000px;}
.y31{bottom:370.830000px;}
.y3c{bottom:371.190000px;}
.y141{bottom:373.365000px;}
.y107{bottom:378.210000px;}
.y60{bottom:380.730000px;}
.ya3{bottom:385.050000px;}
.yd9{bottom:389.730000px;}
.y120{bottom:391.890000px;}
.y13f{bottom:392.445000px;}
.y30{bottom:395.850000px;}
.y106{bottom:402.870000px;}
.y5f{bottom:405.390000px;}
.yd5{bottom:405.405000px;}
.ya2{bottom:409.710000px;}
.y13d{bottom:411.345000px;}
.y11f{bottom:416.550000px;}
.y2f{bottom:419.430000px;}
.y105{bottom:427.530000px;}
.y5e{bottom:430.050000px;}
.y13c{bottom:430.245000px;}
.ya1{bottom:434.370000px;}
.y11e{bottom:441.255000px;}
.y2e{bottom:441.435000px;}
.yd2{bottom:443.415000px;}
.y13b{bottom:449.355000px;}
.y104{bottom:452.235000px;}
.y5d{bottom:454.755000px;}
.ya0{bottom:459.075000px;}
.y11d{bottom:465.915000px;}
.y2d{bottom:468.075000px;}
.y13a{bottom:468.255000px;}
.y103{bottom:476.895000px;}
.y5c{bottom:479.595000px;}
.yd1{bottom:481.395000px;}
.y9f{bottom:483.735000px;}
.y139{bottom:487.335000px;}
.y2c{bottom:489.855000px;}
.y11c{bottom:490.575000px;}
.ycd{bottom:501.015000px;}
.y102{bottom:501.555000px;}
.y71{bottom:503.895000px;}
.y5b{bottom:504.255000px;}
.y138{bottom:506.235000px;}
.y9e{bottom:508.395000px;}
.y2b{bottom:511.635000px;}
.y11b{bottom:515.235000px;}
.y137{bottom:525.135000px;}
.y101{bottom:526.215000px;}
.y70{bottom:528.555000px;}
.y5a{bottom:528.915000px;}
.y9d{bottom:533.055000px;}
.y2a{bottom:533.415000px;}
.y11a{bottom:539.895000px;}
.y136{bottom:544.215000px;}
.ycc{bottom:549.075000px;}
.y100{bottom:550.875000px;}
.y59{bottom:553.575000px;}
.y29{bottom:555.375000px;}
.y9c{bottom:557.715000px;}
.y135{bottom:563.115000px;}
.y119{bottom:564.555000px;}
.ycb{bottom:574.095000px;}
.yff{bottom:575.535000px;}
.y28{bottom:577.155000px;}
.y58{bottom:578.235000px;}
.y134{bottom:582.195000px;}
.y9b{bottom:582.375000px;}
.y118{bottom:588.855000px;}
.y12b{bottom:589.215000px;}
.yca{bottom:598.755000px;}
.y27{bottom:598.935000px;}
.yfe{bottom:600.195000px;}
.y133{bottom:601.095000px;}
.y57{bottom:602.895000px;}
.y9a{bottom:607.035000px;}
.y117{bottom:613.515000px;}
.yfd{bottom:615.855000px;}
.y26{bottom:620.715000px;}
.yc9{bottom:623.415000px;}
.y6b{bottom:627.195000px;}
.y56{bottom:627.555000px;}
.y99{bottom:631.695000px;}
.y116{bottom:634.575000px;}
.yfc{bottom:634.935000px;}
.y132{bottom:639.075000px;}
.y25{bottom:642.675000px;}
.yc8{bottom:648.255000px;}
.y73{bottom:651.855000px;}
.y55{bottom:652.215000px;}
.yfb{bottom:653.835000px;}
.y98{bottom:656.355000px;}
.y131{bottom:657.975000px;}
.y24{bottom:664.455000px;}
.yc7{bottom:672.915000px;}
.yf9{bottom:673.635000px;}
.y54{bottom:676.905000px;}
.y130{bottom:677.085000px;}
.y97{bottom:681.045000px;}
.y23{bottom:686.265000px;}
.y12f{bottom:696.705000px;}
.yc6{bottom:697.605000px;}
.y53{bottom:701.565000px;}
.yf8{bottom:702.645000px;}
.y96{bottom:705.705000px;}
.y22{bottom:708.045000px;}
.yc5{bottom:722.265000px;}
.y12e{bottom:725.865000px;}
.y52{bottom:726.225000px;}
.yf7{bottom:727.665000px;}
.y21{bottom:729.825000px;}
.y95{bottom:730.365000px;}
.yc4{bottom:746.925000px;}
.y51{bottom:750.885000px;}
.y20{bottom:751.785000px;}
.yf6{bottom:752.325000px;}
.y94{bottom:755.025000px;}
.y8f{bottom:770.865000px;}
.yc3{bottom:771.585000px;}
.y1f{bottom:773.565000px;}
.y50{bottom:775.545000px;}
.yf5{bottom:776.985000px;}
.y93{bottom:789.765000px;}
.y1e{bottom:795.345000px;}
.yc2{bottom:796.245000px;}
.y4f{bottom:800.205000px;}
.yf4{bottom:801.645000px;}
.y92{bottom:808.665000px;}
.y1d{bottom:816.765000px;}
.yc1{bottom:820.905000px;}
.y4e{bottom:824.865000px;}
.yf3{bottom:826.485000px;}
.y91{bottom:827.745000px;}
.y1c{bottom:836.205000px;}
.y1a{bottom:844.845000px;}
.yc0{bottom:845.565000px;}
.y90{bottom:846.645000px;}
.y4d{bottom:849.525000px;}
.yf2{bottom:851.145000px;}
.y12{bottom:852.045000px;}
.y19{bottom:856.186294px;}
.y89{bottom:865.725000px;}
.ybf{bottom:870.225000px;}
.y115{bottom:873.825000px;}
.y4c{bottom:874.185000px;}
.yf1{bottom:875.805000px;}
.y8e{bottom:884.625000px;}
.ybe{bottom:894.885000px;}
.y76{bottom:898.485000px;}
.y4b{bottom:898.845000px;}
.yf0{bottom:900.465000px;}
.y8d{bottom:903.525000px;}
.yba{bottom:910.545000px;}
.y8c{bottom:922.650000px;}
.y6f{bottom:923.190000px;}
.y4a{bottom:923.550000px;}
.yef{bottom:925.170000px;}
.y8b{bottom:941.550000px;}
.y6e{bottom:947.850000px;}
.y49{bottom:948.210000px;}
.yee{bottom:949.830000px;}
.y85{bottom:960.630000px;}
.y72{bottom:972.510000px;}
.yb9{bottom:972.690000px;}
.y48{bottom:972.870000px;}
.yed{bottom:974.490000px;}
.y88{bottom:979.530000px;}
.y47{bottom:997.530000px;}
.y87{bottom:998.430000px;}
.yec{bottom:999.150000px;}
.y7d{bottom:1017.510000px;}
.y10{bottom:1018.590000px;}
.y46{bottom:1022.190000px;}
.yeb{bottom:1023.810000px;}
.yd{bottom:1025.070000px;}
.yb5{bottom:1034.790000px;}
.y84{bottom:1037.130000px;}
.y45{bottom:1046.850000px;}
.yea{bottom:1048.470000px;}
.y83{bottom:1056.930000px;}
.ye9{bottom:1064.130000px;}
.y44{bottom:1071.510000px;}
.yb{bottom:1076.550000px;}
.y81{bottom:1076.730000px;}
.y9{bottom:1081.950000px;}
.ye8{bottom:1083.030000px;}
.y43{bottom:1096.170000px;}
.y7f{bottom:1096.350000px;}
.yaf{bottom:1097.610000px;}
.ye7{bottom:1102.110000px;}
.y2{bottom:1106.250000px;}
.y7b{bottom:1116.150000px;}
.y42{bottom:1120.830000px;}
.ye5{bottom:1121.730000px;}
.y7{bottom:1128.570000px;}
.y7a{bottom:1145.130000px;}
.y41{bottom:1145.520000px;}
.y4{bottom:1156.860000px;}
.y75{bottom:1169.820000px;}
.y40{bottom:1170.180000px;}
.y3e{bottom:1187.280000px;}
.y3d{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h10{height:6.465000px;}
.h18{height:7.200000px;}
.hd{height:13.324219px;}
.h19{height:17.587969px;}
.h23{height:18.885000px;}
.h35{height:18.898500px;}
.h29{height:18.900000px;}
.h32{height:18.930000px;}
.h33{height:18.936000px;}
.h11{height:19.008000px;}
.h25{height:19.065000px;}
.h34{height:19.078500px;}
.h2b{height:19.080000px;}
.h37{height:19.101000px;}
.h28{height:19.102500px;}
.h36{height:19.110000px;}
.h8{height:22.305000px;}
.ha{height:24.285000px;}
.h7{height:28.290000px;}
.h1f{height:30.480469px;}
.h1a{height:36.861328px;}
.h2f{height:37.965000px;}
.h30{height:38.001000px;}
.h31{height:38.010000px;}
.h21{height:47.448281px;}
.h14{height:48.616875px;}
.h1c{height:50.391562px;}
.he{height:51.465000px;}
.h5{height:52.920000px;}
.h9{height:56.084062px;}
.h26{height:56.865000px;}
.hb{height:60.960938px;}
.h2d{height:62.085000px;}
.h2e{height:62.122500px;}
.h2c{height:62.130000px;}
.h2{height:62.275078px;}
.h16{height:63.492188px;}
.h1b{height:64.978594px;}
.h1d{height:65.010937px;}
.h20{height:65.499609px;}
.h1e{height:66.757500px;}
.h15{height:67.803750px;}
.h22{height:68.084282px;}
.h6{height:71.324297px;}
.h17{height:72.562500px;}
.h4{height:76.317188px;}
.hf{height:78.367500px;}
.h13{height:81.736875px;}
.h2a{height:94.860000px;}
.h27{height:94.882500px;}
.h24{height:97.905000px;}
.h3{height:103.530000px;}
.h12{height:166.530000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1d{width:56.329500px;}
.wf{width:107.841000px;}
.w4{width:108.030000px;}
.w2{width:108.034500px;}
.wb{width:112.125000px;}
.wd{width:117.000000px;}
.w12{width:122.940000px;}
.w15{width:127.476000px;}
.we{width:130.176000px;}
.w8{width:138.409500px;}
.wa{width:147.261000px;}
.w19{width:154.785000px;}
.w17{width:155.370000px;}
.w10{width:155.505000px;}
.wc{width:166.519500px;}
.w1a{width:168.319500px;}
.w16{width:180.915000px;}
.w11{width:185.959500px;}
.w13{width:212.655000px;}
.w14{width:243.019500px;}
.w1b{width:252.570000px;}
.w1c{width:256.155000px;}
.w5{width:276.720000px;}
.w6{width:276.855000px;}
.w9{width:279.240000px;}
.w18{width:522.270000px;}
.w3{width:553.590000px;}
.w1e{width:620.730000px;}
.w7{width:671.130000px;}
.w1f{width:677.070000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:8.089500px;}
.x5f{left:9.709500px;}
.x5{left:10.965000px;}
.x13{left:12.229500px;}
.x49{left:13.320000px;}
.x52{left:14.745000px;}
.x3e{left:16.185000px;}
.x38{left:17.640000px;}
.x3f{left:19.425000px;}
.x10{left:20.685000px;}
.x17{left:22.849500px;}
.x46{left:25.909500px;}
.x3b{left:27.180000px;}
.x25{left:28.980000px;}
.x3c{left:30.420000px;}
.xb{left:34.185000px;}
.x44{left:35.445000px;}
.x21{left:36.709500px;}
.x41{left:37.789500px;}
.x39{left:38.880000px;}
.x42{left:39.960000px;}
.x29{left:41.580000px;}
.x4c{left:42.840000px;}
.x2b{left:44.809500px;}
.x43{left:46.440000px;}
.x5b{left:47.869500px;}
.xe{left:49.714500px;}
.x9{left:53.265000px;}
.x26{left:55.423500px;}
.x45{left:59.040000px;}
.x2{left:60.841500px;}
.x28{left:65.325000px;}
.x31{left:66.810000px;}
.x59{left:67.860000px;}
.x2e{left:69.465000px;}
.x32{left:71.490000px;}
.x33{left:73.650000px;}
.x4b{left:77.580000px;}
.xc{left:81.525000px;}
.x36{left:83.143500px;}
.xf{left:85.125000px;}
.x4d{left:87.690000px;}
.x54{left:90.345000px;}
.x48{left:92.863500px;}
.xd{left:95.925000px;}
.x20{left:99.946500px;}
.x5c{left:101.190000px;}
.x30{left:102.450000px;}
.x2f{left:103.530000px;}
.x34{left:106.410000px;}
.x8{left:107.850000px;}
.x3{left:110.008500px;}
.x11{left:111.106500px;}
.x2d{left:115.230000px;}
.x27{left:118.830000px;}
.x4f{left:121.483500px;}
.x2c{left:122.610000px;}
.x2a{left:126.570000px;}
.x1e{left:135.036000px;}
.x62{left:150.510000px;}
.x60{left:156.285000px;}
.x1b{left:162.030000px;}
.x4{left:168.885000px;}
.x16{left:178.588500px;}
.x15{left:187.948500px;}
.x6{left:209.010000px;}
.x19{left:216.388500px;}
.x22{left:238.365000px;}
.x4e{left:243.390000px;}
.x56{left:261.028500px;}
.x37{left:265.575000px;}
.x58{left:267.375000px;}
.x61{left:270.930000px;}
.x1f{left:285.915000px;}
.x35{left:295.455000px;}
.x47{left:305.175000px;}
.x18{left:317.728500px;}
.x14{left:324.748500px;}
.x12{left:335.578500px;}
.x50{left:342.075000px;}
.x5d{left:350.895000px;}
.x55{left:358.275000px;}
.x57{left:380.775000px;}
.x3a{left:382.575000px;}
.x4a{left:407.955000px;}
.xa{left:445.620000px;}
.x51{left:469.560000px;}
.x1c{left:473.505000px;}
.x64{left:484.125000px;}
.x3d{left:512.760000px;}
.x63{left:515.985000px;}
.x23{left:517.620000px;}
.x5a{left:519.960000px;}
.x1d{left:527.505000px;}
.x40{left:620.610000px;}
.x53{left:650.490000px;}
.x24{left:664.890000px;}
.x7{left:722.490000px;}
.x5e{left:732.930000px;}
.x1{left:748.950000px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v4{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:24.320000pt;}
.v1{vertical-align:29.440000pt;}
.lse{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.368533pt;}
.ls10{letter-spacing:-0.271467pt;}
.ls7{letter-spacing:-0.169067pt;}
.ls19{letter-spacing:-0.135467pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.101333pt;}
.ls1b{letter-spacing:-0.097067pt;}
.lsc{letter-spacing:-0.094933pt;}
.lsa{letter-spacing:-0.007680pt;}
.ls6{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.015360pt;}
.ls2{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.069333pt;}
.ls16{letter-spacing:0.071467pt;}
.lsd{letter-spacing:0.135467pt;}
.ls4{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.166400pt;}
.ls14{letter-spacing:0.232960pt;}
.ls13{letter-spacing:0.271360pt;}
.ls15{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.368533pt;}
.ls3{letter-spacing:0.512000pt;}
.ls1a{letter-spacing:23.311360pt;}
.ls12{letter-spacing:35.450027pt;}
.ls17{letter-spacing:52.730027pt;}
.ls18{letter-spacing:52.751360pt;}
.ws12{word-spacing:-58.880000pt;}
.ws13{word-spacing:-21.490560pt;}
.ws0{word-spacing:-21.389227pt;}
.ws7{word-spacing:-17.295360pt;}
.ws1{word-spacing:-16.898560pt;}
.ws3{word-spacing:-16.473600pt;}
.ws2{word-spacing:-16.304533pt;}
.ws9{word-spacing:-15.360000pt;}
.wsf{word-spacing:-15.088533pt;}
.ws11{word-spacing:-14.991467pt;}
.wsd{word-spacing:-14.855467pt;}
.wsa{word-spacing:-14.720000pt;}
.ws15{word-spacing:-14.622933pt;}
.ws14{word-spacing:-14.584533pt;}
.wse{word-spacing:-14.448533pt;}
.ws5{word-spacing:-14.144000pt;}
.ws6{word-spacing:-13.952000pt;}
.wsc{word-spacing:-13.185067pt;}
.ws4{word-spacing:-13.022933pt;}
.ws8{word-spacing:-10.720000pt;}
.ws10{word-spacing:-9.280000pt;}
.wsb{word-spacing:0.000000pt;}
._16{margin-left:-1.884160pt;}
._0{margin-left:-0.973440pt;}
._1{width:0.928000pt;}
._4{width:2.296320pt;}
._3b{width:3.269760pt;}
._3{width:4.239360pt;}
._8{width:5.416960pt;}
._7{width:7.183360pt;}
._9{width:8.274560pt;}
._a{width:10.009600pt;}
._17{width:11.680000pt;}
._2{width:12.953600pt;}
._6{width:15.664213pt;}
._5{width:16.721920pt;}
._e{width:18.135040pt;}
._c{width:19.842560pt;}
._b{width:21.051520pt;}
._10{width:22.727680pt;}
._11{width:23.673600pt;}
._14{width:25.141760pt;}
._d{width:26.142720pt;}
._21{width:27.202560pt;}
._22{width:28.434347pt;}
._1d{width:29.925120pt;}
._20{width:31.473280pt;}
._1f{width:32.678400pt;}
._1e{width:34.032640pt;}
._25{width:35.722027pt;}
._12{width:36.814080pt;}
._3d{width:37.742293pt;}
._2a{width:39.214080pt;}
._44{width:40.332800pt;}
._54{width:41.274880pt;}
._3f{width:42.275840pt;}
._5b{width:43.190400pt;}
._2d{width:44.160000pt;}
._2e{width:45.808640pt;}
._2f{width:46.809600pt;}
._15{width:48.634880pt;}
._56{width:49.596800pt;}
._2b{width:50.519040pt;}
._2c{width:51.873280pt;}
._33{width:52.933120pt;}
._39{width:54.113280pt;}
._35{width:55.066880pt;}
._30{width:56.230400pt;}
._51{width:57.323733pt;}
._3e{width:58.496000pt;}
._26{width:59.645440pt;}
._13{width:61.451520pt;}
._40{width:62.766080pt;}
._46{width:64.709120pt;}
._29{width:65.832107pt;}
._28{width:66.828800pt;}
._23{width:67.770880pt;}
._45{width:68.889600pt;}
._24{width:69.949440pt;}
._18{width:71.244800pt;}
._34{width:73.011200pt;}
._67{width:73.953280pt;}
._48{width:75.307520pt;}
._4e{width:76.911360pt;}
._36{width:77.853440pt;}
._65{width:78.781440pt;}
._41{width:79.900160pt;}
._4a{width:81.024640pt;}
._49{width:82.387200pt;}
._55{width:83.478400pt;}
._62{width:84.787200pt;}
._47{width:85.905920pt;}
._4f{width:87.672320pt;}
._58{width:88.966827pt;}
._27{width:90.748160pt;}
._3c{width:92.264960pt;}
._5c{width:95.267840pt;}
._66{width:96.165120pt;}
._4d{width:100.743680pt;}
._4c{width:101.803520pt;}
._31{width:104.924160pt;}
._32{width:106.042880pt;}
._52{width:107.043840pt;}
._3a{width:111.224320pt;}
._57{width:113.697280pt;}
._53{width:120.129280pt;}
._19{width:122.117120pt;}
._50{width:123.671040pt;}
._5e{width:124.730240pt;}
._43{width:125.826560pt;}
._38{width:127.077120pt;}
._37{width:128.078080pt;}
._42{width:131.922560pt;}
._f{width:134.952960pt;}
._1c{width:135.905280pt;}
._60{width:137.235840pt;}
._59{width:146.905600pt;}
._5a{width:148.789760pt;}
._1a{width:168.548907pt;}
._1b{width:175.686400pt;}
._5f{width:176.816640pt;}
._5d{width:186.767360pt;}
._63{width:195.834880pt;}
._64{width:196.953600pt;}
._61{width:238.233600pt;}
._4b{width:272.204800pt;}
.fs4{font-size:16.000000pt;}
.fs5{font-size:21.120000pt;}
.fsa{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fsc{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs8{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs7{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fs9{font-size:82.560000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:0.800000pt;}
.y1b{bottom:1.120000pt;}
.y11{bottom:1.600000pt;}
.y3{bottom:3.040000pt;}
.y140{bottom:3.186667pt;}
.y7c{bottom:3.200000pt;}
.yfa{bottom:3.226667pt;}
.y10e{bottom:3.346667pt;}
.yd0{bottom:3.360000pt;}
.y13e{bottom:3.506667pt;}
.y82{bottom:3.520000pt;}
.y110{bottom:3.546667pt;}
.yd7{bottom:3.666667pt;}
.y80{bottom:3.680000pt;}
.yb4{bottom:5.600000pt;}
.y8{bottom:5.920000pt;}
.ya{bottom:6.560000pt;}
.yf{bottom:6.720000pt;}
.y6{bottom:7.520000pt;}
.ye6{bottom:11.680000pt;}
.yce{bottom:11.840000pt;}
.yd8{bottom:11.986667pt;}
.yd4{bottom:12.000000pt;}
.yb2{bottom:14.080000pt;}
.yb7{bottom:14.240000pt;}
.ybc{bottom:14.280000pt;}
.ycf{bottom:20.160000pt;}
.y86{bottom:20.320000pt;}
.yd6{bottom:20.466667pt;}
.yd3{bottom:20.480000pt;}
.yb0{bottom:22.400000pt;}
.yb8{bottom:22.720000pt;}
.ybd{bottom:22.760000pt;}
.y18{bottom:23.520000pt;}
.y5{bottom:29.440000pt;}
.ye{bottom:29.600000pt;}
.yb1{bottom:30.880000pt;}
.yb6{bottom:31.200000pt;}
.ybb{bottom:31.240000pt;}
.y8a{bottom:37.280000pt;}
.y7e{bottom:38.560000pt;}
.yb3{bottom:39.360000pt;}
.y17{bottom:42.560000pt;}
.y1{bottom:45.760000pt;}
.y16{bottom:62.760000pt;}
.y3f{bottom:66.880000pt;}
.y15{bottom:90.280000pt;}
.yae{bottom:101.120000pt;}
.y114{bottom:101.440000pt;}
.ye4{bottom:104.960000pt;}
.y14d{bottom:108.800000pt;}
.y3b{bottom:110.560000pt;}
.y14{bottom:111.560000pt;}
.y113{bottom:115.360000pt;}
.y74{bottom:118.880000pt;}
.y6a{bottom:119.200000pt;}
.yad{bottom:123.040000pt;}
.y13{bottom:125.160000pt;}
.ye3{bottom:127.200000pt;}
.y12a{bottom:128.960000pt;}
.y14b{bottom:130.720000pt;}
.y112{bottom:132.160000pt;}
.y3a{bottom:132.480000pt;}
.y79{bottom:140.800000pt;}
.y69{bottom:141.120000pt;}
.yac{bottom:144.960000pt;}
.ye2{bottom:149.120000pt;}
.y129{bottom:150.880000pt;}
.y14a{bottom:152.640000pt;}
.y39{bottom:154.400000pt;}
.y78{bottom:162.720000pt;}
.y68{bottom:163.040000pt;}
.y111{bottom:165.920000pt;}
.yab{bottom:166.880000pt;}
.ye1{bottom:171.040000pt;}
.y128{bottom:172.800000pt;}
.y149{bottom:174.560000pt;}
.y38{bottom:176.320000pt;}
.y10f{bottom:182.880000pt;}
.y77{bottom:184.666667pt;}
.y67{bottom:184.986667pt;}
.yaa{bottom:188.826667pt;}
.ye0{bottom:192.986667pt;}
.y127{bottom:194.746667pt;}
.y148{bottom:196.506667pt;}
.y37{bottom:198.266667pt;}
.y10d{bottom:200.360000pt;}
.y66{bottom:206.906667pt;}
.ya9{bottom:210.746667pt;}
.ydf{bottom:214.906667pt;}
.y126{bottom:216.666667pt;}
.y147{bottom:218.426667pt;}
.y36{bottom:220.186667pt;}
.y10c{bottom:226.266667pt;}
.y6d{bottom:228.506667pt;}
.y65{bottom:228.826667pt;}
.ya8{bottom:232.666667pt;}
.yde{bottom:236.826667pt;}
.y125{bottom:238.586667pt;}
.y146{bottom:240.346667pt;}
.y35{bottom:242.266667pt;}
.y10b{bottom:248.506667pt;}
.y6c{bottom:250.426667pt;}
.y64{bottom:250.746667pt;}
.ya7{bottom:254.586667pt;}
.ydd{bottom:258.746667pt;}
.y124{bottom:260.506667pt;}
.y145{bottom:261.946667pt;}
.y14c{bottom:262.266667pt;}
.y34{bottom:264.186667pt;}
.y10a{bottom:270.426667pt;}
.y63{bottom:272.666667pt;}
.ya6{bottom:276.506667pt;}
.ydc{bottom:280.666667pt;}
.y123{bottom:282.426667pt;}
.y144{bottom:284.186667pt;}
.y33{bottom:286.106667pt;}
.y109{bottom:292.346667pt;}
.y12c{bottom:294.266667pt;}
.y62{bottom:294.586667pt;}
.y143{bottom:298.120000pt;}
.ya5{bottom:298.426667pt;}
.ydb{bottom:302.586667pt;}
.y122{bottom:304.506667pt;}
.y32{bottom:308.026667pt;}
.y108{bottom:314.266667pt;}
.y142{bottom:315.080000pt;}
.y12d{bottom:316.186667pt;}
.y61{bottom:316.506667pt;}
.ya4{bottom:320.346667pt;}
.yda{bottom:324.506667pt;}
.y121{bottom:326.426667pt;}
.y31{bottom:329.626667pt;}
.y3c{bottom:329.946667pt;}
.y141{bottom:331.880000pt;}
.y107{bottom:336.186667pt;}
.y60{bottom:338.426667pt;}
.ya3{bottom:342.266667pt;}
.yd9{bottom:346.426667pt;}
.y120{bottom:348.346667pt;}
.y13f{bottom:348.840000pt;}
.y30{bottom:351.866667pt;}
.y106{bottom:358.106667pt;}
.y5f{bottom:360.346667pt;}
.yd5{bottom:360.360000pt;}
.ya2{bottom:364.186667pt;}
.y13d{bottom:365.640000pt;}
.y11f{bottom:370.266667pt;}
.y2f{bottom:372.826667pt;}
.y105{bottom:380.026667pt;}
.y5e{bottom:382.266667pt;}
.y13c{bottom:382.440000pt;}
.ya1{bottom:386.106667pt;}
.y11e{bottom:392.226667pt;}
.y2e{bottom:392.386667pt;}
.yd2{bottom:394.146667pt;}
.y13b{bottom:399.426667pt;}
.y104{bottom:401.986667pt;}
.y5d{bottom:404.226667pt;}
.ya0{bottom:408.066667pt;}
.y11d{bottom:414.146667pt;}
.y2d{bottom:416.066667pt;}
.y13a{bottom:416.226667pt;}
.y103{bottom:423.906667pt;}
.y5c{bottom:426.306667pt;}
.yd1{bottom:427.906667pt;}
.y9f{bottom:429.986667pt;}
.y139{bottom:433.186667pt;}
.y2c{bottom:435.426667pt;}
.y11c{bottom:436.066667pt;}
.ycd{bottom:445.346667pt;}
.y102{bottom:445.826667pt;}
.y71{bottom:447.906667pt;}
.y5b{bottom:448.226667pt;}
.y138{bottom:449.986667pt;}
.y9e{bottom:451.906667pt;}
.y2b{bottom:454.786667pt;}
.y11b{bottom:457.986667pt;}
.y137{bottom:466.786667pt;}
.y101{bottom:467.746667pt;}
.y70{bottom:469.826667pt;}
.y5a{bottom:470.146667pt;}
.y9d{bottom:473.826667pt;}
.y2a{bottom:474.146667pt;}
.y11a{bottom:479.906667pt;}
.y136{bottom:483.746667pt;}
.ycc{bottom:488.066667pt;}
.y100{bottom:489.666667pt;}
.y59{bottom:492.066667pt;}
.y29{bottom:493.666667pt;}
.y9c{bottom:495.746667pt;}
.y135{bottom:500.546667pt;}
.y119{bottom:501.826667pt;}
.ycb{bottom:510.306667pt;}
.yff{bottom:511.586667pt;}
.y28{bottom:513.026667pt;}
.y58{bottom:513.986667pt;}
.y134{bottom:517.506667pt;}
.y9b{bottom:517.666667pt;}
.y118{bottom:523.426667pt;}
.y12b{bottom:523.746667pt;}
.yca{bottom:532.226667pt;}
.y27{bottom:532.386667pt;}
.yfe{bottom:533.506667pt;}
.y133{bottom:534.306667pt;}
.y57{bottom:535.906667pt;}
.y9a{bottom:539.586667pt;}
.y117{bottom:545.346667pt;}
.yfd{bottom:547.426667pt;}
.y26{bottom:551.746667pt;}
.yc9{bottom:554.146667pt;}
.y6b{bottom:557.506667pt;}
.y56{bottom:557.826667pt;}
.y99{bottom:561.506667pt;}
.y116{bottom:564.066667pt;}
.yfc{bottom:564.386667pt;}
.y132{bottom:568.066667pt;}
.y25{bottom:571.266667pt;}
.yc8{bottom:576.226667pt;}
.y73{bottom:579.426667pt;}
.y55{bottom:579.746667pt;}
.yfb{bottom:581.186667pt;}
.y98{bottom:583.426667pt;}
.y131{bottom:584.866667pt;}
.y24{bottom:590.626667pt;}
.yc7{bottom:598.146667pt;}
.yf9{bottom:598.786667pt;}
.y54{bottom:601.693333pt;}
.y130{bottom:601.853333pt;}
.y97{bottom:605.373333pt;}
.y23{bottom:610.013333pt;}
.y12f{bottom:619.293333pt;}
.yc6{bottom:620.093333pt;}
.y53{bottom:623.613333pt;}
.yf8{bottom:624.573333pt;}
.y96{bottom:627.293333pt;}
.y22{bottom:629.373333pt;}
.yc5{bottom:642.013333pt;}
.y12e{bottom:645.213333pt;}
.y52{bottom:645.533333pt;}
.yf7{bottom:646.813333pt;}
.y21{bottom:648.733333pt;}
.y95{bottom:649.213333pt;}
.yc4{bottom:663.933333pt;}
.y51{bottom:667.453333pt;}
.y20{bottom:668.253333pt;}
.yf6{bottom:668.733333pt;}
.y94{bottom:671.133333pt;}
.y8f{bottom:685.213333pt;}
.yc3{bottom:685.853333pt;}
.y1f{bottom:687.613333pt;}
.y50{bottom:689.373333pt;}
.yf5{bottom:690.653333pt;}
.y93{bottom:702.013333pt;}
.y1e{bottom:706.973333pt;}
.yc2{bottom:707.773333pt;}
.y4f{bottom:711.293333pt;}
.yf4{bottom:712.573333pt;}
.y92{bottom:718.813333pt;}
.y1d{bottom:726.013333pt;}
.yc1{bottom:729.693333pt;}
.y4e{bottom:733.213333pt;}
.yf3{bottom:734.653333pt;}
.y91{bottom:735.773333pt;}
.y1c{bottom:743.293333pt;}
.y1a{bottom:750.973333pt;}
.yc0{bottom:751.613333pt;}
.y90{bottom:752.573333pt;}
.y4d{bottom:755.133333pt;}
.yf2{bottom:756.573333pt;}
.y12{bottom:757.373333pt;}
.y19{bottom:761.054484pt;}
.y89{bottom:769.533333pt;}
.ybf{bottom:773.533333pt;}
.y115{bottom:776.733333pt;}
.y4c{bottom:777.053333pt;}
.yf1{bottom:778.493333pt;}
.y8e{bottom:786.333333pt;}
.ybe{bottom:795.453333pt;}
.y76{bottom:798.653333pt;}
.y4b{bottom:798.973333pt;}
.yf0{bottom:800.413333pt;}
.y8d{bottom:803.133333pt;}
.yba{bottom:809.373333pt;}
.y8c{bottom:820.133333pt;}
.y6f{bottom:820.613333pt;}
.y4a{bottom:820.933333pt;}
.yef{bottom:822.373333pt;}
.y8b{bottom:836.933333pt;}
.y6e{bottom:842.533333pt;}
.y49{bottom:842.853333pt;}
.yee{bottom:844.293333pt;}
.y85{bottom:853.893333pt;}
.y72{bottom:864.453333pt;}
.yb9{bottom:864.613333pt;}
.y48{bottom:864.773333pt;}
.yed{bottom:866.213333pt;}
.y88{bottom:870.693333pt;}
.y47{bottom:886.693333pt;}
.y87{bottom:887.493333pt;}
.yec{bottom:888.133333pt;}
.y7d{bottom:904.453333pt;}
.y10{bottom:905.413333pt;}
.y46{bottom:908.613333pt;}
.yeb{bottom:910.053333pt;}
.yd{bottom:911.173333pt;}
.yb5{bottom:919.813333pt;}
.y84{bottom:921.893333pt;}
.y45{bottom:930.533333pt;}
.yea{bottom:931.973333pt;}
.y83{bottom:939.493333pt;}
.ye9{bottom:945.893333pt;}
.y44{bottom:952.453333pt;}
.yb{bottom:956.933333pt;}
.y81{bottom:957.093333pt;}
.y9{bottom:961.733333pt;}
.ye8{bottom:962.693333pt;}
.y43{bottom:974.373333pt;}
.y7f{bottom:974.533333pt;}
.yaf{bottom:975.653333pt;}
.ye7{bottom:979.653333pt;}
.y2{bottom:983.333333pt;}
.y7b{bottom:992.133333pt;}
.y42{bottom:996.293333pt;}
.ye5{bottom:997.093333pt;}
.y7{bottom:1003.173333pt;}
.y7a{bottom:1017.893333pt;}
.y41{bottom:1018.240000pt;}
.y4{bottom:1028.320000pt;}
.y75{bottom:1039.840000pt;}
.y40{bottom:1040.160000pt;}
.y3e{bottom:1055.360000pt;}
.y3d{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h10{height:5.746667pt;}
.h18{height:6.400000pt;}
.hd{height:11.843750pt;}
.h19{height:15.633750pt;}
.h23{height:16.786667pt;}
.h35{height:16.798667pt;}
.h29{height:16.800000pt;}
.h32{height:16.826667pt;}
.h33{height:16.832000pt;}
.h11{height:16.896000pt;}
.h25{height:16.946667pt;}
.h34{height:16.958667pt;}
.h2b{height:16.960000pt;}
.h37{height:16.978667pt;}
.h28{height:16.980000pt;}
.h36{height:16.986667pt;}
.h8{height:19.826667pt;}
.ha{height:21.586667pt;}
.h7{height:25.146667pt;}
.h1f{height:27.093750pt;}
.h1a{height:32.765625pt;}
.h2f{height:33.746667pt;}
.h30{height:33.778667pt;}
.h31{height:33.786667pt;}
.h21{height:42.176250pt;}
.h14{height:43.215000pt;}
.h1c{height:44.792500pt;}
.he{height:45.746667pt;}
.h5{height:47.040000pt;}
.h9{height:49.852500pt;}
.h26{height:50.546667pt;}
.hb{height:54.187500pt;}
.h2d{height:55.186667pt;}
.h2e{height:55.220000pt;}
.h2c{height:55.226667pt;}
.h2{height:55.355625pt;}
.h16{height:56.437500pt;}
.h1b{height:57.758750pt;}
.h1d{height:57.787500pt;}
.h20{height:58.221875pt;}
.h1e{height:59.340000pt;}
.h15{height:60.270000pt;}
.h22{height:60.519362pt;}
.h6{height:63.399375pt;}
.h17{height:64.500000pt;}
.h4{height:67.837500pt;}
.hf{height:69.660000pt;}
.h13{height:72.655000pt;}
.h2a{height:84.320000pt;}
.h27{height:84.340000pt;}
.h24{height:87.026667pt;}
.h3{height:92.026667pt;}
.h12{height:148.026667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1d{width:50.070667pt;}
.wf{width:95.858667pt;}
.w4{width:96.026667pt;}
.w2{width:96.030667pt;}
.wb{width:99.666667pt;}
.wd{width:104.000000pt;}
.w12{width:109.280000pt;}
.w15{width:113.312000pt;}
.we{width:115.712000pt;}
.w8{width:123.030667pt;}
.wa{width:130.898667pt;}
.w19{width:137.586667pt;}
.w17{width:138.106667pt;}
.w10{width:138.226667pt;}
.wc{width:148.017333pt;}
.w1a{width:149.617333pt;}
.w16{width:160.813333pt;}
.w11{width:165.297333pt;}
.w13{width:189.026667pt;}
.w14{width:216.017333pt;}
.w1b{width:224.506667pt;}
.w1c{width:227.693333pt;}
.w5{width:245.973333pt;}
.w6{width:246.093333pt;}
.w9{width:248.213333pt;}
.w18{width:464.240000pt;}
.w3{width:492.080000pt;}
.w1e{width:551.760000pt;}
.w7{width:596.560000pt;}
.w1f{width:601.840000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:7.190667pt;}
.x5f{left:8.630667pt;}
.x5{left:9.746667pt;}
.x13{left:10.870667pt;}
.x49{left:11.840000pt;}
.x52{left:13.106667pt;}
.x3e{left:14.386667pt;}
.x38{left:15.680000pt;}
.x3f{left:17.266667pt;}
.x10{left:18.386667pt;}
.x17{left:20.310667pt;}
.x46{left:23.030667pt;}
.x3b{left:24.160000pt;}
.x25{left:25.760000pt;}
.x3c{left:27.040000pt;}
.xb{left:30.386667pt;}
.x44{left:31.506667pt;}
.x21{left:32.630667pt;}
.x41{left:33.590667pt;}
.x39{left:34.560000pt;}
.x42{left:35.520000pt;}
.x29{left:36.960000pt;}
.x4c{left:38.080000pt;}
.x2b{left:39.830667pt;}
.x43{left:41.280000pt;}
.x5b{left:42.550667pt;}
.xe{left:44.190667pt;}
.x9{left:47.346667pt;}
.x26{left:49.265333pt;}
.x45{left:52.480000pt;}
.x2{left:54.081333pt;}
.x28{left:58.066667pt;}
.x31{left:59.386667pt;}
.x59{left:60.320000pt;}
.x2e{left:61.746667pt;}
.x32{left:63.546667pt;}
.x33{left:65.466667pt;}
.x4b{left:68.960000pt;}
.xc{left:72.466667pt;}
.x36{left:73.905333pt;}
.xf{left:75.666667pt;}
.x4d{left:77.946667pt;}
.x54{left:80.306667pt;}
.x48{left:82.545333pt;}
.xd{left:85.266667pt;}
.x20{left:88.841333pt;}
.x5c{left:89.946667pt;}
.x30{left:91.066667pt;}
.x2f{left:92.026667pt;}
.x34{left:94.586667pt;}
.x8{left:95.866667pt;}
.x3{left:97.785333pt;}
.x11{left:98.761333pt;}
.x2d{left:102.426667pt;}
.x27{left:105.626667pt;}
.x4f{left:107.985333pt;}
.x2c{left:108.986667pt;}
.x2a{left:112.506667pt;}
.x1e{left:120.032000pt;}
.x62{left:133.786667pt;}
.x60{left:138.920000pt;}
.x1b{left:144.026667pt;}
.x4{left:150.120000pt;}
.x16{left:158.745333pt;}
.x15{left:167.065333pt;}
.x6{left:185.786667pt;}
.x19{left:192.345333pt;}
.x22{left:211.880000pt;}
.x4e{left:216.346667pt;}
.x56{left:232.025333pt;}
.x37{left:236.066667pt;}
.x58{left:237.666667pt;}
.x61{left:240.826667pt;}
.x1f{left:254.146667pt;}
.x35{left:262.626667pt;}
.x47{left:271.266667pt;}
.x18{left:282.425333pt;}
.x14{left:288.665333pt;}
.x12{left:298.292000pt;}
.x50{left:304.066667pt;}
.x5d{left:311.906667pt;}
.x55{left:318.466667pt;}
.x57{left:338.466667pt;}
.x3a{left:340.066667pt;}
.x4a{left:362.626667pt;}
.xa{left:396.106667pt;}
.x51{left:417.386667pt;}
.x1c{left:420.893333pt;}
.x64{left:430.333333pt;}
.x3d{left:455.786667pt;}
.x63{left:458.653333pt;}
.x23{left:460.106667pt;}
.x5a{left:462.186667pt;}
.x1d{left:468.893333pt;}
.x40{left:551.653333pt;}
.x53{left:578.213333pt;}
.x24{left:591.013333pt;}
.x7{left:642.213333pt;}
.x5e{left:651.493333pt;}
.x1{left:665.733333pt;}
}




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