
    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_b4a3903c85fb4b4936adb8da.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.096680;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_8affdc1e1b09fb69ab81df3a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.088379;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_8576c64054ca51741de9f5c4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.100098;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_13c836d66a9f6610e2b45ce7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.096680;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_89539b27c8cb9b27c47559bb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_c7f7d16231388c3008e7df2b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_be94a1f11f4a3301a8dce8c1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.100098;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_037ea7960eeeb9eb3a025e15.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.100098;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_2201b4578960271451893264.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_b48a48807e721d72249fca10.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.435059;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_11559f94f5e47da29ee481e7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.851562;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_6c848f2278d1c5055d545f95.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;}
.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);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.ls27{letter-spacing:-8.460000px;}
.ls28{letter-spacing:-5.688000px;}
.ls17{letter-spacing:-0.930000px;}
.ls41{letter-spacing:-0.822000px;}
.ls42{letter-spacing:-0.786000px;}
.ls2b{letter-spacing:-0.774000px;}
.ls21{letter-spacing:-0.762000px;}
.ls4a{letter-spacing:-0.732000px;}
.ls2a{letter-spacing:-0.696000px;}
.ls11{letter-spacing:-0.648000px;}
.ls18{letter-spacing:-0.618000px;}
.ls1c{letter-spacing:-0.612000px;}
.ls19{letter-spacing:-0.564600px;}
.ls3d{letter-spacing:-0.411600px;}
.ls29{letter-spacing:-0.403200px;}
.lsc{letter-spacing:-0.306000px;}
.ls1f{letter-spacing:-0.299400px;}
.ls4c{letter-spacing:-0.294600px;}
.ls20{letter-spacing:-0.270600px;}
.ls2d{letter-spacing:-0.265200px;}
.ls16{letter-spacing:-0.241800px;}
.ls33{letter-spacing:-0.227400px;}
.ls2c{letter-spacing:-0.222000px;}
.ls1{letter-spacing:-0.204600px;}
.ls1b{letter-spacing:-0.109200px;}
.ls31{letter-spacing:-0.103800px;}
.ls32{letter-spacing:-0.069000px;}
.ls3f{letter-spacing:-0.054720px;}
.ls14{letter-spacing:-0.043200px;}
.ls23{letter-spacing:-0.028800px;}
.ls4{letter-spacing:-0.010800px;}
.ls2{letter-spacing:0.000000px;}
.ls44{letter-spacing:0.012960px;}
.ls13{letter-spacing:0.023040px;}
.ls34{letter-spacing:0.036000px;}
.ls22{letter-spacing:0.048960px;}
.ls0{letter-spacing:0.060480px;}
.ls46{letter-spacing:0.060600px;}
.lse{letter-spacing:0.063600px;}
.ls3a{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.075000px;}
.lsa{letter-spacing:0.084960px;}
.ls3b{letter-spacing:0.089400px;}
.ls12{letter-spacing:0.100800px;}
.ls1a{letter-spacing:0.106800px;}
.ls43{letter-spacing:0.126600px;}
.ls26{letter-spacing:0.155400px;}
.ls49{letter-spacing:0.211800px;}
.ls6{letter-spacing:0.223200px;}
.ls37{letter-spacing:0.250800px;}
.ls8{letter-spacing:0.254880px;}
.ls45{letter-spacing:0.265200px;}
.ls9{letter-spacing:0.301800px;}
.ls35{letter-spacing:0.308400px;}
.ls10{letter-spacing:0.316800px;}
.ls4b{letter-spacing:0.319680px;}
.ls24{letter-spacing:0.324000px;}
.ls1d{letter-spacing:0.328200px;}
.ls2e{letter-spacing:0.328320px;}
.lsf{letter-spacing:0.337800px;}
.ls48{letter-spacing:0.342600px;}
.ls5{letter-spacing:0.348000px;}
.lsd{letter-spacing:0.357000px;}
.ls15{letter-spacing:0.360000px;}
.ls47{letter-spacing:0.376560px;}
.ls3e{letter-spacing:0.547200px;}
.ls3{letter-spacing:0.708000px;}
.ls4d{letter-spacing:0.732000px;}
.ls2f{letter-spacing:1.267200px;}
.ls38{letter-spacing:1.987200px;}
.ls3c{letter-spacing:2.707200px;}
.ls40{letter-spacing:7.027200px;}
.ls36{letter-spacing:7.747200px;}
.ls30{letter-spacing:11.347200px;}
.ls1e{letter-spacing:17.827200px;}
.ls25{letter-spacing:18.000000px;}
.ls39{letter-spacing:22.147200px;}
.ls7{letter-spacing:23.692800px;}
.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;}
}
.ws6{word-spacing:-15.922920px;}
.ws7{word-spacing:-15.886920px;}
.ws8{word-spacing:-14.889600px;}
.ws1e{word-spacing:-14.881200px;}
.ws26{word-spacing:-14.838000px;}
.ws1d{word-spacing:-14.832000px;}
.ws1f{word-spacing:-14.823600px;}
.ws15{word-spacing:-14.728200px;}
.ws10{word-spacing:-14.679600px;}
.ws21{word-spacing:-14.662200px;}
.wsa{word-spacing:-14.647800px;}
.ws20{word-spacing:-14.644800px;}
.ws14{word-spacing:-14.621760px;}
.wsb{word-spacing:-14.595840px;}
.wsd{word-spacing:-14.572800px;}
.wsc{word-spacing:-14.529600px;}
.ws23{word-spacing:-14.518080px;}
.ws1c{word-spacing:-14.503800px;}
.ws4{word-spacing:-14.490000px;}
.ws1b{word-spacing:-14.469000px;}
.ws11{word-spacing:-14.463600px;}
.wse{word-spacing:-14.331000px;}
.ws1a{word-spacing:-14.307600px;}
.ws19{word-spacing:-14.169600px;}
.ws22{word-spacing:-14.161200px;}
.wsf{word-spacing:-14.008200px;}
.ws12{word-spacing:-13.960800px;}
.ws1{word-spacing:-13.939200px;}
.ws9{word-spacing:-13.924800px;}
.ws2d{word-spacing:-13.879200px;}
.ws18{word-spacing:-13.876800px;}
.ws13{word-spacing:-13.810800px;}
.ws25{word-spacing:-13.786800px;}
.ws24{word-spacing:-13.750800px;}
.ws5{word-spacing:-13.504200px;}
.ws2{word-spacing:-13.370400px;}
.ws29{word-spacing:-13.359000px;}
.ws27{word-spacing:-13.273800px;}
.ws28{word-spacing:-13.160160px;}
.ws0{word-spacing:-13.147200px;}
.ws2c{word-spacing:-12.852600px;}
.ws2a{word-spacing:-0.419760px;}
.ws2b{word-spacing:-0.059760px;}
.ws3{word-spacing:0.000000px;}
.ws17{word-spacing:2.566080px;}
.ws16{word-spacing:10.962720px;}
._14{margin-left:-4.510680px;}
._12{margin-left:-3.274560px;}
._a{margin-left:-2.152560px;}
._0{margin-left:-1.056960px;}
._1{width:1.596000px;}
._5{width:2.871600px;}
._6{width:4.108080px;}
._7{width:5.121600px;}
._2{width:6.451920px;}
._3{width:7.470000px;}
._4{width:9.061200px;}
._11{width:10.192320px;}
._10{width:11.414160px;}
._13{width:12.763440px;}
._1d{width:14.682240px;}
._b{width:15.974640px;}
._c{width:17.849520px;}
._f{width:19.255440px;}
._9{width:20.417760px;}
._8{width:21.599040px;}
._17{width:22.606320px;}
._d{width:23.724720px;}
._e{width:24.786960px;}
._18{width:25.966080px;}
._19{width:27.009840px;}
._1b{width:28.483200px;}
._1a{width:30.337920px;}
._1c{width:32.161920px;}
._15{width:34.577280px;}
._16{width:36.036720px;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(68,114,196);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs6{font-size:54.000000px;}
.fs2{font-size:56.880000px;}
.fs3{font-size:59.760000px;}
.fs5{font-size:63.360000px;}
.fs1{font-size:66.240000px;}
.fs9{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.ya3{bottom:4.860000px;}
.yb1{bottom:4.890000px;}
.ya5{bottom:5.040000px;}
.y117{bottom:5.400000px;}
.ya0{bottom:6.300000px;}
.y112{bottom:9.900000px;}
.y23{bottom:12.420000px;}
.ya2{bottom:22.860000px;}
.yb0{bottom:22.890000px;}
.yb5{bottom:23.040000px;}
.y115{bottom:23.400000px;}
.y116{bottom:32.400000px;}
.ya9{bottom:40.860000px;}
.y11b{bottom:41.400000px;}
.y4d{bottom:56.340000px;}
.y26{bottom:56.700000px;}
.ya8{bottom:58.680000px;}
.yb4{bottom:58.860000px;}
.y11c{bottom:59.400000px;}
.y25{bottom:75.816000px;}
.ya7{bottom:76.680000px;}
.y12a{bottom:112.176000px;}
.y4a{bottom:114.876000px;}
.yc1{bottom:116.856000px;}
.y1aa{bottom:125.496000px;}
.y96{bottom:125.676000px;}
.ye7{bottom:128.556000px;}
.y20{bottom:129.276000px;}
.y12f{bottom:133.236000px;}
.y130{bottom:135.936000px;}
.y129{bottom:139.176000px;}
.y99{bottom:141.516000px;}
.y49{bottom:141.876000px;}
.yc0{bottom:143.856000px;}
.y1a9{bottom:144.936000px;}
.y137{bottom:149.256000px;}
.y95{bottom:152.670000px;}
.y1f{bottom:153.210000px;}
.ye6{bottom:155.550000px;}
.y17d{bottom:158.610000px;}
.y98{bottom:159.870000px;}
.y12e{bottom:160.230000px;}
.y72{bottom:162.930000px;}
.y1a8{bottom:164.370000px;}
.yfa{bottom:166.170000px;}
.y48{bottom:168.870000px;}
.ybf{bottom:170.850000px;}
.y136{bottom:176.250000px;}
.y1e{bottom:177.150000px;}
.y17c{bottom:178.230000px;}
.y97{bottom:178.410000px;}
.y94{bottom:179.670000px;}
.ye5{bottom:182.550000px;}
.y1a7{bottom:183.990000px;}
.y156{bottom:185.430000px;}
.y12d{bottom:187.230000px;}
.y166{bottom:188.850000px;}
.y71{bottom:189.930000px;}
.yf9{bottom:193.170000px;}
.y47{bottom:195.870000px;}
.y17b{bottom:197.670000px;}
.ybe{bottom:197.850000px;}
.y1d{bottom:201.270000px;}
.y135{bottom:203.250000px;}
.y1a6{bottom:203.430000px;}
.y93{bottom:206.670000px;}
.ye4{bottom:209.550000px;}
.y155{bottom:212.430000px;}
.y70{bottom:216.930000px;}
.y17a{bottom:217.110000px;}
.yf8{bottom:220.170000px;}
.y46{bottom:222.870000px;}
.ybd{bottom:224.850000px;}
.y1c{bottom:225.210000px;}
.y134{bottom:230.250000px;}
.y92{bottom:233.670000px;}
.ye3{bottom:236.550000px;}
.y179{bottom:236.730000px;}
.y12c{bottom:239.250000px;}
.y154{bottom:239.430000px;}
.y1a5{bottom:242.490000px;}
.y6f{bottom:243.930000px;}
.y10f{bottom:244.110000px;}
.yf7{bottom:247.170000px;}
.y1b{bottom:249.150000px;}
.y45{bottom:249.870000px;}
.ybc{bottom:251.850000px;}
.y178{bottom:256.170000px;}
.y91{bottom:260.670000px;}
.y1a4{bottom:261.930000px;}
.ye2{bottom:263.550000px;}
.y153{bottom:266.430000px;}
.y6e{bottom:270.930000px;}
.y1a{bottom:273.270000px;}
.yf6{bottom:274.170000px;}
.y177{bottom:275.610000px;}
.y44{bottom:276.870000px;}
.ybb{bottom:278.850000px;}
.y1a3{bottom:281.370000px;}
.y133{bottom:282.090000px;}
.y90{bottom:287.670000px;}
.ye1{bottom:290.550000px;}
.y152{bottom:293.430000px;}
.y176{bottom:295.230000px;}
.y19{bottom:297.210000px;}
.y6d{bottom:297.930000px;}
.y1a2{bottom:300.990000px;}
.yf5{bottom:301.170000px;}
.y43{bottom:303.870000px;}
.y10e{bottom:304.050000px;}
.yba{bottom:305.850000px;}
.y131{bottom:306.210000px;}
.y8f{bottom:314.670000px;}
.ye0{bottom:317.550000px;}
.y151{bottom:320.430000px;}
.y18{bottom:321.150000px;}
.y6c{bottom:324.930000px;}
.yf4{bottom:328.170000px;}
.y42{bottom:330.870000px;}
.y10d{bottom:331.050000px;}
.y175{bottom:334.110000px;}
.y1a1{bottom:339.915000px;}
.y8e{bottom:341.715000px;}
.ydf{bottom:344.595000px;}
.y17{bottom:345.315000px;}
.y150{bottom:347.475000px;}
.y6b{bottom:351.975000px;}
.y174{bottom:353.775000px;}
.yf3{bottom:355.215000px;}
.yb9{bottom:355.575000px;}
.y41{bottom:357.915000px;}
.y10c{bottom:358.095000px;}
.y1a0{bottom:359.535000px;}
.y8d{bottom:368.715000px;}
.y16{bottom:369.255000px;}
.yde{bottom:371.595000px;}
.y173{bottom:373.215000px;}
.y14f{bottom:374.475000px;}
.y6a{bottom:378.975000px;}
.yf2{bottom:382.215000px;}
.y40{bottom:384.915000px;}
.y10b{bottom:385.095000px;}
.y172{bottom:392.655000px;}
.y15{bottom:393.195000px;}
.y8c{bottom:395.715000px;}
.y19f{bottom:398.415000px;}
.ydd{bottom:398.595000px;}
.y14e{bottom:401.475000px;}
.y69{bottom:405.975000px;}
.y132{bottom:409.035000px;}
.y128{bottom:409.215000px;}
.y3f{bottom:411.915000px;}
.y10a{bottom:412.095000px;}
.y171{bottom:412.275000px;}
.yb8{bottom:413.535000px;}
.y14{bottom:417.315000px;}
.y19e{bottom:418.035000px;}
.y8b{bottom:422.715000px;}
.ydc{bottom:425.595000px;}
.y14d{bottom:428.475000px;}
.y68{bottom:432.975000px;}
.yf1{bottom:434.055000px;}
.yb7{bottom:435.675000px;}
.y127{bottom:436.215000px;}
.y19d{bottom:437.475000px;}
.y3e{bottom:438.915000px;}
.y109{bottom:439.095000px;}
.y13{bottom:441.255000px;}
.y170{bottom:443.595000px;}
.y12b{bottom:445.035000px;}
.y8a{bottom:449.715000px;}
.ydb{bottom:452.595000px;}
.y14c{bottom:455.475000px;}
.y19c{bottom:456.915000px;}
.y67{bottom:459.975000px;}
.y126{bottom:463.215000px;}
.y12{bottom:465.195000px;}
.y3d{bottom:465.915000px;}
.y108{bottom:466.095000px;}
.yb6{bottom:475.635000px;}
.y165{bottom:476.355000px;}
.y19b{bottom:476.535000px;}
.y89{bottom:476.715000px;}
.yda{bottom:479.595000px;}
.y14b{bottom:482.475000px;}
.y66{bottom:486.975000px;}
.y125{bottom:490.215000px;}
.y3c{bottom:492.915000px;}
.y107{bottom:493.095000px;}
.y19a{bottom:495.975000px;}
.yb3{bottom:500.655000px;}
.y16f{bottom:501.555000px;}
.y164{bottom:503.355000px;}
.y88{bottom:503.715000px;}
.yd9{bottom:506.595000px;}
.y14a{bottom:509.475000px;}
.y65{bottom:513.975000px;}
.y199{bottom:515.415000px;}
.y124{bottom:517.215000px;}
.y106{bottom:520.095000px;}
.y16e{bottom:522.975000px;}
.y3b{bottom:530.175000px;}
.y163{bottom:530.355000px;}
.y87{bottom:530.715000px;}
.yd8{bottom:533.595000px;}
.y198{bottom:535.035000px;}
.y149{bottom:536.475000px;}
.y64{bottom:540.975000px;}
.y123{bottom:544.215000px;}
.y105{bottom:547.095000px;}
.y16d{bottom:547.815000px;}
.y197{bottom:554.475000px;}
.y162{bottom:557.355000px;}
.y86{bottom:557.715000px;}
.yd7{bottom:560.595000px;}
.y148{bottom:563.475000px;}
.y63{bottom:567.975000px;}
.y122{bottom:571.215000px;}
.y196{bottom:573.915000px;}
.y104{bottom:574.095000px;}
.yb2{bottom:576.615000px;}
.y11{bottom:579.315000px;}
.y161{bottom:584.355000px;}
.y85{bottom:584.715000px;}
.yd6{bottom:587.595000px;}
.y147{bottom:590.475000px;}
.y195{bottom:593.535000px;}
.y62{bottom:594.975000px;}
.y16c{bottom:595.335000px;}
.y121{bottom:598.215000px;}
.yaf{bottom:598.755000px;}
.y103{bottom:601.095000px;}
.y10{bottom:603.255000px;}
.y160{bottom:611.385000px;}
.y84{bottom:611.745000px;}
.y194{bottom:613.005000px;}
.y16b{bottom:613.905000px;}
.yd5{bottom:614.625000px;}
.y3a{bottom:615.345000px;}
.y146{bottom:617.505000px;}
.y61{bottom:622.005000px;}
.y120{bottom:625.245000px;}
.yf{bottom:627.225000px;}
.y102{bottom:628.125000px;}
.y16a{bottom:632.445000px;}
.y39{bottom:634.425000px;}
.y15f{bottom:638.385000px;}
.y83{bottom:638.745000px;}
.yae{bottom:638.925000px;}
.yd4{bottom:641.625000px;}
.y145{bottom:644.505000px;}
.y60{bottom:649.005000px;}
.y169{bottom:650.805000px;}
.ye{bottom:651.345000px;}
.y193{bottom:652.065000px;}
.y11f{bottom:652.245000px;}
.y101{bottom:655.125000px;}
.yad{bottom:663.945000px;}
.y15e{bottom:665.385000px;}
.y82{bottom:665.745000px;}
.yd3{bottom:668.625000px;}
.y144{bottom:671.505000px;}
.y5f{bottom:676.005000px;}
.y11e{bottom:679.245000px;}
.y168{bottom:680.505000px;}
.y100{bottom:682.125000px;}
.y38{bottom:690.405000px;}
.y192{bottom:690.945000px;}
.y15d{bottom:692.385000px;}
.y81{bottom:692.745000px;}
.yd2{bottom:695.625000px;}
.y143{bottom:698.505000px;}
.yd{bottom:702.285000px;}
.y5e{bottom:703.005000px;}
.y11d{bottom:706.245000px;}
.yff{bottom:709.125000px;}
.y191{bottom:710.565000px;}
.y37{bottom:714.345000px;}
.y15c{bottom:719.385000px;}
.y80{bottom:719.745000px;}
.yac{bottom:721.905000px;}
.yd1{bottom:722.625000px;}
.y142{bottom:725.505000px;}
.yc{bottom:726.225000px;}
.y5d{bottom:730.005000px;}
.yfe{bottom:736.125000px;}
.y11a{bottom:737.565000px;}
.y36{bottom:738.465000px;}
.yab{bottom:744.045000px;}
.y15b{bottom:746.385000px;}
.y7f{bottom:746.745000px;}
.y190{bottom:749.445000px;}
.yd0{bottom:749.625000px;}
.yb{bottom:750.345000px;}
.y141{bottom:752.505000px;}
.y5c{bottom:757.005000px;}
.y35{bottom:762.405000px;}
.yfd{bottom:763.125000px;}
.yaa{bottom:766.005000px;}
.y18f{bottom:769.065000px;}
.y15a{bottom:773.385000px;}
.yf0{bottom:773.745000px;}
.ya{bottom:774.285000px;}
.ycf{bottom:776.625000px;}
.y140{bottom:779.505000px;}
.y5b{bottom:784.005000px;}
.y7e{bottom:784.185000px;}
.y34{bottom:786.345000px;}
.y18e{bottom:788.505000px;}
.yfc{bottom:790.125000px;}
.ya6{bottom:791.205000px;}
.y159{bottom:800.385000px;}
.yef{bottom:800.745000px;}
.yce{bottom:803.625000px;}
.y13f{bottom:806.505000px;}
.y18d{bottom:807.945000px;}
.y33{bottom:810.465000px;}
.y5a{bottom:811.005000px;}
.yfb{bottom:817.125000px;}
.y119{bottom:819.285000px;}
.y9{bottom:825.225000px;}
.y158{bottom:827.385000px;}
.y18c{bottom:827.565000px;}
.yee{bottom:827.745000px;}
.ycd{bottom:830.625000px;}
.y13e{bottom:833.505000px;}
.y32{bottom:834.405000px;}
.y59{bottom:838.005000px;}
.y167{bottom:838.185000px;}
.y7d{bottom:844.125000px;}
.y18b{bottom:847.005000px;}
.y8{bottom:849.345000px;}
.y157{bottom:854.385000px;}
.yed{bottom:854.745000px;}
.ycc{bottom:857.625000px;}
.y31{bottom:858.345000px;}
.y13d{bottom:860.505000px;}
.y58{bottom:865.005000px;}
.y18a{bottom:866.445000px;}
.y7c{bottom:871.170000px;}
.y7{bottom:873.330000px;}
.y118{bottom:874.050000px;}
.yec{bottom:881.790000px;}
.y30{bottom:882.510000px;}
.ycb{bottom:884.670000px;}
.ya4{bottom:885.030000px;}
.y189{bottom:886.110000px;}
.y13c{bottom:887.550000px;}
.y57{bottom:892.050000px;}
.y6{bottom:897.270000px;}
.y7b{bottom:898.170000px;}
.y188{bottom:905.550000px;}
.y2f{bottom:906.450000px;}
.ya1{bottom:907.170000px;}
.yeb{bottom:908.790000px;}
.yca{bottom:911.670000px;}
.y13b{bottom:914.550000px;}
.y56{bottom:919.050000px;}
.y187{bottom:924.990000px;}
.y7a{bottom:925.170000px;}
.y114{bottom:928.950000px;}
.y2e{bottom:930.390000px;}
.yea{bottom:935.790000px;}
.yc9{bottom:938.670000px;}
.y13a{bottom:941.550000px;}
.y186{bottom:944.610000px;}
.y55{bottom:946.050000px;}
.y9f{bottom:947.310000px;}
.y79{bottom:952.170000px;}
.y2d{bottom:954.510000px;}
.ye9{bottom:962.790000px;}
.y185{bottom:964.050000px;}
.yc8{bottom:965.670000px;}
.y54{bottom:973.050000px;}
.y1b3{bottom:976.470000px;}
.y2c{bottom:978.450000px;}
.y78{bottom:979.170000px;}
.y184{bottom:983.490000px;}
.y113{bottom:983.670000px;}
.y9e{bottom:984.570000px;}
.yc7{bottom:992.670000px;}
.y139{bottom:993.390000px;}
.y1b2{bottom:994.110000px;}
.y53{bottom:1000.050000px;}
.ye8{bottom:1000.230000px;}
.y2b{bottom:1002.390000px;}
.y183{bottom:1003.110000px;}
.y77{bottom:1006.170000px;}
.y5{bottom:1011.390000px;}
.y1b1{bottom:1011.570000px;}
.y111{bottom:1015.890000px;}
.yc6{bottom:1019.670000px;}
.y182{bottom:1022.550000px;}
.y2a{bottom:1026.510000px;}
.y52{bottom:1027.050000px;}
.y1b0{bottom:1029.210000px;}
.y9d{bottom:1032.090000px;}
.y76{bottom:1033.170000px;}
.y4{bottom:1035.330000px;}
.y181{bottom:1041.990000px;}
.yc5{bottom:1046.670000px;}
.y1af{bottom:1046.850000px;}
.y29{bottom:1050.450000px;}
.y51{bottom:1054.050000px;}
.y9c{bottom:1059.090000px;}
.y75{bottom:1060.170000px;}
.y110{bottom:1060.530000px;}
.y180{bottom:1061.610000px;}
.y1ae{bottom:1064.490000px;}
.yc4{bottom:1073.670000px;}
.y50{bottom:1081.050000px;}
.y1ad{bottom:1082.490000px;}
.y74{bottom:1087.170000px;}
.y3{bottom:1089.330000px;}
.y28{bottom:1092.390000px;}
.y17f{bottom:1100.490000px;}
.yc3{bottom:1100.670000px;}
.y1ac{bottom:1101.930000px;}
.y9b{bottom:1102.110000px;}
.y4f{bottom:1108.050000px;}
.y2{bottom:1113.270000px;}
.y73{bottom:1114.170000px;}
.y27{bottom:1116.510000px;}
.y17e{bottom:1120.110000px;}
.y9a{bottom:1120.650000px;}
.y1ab{bottom:1121.370000px;}
.y4e{bottom:1135.050000px;}
.y1{bottom:1137.390000px;}
.yc2{bottom:1138.140000px;}
.y24{bottom:1139.400000px;}
.y138{bottom:1141.020000px;}
.y22{bottom:1155.780000px;}
.y4c{bottom:1167.480000px;}
.y4b{bottom:1182.780000px;}
.y21{bottom:1188.180000px;}
.h11{height:20.880000px;}
.hf{height:21.060000px;}
.hc{height:23.940000px;}
.h9{height:27.000000px;}
.h17{height:31.500000px;}
.h1e{height:36.878203px;}
.he{height:38.880000px;}
.h13{height:38.916000px;}
.ha{height:46.696289px;}
.hd{height:46.722656px;}
.h5{height:49.186758px;}
.h7{height:51.998203px;}
.h6{height:52.465078px;}
.h18{height:54.000000px;}
.h19{height:54.036000px;}
.h8{height:55.130625px;}
.h12{height:56.880000px;}
.h4{height:57.636562px;}
.h3{height:58.154062px;}
.h1f{height:58.651172px;}
.h1d{height:63.210938px;}
.h1c{height:68.084282px;}
.hb{height:68.267813px;}
.h2{height:73.956797px;}
.h15{height:74.004654px;}
.h14{height:74.880000px;}
.h16{height:74.953125px;}
.h1a{height:81.000000px;}
.h10{height:92.736000px;}
.h1b{height:424.515000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:94.860000px;}
.w3{width:127.080000px;}
.wd{width:138.276000px;}
.wa{width:148.500000px;}
.wc{width:170.130000px;}
.w8{width:209.190000px;}
.w9{width:219.450000px;}
.wb{width:478.545000px;}
.w4{width:510.045000px;}
.w5{width:543.165000px;}
.w7{width:648.105000px;}
.we{width:681.045000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x16{left:10.260000px;}
.xe{left:29.334000px;}
.xb{left:72.180000px;}
.x1{left:127.655987px;}
.x2{left:148.895987px;}
.xc{left:159.689987px;}
.x13{left:162.045000px;}
.xd{left:170.129987px;}
.x11{left:220.889987px;}
.x5{left:239.655000px;}
.x4{left:254.730000px;}
.x19{left:264.989987px;}
.x17{left:271.289987px;}
.x12{left:276.150000px;}
.x1a{left:284.114987px;}
.x1b{left:288.434987px;}
.x1c{left:317.594987px;}
.xf{left:336.855000px;}
.x18{left:340.449000px;}
.x6{left:355.034987px;}
.x14{left:446.295000px;}
.x7{left:457.094987px;}
.x9{left:481.424987px;}
.x10{left:556.305000px;}
.x8{left:582.044987px;}
.x15{left:616.425000px;}
.xa{left:670.830000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls27{letter-spacing:-7.520000pt;}
.ls28{letter-spacing:-5.056000pt;}
.ls17{letter-spacing:-0.826667pt;}
.ls41{letter-spacing:-0.730667pt;}
.ls42{letter-spacing:-0.698667pt;}
.ls2b{letter-spacing:-0.688000pt;}
.ls21{letter-spacing:-0.677333pt;}
.ls4a{letter-spacing:-0.650667pt;}
.ls2a{letter-spacing:-0.618667pt;}
.ls11{letter-spacing:-0.576000pt;}
.ls18{letter-spacing:-0.549333pt;}
.ls1c{letter-spacing:-0.544000pt;}
.ls19{letter-spacing:-0.501867pt;}
.ls3d{letter-spacing:-0.365867pt;}
.ls29{letter-spacing:-0.358400pt;}
.lsc{letter-spacing:-0.272000pt;}
.ls1f{letter-spacing:-0.266133pt;}
.ls4c{letter-spacing:-0.261867pt;}
.ls20{letter-spacing:-0.240533pt;}
.ls2d{letter-spacing:-0.235733pt;}
.ls16{letter-spacing:-0.214933pt;}
.ls33{letter-spacing:-0.202133pt;}
.ls2c{letter-spacing:-0.197333pt;}
.ls1{letter-spacing:-0.181867pt;}
.ls1b{letter-spacing:-0.097067pt;}
.ls31{letter-spacing:-0.092267pt;}
.ls32{letter-spacing:-0.061333pt;}
.ls3f{letter-spacing:-0.048640pt;}
.ls14{letter-spacing:-0.038400pt;}
.ls23{letter-spacing:-0.025600pt;}
.ls4{letter-spacing:-0.009600pt;}
.ls2{letter-spacing:0.000000pt;}
.ls44{letter-spacing:0.011520pt;}
.ls13{letter-spacing:0.020480pt;}
.ls34{letter-spacing:0.032000pt;}
.ls22{letter-spacing:0.043520pt;}
.ls0{letter-spacing:0.053760pt;}
.ls46{letter-spacing:0.053867pt;}
.lse{letter-spacing:0.056533pt;}
.ls3a{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.066667pt;}
.lsa{letter-spacing:0.075520pt;}
.ls3b{letter-spacing:0.079467pt;}
.ls12{letter-spacing:0.089600pt;}
.ls1a{letter-spacing:0.094933pt;}
.ls43{letter-spacing:0.112533pt;}
.ls26{letter-spacing:0.138133pt;}
.ls49{letter-spacing:0.188267pt;}
.ls6{letter-spacing:0.198400pt;}
.ls37{letter-spacing:0.222933pt;}
.ls8{letter-spacing:0.226560pt;}
.ls45{letter-spacing:0.235733pt;}
.ls9{letter-spacing:0.268267pt;}
.ls35{letter-spacing:0.274133pt;}
.ls10{letter-spacing:0.281600pt;}
.ls4b{letter-spacing:0.284160pt;}
.ls24{letter-spacing:0.288000pt;}
.ls1d{letter-spacing:0.291733pt;}
.ls2e{letter-spacing:0.291840pt;}
.lsf{letter-spacing:0.300267pt;}
.ls48{letter-spacing:0.304533pt;}
.ls5{letter-spacing:0.309333pt;}
.lsd{letter-spacing:0.317333pt;}
.ls15{letter-spacing:0.320000pt;}
.ls47{letter-spacing:0.334720pt;}
.ls3e{letter-spacing:0.486400pt;}
.ls3{letter-spacing:0.629333pt;}
.ls4d{letter-spacing:0.650667pt;}
.ls2f{letter-spacing:1.126400pt;}
.ls38{letter-spacing:1.766400pt;}
.ls3c{letter-spacing:2.406400pt;}
.ls40{letter-spacing:6.246400pt;}
.ls36{letter-spacing:6.886400pt;}
.ls30{letter-spacing:10.086400pt;}
.ls1e{letter-spacing:15.846400pt;}
.ls25{letter-spacing:16.000000pt;}
.ls39{letter-spacing:19.686400pt;}
.ls7{letter-spacing:21.060267pt;}
.ws6{word-spacing:-14.153707pt;}
.ws7{word-spacing:-14.121707pt;}
.ws8{word-spacing:-13.235200pt;}
.ws1e{word-spacing:-13.227733pt;}
.ws26{word-spacing:-13.189333pt;}
.ws1d{word-spacing:-13.184000pt;}
.ws1f{word-spacing:-13.176533pt;}
.ws15{word-spacing:-13.091733pt;}
.ws10{word-spacing:-13.048533pt;}
.ws21{word-spacing:-13.033067pt;}
.wsa{word-spacing:-13.020267pt;}
.ws20{word-spacing:-13.017600pt;}
.ws14{word-spacing:-12.997120pt;}
.wsb{word-spacing:-12.974080pt;}
.wsd{word-spacing:-12.953600pt;}
.wsc{word-spacing:-12.915200pt;}
.ws23{word-spacing:-12.904960pt;}
.ws1c{word-spacing:-12.892267pt;}
.ws4{word-spacing:-12.880000pt;}
.ws1b{word-spacing:-12.861333pt;}
.ws11{word-spacing:-12.856533pt;}
.wse{word-spacing:-12.738667pt;}
.ws1a{word-spacing:-12.717867pt;}
.ws19{word-spacing:-12.595200pt;}
.ws22{word-spacing:-12.587733pt;}
.wsf{word-spacing:-12.451733pt;}
.ws12{word-spacing:-12.409600pt;}
.ws1{word-spacing:-12.390400pt;}
.ws9{word-spacing:-12.377600pt;}
.ws2d{word-spacing:-12.337067pt;}
.ws18{word-spacing:-12.334933pt;}
.ws13{word-spacing:-12.276267pt;}
.ws25{word-spacing:-12.254933pt;}
.ws24{word-spacing:-12.222933pt;}
.ws5{word-spacing:-12.003733pt;}
.ws2{word-spacing:-11.884800pt;}
.ws29{word-spacing:-11.874667pt;}
.ws27{word-spacing:-11.798933pt;}
.ws28{word-spacing:-11.697920pt;}
.ws0{word-spacing:-11.686400pt;}
.ws2c{word-spacing:-11.424533pt;}
.ws2a{word-spacing:-0.373120pt;}
.ws2b{word-spacing:-0.053120pt;}
.ws3{word-spacing:0.000000pt;}
.ws17{word-spacing:2.280960pt;}
.ws16{word-spacing:9.744640pt;}
._14{margin-left:-4.009493pt;}
._12{margin-left:-2.910720pt;}
._a{margin-left:-1.913387pt;}
._0{margin-left:-0.939520pt;}
._1{width:1.418667pt;}
._5{width:2.552533pt;}
._6{width:3.651627pt;}
._7{width:4.552533pt;}
._2{width:5.735040pt;}
._3{width:6.640000pt;}
._4{width:8.054400pt;}
._11{width:9.059840pt;}
._10{width:10.145920pt;}
._13{width:11.345280pt;}
._1d{width:13.050880pt;}
._b{width:14.199680pt;}
._c{width:15.866240pt;}
._f{width:17.115947pt;}
._9{width:18.149120pt;}
._8{width:19.199147pt;}
._17{width:20.094507pt;}
._d{width:21.088640pt;}
._e{width:22.032853pt;}
._18{width:23.080960pt;}
._19{width:24.008747pt;}
._1b{width:25.318400pt;}
._1a{width:26.967040pt;}
._1c{width:28.588373pt;}
._15{width:30.735360pt;}
._16{width:32.032640pt;}
.fs4{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs6{font-size:48.000000pt;}
.fs2{font-size:50.560000pt;}
.fs3{font-size:53.120000pt;}
.fs5{font-size:56.320000pt;}
.fs1{font-size:58.880000pt;}
.fs9{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.ya3{bottom:4.320000pt;}
.yb1{bottom:4.346667pt;}
.ya5{bottom:4.480000pt;}
.y117{bottom:4.800000pt;}
.ya0{bottom:5.600000pt;}
.y112{bottom:8.800000pt;}
.y23{bottom:11.040000pt;}
.ya2{bottom:20.320000pt;}
.yb0{bottom:20.346667pt;}
.yb5{bottom:20.480000pt;}
.y115{bottom:20.800000pt;}
.y116{bottom:28.800000pt;}
.ya9{bottom:36.320000pt;}
.y11b{bottom:36.800000pt;}
.y4d{bottom:50.080000pt;}
.y26{bottom:50.400000pt;}
.ya8{bottom:52.160000pt;}
.yb4{bottom:52.320000pt;}
.y11c{bottom:52.800000pt;}
.y25{bottom:67.392000pt;}
.ya7{bottom:68.160000pt;}
.y12a{bottom:99.712000pt;}
.y4a{bottom:102.112000pt;}
.yc1{bottom:103.872000pt;}
.y1aa{bottom:111.552000pt;}
.y96{bottom:111.712000pt;}
.ye7{bottom:114.272000pt;}
.y20{bottom:114.912000pt;}
.y12f{bottom:118.432000pt;}
.y130{bottom:120.832000pt;}
.y129{bottom:123.712000pt;}
.y99{bottom:125.792000pt;}
.y49{bottom:126.112000pt;}
.yc0{bottom:127.872000pt;}
.y1a9{bottom:128.832000pt;}
.y137{bottom:132.672000pt;}
.y95{bottom:135.706667pt;}
.y1f{bottom:136.186667pt;}
.ye6{bottom:138.266667pt;}
.y17d{bottom:140.986667pt;}
.y98{bottom:142.106667pt;}
.y12e{bottom:142.426667pt;}
.y72{bottom:144.826667pt;}
.y1a8{bottom:146.106667pt;}
.yfa{bottom:147.706667pt;}
.y48{bottom:150.106667pt;}
.ybf{bottom:151.866667pt;}
.y136{bottom:156.666667pt;}
.y1e{bottom:157.466667pt;}
.y17c{bottom:158.426667pt;}
.y97{bottom:158.586667pt;}
.y94{bottom:159.706667pt;}
.ye5{bottom:162.266667pt;}
.y1a7{bottom:163.546667pt;}
.y156{bottom:164.826667pt;}
.y12d{bottom:166.426667pt;}
.y166{bottom:167.866667pt;}
.y71{bottom:168.826667pt;}
.yf9{bottom:171.706667pt;}
.y47{bottom:174.106667pt;}
.y17b{bottom:175.706667pt;}
.ybe{bottom:175.866667pt;}
.y1d{bottom:178.906667pt;}
.y135{bottom:180.666667pt;}
.y1a6{bottom:180.826667pt;}
.y93{bottom:183.706667pt;}
.ye4{bottom:186.266667pt;}
.y155{bottom:188.826667pt;}
.y70{bottom:192.826667pt;}
.y17a{bottom:192.986667pt;}
.yf8{bottom:195.706667pt;}
.y46{bottom:198.106667pt;}
.ybd{bottom:199.866667pt;}
.y1c{bottom:200.186667pt;}
.y134{bottom:204.666667pt;}
.y92{bottom:207.706667pt;}
.ye3{bottom:210.266667pt;}
.y179{bottom:210.426667pt;}
.y12c{bottom:212.666667pt;}
.y154{bottom:212.826667pt;}
.y1a5{bottom:215.546667pt;}
.y6f{bottom:216.826667pt;}
.y10f{bottom:216.986667pt;}
.yf7{bottom:219.706667pt;}
.y1b{bottom:221.466667pt;}
.y45{bottom:222.106667pt;}
.ybc{bottom:223.866667pt;}
.y178{bottom:227.706667pt;}
.y91{bottom:231.706667pt;}
.y1a4{bottom:232.826667pt;}
.ye2{bottom:234.266667pt;}
.y153{bottom:236.826667pt;}
.y6e{bottom:240.826667pt;}
.y1a{bottom:242.906667pt;}
.yf6{bottom:243.706667pt;}
.y177{bottom:244.986667pt;}
.y44{bottom:246.106667pt;}
.ybb{bottom:247.866667pt;}
.y1a3{bottom:250.106667pt;}
.y133{bottom:250.746667pt;}
.y90{bottom:255.706667pt;}
.ye1{bottom:258.266667pt;}
.y152{bottom:260.826667pt;}
.y176{bottom:262.426667pt;}
.y19{bottom:264.186667pt;}
.y6d{bottom:264.826667pt;}
.y1a2{bottom:267.546667pt;}
.yf5{bottom:267.706667pt;}
.y43{bottom:270.106667pt;}
.y10e{bottom:270.266667pt;}
.yba{bottom:271.866667pt;}
.y131{bottom:272.186667pt;}
.y8f{bottom:279.706667pt;}
.ye0{bottom:282.266667pt;}
.y151{bottom:284.826667pt;}
.y18{bottom:285.466667pt;}
.y6c{bottom:288.826667pt;}
.yf4{bottom:291.706667pt;}
.y42{bottom:294.106667pt;}
.y10d{bottom:294.266667pt;}
.y175{bottom:296.986667pt;}
.y1a1{bottom:302.146667pt;}
.y8e{bottom:303.746667pt;}
.ydf{bottom:306.306667pt;}
.y17{bottom:306.946667pt;}
.y150{bottom:308.866667pt;}
.y6b{bottom:312.866667pt;}
.y174{bottom:314.466667pt;}
.yf3{bottom:315.746667pt;}
.yb9{bottom:316.066667pt;}
.y41{bottom:318.146667pt;}
.y10c{bottom:318.306667pt;}
.y1a0{bottom:319.586667pt;}
.y8d{bottom:327.746667pt;}
.y16{bottom:328.226667pt;}
.yde{bottom:330.306667pt;}
.y173{bottom:331.746667pt;}
.y14f{bottom:332.866667pt;}
.y6a{bottom:336.866667pt;}
.yf2{bottom:339.746667pt;}
.y40{bottom:342.146667pt;}
.y10b{bottom:342.306667pt;}
.y172{bottom:349.026667pt;}
.y15{bottom:349.506667pt;}
.y8c{bottom:351.746667pt;}
.y19f{bottom:354.146667pt;}
.ydd{bottom:354.306667pt;}
.y14e{bottom:356.866667pt;}
.y69{bottom:360.866667pt;}
.y132{bottom:363.586667pt;}
.y128{bottom:363.746667pt;}
.y3f{bottom:366.146667pt;}
.y10a{bottom:366.306667pt;}
.y171{bottom:366.466667pt;}
.yb8{bottom:367.586667pt;}
.y14{bottom:370.946667pt;}
.y19e{bottom:371.586667pt;}
.y8b{bottom:375.746667pt;}
.ydc{bottom:378.306667pt;}
.y14d{bottom:380.866667pt;}
.y68{bottom:384.866667pt;}
.yf1{bottom:385.826667pt;}
.yb7{bottom:387.266667pt;}
.y127{bottom:387.746667pt;}
.y19d{bottom:388.866667pt;}
.y3e{bottom:390.146667pt;}
.y109{bottom:390.306667pt;}
.y13{bottom:392.226667pt;}
.y170{bottom:394.306667pt;}
.y12b{bottom:395.586667pt;}
.y8a{bottom:399.746667pt;}
.ydb{bottom:402.306667pt;}
.y14c{bottom:404.866667pt;}
.y19c{bottom:406.146667pt;}
.y67{bottom:408.866667pt;}
.y126{bottom:411.746667pt;}
.y12{bottom:413.506667pt;}
.y3d{bottom:414.146667pt;}
.y108{bottom:414.306667pt;}
.yb6{bottom:422.786667pt;}
.y165{bottom:423.426667pt;}
.y19b{bottom:423.586667pt;}
.y89{bottom:423.746667pt;}
.yda{bottom:426.306667pt;}
.y14b{bottom:428.866667pt;}
.y66{bottom:432.866667pt;}
.y125{bottom:435.746667pt;}
.y3c{bottom:438.146667pt;}
.y107{bottom:438.306667pt;}
.y19a{bottom:440.866667pt;}
.yb3{bottom:445.026667pt;}
.y16f{bottom:445.826667pt;}
.y164{bottom:447.426667pt;}
.y88{bottom:447.746667pt;}
.yd9{bottom:450.306667pt;}
.y14a{bottom:452.866667pt;}
.y65{bottom:456.866667pt;}
.y199{bottom:458.146667pt;}
.y124{bottom:459.746667pt;}
.y106{bottom:462.306667pt;}
.y16e{bottom:464.866667pt;}
.y3b{bottom:471.266667pt;}
.y163{bottom:471.426667pt;}
.y87{bottom:471.746667pt;}
.yd8{bottom:474.306667pt;}
.y198{bottom:475.586667pt;}
.y149{bottom:476.866667pt;}
.y64{bottom:480.866667pt;}
.y123{bottom:483.746667pt;}
.y105{bottom:486.306667pt;}
.y16d{bottom:486.946667pt;}
.y197{bottom:492.866667pt;}
.y162{bottom:495.426667pt;}
.y86{bottom:495.746667pt;}
.yd7{bottom:498.306667pt;}
.y148{bottom:500.866667pt;}
.y63{bottom:504.866667pt;}
.y122{bottom:507.746667pt;}
.y196{bottom:510.146667pt;}
.y104{bottom:510.306667pt;}
.yb2{bottom:512.546667pt;}
.y11{bottom:514.946667pt;}
.y161{bottom:519.426667pt;}
.y85{bottom:519.746667pt;}
.yd6{bottom:522.306667pt;}
.y147{bottom:524.866667pt;}
.y195{bottom:527.586667pt;}
.y62{bottom:528.866667pt;}
.y16c{bottom:529.186667pt;}
.y121{bottom:531.746667pt;}
.yaf{bottom:532.226667pt;}
.y103{bottom:534.306667pt;}
.y10{bottom:536.226667pt;}
.y160{bottom:543.453333pt;}
.y84{bottom:543.773333pt;}
.y194{bottom:544.893333pt;}
.y16b{bottom:545.693333pt;}
.yd5{bottom:546.333333pt;}
.y3a{bottom:546.973333pt;}
.y146{bottom:548.893333pt;}
.y61{bottom:552.893333pt;}
.y120{bottom:555.773333pt;}
.yf{bottom:557.533333pt;}
.y102{bottom:558.333333pt;}
.y16a{bottom:562.173333pt;}
.y39{bottom:563.933333pt;}
.y15f{bottom:567.453333pt;}
.y83{bottom:567.773333pt;}
.yae{bottom:567.933333pt;}
.yd4{bottom:570.333333pt;}
.y145{bottom:572.893333pt;}
.y60{bottom:576.893333pt;}
.y169{bottom:578.493333pt;}
.ye{bottom:578.973333pt;}
.y193{bottom:579.613333pt;}
.y11f{bottom:579.773333pt;}
.y101{bottom:582.333333pt;}
.yad{bottom:590.173333pt;}
.y15e{bottom:591.453333pt;}
.y82{bottom:591.773333pt;}
.yd3{bottom:594.333333pt;}
.y144{bottom:596.893333pt;}
.y5f{bottom:600.893333pt;}
.y11e{bottom:603.773333pt;}
.y168{bottom:604.893333pt;}
.y100{bottom:606.333333pt;}
.y38{bottom:613.693333pt;}
.y192{bottom:614.173333pt;}
.y15d{bottom:615.453333pt;}
.y81{bottom:615.773333pt;}
.yd2{bottom:618.333333pt;}
.y143{bottom:620.893333pt;}
.yd{bottom:624.253333pt;}
.y5e{bottom:624.893333pt;}
.y11d{bottom:627.773333pt;}
.yff{bottom:630.333333pt;}
.y191{bottom:631.613333pt;}
.y37{bottom:634.973333pt;}
.y15c{bottom:639.453333pt;}
.y80{bottom:639.773333pt;}
.yac{bottom:641.693333pt;}
.yd1{bottom:642.333333pt;}
.y142{bottom:644.893333pt;}
.yc{bottom:645.533333pt;}
.y5d{bottom:648.893333pt;}
.yfe{bottom:654.333333pt;}
.y11a{bottom:655.613333pt;}
.y36{bottom:656.413333pt;}
.yab{bottom:661.373333pt;}
.y15b{bottom:663.453333pt;}
.y7f{bottom:663.773333pt;}
.y190{bottom:666.173333pt;}
.yd0{bottom:666.333333pt;}
.yb{bottom:666.973333pt;}
.y141{bottom:668.893333pt;}
.y5c{bottom:672.893333pt;}
.y35{bottom:677.693333pt;}
.yfd{bottom:678.333333pt;}
.yaa{bottom:680.893333pt;}
.y18f{bottom:683.613333pt;}
.y15a{bottom:687.453333pt;}
.yf0{bottom:687.773333pt;}
.ya{bottom:688.253333pt;}
.ycf{bottom:690.333333pt;}
.y140{bottom:692.893333pt;}
.y5b{bottom:696.893333pt;}
.y7e{bottom:697.053333pt;}
.y34{bottom:698.973333pt;}
.y18e{bottom:700.893333pt;}
.yfc{bottom:702.333333pt;}
.ya6{bottom:703.293333pt;}
.y159{bottom:711.453333pt;}
.yef{bottom:711.773333pt;}
.yce{bottom:714.333333pt;}
.y13f{bottom:716.893333pt;}
.y18d{bottom:718.173333pt;}
.y33{bottom:720.413333pt;}
.y5a{bottom:720.893333pt;}
.yfb{bottom:726.333333pt;}
.y119{bottom:728.253333pt;}
.y9{bottom:733.533333pt;}
.y158{bottom:735.453333pt;}
.y18c{bottom:735.613333pt;}
.yee{bottom:735.773333pt;}
.ycd{bottom:738.333333pt;}
.y13e{bottom:740.893333pt;}
.y32{bottom:741.693333pt;}
.y59{bottom:744.893333pt;}
.y167{bottom:745.053333pt;}
.y7d{bottom:750.333333pt;}
.y18b{bottom:752.893333pt;}
.y8{bottom:754.973333pt;}
.y157{bottom:759.453333pt;}
.yed{bottom:759.773333pt;}
.ycc{bottom:762.333333pt;}
.y31{bottom:762.973333pt;}
.y13d{bottom:764.893333pt;}
.y58{bottom:768.893333pt;}
.y18a{bottom:770.173333pt;}
.y7c{bottom:774.373333pt;}
.y7{bottom:776.293333pt;}
.y118{bottom:776.933333pt;}
.yec{bottom:783.813333pt;}
.y30{bottom:784.453333pt;}
.ycb{bottom:786.373333pt;}
.ya4{bottom:786.693333pt;}
.y189{bottom:787.653333pt;}
.y13c{bottom:788.933333pt;}
.y57{bottom:792.933333pt;}
.y6{bottom:797.573333pt;}
.y7b{bottom:798.373333pt;}
.y188{bottom:804.933333pt;}
.y2f{bottom:805.733333pt;}
.ya1{bottom:806.373333pt;}
.yeb{bottom:807.813333pt;}
.yca{bottom:810.373333pt;}
.y13b{bottom:812.933333pt;}
.y56{bottom:816.933333pt;}
.y187{bottom:822.213333pt;}
.y7a{bottom:822.373333pt;}
.y114{bottom:825.733333pt;}
.y2e{bottom:827.013333pt;}
.yea{bottom:831.813333pt;}
.yc9{bottom:834.373333pt;}
.y13a{bottom:836.933333pt;}
.y186{bottom:839.653333pt;}
.y55{bottom:840.933333pt;}
.y9f{bottom:842.053333pt;}
.y79{bottom:846.373333pt;}
.y2d{bottom:848.453333pt;}
.ye9{bottom:855.813333pt;}
.y185{bottom:856.933333pt;}
.yc8{bottom:858.373333pt;}
.y54{bottom:864.933333pt;}
.y1b3{bottom:867.973333pt;}
.y2c{bottom:869.733333pt;}
.y78{bottom:870.373333pt;}
.y184{bottom:874.213333pt;}
.y113{bottom:874.373333pt;}
.y9e{bottom:875.173333pt;}
.yc7{bottom:882.373333pt;}
.y139{bottom:883.013333pt;}
.y1b2{bottom:883.653333pt;}
.y53{bottom:888.933333pt;}
.ye8{bottom:889.093333pt;}
.y2b{bottom:891.013333pt;}
.y183{bottom:891.653333pt;}
.y77{bottom:894.373333pt;}
.y5{bottom:899.013333pt;}
.y1b1{bottom:899.173333pt;}
.y111{bottom:903.013333pt;}
.yc6{bottom:906.373333pt;}
.y182{bottom:908.933333pt;}
.y2a{bottom:912.453333pt;}
.y52{bottom:912.933333pt;}
.y1b0{bottom:914.853333pt;}
.y9d{bottom:917.413333pt;}
.y76{bottom:918.373333pt;}
.y4{bottom:920.293333pt;}
.y181{bottom:926.213333pt;}
.yc5{bottom:930.373333pt;}
.y1af{bottom:930.533333pt;}
.y29{bottom:933.733333pt;}
.y51{bottom:936.933333pt;}
.y9c{bottom:941.413333pt;}
.y75{bottom:942.373333pt;}
.y110{bottom:942.693333pt;}
.y180{bottom:943.653333pt;}
.y1ae{bottom:946.213333pt;}
.yc4{bottom:954.373333pt;}
.y50{bottom:960.933333pt;}
.y1ad{bottom:962.213333pt;}
.y74{bottom:966.373333pt;}
.y3{bottom:968.293333pt;}
.y28{bottom:971.013333pt;}
.y17f{bottom:978.213333pt;}
.yc3{bottom:978.373333pt;}
.y1ac{bottom:979.493333pt;}
.y9b{bottom:979.653333pt;}
.y4f{bottom:984.933333pt;}
.y2{bottom:989.573333pt;}
.y73{bottom:990.373333pt;}
.y27{bottom:992.453333pt;}
.y17e{bottom:995.653333pt;}
.y9a{bottom:996.133333pt;}
.y1ab{bottom:996.773333pt;}
.y4e{bottom:1008.933333pt;}
.y1{bottom:1011.013333pt;}
.yc2{bottom:1011.680000pt;}
.y24{bottom:1012.800000pt;}
.y138{bottom:1014.240000pt;}
.y22{bottom:1027.360000pt;}
.y4c{bottom:1037.760000pt;}
.y4b{bottom:1051.360000pt;}
.y21{bottom:1056.160000pt;}
.h11{height:18.560000pt;}
.hf{height:18.720000pt;}
.hc{height:21.280000pt;}
.h9{height:24.000000pt;}
.h17{height:28.000000pt;}
.h1e{height:32.780625pt;}
.he{height:34.560000pt;}
.h13{height:34.592000pt;}
.ha{height:41.507812pt;}
.hd{height:41.531250pt;}
.h5{height:43.721563pt;}
.h7{height:46.220625pt;}
.h6{height:46.635625pt;}
.h18{height:48.000000pt;}
.h19{height:48.032000pt;}
.h8{height:49.005000pt;}
.h12{height:50.560000pt;}
.h4{height:51.232500pt;}
.h3{height:51.692500pt;}
.h1f{height:52.134375pt;}
.h1d{height:56.187500pt;}
.h1c{height:60.519362pt;}
.hb{height:60.682500pt;}
.h2{height:65.739375pt;}
.h15{height:65.781915pt;}
.h14{height:66.560000pt;}
.h16{height:66.625000pt;}
.h1a{height:72.000000pt;}
.h10{height:82.432000pt;}
.h1b{height:377.346667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:84.320000pt;}
.w3{width:112.960000pt;}
.wd{width:122.912000pt;}
.wa{width:132.000000pt;}
.wc{width:151.226667pt;}
.w8{width:185.946667pt;}
.w9{width:195.066667pt;}
.wb{width:425.373333pt;}
.w4{width:453.373333pt;}
.w5{width:482.813333pt;}
.w7{width:576.093333pt;}
.we{width:605.373333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x16{left:9.120000pt;}
.xe{left:26.074667pt;}
.xb{left:64.160000pt;}
.x1{left:113.471988pt;}
.x2{left:132.351988pt;}
.xc{left:141.946655pt;}
.x13{left:144.040000pt;}
.xd{left:151.226655pt;}
.x11{left:196.346655pt;}
.x5{left:213.026667pt;}
.x4{left:226.426667pt;}
.x19{left:235.546655pt;}
.x17{left:241.146655pt;}
.x12{left:245.466667pt;}
.x1a{left:252.546655pt;}
.x1b{left:256.386655pt;}
.x1c{left:282.306655pt;}
.xf{left:299.426667pt;}
.x18{left:302.621333pt;}
.x6{left:315.586655pt;}
.x14{left:396.706667pt;}
.x7{left:406.306655pt;}
.x9{left:427.933322pt;}
.x10{left:494.493333pt;}
.x8{left:517.373322pt;}
.x15{left:547.933333pt;}
.xa{left:596.293333pt;}
}




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