
    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_7d70c8c66f7f173180578c9c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_ecb1c6da035c630dc8092447.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_98a099db9bf5d0535e718388.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_6193fc93719873dbca485474.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;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_3755820008b35b44f483d552.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.202148;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_70a011e8185723e6b7aa4ba2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946289;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_605b552281aaf6eb7e393077.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.895508;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_1d3076b71797b48ca9eede63.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.759766;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);}
.v3{vertical-align:-20.880000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.880000px;}
.v2{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.lsd{letter-spacing:-0.960000px;}
.ls32{letter-spacing:-0.696000px;}
.ls19{letter-spacing:-0.660000px;}
.ls35{letter-spacing:-0.544800px;}
.ls22{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.463800px;}
.lsc{letter-spacing:-0.414000px;}
.ls2c{letter-spacing:-0.303000px;}
.ls34{letter-spacing:-0.286800px;}
.ls33{letter-spacing:-0.268800px;}
.ls14{letter-spacing:-0.248400px;}
.ls17{letter-spacing:-0.240600px;}
.ls18{letter-spacing:-0.226800px;}
.ls37{letter-spacing:-0.175800px;}
.ls2e{letter-spacing:-0.172200px;}
.ls4{letter-spacing:-0.132600px;}
.ls3e{letter-spacing:-0.115800px;}
.ls2f{letter-spacing:-0.109200px;}
.ls1f{letter-spacing:-0.107400px;}
.ls16{letter-spacing:-0.078600px;}
.ls9{letter-spacing:-0.064800px;}
.ls8{letter-spacing:-0.058320px;}
.ls21{letter-spacing:-0.041040px;}
.ls2d{letter-spacing:-0.032400px;}
.ls2{letter-spacing:0.000000px;}
.ls38{letter-spacing:0.023760px;}
.ls3{letter-spacing:0.038880px;}
.lsb{letter-spacing:0.060600px;}
.ls7{letter-spacing:0.066000px;}
.ls1d{letter-spacing:0.067200px;}
.ls27{letter-spacing:0.117360px;}
.ls1b{letter-spacing:0.140400px;}
.ls0{letter-spacing:0.150000px;}
.ls13{letter-spacing:0.174000px;}
.ls1{letter-spacing:0.174240px;}
.lsa{letter-spacing:0.175200px;}
.ls1c{letter-spacing:0.180000px;}
.ls1e{letter-spacing:0.186600px;}
.ls6{letter-spacing:0.190200px;}
.ls30{letter-spacing:0.195000px;}
.ls29{letter-spacing:0.208080px;}
.ls3d{letter-spacing:0.283800px;}
.ls3f{letter-spacing:0.294240px;}
.ls15{letter-spacing:0.306000px;}
.ls25{letter-spacing:0.318240px;}
.ls20{letter-spacing:0.393600px;}
.ls2a{letter-spacing:0.417000px;}
.ls3c{letter-spacing:0.433440px;}
.ls23{letter-spacing:0.447840px;}
.ls2b{letter-spacing:0.479400px;}
.ls3a{letter-spacing:0.637200px;}
.ls36{letter-spacing:0.654000px;}
.ls24{letter-spacing:0.655200px;}
.ls26{letter-spacing:0.667440px;}
.ls28{letter-spacing:0.837360px;}
.ls31{letter-spacing:1.026000px;}
.ls1a{letter-spacing:2.334240px;}
.ls3b{letter-spacing:12.186720px;}
.ls39{letter-spacing:42.426720px;}
.lsf{letter-spacing:44.586720px;}
.ls11{letter-spacing:46.026720px;}
.lse{letter-spacing:47.466720px;}
.ls10{letter-spacing:51.066720px;}
.ls12{letter-spacing:58.266720px;}
.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;}
}
.ws1d{word-spacing:-59.760000px;}
.ws0{word-spacing:-19.077120px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws1c{word-spacing:-14.531760px;}
.ws2{word-spacing:-14.506440px;}
.ws1e{word-spacing:-14.159760px;}
.ws17{word-spacing:-13.985160px;}
.ws16{word-spacing:-13.922760px;}
.wsc{word-spacing:-13.811760px;}
.ws12{word-spacing:-13.692360px;}
.wsb{word-spacing:-13.680960px;}
.ws15{word-spacing:-13.646160px;}
.ws11{word-spacing:-13.572960px;}
.ws8{word-spacing:-13.566360px;}
.ws1f{word-spacing:-13.529520px;}
.ws6{word-spacing:-13.505760px;}
.ws19{word-spacing:-13.473360px;}
.ws14{word-spacing:-13.464720px;}
.ws10{word-spacing:-13.447440px;}
.ws7{word-spacing:-13.440960px;}
.wsd{word-spacing:-13.427160px;}
.ws13{word-spacing:-13.398360px;}
.ws1b{word-spacing:-13.396560px;}
.ws1a{word-spacing:-13.333560px;}
.wsf{word-spacing:-13.278960px;}
.wse{word-spacing:-13.265160px;}
.wsa{word-spacing:-13.257360px;}
.ws18{word-spacing:-13.202760px;}
.ws4{word-spacing:-9.437760px;}
.ws5{word-spacing:-8.786880px;}
.ws9{word-spacing:0.000000px;}
._1d{margin-left:-533.278560px;}
._1e{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._12{margin-left:-292.170240px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._17{margin-left:-247.991040px;}
._b{margin-left:-240.510240px;}
._16{margin-left:-222.774000px;}
._21{margin-left:-214.738560px;}
._f{margin-left:-202.866240px;}
._18{margin-left:-200.514720px;}
._20{margin-left:-190.074240px;}
._e{margin-left:-171.054720px;}
._24{margin-left:-169.761600px;}
._d{margin-left:-165.322080px;}
._10{margin-left:-160.046400px;}
._9{margin-left:-153.774720px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._23{margin-left:-145.036560px;}
._c{margin-left:-134.192160px;}
._1f{margin-left:-133.011360px;}
._11{margin-left:-115.522560px;}
._22{margin-left:-109.621680px;}
._1c{margin-left:-102.349440px;}
._7{margin-left:-91.124880px;}
._1b{margin-left:-86.399760px;}
._1a{margin-left:-83.520000px;}
._13{margin-left:-81.351360px;}
._15{margin-left:-66.703680px;}
._14{margin-left:-49.123920px;}
._19{margin-left:-32.468640px;}
._34{margin-left:-4.083840px;}
._25{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._26{width:1.125120px;}
._2b{width:2.340960px;}
._2c{width:3.808320px;}
._2d{width:5.290560px;}
._2e{width:6.307920px;}
._32{width:7.317120px;}
._2f{width:8.426160px;}
._30{width:9.592560px;}
._2a{width:11.125680px;}
._29{width:12.331200px;}
._31{width:15.422400px;}
._27{width:17.524080px;}
._28{width:18.649440px;}
._38{width:26.832240px;}
._3e{width:53.607600px;}
._39{width:62.449200px;}
._3d{width:67.749120px;}
._37{width:71.951040px;}
._40{width:81.273600px;}
._35{width:85.287360px;}
._36{width:88.504560px;}
._3b{width:96.718080px;}
._3a{width:111.810960px;}
._41{width:160.754400px;}
._3c{width:168.918480px;}
._3f{width:255.713040px;}
._33{width:607.948080px;}
.fc3{color:rgb(247,150,70);}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(192,80,77);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y13d{bottom:3.960000px;}
.y147{bottom:3.990000px;}
.y128{bottom:6.480000px;}
.yb2{bottom:6.660000px;}
.yb6{bottom:6.690000px;}
.yd6{bottom:6.705000px;}
.y10a{bottom:12.960000px;}
.y141{bottom:22.140000px;}
.y13c{bottom:22.320000px;}
.y146{bottom:22.350000px;}
.ycf{bottom:27.720000px;}
.yd5{bottom:27.765000px;}
.ycc{bottom:28.440000px;}
.y109{bottom:34.020000px;}
.y13e{bottom:40.545000px;}
.yce{bottom:48.810000px;}
.ycb{bottom:49.530000px;}
.y13a{bottom:59.625000px;}
.y6{bottom:59.940000px;}
.yca{bottom:70.590000px;}
.y139{bottom:77.985000px;}
.y12d{bottom:88.740000px;}
.yb4{bottom:89.460000px;}
.y8c{bottom:91.260000px;}
.y31{bottom:92.160000px;}
.y160{bottom:93.960000px;}
.y76{bottom:94.320000px;}
.y10e{bottom:99.900000px;}
.y61{bottom:103.320000px;}
.ye2{bottom:104.940000px;}
.y12c{bottom:109.800000px;}
.y8b{bottom:112.320000px;}
.y30{bottom:113.220000px;}
.yb3{bottom:113.760000px;}
.y15f{bottom:114.840000px;}
.y75{bottom:115.380000px;}
.y10d{bottom:120.960000px;}
.y181{bottom:122.580000px;}
.y60{bottom:124.380000px;}
.ye1{bottom:126.000000px;}
.y15e{bottom:130.140000px;}
.y12b{bottom:131.580000px;}
.y8a{bottom:133.380000px;}
.y2f{bottom:134.280000px;}
.yb1{bottom:135.540000px;}
.y74{bottom:136.440000px;}
.y10c{bottom:142.020000px;}
.y5f{bottom:145.440000px;}
.ye0{bottom:147.060000px;}
.y15d{bottom:151.950000px;}
.y12a{bottom:153.390000px;}
.y89{bottom:154.470000px;}
.y2e{bottom:155.370000px;}
.y73{bottom:157.530000px;}
.y10b{bottom:163.110000px;}
.yb0{bottom:164.190000px;}
.y5e{bottom:166.530000px;}
.ydf{bottom:168.150000px;}
.y15c{bottom:173.730000px;}
.y129{bottom:174.450000px;}
.y88{bottom:175.530000px;}
.y2d{bottom:176.430000px;}
.y108{bottom:178.230000px;}
.y72{bottom:178.590000px;}
.yaf{bottom:185.070000px;}
.y5d{bottom:187.590000px;}
.yde{bottom:189.210000px;}
.y15b{bottom:195.510000px;}
.y127{bottom:196.410000px;}
.y87{bottom:196.590000px;}
.y2c{bottom:197.490000px;}
.y71{bottom:199.650000px;}
.yae{bottom:206.130000px;}
.y5c{bottom:208.650000px;}
.ydd{bottom:210.270000px;}
.y180{bottom:217.110000px;}
.y15a{bottom:217.290000px;}
.y86{bottom:217.650000px;}
.y2b{bottom:218.550000px;}
.y70{bottom:220.710000px;}
.y126{bottom:224.850000px;}
.yad{bottom:227.190000px;}
.y107{bottom:227.370000px;}
.y5b{bottom:229.710000px;}
.ydc{bottom:231.330000px;}
.y17f{bottom:238.170000px;}
.y85{bottom:238.710000px;}
.y159{bottom:239.070000px;}
.y2a{bottom:239.610000px;}
.y125{bottom:245.910000px;}
.yac{bottom:248.250000px;}
.y5a{bottom:250.770000px;}
.ydb{bottom:252.390000px;}
.y17e{bottom:259.230000px;}
.y84{bottom:259.770000px;}
.y29{bottom:260.670000px;}
.y158{bottom:261.030000px;}
.y124{bottom:266.970000px;}
.yab{bottom:269.310000px;}
.y59{bottom:271.830000px;}
.yda{bottom:273.450000px;}
.y106{bottom:276.510000px;}
.y17d{bottom:280.290000px;}
.y83{bottom:280.830000px;}
.y28{bottom:281.730000px;}
.y123{bottom:282.090000px;}
.y157{bottom:282.810000px;}
.yaa{bottom:290.370000px;}
.y58{bottom:292.890000px;}
.yd9{bottom:294.510000px;}
.y17c{bottom:301.350000px;}
.y82{bottom:301.890000px;}
.y27{bottom:302.790000px;}
.y156{bottom:304.590000px;}
.y122{bottom:306.390000px;}
.yd8{bottom:309.630000px;}
.ya9{bottom:311.430000px;}
.y57{bottom:313.950000px;}
.y105{bottom:319.350000px;}
.y17b{bottom:322.410000px;}
.y81{bottom:322.950000px;}
.y26{bottom:323.850000px;}
.y155{bottom:326.370000px;}
.y121{bottom:330.870000px;}
.ya8{bottom:332.490000px;}
.y56{bottom:335.010000px;}
.y17a{bottom:343.470000px;}
.y80{bottom:344.010000px;}
.y25{bottom:344.910000px;}
.y154{bottom:348.150000px;}
.yd7{bottom:352.470000px;}
.ya7{bottom:353.550000px;}
.y120{bottom:355.170000px;}
.y55{bottom:356.070000px;}
.y104{bottom:362.190000px;}
.y179{bottom:364.530000px;}
.y7f{bottom:365.070000px;}
.y24{bottom:365.970000px;}
.y153{bottom:369.930000px;}
.ya6{bottom:374.610000px;}
.y54{bottom:377.130000px;}
.y11f{bottom:379.470000px;}
.y103{bottom:383.250000px;}
.y178{bottom:385.590000px;}
.y7e{bottom:386.130000px;}
.y23{bottom:387.030000px;}
.y152{bottom:391.710000px;}
.yd4{bottom:395.310000px;}
.ya5{bottom:395.670000px;}
.y53{bottom:398.190000px;}
.y11e{bottom:403.995000px;}
.y102{bottom:405.075000px;}
.y177{bottom:406.695000px;}
.y7d{bottom:407.235000px;}
.y22{bottom:408.135000px;}
.y151{bottom:413.715000px;}
.ya4{bottom:416.775000px;}
.y52{bottom:419.295000px;}
.y101{bottom:426.135000px;}
.y176{bottom:427.755000px;}
.y7c{bottom:428.295000px;}
.y21{bottom:429.195000px;}
.y150{bottom:435.495000px;}
.yd3{bottom:438.195000px;}
.ya3{bottom:438.375000px;}
.y51{bottom:440.355000px;}
.y100{bottom:447.915000px;}
.y175{bottom:448.815000px;}
.y7b{bottom:449.355000px;}
.y20{bottom:450.255000px;}
.y11d{bottom:452.775000px;}
.y14f{bottom:457.275000px;}
.y50{bottom:461.415000px;}
.ya2{bottom:461.775000px;}
.y174{bottom:469.875000px;}
.y7a{bottom:470.415000px;}
.y1f{bottom:471.315000px;}
.yff{bottom:476.355000px;}
.y11c{bottom:477.075000px;}
.y14e{bottom:479.055000px;}
.yd2{bottom:481.035000px;}
.y4f{bottom:482.475000px;}
.ya1{bottom:483.555000px;}
.y173{bottom:490.935000px;}
.y79{bottom:491.475000px;}
.y1e{bottom:492.375000px;}
.yfe{bottom:497.415000px;}
.y14d{bottom:500.835000px;}
.y11b{bottom:501.555000px;}
.y4e{bottom:503.535000px;}
.ya0{bottom:505.335000px;}
.y172{bottom:511.995000px;}
.y78{bottom:512.535000px;}
.y1d{bottom:513.435000px;}
.yfd{bottom:518.475000px;}
.y14c{bottom:522.615000px;}
.yd1{bottom:523.875000px;}
.y4d{bottom:524.595000px;}
.y11a{bottom:525.855000px;}
.y9f{bottom:527.655000px;}
.y171{bottom:533.055000px;}
.y77{bottom:533.595000px;}
.y1c{bottom:536.835000px;}
.yfc{bottom:539.535000px;}
.y4c{bottom:545.655000px;}
.y9e{bottom:549.435000px;}
.y119{bottom:550.155000px;}
.y14b{bottom:551.235000px;}
.y170{bottom:554.115000px;}
.y6f{bottom:554.655000px;}
.yfb{bottom:560.595000px;}
.y1b{bottom:566.715000px;}
.yd0{bottom:566.895000px;}
.y9d{bottom:570.495000px;}
.y14a{bottom:572.115000px;}
.y118{bottom:574.635000px;}
.y16f{bottom:575.175000px;}
.y6e{bottom:575.715000px;}
.yfa{bottom:581.655000px;}
.y1a{bottom:587.775000px;}
.y9c{bottom:591.555000px;}
.y149{bottom:593.175000px;}
.y16e{bottom:596.235000px;}
.y6d{bottom:596.775000px;}
.y117{bottom:598.935000px;}
.yf9{bottom:602.715000px;}
.y148{bottom:608.475000px;}
.y19{bottom:608.835000px;}
.yc9{bottom:609.735000px;}
.y16d{bottom:611.355000px;}
.y9b{bottom:612.615000px;}
.y6c{bottom:617.835000px;}
.y116{bottom:623.415000px;}
.yf8{bottom:623.775000px;}
.y18{bottom:629.895000px;}
.y9a{bottom:633.675000px;}
.y6b{bottom:638.895000px;}
.yf7{bottom:644.835000px;}
.y145{bottom:645.735000px;}
.y115{bottom:647.715000px;}
.y4b{bottom:650.805000px;}
.y17{bottom:650.985000px;}
.y99{bottom:654.585000px;}
.y6a{bottom:659.805000px;}
.y16c{bottom:660.525000px;}
.yf6{bottom:665.925000px;}
.y4a{bottom:671.865000px;}
.y16{bottom:672.045000px;}
.ycd{bottom:673.665000px;}
.y69{bottom:680.865000px;}
.y144{bottom:683.205000px;}
.y98{bottom:683.925000px;}
.yf5{bottom:686.985000px;}
.y49{bottom:692.925000px;}
.y15{bottom:693.105000px;}
.y114{bottom:696.525000px;}
.y68{bottom:701.925000px;}
.yc8{bottom:702.105000px;}
.y16b{bottom:709.665000px;}
.y48{bottom:713.985000px;}
.y14{bottom:714.165000px;}
.y143{bottom:720.465000px;}
.y113{bottom:720.825000px;}
.y67{bottom:722.985000px;}
.yc7{bottom:723.165000px;}
.yf4{bottom:723.885000px;}
.y47{bottom:735.045000px;}
.y13{bottom:735.225000px;}
.y66{bottom:744.045000px;}
.yc6{bottom:744.225000px;}
.y112{bottom:745.305000px;}
.yf3{bottom:745.845000px;}
.y16a{bottom:752.505000px;}
.y46{bottom:756.105000px;}
.y12{bottom:756.285000px;}
.y142{bottom:757.905000px;}
.y65{bottom:765.105000px;}
.yc5{bottom:765.285000px;}
.yf2{bottom:767.625000px;}
.y111{bottom:769.605000px;}
.y45{bottom:777.165000px;}
.y11{bottom:777.345000px;}
.y64{bottom:786.165000px;}
.yc4{bottom:786.345000px;}
.yf1{bottom:789.405000px;}
.y110{bottom:794.085000px;}
.y140{bottom:795.345000px;}
.y44{bottom:798.225000px;}
.y10{bottom:798.405000px;}
.y63{bottom:807.225000px;}
.yc3{bottom:807.405000px;}
.yf0{bottom:811.185000px;}
.y169{bottom:816.405000px;}
.y10f{bottom:818.385000px;}
.y43{bottom:819.285000px;}
.yf{bottom:819.465000px;}
.y62{bottom:828.285000px;}
.yc2{bottom:828.465000px;}
.y13f{bottom:832.605000px;}
.yef{bottom:832.965000px;}
.y168{bottom:838.185000px;}
.y97{bottom:840.345000px;}
.ye{bottom:840.525000px;}
.y42{bottom:849.345000px;}
.yc1{bottom:849.525000px;}
.yee{bottom:854.745000px;}
.y167{bottom:859.245000px;}
.y96{bottom:861.405000px;}
.yd{bottom:861.585000px;}
.y138{bottom:870.045000px;}
.y41{bottom:870.405000px;}
.yc0{bottom:870.585000px;}
.yed{bottom:876.525000px;}
.y166{bottom:881.025000px;}
.y95{bottom:882.465000px;}
.yc{bottom:884.805000px;}
.ybf{bottom:885.705000px;}
.y40{bottom:891.465000px;}
.yec{bottom:898.530000px;}
.y94{bottom:903.570000px;}
.y165{bottom:909.690000px;}
.yb{bottom:911.130000px;}
.ybe{bottom:911.310000px;}
.y3f{bottom:912.570000px;}
.yeb{bottom:920.310000px;}
.y93{bottom:924.630000px;}
.y13b{bottom:925.710000px;}
.ya{bottom:927.870000px;}
.y164{bottom:930.750000px;}
.y3e{bottom:933.630000px;}
.yea{bottom:942.090000px;}
.ybd{bottom:945.150000px;}
.y92{bottom:945.690000px;}
.y163{bottom:945.870000px;}
.y9{bottom:950.190000px;}
.y3d{bottom:954.690000px;}
.ye9{bottom:963.870000px;}
.y91{bottom:966.750000px;}
.y137{bottom:969.810000px;}
.ybc{bottom:970.710000px;}
.y8{bottom:975.390000px;}
.y3c{bottom:975.750000px;}
.ye8{bottom:985.650000px;}
.y90{bottom:987.810000px;}
.y162{bottom:988.710000px;}
.y136{bottom:990.870000px;}
.y3b{bottom:996.810000px;}
.ybb{bottom:1004.550000px;}
.ye7{bottom:1007.430000px;}
.y8f{bottom:1008.870000px;}
.y7{bottom:1009.050000px;}
.y135{bottom:1011.930000px;}
.y3a{bottom:1017.870000px;}
.y134{bottom:1027.050000px;}
.ye6{bottom:1029.390000px;}
.y8e{bottom:1029.930000px;}
.y161{bottom:1031.550000px;}
.yba{bottom:1036.950000px;}
.y39{bottom:1038.930000px;}
.y133{bottom:1048.830000px;}
.y5{bottom:1049.190000px;}
.y8d{bottom:1050.990000px;}
.ye5{bottom:1051.170000px;}
.y38{bottom:1059.990000px;}
.y132{bottom:1070.610000px;}
.yb9{bottom:1071.330000px;}
.ye4{bottom:1072.950000px;}
.y37{bottom:1081.050000px;}
.y4{bottom:1081.410000px;}
.y131{bottom:1092.390000px;}
.ye3{bottom:1094.730000px;}
.y36{bottom:1102.110000px;}
.yb8{bottom:1103.010000px;}
.y3{bottom:1113.630000px;}
.y130{bottom:1114.350000px;}
.y35{bottom:1123.170000px;}
.yb7{bottom:1124.070000px;}
.y12f{bottom:1136.130000px;}
.y34{bottom:1144.230000px;}
.y2{bottom:1145.670000px;}
.yb5{bottom:1146.030000px;}
.y12e{bottom:1157.940000px;}
.y33{bottom:1165.320000px;}
.y1{bottom:1179.720000px;}
.y32{bottom:1193.220000px;}
.h1d{height:20.880000px;}
.ha{height:21.060000px;}
.h9{height:21.096000px;}
.h19{height:23.580000px;}
.h1b{height:23.616000px;}
.h1a{height:23.760000px;}
.h1c{height:23.796000px;}
.hb{height:24.300000px;}
.h11{height:24.840000px;}
.h12{height:24.876000px;}
.hd{height:30.960000px;}
.hf{height:31.680000px;}
.hc{height:32.976000px;}
.h10{height:33.120000px;}
.he{height:33.660000px;}
.h21{height:36.540000px;}
.h1f{height:36.720000px;}
.h22{height:36.756000px;}
.h7{height:38.671172px;}
.h15{height:42.120000px;}
.h16{height:42.156000px;}
.h17{height:48.240000px;}
.h18{height:48.420000px;}
.h23{height:48.456000px;}
.h20{height:54.936000px;}
.h8{height:59.439023px;}
.h5{height:61.189805px;}
.h14{height:63.216000px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h13{height:84.996000px;}
.h2{height:86.255508px;}
.h1e{height:92.376000px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:41.760000px;}
.w37{width:47.376000px;}
.w34{width:62.856000px;}
.w19{width:68.040000px;}
.wf{width:73.440000px;}
.w10{width:73.476000px;}
.w2b{width:73.620000px;}
.wa{width:73.656000px;}
.w36{width:74.160000px;}
.we{width:77.400000px;}
.w24{width:80.280000px;}
.w6{width:80.316000px;}
.w1f{width:80.640000px;}
.w35{width:81.000000px;}
.w12{width:84.420000px;}
.wd{width:86.076000px;}
.w25{width:86.940000px;}
.w26{width:86.976000px;}
.w23{width:87.156000px;}
.w1c{width:87.480000px;}
.w38{width:87.660000px;}
.w1b{width:87.840000px;}
.w31{width:89.640000px;}
.w33{width:89.820000px;}
.w32{width:89.856000px;}
.w5{width:93.780000px;}
.w4{width:93.816000px;}
.w1e{width:94.140000px;}
.w1d{width:94.176000px;}
.w13{width:94.896000px;}
.wc{width:95.040000px;}
.w20{width:100.116000px;}
.w2c{width:100.656000px;}
.w11{width:101.340000px;}
.w3{width:105.336000px;}
.w22{width:107.316000px;}
.w21{width:108.396000px;}
.w27{width:110.736000px;}
.w1a{width:119.916000px;}
.w30{width:135.036000px;}
.w29{width:147.780000px;}
.w28{width:147.816000px;}
.w8{width:151.740000px;}
.w2e{width:152.670000px;}
.w2f{width:155.160000px;}
.w9{width:175.710000px;}
.w15{width:178.740000px;}
.w14{width:178.770000px;}
.w16{width:178.920000px;}
.w2d{width:179.490000px;}
.wb{width:180.030000px;}
.w2a{width:181.650000px;}
.w18{width:439.455000px;}
.w17{width:717.405000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:7.740000px;}
.x11{left:42.120000px;}
.x6{left:53.999987px;}
.x24{left:68.760000px;}
.x9{left:69.840000px;}
.x32{left:75.600000px;}
.x8{left:80.999987px;}
.x13{left:84.816000px;}
.x1c{left:87.876000px;}
.x7{left:108.035987px;}
.x39{left:135.396000px;}
.x33{left:149.796000px;}
.x19{left:163.110000px;}
.x5{left:173.189987px;}
.xa{left:175.890000px;}
.x2b{left:188.670000px;}
.x36{left:224.130000px;}
.x14{left:237.270000px;}
.x25{left:250.770000px;}
.x1d{left:267.375000px;}
.xb{left:270.435000px;}
.x2c{left:276.555000px;}
.x3{left:286.814987px;}
.x34{left:298.335000px;}
.x1a{left:311.655000px;}
.x3a{left:314.895000px;}
.x23{left:324.074987px;}
.x26{left:345.315000px;}
.x2{left:350.714987px;}
.x2d{left:357.555000px;}
.xc{left:364.935000px;}
.x37{left:372.675000px;}
.x3d{left:404.715000px;}
.x15{left:413.895000px;}
.x4{left:419.294987px;}
.x27{left:439.815000px;}
.x2e{left:445.215000px;}
.x1e{left:446.865000px;}
.xd{left:459.465000px;}
.x3b{left:467.565000px;}
.x1{left:479.444987px;}
.x16{left:488.265000px;}
.x20{left:528.045000px;}
.x2f{left:533.085000px;}
.x28{left:534.345000px;}
.x3e{left:548.565000px;}
.xe{left:553.965000px;}
.x1b{left:573.405000px;}
.x21{left:596.805000px;}
.x38{left:608.865000px;}
.x30{left:614.085000px;}
.x29{left:615.345000px;}
.x3c{left:622.725000px;}
.x1f{left:626.505000px;}
.xf{left:635.010000px;}
.x17{left:669.030000px;}
.x3f{left:670.110000px;}
.x31{left:701.790000px;}
.x35{left:710.250000px;}
.x2a{left:715.830000px;}
.x22{left:717.450000px;}
.x10{left:729.510000px;}
.x18{left:764.790000px;}
.x40{left:839.339987px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.560000pt;}
.v2{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.lsd{letter-spacing:-0.853333pt;}
.ls32{letter-spacing:-0.618667pt;}
.ls19{letter-spacing:-0.586667pt;}
.ls35{letter-spacing:-0.484267pt;}
.ls22{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.412267pt;}
.lsc{letter-spacing:-0.368000pt;}
.ls2c{letter-spacing:-0.269333pt;}
.ls34{letter-spacing:-0.254933pt;}
.ls33{letter-spacing:-0.238933pt;}
.ls14{letter-spacing:-0.220800pt;}
.ls17{letter-spacing:-0.213867pt;}
.ls18{letter-spacing:-0.201600pt;}
.ls37{letter-spacing:-0.156267pt;}
.ls2e{letter-spacing:-0.153067pt;}
.ls4{letter-spacing:-0.117867pt;}
.ls3e{letter-spacing:-0.102933pt;}
.ls2f{letter-spacing:-0.097067pt;}
.ls1f{letter-spacing:-0.095467pt;}
.ls16{letter-spacing:-0.069867pt;}
.ls9{letter-spacing:-0.057600pt;}
.ls8{letter-spacing:-0.051840pt;}
.ls21{letter-spacing:-0.036480pt;}
.ls2d{letter-spacing:-0.028800pt;}
.ls2{letter-spacing:0.000000pt;}
.ls38{letter-spacing:0.021120pt;}
.ls3{letter-spacing:0.034560pt;}
.lsb{letter-spacing:0.053867pt;}
.ls7{letter-spacing:0.058667pt;}
.ls1d{letter-spacing:0.059733pt;}
.ls27{letter-spacing:0.104320pt;}
.ls1b{letter-spacing:0.124800pt;}
.ls0{letter-spacing:0.133333pt;}
.ls13{letter-spacing:0.154667pt;}
.ls1{letter-spacing:0.154880pt;}
.lsa{letter-spacing:0.155733pt;}
.ls1c{letter-spacing:0.160000pt;}
.ls1e{letter-spacing:0.165867pt;}
.ls6{letter-spacing:0.169067pt;}
.ls30{letter-spacing:0.173333pt;}
.ls29{letter-spacing:0.184960pt;}
.ls3d{letter-spacing:0.252267pt;}
.ls3f{letter-spacing:0.261547pt;}
.ls15{letter-spacing:0.272000pt;}
.ls25{letter-spacing:0.282880pt;}
.ls20{letter-spacing:0.349867pt;}
.ls2a{letter-spacing:0.370667pt;}
.ls3c{letter-spacing:0.385280pt;}
.ls23{letter-spacing:0.398080pt;}
.ls2b{letter-spacing:0.426133pt;}
.ls3a{letter-spacing:0.566400pt;}
.ls36{letter-spacing:0.581333pt;}
.ls24{letter-spacing:0.582400pt;}
.ls26{letter-spacing:0.593280pt;}
.ls28{letter-spacing:0.744320pt;}
.ls31{letter-spacing:0.912000pt;}
.ls1a{letter-spacing:2.074880pt;}
.ls3b{letter-spacing:10.832640pt;}
.ls39{letter-spacing:37.712640pt;}
.lsf{letter-spacing:39.632640pt;}
.ls11{letter-spacing:40.912640pt;}
.lse{letter-spacing:42.192640pt;}
.ls10{letter-spacing:45.392640pt;}
.ls12{letter-spacing:51.792640pt;}
.ws1d{word-spacing:-53.120000pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws1c{word-spacing:-12.917120pt;}
.ws2{word-spacing:-12.894613pt;}
.ws1e{word-spacing:-12.586453pt;}
.ws17{word-spacing:-12.431253pt;}
.ws16{word-spacing:-12.375787pt;}
.wsc{word-spacing:-12.277120pt;}
.ws12{word-spacing:-12.170987pt;}
.wsb{word-spacing:-12.160853pt;}
.ws15{word-spacing:-12.129920pt;}
.ws11{word-spacing:-12.064853pt;}
.ws8{word-spacing:-12.058987pt;}
.ws1f{word-spacing:-12.026240pt;}
.ws6{word-spacing:-12.005120pt;}
.ws19{word-spacing:-11.976320pt;}
.ws14{word-spacing:-11.968640pt;}
.ws10{word-spacing:-11.953280pt;}
.ws7{word-spacing:-11.947520pt;}
.wsd{word-spacing:-11.935253pt;}
.ws13{word-spacing:-11.909653pt;}
.ws1b{word-spacing:-11.908053pt;}
.ws1a{word-spacing:-11.852053pt;}
.wsf{word-spacing:-11.803520pt;}
.wse{word-spacing:-11.791253pt;}
.wsa{word-spacing:-11.784320pt;}
.ws18{word-spacing:-11.735787pt;}
.ws4{word-spacing:-8.389120pt;}
.ws5{word-spacing:-7.810560pt;}
.ws9{word-spacing:0.000000pt;}
._1d{margin-left:-474.025387pt;}
._1e{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._12{margin-left:-259.706880pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._17{margin-left:-220.436480pt;}
._b{margin-left:-213.786880pt;}
._16{margin-left:-198.021333pt;}
._21{margin-left:-190.878720pt;}
._f{margin-left:-180.325547pt;}
._18{margin-left:-178.235307pt;}
._20{margin-left:-168.954880pt;}
._e{margin-left:-152.048640pt;}
._24{margin-left:-150.899200pt;}
._d{margin-left:-146.952960pt;}
._10{margin-left:-142.263467pt;}
._9{margin-left:-136.688640pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._23{margin-left:-128.921387pt;}
._c{margin-left:-119.281920pt;}
._1f{margin-left:-118.232320pt;}
._11{margin-left:-102.686720pt;}
._22{margin-left:-97.441493pt;}
._1c{margin-left:-90.977280pt;}
._7{margin-left:-80.999893pt;}
._1b{margin-left:-76.799787pt;}
._1a{margin-left:-74.240000pt;}
._13{margin-left:-72.312320pt;}
._15{margin-left:-59.292160pt;}
._14{margin-left:-43.665707pt;}
._19{margin-left:-28.861013pt;}
._34{margin-left:-3.630080pt;}
._25{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._26{width:1.000107pt;}
._2b{width:2.080853pt;}
._2c{width:3.385173pt;}
._2d{width:4.702720pt;}
._2e{width:5.607040pt;}
._32{width:6.504107pt;}
._2f{width:7.489920pt;}
._30{width:8.526720pt;}
._2a{width:9.889493pt;}
._29{width:10.961067pt;}
._31{width:13.708800pt;}
._27{width:15.576960pt;}
._28{width:16.577280pt;}
._38{width:23.850880pt;}
._3e{width:47.651200pt;}
._39{width:55.510400pt;}
._3d{width:60.221440pt;}
._37{width:63.956480pt;}
._40{width:72.243200pt;}
._35{width:75.810987pt;}
._36{width:78.670720pt;}
._3b{width:85.971627pt;}
._3a{width:99.387520pt;}
._41{width:142.892800pt;}
._3c{width:150.149760pt;}
._3f{width:227.300480pt;}
._33{width:540.398293pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y13d{bottom:3.520000pt;}
.y147{bottom:3.546667pt;}
.y128{bottom:5.760000pt;}
.yb2{bottom:5.920000pt;}
.yb6{bottom:5.946667pt;}
.yd6{bottom:5.960000pt;}
.y10a{bottom:11.520000pt;}
.y141{bottom:19.680000pt;}
.y13c{bottom:19.840000pt;}
.y146{bottom:19.866667pt;}
.ycf{bottom:24.640000pt;}
.yd5{bottom:24.680000pt;}
.ycc{bottom:25.280000pt;}
.y109{bottom:30.240000pt;}
.y13e{bottom:36.040000pt;}
.yce{bottom:43.386667pt;}
.ycb{bottom:44.026667pt;}
.y13a{bottom:53.000000pt;}
.y6{bottom:53.280000pt;}
.yca{bottom:62.746667pt;}
.y139{bottom:69.320000pt;}
.y12d{bottom:78.880000pt;}
.yb4{bottom:79.520000pt;}
.y8c{bottom:81.120000pt;}
.y31{bottom:81.920000pt;}
.y160{bottom:83.520000pt;}
.y76{bottom:83.840000pt;}
.y10e{bottom:88.800000pt;}
.y61{bottom:91.840000pt;}
.ye2{bottom:93.280000pt;}
.y12c{bottom:97.600000pt;}
.y8b{bottom:99.840000pt;}
.y30{bottom:100.640000pt;}
.yb3{bottom:101.120000pt;}
.y15f{bottom:102.080000pt;}
.y75{bottom:102.560000pt;}
.y10d{bottom:107.520000pt;}
.y181{bottom:108.960000pt;}
.y60{bottom:110.560000pt;}
.ye1{bottom:112.000000pt;}
.y15e{bottom:115.680000pt;}
.y12b{bottom:116.960000pt;}
.y8a{bottom:118.560000pt;}
.y2f{bottom:119.360000pt;}
.yb1{bottom:120.480000pt;}
.y74{bottom:121.280000pt;}
.y10c{bottom:126.240000pt;}
.y5f{bottom:129.280000pt;}
.ye0{bottom:130.720000pt;}
.y15d{bottom:135.066667pt;}
.y12a{bottom:136.346667pt;}
.y89{bottom:137.306667pt;}
.y2e{bottom:138.106667pt;}
.y73{bottom:140.026667pt;}
.y10b{bottom:144.986667pt;}
.yb0{bottom:145.946667pt;}
.y5e{bottom:148.026667pt;}
.ydf{bottom:149.466667pt;}
.y15c{bottom:154.426667pt;}
.y129{bottom:155.066667pt;}
.y88{bottom:156.026667pt;}
.y2d{bottom:156.826667pt;}
.y108{bottom:158.426667pt;}
.y72{bottom:158.746667pt;}
.yaf{bottom:164.506667pt;}
.y5d{bottom:166.746667pt;}
.yde{bottom:168.186667pt;}
.y15b{bottom:173.786667pt;}
.y127{bottom:174.586667pt;}
.y87{bottom:174.746667pt;}
.y2c{bottom:175.546667pt;}
.y71{bottom:177.466667pt;}
.yae{bottom:183.226667pt;}
.y5c{bottom:185.466667pt;}
.ydd{bottom:186.906667pt;}
.y180{bottom:192.986667pt;}
.y15a{bottom:193.146667pt;}
.y86{bottom:193.466667pt;}
.y2b{bottom:194.266667pt;}
.y70{bottom:196.186667pt;}
.y126{bottom:199.866667pt;}
.yad{bottom:201.946667pt;}
.y107{bottom:202.106667pt;}
.y5b{bottom:204.186667pt;}
.ydc{bottom:205.626667pt;}
.y17f{bottom:211.706667pt;}
.y85{bottom:212.186667pt;}
.y159{bottom:212.506667pt;}
.y2a{bottom:212.986667pt;}
.y125{bottom:218.586667pt;}
.yac{bottom:220.666667pt;}
.y5a{bottom:222.906667pt;}
.ydb{bottom:224.346667pt;}
.y17e{bottom:230.426667pt;}
.y84{bottom:230.906667pt;}
.y29{bottom:231.706667pt;}
.y158{bottom:232.026667pt;}
.y124{bottom:237.306667pt;}
.yab{bottom:239.386667pt;}
.y59{bottom:241.626667pt;}
.yda{bottom:243.066667pt;}
.y106{bottom:245.786667pt;}
.y17d{bottom:249.146667pt;}
.y83{bottom:249.626667pt;}
.y28{bottom:250.426667pt;}
.y123{bottom:250.746667pt;}
.y157{bottom:251.386667pt;}
.yaa{bottom:258.106667pt;}
.y58{bottom:260.346667pt;}
.yd9{bottom:261.786667pt;}
.y17c{bottom:267.866667pt;}
.y82{bottom:268.346667pt;}
.y27{bottom:269.146667pt;}
.y156{bottom:270.746667pt;}
.y122{bottom:272.346667pt;}
.yd8{bottom:275.226667pt;}
.ya9{bottom:276.826667pt;}
.y57{bottom:279.066667pt;}
.y105{bottom:283.866667pt;}
.y17b{bottom:286.586667pt;}
.y81{bottom:287.066667pt;}
.y26{bottom:287.866667pt;}
.y155{bottom:290.106667pt;}
.y121{bottom:294.106667pt;}
.ya8{bottom:295.546667pt;}
.y56{bottom:297.786667pt;}
.y17a{bottom:305.306667pt;}
.y80{bottom:305.786667pt;}
.y25{bottom:306.586667pt;}
.y154{bottom:309.466667pt;}
.yd7{bottom:313.306667pt;}
.ya7{bottom:314.266667pt;}
.y120{bottom:315.706667pt;}
.y55{bottom:316.506667pt;}
.y104{bottom:321.946667pt;}
.y179{bottom:324.026667pt;}
.y7f{bottom:324.506667pt;}
.y24{bottom:325.306667pt;}
.y153{bottom:328.826667pt;}
.ya6{bottom:332.986667pt;}
.y54{bottom:335.226667pt;}
.y11f{bottom:337.306667pt;}
.y103{bottom:340.666667pt;}
.y178{bottom:342.746667pt;}
.y7e{bottom:343.226667pt;}
.y23{bottom:344.026667pt;}
.y152{bottom:348.186667pt;}
.yd4{bottom:351.386667pt;}
.ya5{bottom:351.706667pt;}
.y53{bottom:353.946667pt;}
.y11e{bottom:359.106667pt;}
.y102{bottom:360.066667pt;}
.y177{bottom:361.506667pt;}
.y7d{bottom:361.986667pt;}
.y22{bottom:362.786667pt;}
.y151{bottom:367.746667pt;}
.ya4{bottom:370.466667pt;}
.y52{bottom:372.706667pt;}
.y101{bottom:378.786667pt;}
.y176{bottom:380.226667pt;}
.y7c{bottom:380.706667pt;}
.y21{bottom:381.506667pt;}
.y150{bottom:387.106667pt;}
.yd3{bottom:389.506667pt;}
.ya3{bottom:389.666667pt;}
.y51{bottom:391.426667pt;}
.y100{bottom:398.146667pt;}
.y175{bottom:398.946667pt;}
.y7b{bottom:399.426667pt;}
.y20{bottom:400.226667pt;}
.y11d{bottom:402.466667pt;}
.y14f{bottom:406.466667pt;}
.y50{bottom:410.146667pt;}
.ya2{bottom:410.466667pt;}
.y174{bottom:417.666667pt;}
.y7a{bottom:418.146667pt;}
.y1f{bottom:418.946667pt;}
.yff{bottom:423.426667pt;}
.y11c{bottom:424.066667pt;}
.y14e{bottom:425.826667pt;}
.yd2{bottom:427.586667pt;}
.y4f{bottom:428.866667pt;}
.ya1{bottom:429.826667pt;}
.y173{bottom:436.386667pt;}
.y79{bottom:436.866667pt;}
.y1e{bottom:437.666667pt;}
.yfe{bottom:442.146667pt;}
.y14d{bottom:445.186667pt;}
.y11b{bottom:445.826667pt;}
.y4e{bottom:447.586667pt;}
.ya0{bottom:449.186667pt;}
.y172{bottom:455.106667pt;}
.y78{bottom:455.586667pt;}
.y1d{bottom:456.386667pt;}
.yfd{bottom:460.866667pt;}
.y14c{bottom:464.546667pt;}
.yd1{bottom:465.666667pt;}
.y4d{bottom:466.306667pt;}
.y11a{bottom:467.426667pt;}
.y9f{bottom:469.026667pt;}
.y171{bottom:473.826667pt;}
.y77{bottom:474.306667pt;}
.y1c{bottom:477.186667pt;}
.yfc{bottom:479.586667pt;}
.y4c{bottom:485.026667pt;}
.y9e{bottom:488.386667pt;}
.y119{bottom:489.026667pt;}
.y14b{bottom:489.986667pt;}
.y170{bottom:492.546667pt;}
.y6f{bottom:493.026667pt;}
.yfb{bottom:498.306667pt;}
.y1b{bottom:503.746667pt;}
.yd0{bottom:503.906667pt;}
.y9d{bottom:507.106667pt;}
.y14a{bottom:508.546667pt;}
.y118{bottom:510.786667pt;}
.y16f{bottom:511.266667pt;}
.y6e{bottom:511.746667pt;}
.yfa{bottom:517.026667pt;}
.y1a{bottom:522.466667pt;}
.y9c{bottom:525.826667pt;}
.y149{bottom:527.266667pt;}
.y16e{bottom:529.986667pt;}
.y6d{bottom:530.466667pt;}
.y117{bottom:532.386667pt;}
.yf9{bottom:535.746667pt;}
.y148{bottom:540.866667pt;}
.y19{bottom:541.186667pt;}
.yc9{bottom:541.986667pt;}
.y16d{bottom:543.426667pt;}
.y9b{bottom:544.546667pt;}
.y6c{bottom:549.186667pt;}
.y116{bottom:554.146667pt;}
.yf8{bottom:554.466667pt;}
.y18{bottom:559.906667pt;}
.y9a{bottom:563.266667pt;}
.y6b{bottom:567.906667pt;}
.yf7{bottom:573.186667pt;}
.y145{bottom:573.986667pt;}
.y115{bottom:575.746667pt;}
.y4b{bottom:578.493333pt;}
.y17{bottom:578.653333pt;}
.y99{bottom:581.853333pt;}
.y6a{bottom:586.493333pt;}
.y16c{bottom:587.133333pt;}
.yf6{bottom:591.933333pt;}
.y4a{bottom:597.213333pt;}
.y16{bottom:597.373333pt;}
.ycd{bottom:598.813333pt;}
.y69{bottom:605.213333pt;}
.y144{bottom:607.293333pt;}
.y98{bottom:607.933333pt;}
.yf5{bottom:610.653333pt;}
.y49{bottom:615.933333pt;}
.y15{bottom:616.093333pt;}
.y114{bottom:619.133333pt;}
.y68{bottom:623.933333pt;}
.yc8{bottom:624.093333pt;}
.y16b{bottom:630.813333pt;}
.y48{bottom:634.653333pt;}
.y14{bottom:634.813333pt;}
.y143{bottom:640.413333pt;}
.y113{bottom:640.733333pt;}
.y67{bottom:642.653333pt;}
.yc7{bottom:642.813333pt;}
.yf4{bottom:643.453333pt;}
.y47{bottom:653.373333pt;}
.y13{bottom:653.533333pt;}
.y66{bottom:661.373333pt;}
.yc6{bottom:661.533333pt;}
.y112{bottom:662.493333pt;}
.yf3{bottom:662.973333pt;}
.y16a{bottom:668.893333pt;}
.y46{bottom:672.093333pt;}
.y12{bottom:672.253333pt;}
.y142{bottom:673.693333pt;}
.y65{bottom:680.093333pt;}
.yc5{bottom:680.253333pt;}
.yf2{bottom:682.333333pt;}
.y111{bottom:684.093333pt;}
.y45{bottom:690.813333pt;}
.y11{bottom:690.973333pt;}
.y64{bottom:698.813333pt;}
.yc4{bottom:698.973333pt;}
.yf1{bottom:701.693333pt;}
.y110{bottom:705.853333pt;}
.y140{bottom:706.973333pt;}
.y44{bottom:709.533333pt;}
.y10{bottom:709.693333pt;}
.y63{bottom:717.533333pt;}
.yc3{bottom:717.693333pt;}
.yf0{bottom:721.053333pt;}
.y169{bottom:725.693333pt;}
.y10f{bottom:727.453333pt;}
.y43{bottom:728.253333pt;}
.yf{bottom:728.413333pt;}
.y62{bottom:736.253333pt;}
.yc2{bottom:736.413333pt;}
.y13f{bottom:740.093333pt;}
.yef{bottom:740.413333pt;}
.y168{bottom:745.053333pt;}
.y97{bottom:746.973333pt;}
.ye{bottom:747.133333pt;}
.y42{bottom:754.973333pt;}
.yc1{bottom:755.133333pt;}
.yee{bottom:759.773333pt;}
.y167{bottom:763.773333pt;}
.y96{bottom:765.693333pt;}
.yd{bottom:765.853333pt;}
.y138{bottom:773.373333pt;}
.y41{bottom:773.693333pt;}
.yc0{bottom:773.853333pt;}
.yed{bottom:779.133333pt;}
.y166{bottom:783.133333pt;}
.y95{bottom:784.413333pt;}
.yc{bottom:786.493333pt;}
.ybf{bottom:787.293333pt;}
.y40{bottom:792.413333pt;}
.yec{bottom:798.693333pt;}
.y94{bottom:803.173333pt;}
.y165{bottom:808.613333pt;}
.yb{bottom:809.893333pt;}
.ybe{bottom:810.053333pt;}
.y3f{bottom:811.173333pt;}
.yeb{bottom:818.053333pt;}
.y93{bottom:821.893333pt;}
.y13b{bottom:822.853333pt;}
.ya{bottom:824.773333pt;}
.y164{bottom:827.333333pt;}
.y3e{bottom:829.893333pt;}
.yea{bottom:837.413333pt;}
.ybd{bottom:840.133333pt;}
.y92{bottom:840.613333pt;}
.y163{bottom:840.773333pt;}
.y9{bottom:844.613333pt;}
.y3d{bottom:848.613333pt;}
.ye9{bottom:856.773333pt;}
.y91{bottom:859.333333pt;}
.y137{bottom:862.053333pt;}
.ybc{bottom:862.853333pt;}
.y8{bottom:867.013333pt;}
.y3c{bottom:867.333333pt;}
.ye8{bottom:876.133333pt;}
.y90{bottom:878.053333pt;}
.y162{bottom:878.853333pt;}
.y136{bottom:880.773333pt;}
.y3b{bottom:886.053333pt;}
.ybb{bottom:892.933333pt;}
.ye7{bottom:895.493333pt;}
.y8f{bottom:896.773333pt;}
.y7{bottom:896.933333pt;}
.y135{bottom:899.493333pt;}
.y3a{bottom:904.773333pt;}
.y134{bottom:912.933333pt;}
.ye6{bottom:915.013333pt;}
.y8e{bottom:915.493333pt;}
.y161{bottom:916.933333pt;}
.yba{bottom:921.733333pt;}
.y39{bottom:923.493333pt;}
.y133{bottom:932.293333pt;}
.y5{bottom:932.613333pt;}
.y8d{bottom:934.213333pt;}
.ye5{bottom:934.373333pt;}
.y38{bottom:942.213333pt;}
.y132{bottom:951.653333pt;}
.yb9{bottom:952.293333pt;}
.ye4{bottom:953.733333pt;}
.y37{bottom:960.933333pt;}
.y4{bottom:961.253333pt;}
.y131{bottom:971.013333pt;}
.ye3{bottom:973.093333pt;}
.y36{bottom:979.653333pt;}
.yb8{bottom:980.453333pt;}
.y3{bottom:989.893333pt;}
.y130{bottom:990.533333pt;}
.y35{bottom:998.373333pt;}
.yb7{bottom:999.173333pt;}
.y12f{bottom:1009.893333pt;}
.y34{bottom:1017.093333pt;}
.y2{bottom:1018.373333pt;}
.yb5{bottom:1018.693333pt;}
.y12e{bottom:1029.280000pt;}
.y33{bottom:1035.840000pt;}
.y1{bottom:1048.640000pt;}
.y32{bottom:1060.640000pt;}
.h1d{height:18.560000pt;}
.ha{height:18.720000pt;}
.h9{height:18.752000pt;}
.h19{height:20.960000pt;}
.h1b{height:20.992000pt;}
.h1a{height:21.120000pt;}
.h1c{height:21.152000pt;}
.hb{height:21.600000pt;}
.h11{height:22.080000pt;}
.h12{height:22.112000pt;}
.hd{height:27.520000pt;}
.hf{height:28.160000pt;}
.hc{height:29.312000pt;}
.h10{height:29.440000pt;}
.he{height:29.920000pt;}
.h21{height:32.480000pt;}
.h1f{height:32.640000pt;}
.h22{height:32.672000pt;}
.h7{height:34.374375pt;}
.h15{height:37.440000pt;}
.h16{height:37.472000pt;}
.h17{height:42.880000pt;}
.h18{height:43.040000pt;}
.h23{height:43.072000pt;}
.h20{height:48.832000pt;}
.h8{height:52.834688pt;}
.h5{height:54.390938pt;}
.h14{height:56.192000pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h13{height:75.552000pt;}
.h2{height:76.671562pt;}
.h1e{height:82.112000pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:37.120000pt;}
.w37{width:42.112000pt;}
.w34{width:55.872000pt;}
.w19{width:60.480000pt;}
.wf{width:65.280000pt;}
.w10{width:65.312000pt;}
.w2b{width:65.440000pt;}
.wa{width:65.472000pt;}
.w36{width:65.920000pt;}
.we{width:68.800000pt;}
.w24{width:71.360000pt;}
.w6{width:71.392000pt;}
.w1f{width:71.680000pt;}
.w35{width:72.000000pt;}
.w12{width:75.040000pt;}
.wd{width:76.512000pt;}
.w25{width:77.280000pt;}
.w26{width:77.312000pt;}
.w23{width:77.472000pt;}
.w1c{width:77.760000pt;}
.w38{width:77.920000pt;}
.w1b{width:78.080000pt;}
.w31{width:79.680000pt;}
.w33{width:79.840000pt;}
.w32{width:79.872000pt;}
.w5{width:83.360000pt;}
.w4{width:83.392000pt;}
.w1e{width:83.680000pt;}
.w1d{width:83.712000pt;}
.w13{width:84.352000pt;}
.wc{width:84.480000pt;}
.w20{width:88.992000pt;}
.w2c{width:89.472000pt;}
.w11{width:90.080000pt;}
.w3{width:93.632000pt;}
.w22{width:95.392000pt;}
.w21{width:96.352000pt;}
.w27{width:98.432000pt;}
.w1a{width:106.592000pt;}
.w30{width:120.032000pt;}
.w29{width:131.360000pt;}
.w28{width:131.392000pt;}
.w8{width:134.880000pt;}
.w2e{width:135.706667pt;}
.w2f{width:137.920000pt;}
.w9{width:156.186667pt;}
.w15{width:158.880000pt;}
.w14{width:158.906667pt;}
.w16{width:159.040000pt;}
.w2d{width:159.546667pt;}
.wb{width:160.026667pt;}
.w2a{width:161.466667pt;}
.w18{width:390.626667pt;}
.w17{width:637.693333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:6.880000pt;}
.x11{left:37.440000pt;}
.x6{left:47.999988pt;}
.x24{left:61.120000pt;}
.x9{left:62.080000pt;}
.x32{left:67.200000pt;}
.x8{left:71.999988pt;}
.x13{left:75.392000pt;}
.x1c{left:78.112000pt;}
.x7{left:96.031988pt;}
.x39{left:120.352000pt;}
.x33{left:133.152000pt;}
.x19{left:144.986667pt;}
.x5{left:153.946655pt;}
.xa{left:156.346667pt;}
.x2b{left:167.706667pt;}
.x36{left:199.226667pt;}
.x14{left:210.906667pt;}
.x25{left:222.906667pt;}
.x1d{left:237.666667pt;}
.xb{left:240.386667pt;}
.x2c{left:245.826667pt;}
.x3{left:254.946655pt;}
.x34{left:265.186667pt;}
.x1a{left:277.026667pt;}
.x3a{left:279.906667pt;}
.x23{left:288.066655pt;}
.x26{left:306.946667pt;}
.x2{left:311.746655pt;}
.x2d{left:317.826667pt;}
.xc{left:324.386667pt;}
.x37{left:331.266667pt;}
.x3d{left:359.746667pt;}
.x15{left:367.906667pt;}
.x4{left:372.706655pt;}
.x27{left:390.946667pt;}
.x2e{left:395.746667pt;}
.x1e{left:397.213333pt;}
.xd{left:408.413333pt;}
.x3b{left:415.613333pt;}
.x1{left:426.173322pt;}
.x16{left:434.013333pt;}
.x20{left:469.373333pt;}
.x2f{left:473.853333pt;}
.x28{left:474.973333pt;}
.x3e{left:487.613333pt;}
.xe{left:492.413333pt;}
.x1b{left:509.693333pt;}
.x21{left:530.493333pt;}
.x38{left:541.213333pt;}
.x30{left:545.853333pt;}
.x29{left:546.973333pt;}
.x3c{left:553.533333pt;}
.x1f{left:556.893333pt;}
.xf{left:564.453333pt;}
.x17{left:594.693333pt;}
.x3f{left:595.653333pt;}
.x31{left:623.813333pt;}
.x35{left:631.333333pt;}
.x2a{left:636.293333pt;}
.x22{left:637.733333pt;}
.x10{left:648.453333pt;}
.x18{left:679.813333pt;}
.x40{left:746.079988pt;}
}




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