
    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_7a06c9af18093b25f130d459.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_aa3c30d645815d0f7bed7da6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5e5dc90e6d7a22e97a47f3d3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_6e656cd5ad66a9e8a421ac45.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.998047;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_f30027fa2ec518320b424910.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_fdb39ee3615b8e5014a8bab1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_9e1bc2c978e96389e19f79df.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_be21fe2017c941e48e086ca3.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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_c75087b75b23da033242bd59.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.853027;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);}
.m3{transform:matrix(0.264275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264275,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265625,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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls27{letter-spacing:-1.008000px;}
.ls1e{letter-spacing:-0.936000px;}
.ls1d{letter-spacing:-0.864000px;}
.ls19{letter-spacing:-0.720000px;}
.ls1b{letter-spacing:-0.648000px;}
.ls23{letter-spacing:-0.612000px;}
.ls4{letter-spacing:-0.576000px;}
.lsa{letter-spacing:-0.567600px;}
.ls33{letter-spacing:-0.450600px;}
.ls3{letter-spacing:-0.360000px;}
.ls22{letter-spacing:-0.288000px;}
.ls16{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.206400px;}
.ls2a{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.126000px;}
.ls26{letter-spacing:-0.109200px;}
.ls2b{letter-spacing:-0.085200px;}
.ls28{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.054720px;}
.ls9{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.109200px;}
.ls13{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.144720px;}
.lsc{letter-spacing:0.152400px;}
.ls6{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.216000px;}
.ls18{letter-spacing:0.262080px;}
.ls1a{letter-spacing:0.262200px;}
.ls1c{letter-spacing:0.288000px;}
.ls17{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.360000px;}
.ls25{letter-spacing:0.480000px;}
.ls7{letter-spacing:0.720000px;}
.ls12{letter-spacing:0.774000px;}
.ls2d{letter-spacing:0.792000px;}
.ls21{letter-spacing:1.440000px;}
.ls24{letter-spacing:2.160000px;}
.ls32{letter-spacing:3.600000px;}
.ls20{letter-spacing:6.456000px;}
.ls29{letter-spacing:6.480000px;}
.ls1f{letter-spacing:7.896000px;}
.ls14{letter-spacing:8.640000px;}
.ls2c{letter-spacing:16.740000px;}
.ls15{letter-spacing:25.200000px;}
.lsf{letter-spacing:56.880000px;}
.ls2e{letter-spacing:64.800000px;}
.ls31{letter-spacing:98.640000px;}
.ls30{letter-spacing:118.080000px;}
.ls2f{letter-spacing:138.240000px;}
.lse{letter-spacing:151.896000px;}
.ls8{letter-spacing:153.336000px;}
.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;}
}
.ws19{word-spacing:-66.240000px;}
.ws2{word-spacing:-35.424000px;}
.ws22{word-spacing:-18.792000px;}
.ws14{word-spacing:-18.720000px;}
.ws16{word-spacing:-18.288000px;}
.ws12{word-spacing:-18.144000px;}
.wsa{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws1e{word-spacing:-17.928000px;}
.ws20{word-spacing:-17.856000px;}
.ws13{word-spacing:-17.784000px;}
.ws1a{word-spacing:-17.712000px;}
.ws17{word-spacing:-17.352000px;}
.ws24{word-spacing:-17.064000px;}
.ws1f{word-spacing:-16.865400px;}
.ws15{word-spacing:-16.822200px;}
.wsc{word-spacing:-16.712400px;}
.ws23{word-spacing:-16.669200px;}
.wse{word-spacing:-16.560000px;}
.ws1d{word-spacing:-16.450800px;}
.wsb{word-spacing:-15.992400px;}
.ws1c{word-spacing:-15.948000px;}
.ws1b{word-spacing:-15.840000px;}
.ws6{word-spacing:-15.300000px;}
.ws11{word-spacing:-14.994000px;}
.ws5{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.733600px;}
.ws10{word-spacing:-14.274720px;}
.ws21{word-spacing:-14.220000px;}
.ws18{word-spacing:-13.860000px;}
.wsd{word-spacing:-13.716000px;}
.ws8{word-spacing:-13.500000px;}
.wsf{word-spacing:-13.374000px;}
.ws9{word-spacing:-13.140000px;}
.ws1{word-spacing:-12.060000px;}
.ws0{word-spacing:-11.700000px;}
.ws25{word-spacing:-11.609400px;}
.ws7{word-spacing:0.000000px;}
._23{margin-left:-17.244000px;}
._44{margin-left:-13.092000px;}
._1c{margin-left:-11.969280px;}
._25{margin-left:-9.252000px;}
._1e{margin-left:-7.416000px;}
._36{margin-left:-4.986720px;}
._3{margin-left:-3.846480px;}
._7{margin-left:-2.390160px;}
._0{margin-left:-1.350720px;}
._2{width:1.009440px;}
._1{width:2.032320px;}
._d{width:3.990720px;}
._6{width:5.472000px;}
._4{width:6.552000px;}
._5{width:7.856160px;}
._c{width:8.983680px;}
._a{width:10.584000px;}
._b{width:11.707680px;}
._f{width:12.943200px;}
._32{width:13.950240px;}
._9{width:14.976000px;}
._35{width:16.056000px;}
._48{width:17.634000px;}
._e{width:19.368000px;}
._11{width:21.263040px;}
._12{width:22.845120px;}
._30{width:24.840000px;}
._31{width:26.002560px;}
._34{width:27.445920px;}
._39{width:28.684800px;}
._2f{width:30.396000px;}
._3c{width:31.944000px;}
._33{width:33.759600px;}
._3a{width:34.956000px;}
._20{width:36.108000px;}
._59{width:37.260000px;}
._4d{width:38.748000px;}
._43{width:40.395360px;}
._4c{width:42.019680px;}
._22{width:43.225920px;}
._4b{width:44.436000px;}
._46{width:45.567600px;}
._14{width:46.817760px;}
._4f{width:48.456000px;}
._1b{width:49.944000px;}
._2b{width:51.555600px;}
._3b{width:54.864000px;}
._24{width:56.412000px;}
._47{width:58.608000px;}
._3d{width:64.308000px;}
._4e{width:66.312000px;}
._18{width:67.944000px;}
._53{width:69.408000px;}
._21{width:70.428000px;}
._27{width:72.576000px;}
._13{width:74.245440px;}
._42{width:76.584000px;}
._28{width:78.965280px;}
._17{width:81.176640px;}
._2e{width:83.066160px;}
._49{width:84.936000px;}
._1a{width:86.076000px;}
._40{width:88.361280px;}
._41{width:95.016000px;}
._3e{width:96.420000px;}
._2a{width:98.364000px;}
._37{width:99.578880px;}
._2d{width:100.584000px;}
._5c{width:101.949120px;}
._3f{width:103.132320px;}
._45{width:108.036000px;}
._1f{width:110.592000px;}
._26{width:113.617920px;}
._10{width:115.896000px;}
._38{width:117.927360px;}
._54{width:122.736000px;}
._29{width:124.668000px;}
._2c{width:126.444000px;}
._50{width:128.952000px;}
._16{width:130.844160px;}
._19{width:132.624000px;}
._51{width:134.256000px;}
._52{width:135.396000px;}
._4a{width:146.424000px;}
._1d{width:152.100000px;}
._15{width:153.540000px;}
._5a{width:188.856000px;}
._5b{width:190.092000px;}
._58{width:201.576000px;}
._56{width:206.424000px;}
._55{width:453.528000px;}
._57{width:494.640000px;}
._8{width:498.396000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs5{font-size:59.760000px;}
.fs7{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:95.760000px;}
.fs3{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:2.520000px;}
.y36{bottom:3.060000px;}
.y34{bottom:3.240000px;}
.yaf{bottom:3.600000px;}
.yac{bottom:3.645000px;}
.yaa{bottom:3.780000px;}
.y4{bottom:16.200000px;}
.y33{bottom:20.520000px;}
.yd8{bottom:22.680000px;}
.y2{bottom:28.800000px;}
.y3{bottom:30.060000px;}
.y32{bottom:37.620000px;}
.y31{bottom:54.900000px;}
.y7{bottom:71.280000px;}
.y38{bottom:72.720000px;}
.y67{bottom:131.040000px;}
.yd4{bottom:131.400000px;}
.yf1{bottom:137.016000px;}
.yf9{bottom:138.636000px;}
.y2f{bottom:142.236000px;}
.ya6{bottom:144.576000px;}
.y176{bottom:145.296000px;}
.ya7{bottom:145.836000px;}
.y66{bottom:150.150000px;}
.yd3{bottom:152.310000px;}
.y14d{bottom:156.090000px;}
.yf8{bottom:159.330000px;}
.y2e{bottom:162.930000px;}
.ya5{bottom:165.270000px;}
.y175{bottom:165.990000px;}
.y88{bottom:166.530000px;}
.y65{bottom:169.050000px;}
.y142{bottom:169.410000px;}
.yd2{bottom:171.210000px;}
.y141{bottom:173.910000px;}
.y90{bottom:174.990000px;}
.yf7{bottom:180.030000px;}
.y2d{bottom:183.630000px;}
.ya4{bottom:185.970000px;}
.y174{bottom:186.690000px;}
.y87{bottom:187.230000px;}
.y64{bottom:188.130000px;}
.ye2{bottom:188.490000px;}
.yd1{bottom:190.290000px;}
.y140{bottom:190.470000px;}
.yf0{bottom:194.070000px;}
.yd0{bottom:196.230000px;}
.yf6{bottom:200.730000px;}
.ya3{bottom:206.670000px;}
.y63{bottom:207.030000px;}
.yef{bottom:207.390000px;}
.y86{bottom:207.930000px;}
.y2c{bottom:208.110000px;}
.ycf{bottom:209.550000px;}
.ye4{bottom:212.970000px;}
.yf5{bottom:221.430000px;}
.y62{bottom:226.110000px;}
.ye3{bottom:226.290000px;}
.ya2{bottom:227.370000px;}
.y173{bottom:228.090000px;}
.y85{bottom:228.630000px;}
.y2b{bottom:228.810000px;}
.y8f{bottom:232.050000px;}
.yee{bottom:232.950000px;}
.yce{bottom:236.910000px;}
.yf4{bottom:242.130000px;}
.y61{bottom:245.010000px;}
.ya1{bottom:248.070000px;}
.y172{bottom:248.790000px;}
.y84{bottom:249.330000px;}
.y2a{bottom:249.510000px;}
.y60{bottom:250.950000px;}
.yec{bottom:253.650000px;}
.ycd{bottom:257.610000px;}
.yf3{bottom:258.870000px;}
.yed{bottom:260.490000px;}
.y8e{bottom:263.910000px;}
.y5f{bottom:264.270000px;}
.ye1{bottom:264.810000px;}
.ya0{bottom:268.770000px;}
.y171{bottom:269.490000px;}
.y8d{bottom:269.850000px;}
.y83{bottom:270.030000px;}
.yeb{bottom:274.350000px;}
.ycc{bottom:278.310000px;}
.y30{bottom:280.830000px;}
.y13e{bottom:282.990000px;}
.y8c{bottom:283.350000px;}
.ye0{bottom:283.710000px;}
.y5e{bottom:286.950000px;}
.y153{bottom:288.930000px;}
.y9f{bottom:289.470000px;}
.y170{bottom:290.190000px;}
.y82{bottom:290.730000px;}
.yea{bottom:295.050000px;}
.ycb{bottom:299.010000px;}
.y13d{bottom:301.890000px;}
.y152{bottom:302.250000px;}
.ydf{bottom:303.510000px;}
.y5c{bottom:307.650000px;}
.y113{bottom:309.630000px;}
.y9e{bottom:310.170000px;}
.y16f{bottom:310.890000px;}
.y81{bottom:311.430000px;}
.y5d{bottom:314.490000px;}
.ye9{bottom:315.750000px;}
.y114{bottom:316.470000px;}
.yca{bottom:319.710000px;}
.y13c{bottom:320.970000px;}
.yde{bottom:322.410000px;}
.y5b{bottom:328.350000px;}
.y112{bottom:330.330000px;}
.y9d{bottom:330.870000px;}
.y16e{bottom:331.590000px;}
.y80{bottom:332.130000px;}
.ye8{bottom:336.450000px;}
.y13b{bottom:339.870000px;}
.yc9{bottom:340.410000px;}
.ydd{bottom:341.310000px;}
.y5a{bottom:349.050000px;}
.y111{bottom:351.030000px;}
.y9c{bottom:351.570000px;}
.y16d{bottom:352.290000px;}
.y7f{bottom:352.830000px;}
.ye7{bottom:353.190000px;}
.y13a{bottom:358.770000px;}
.ydc{bottom:360.390000px;}
.yc8{bottom:361.110000px;}
.y14c{bottom:364.710000px;}
.y29{bottom:369.570000px;}
.y59{bottom:369.750000px;}
.y110{bottom:371.730000px;}
.y9b{bottom:372.270000px;}
.y16c{bottom:372.990000px;}
.y7e{bottom:373.530000px;}
.y139{bottom:377.850000px;}
.y14b{bottom:378.210000px;}
.ydb{bottom:379.290000px;}
.yc7{bottom:381.810000px;}
.y28{bottom:386.310000px;}
.y58{bottom:390.495000px;}
.y10f{bottom:392.475000px;}
.y9a{bottom:393.015000px;}
.y16b{bottom:393.735000px;}
.y7d{bottom:394.275000px;}
.y138{bottom:396.795000px;}
.yda{bottom:398.415000px;}
.yc6{bottom:402.555000px;}
.y57{bottom:411.195000px;}
.y10d{bottom:413.175000px;}
.y99{bottom:413.715000px;}
.y16a{bottom:414.435000px;}
.y7c{bottom:414.975000px;}
.y137{bottom:415.875000px;}
.y149{bottom:417.495000px;}
.yd9{bottom:418.035000px;}
.y10e{bottom:420.015000px;}
.y27{bottom:421.815000px;}
.yc5{bottom:423.255000px;}
.y14a{bottom:424.335000px;}
.y56{bottom:431.895000px;}
.y10c{bottom:433.875000px;}
.y98{bottom:434.415000px;}
.y136{bottom:434.775000px;}
.y169{bottom:435.135000px;}
.y7b{bottom:435.675000px;}
.yd7{bottom:437.835000px;}
.y148{bottom:438.195000px;}
.y26{bottom:442.515000px;}
.yc4{bottom:443.955000px;}
.y55{bottom:452.595000px;}
.y135{bottom:453.675000px;}
.y10b{bottom:454.575000px;}
.y97{bottom:455.115000px;}
.y168{bottom:455.835000px;}
.y7a{bottom:456.375000px;}
.y147{bottom:458.895000px;}
.y25{bottom:463.215000px;}
.yc3{bottom:464.655000px;}
.y134{bottom:472.755000px;}
.y54{bottom:473.295000px;}
.y10a{bottom:475.275000px;}
.y96{bottom:475.815000px;}
.y167{bottom:476.535000px;}
.y79{bottom:477.075000px;}
.y146{bottom:479.595000px;}
.yd6{bottom:480.135000px;}
.y24{bottom:483.915000px;}
.yc2{bottom:485.355000px;}
.y133{bottom:492.015000px;}
.y53{bottom:493.995000px;}
.y109{bottom:495.975000px;}
.y95{bottom:496.515000px;}
.y166{bottom:497.235000px;}
.y78{bottom:497.775000px;}
.yd5{bottom:499.215000px;}
.y145{bottom:499.935000px;}
.y23{bottom:504.615000px;}
.yc1{bottom:506.055000px;}
.y52{bottom:514.695000px;}
.y150{bottom:515.955000px;}
.y108{bottom:516.675000px;}
.y94{bottom:517.215000px;}
.y165{bottom:517.935000px;}
.y77{bottom:518.475000px;}
.y22{bottom:525.315000px;}
.yc0{bottom:526.755000px;}
.y51{bottom:535.395000px;}
.y14f{bottom:535.755000px;}
.y107{bottom:537.375000px;}
.y93{bottom:538.275000px;}
.y164{bottom:538.635000px;}
.y76{bottom:539.175000px;}
.y21{bottom:547.275000px;}
.ybf{bottom:547.455000px;}
.y132{bottom:547.635000px;}
.y14e{bottom:555.375000px;}
.y50{bottom:556.095000px;}
.y106{bottom:558.075000px;}
.y163{bottom:559.335000px;}
.y92{bottom:559.515000px;}
.y75{bottom:559.875000px;}
.ybe{bottom:568.155000px;}
.y131{bottom:568.335000px;}
.y20{bottom:573.555000px;}
.y4f{bottom:576.795000px;}
.y105{bottom:578.415000px;}
.y162{bottom:580.035000px;}
.y74{bottom:580.575000px;}
.y144{bottom:582.015000px;}
.y8b{bottom:587.415000px;}
.ybd{bottom:588.855000px;}
.y130{bottom:589.035000px;}
.y1f{bottom:594.255000px;}
.y104{bottom:594.435000px;}
.y4e{bottom:597.495000px;}
.y161{bottom:600.735000px;}
.y73{bottom:601.275000px;}
.y13f{bottom:608.115000px;}
.ybc{bottom:609.555000px;}
.y12f{bottom:609.735000px;}
.y103{bottom:614.235000px;}
.y1e{bottom:614.955000px;}
.y4d{bottom:618.195000px;}
.y160{bottom:621.435000px;}
.y72{bottom:621.795000px;}
.yf2{bottom:623.235000px;}
.ybb{bottom:630.255000px;}
.y12e{bottom:630.435000px;}
.y102{bottom:633.855000px;}
.y1d{bottom:635.655000px;}
.y4c{bottom:638.895000px;}
.y15f{bottom:642.165000px;}
.y71{bottom:642.525000px;}
.yba{bottom:650.985000px;}
.y12d{bottom:651.165000px;}
.y101{bottom:653.685000px;}
.y1c{bottom:657.645000px;}
.y4b{bottom:659.625000px;}
.y15e{bottom:662.865000px;}
.y70{bottom:663.225000px;}
.yb9{bottom:671.685000px;}
.y12c{bottom:671.865000px;}
.y100{bottom:673.305000px;}
.y4a{bottom:680.325000px;}
.y15d{bottom:683.565000px;}
.y1b{bottom:683.925000px;}
.yb8{bottom:692.385000px;}
.y12b{bottom:692.565000px;}
.yff{bottom:693.105000px;}
.y49{bottom:701.025000px;}
.y15c{bottom:704.265000px;}
.y1a{bottom:704.625000px;}
.yb7{bottom:713.085000px;}
.y129{bottom:713.265000px;}
.y12a{bottom:720.105000px;}
.y48{bottom:721.725000px;}
.y15b{bottom:724.965000px;}
.y19{bottom:725.325000px;}
.yfe{bottom:731.085000px;}
.yb5{bottom:733.785000px;}
.y128{bottom:733.965000px;}
.yb6{bottom:740.625000px;}
.y47{bottom:742.425000px;}
.y15a{bottom:745.665000px;}
.y18{bottom:746.025000px;}
.yb4{bottom:754.485000px;}
.y127{bottom:754.665000px;}
.y46{bottom:763.125000px;}
.y159{bottom:766.365000px;}
.y6f{bottom:766.725000px;}
.y17{bottom:768.165000px;}
.yfd{bottom:773.385000px;}
.yb3{bottom:775.185000px;}
.y126{bottom:775.365000px;}
.y45{bottom:783.825000px;}
.y158{bottom:787.065000px;}
.y6e{bottom:787.425000px;}
.ye6{bottom:788.865000px;}
.yfc{bottom:792.465000px;}
.y16{bottom:794.445000px;}
.yb2{bottom:795.885000px;}
.y125{bottom:796.065000px;}
.y44{bottom:804.525000px;}
.y157{bottom:807.765000px;}
.y6d{bottom:808.125000px;}
.yfb{bottom:811.365000px;}
.y15{bottom:815.145000px;}
.yb1{bottom:816.225000px;}
.y124{bottom:816.765000px;}
.y43{bottom:825.225000px;}
.y156{bottom:828.465000px;}
.y6c{bottom:828.825000px;}
.yfa{bottom:830.265000px;}
.yb0{bottom:835.125000px;}
.y14{bottom:835.845000px;}
.y123{bottom:837.465000px;}
.y42{bottom:845.925000px;}
.y155{bottom:849.165000px;}
.y6b{bottom:849.525000px;}
.yae{bottom:851.325000px;}
.ye5{bottom:856.365000px;}
.y13{bottom:856.545000px;}
.y122{bottom:858.165000px;}
.y41{bottom:866.625000px;}
.y154{bottom:869.865000px;}
.y6a{bottom:870.225000px;}
.yad{bottom:870.945000px;}
.y91{bottom:877.065000px;}
.y12{bottom:878.505000px;}
.y121{bottom:878.865000px;}
.y40{bottom:887.325000px;}
.yab{bottom:890.745000px;}
.y69{bottom:890.925000px;}
.y151{bottom:897.810000px;}
.y120{bottom:899.610000px;}
.y11{bottom:904.830000px;}
.y3f{bottom:908.070000px;}
.ya9{bottom:910.410000px;}
.y68{bottom:911.670000px;}
.y11f{bottom:920.310000px;}
.y10{bottom:925.530000px;}
.y3e{bottom:932.370000px;}
.ya8{bottom:933.810000px;}
.y8a{bottom:939.210000px;}
.y11e{bottom:941.010000px;}
.yf{bottom:946.230000px;}
.y3d{bottom:953.070000px;}
.y11d{bottom:961.710000px;}
.ye{bottom:966.930000px;}
.y3c{bottom:973.770000px;}
.y11c{bottom:979.170000px;}
.yd{bottom:988.890000px;}
.y3b{bottom:994.470000px;}
.y11b{bottom:998.970000px;}
.yc{bottom:1015.170000px;}
.y11a{bottom:1018.590000px;}
.yb{bottom:1035.870000px;}
.y119{bottom:1038.390000px;}
.y3a{bottom:1056.570000px;}
.y118{bottom:1058.010000px;}
.ya{bottom:1060.350000px;}
.y39{bottom:1077.270000px;}
.y117{bottom:1077.810000px;}
.y89{bottom:1084.110000px;}
.y9{bottom:1097.970000px;}
.y116{bottom:1101.210000px;}
.y8{bottom:1118.670000px;}
.y115{bottom:1120.110000px;}
.y143{bottom:1125.510000px;}
.y6{bottom:1155.960000px;}
.y1{bottom:1168.560000px;}
.y37{bottom:1181.700000px;}
.y35{bottom:1194.300000px;}
.hb{height:15.660000px;}
.h12{height:18.900000px;}
.h11{height:18.936000px;}
.h10{height:19.080000px;}
.h17{height:19.116000px;}
.hd{height:36.641953px;}
.h15{height:37.980000px;}
.h18{height:40.655391px;}
.h2{height:41.400000px;}
.h14{height:41.410195px;}
.h4{height:42.327773px;}
.h16{height:46.736719px;}
.h3{height:47.381836px;}
.h13{height:49.908867px;}
.h8{height:50.800781px;}
.ha{height:52.435898px;}
.he{height:58.121719px;}
.hf{height:59.343750px;}
.hc{height:60.679688px;}
.h5{height:63.175781px;}
.h19{height:67.120313px;}
.h9{height:68.940000px;}
.h7{height:84.023789px;}
.h6{height:126.351562px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.wc{width:51.300000px;}
.w6{width:52.740000px;}
.w22{width:67.500000px;}
.w20{width:67.680000px;}
.w21{width:67.716000px;}
.w11{width:86.256000px;}
.w12{width:104.940000px;}
.w10{width:105.120000px;}
.w17{width:105.516000px;}
.wf{width:105.696000px;}
.w1b{width:109.836000px;}
.w19{width:115.200000px;}
.w16{width:116.280000px;}
.w18{width:116.316000px;}
.w1a{width:122.220000px;}
.w1d{width:122.400000px;}
.wd{width:126.360000px;}
.we{width:126.756000px;}
.w1c{width:140.976000px;}
.w14{width:157.170000px;}
.w13{width:158.250000px;}
.w15{width:158.430000px;}
.w1e{width:204.330000px;}
.w1f{width:204.510000px;}
.w8{width:208.830000px;}
.w2{width:244.110000px;}
.wb{width:244.470000px;}
.wa{width:329.655000px;}
.w7{width:354.495000px;}
.w3{width:371.235000px;}
.w5{width:616.425000px;}
.w9{width:892.439973px;}
.w4{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x4{left:9.900000px;}
.x3c{left:17.865000px;}
.x3e{left:21.825000px;}
.x40{left:23.040000px;}
.x3b{left:26.100000px;}
.x22{left:29.520000px;}
.x10{left:36.180000px;}
.x3f{left:52.065000px;}
.x39{left:55.260000px;}
.x3d{left:58.320000px;}
.x3a{left:67.680000px;}
.x51{left:73.619987px;}
.xe{left:108.540000px;}
.x9{left:119.025000px;}
.x1{left:127.656000px;}
.x6{left:131.976000px;}
.x2e{left:138.095987px;}
.x1f{left:141.875987px;}
.x20{left:147.275987px;}
.x21{left:154.649987px;}
.x50{left:164.189987px;}
.x11{left:170.129987px;}
.x7{left:180.390000px;}
.x12{left:181.649987px;}
.x34{left:191.189973px;}
.x43{left:193.169973px;}
.x35{left:203.429987px;}
.x44{left:205.409987px;}
.x5{left:217.649987px;}
.x25{left:234.210000px;}
.x36{left:251.310000px;}
.x1b{left:255.630000px;}
.xa{left:268.094973px;}
.xb{left:274.214987px;}
.x30{left:287.535000px;}
.x4f{left:309.674973px;}
.x26{left:321.195000px;}
.x49{left:333.435000px;}
.xc{left:343.694987px;}
.x37{left:361.875000px;}
.x41{left:365.654973px;}
.x3{left:371.775000px;}
.x42{left:377.894987px;}
.x1c{left:383.115000px;}
.x13{left:392.294973px;}
.x14{left:398.414987px;}
.x4b{left:401.835000px;}
.x31{left:404.535000px;}
.x2a{left:419.654973px;}
.x2b{left:425.774987px;}
.x27{left:426.855000px;}
.x45{left:443.984973px;}
.x47{left:453.884973px;}
.x46{left:456.224987px;}
.xd{left:457.305000px;}
.x48{left:466.124987px;}
.x4c{left:470.265000px;}
.x15{left:478.004973px;}
.x16{left:484.124987px;}
.x19{left:503.564973px;}
.x1a{left:509.684987px;}
.x32{left:510.765000px;}
.x8{left:534.885000px;}
.x4a{left:538.665000px;}
.x1d{left:559.724973px;}
.x1e{left:565.844987px;}
.x23{left:573.404973px;}
.x24{left:579.524987px;}
.x28{left:585.825000px;}
.x4d{left:606.885000px;}
.x38{left:620.610000px;}
.x33{left:627.810000px;}
.x4e{left:675.330000px;}
.xf{left:701.790000px;}
.x17{left:704.849973px;}
.x29{left:707.729987px;}
.x18{left:710.969987px;}
.x2f{left:728.969987px;}
.x2c{left:731.489973px;}
.x2d{left:743.729987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls27{letter-spacing:-0.896000pt;}
.ls1e{letter-spacing:-0.832000pt;}
.ls1d{letter-spacing:-0.768000pt;}
.ls19{letter-spacing:-0.640000pt;}
.ls1b{letter-spacing:-0.576000pt;}
.ls23{letter-spacing:-0.544000pt;}
.ls4{letter-spacing:-0.512000pt;}
.lsa{letter-spacing:-0.504533pt;}
.ls33{letter-spacing:-0.400533pt;}
.ls3{letter-spacing:-0.320000pt;}
.ls22{letter-spacing:-0.256000pt;}
.ls16{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.183467pt;}
.ls2a{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.112000pt;}
.ls26{letter-spacing:-0.097067pt;}
.ls2b{letter-spacing:-0.075733pt;}
.ls28{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.048640pt;}
.ls9{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.097067pt;}
.ls13{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.128640pt;}
.lsc{letter-spacing:0.135467pt;}
.ls6{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.192000pt;}
.ls18{letter-spacing:0.232960pt;}
.ls1a{letter-spacing:0.233067pt;}
.ls1c{letter-spacing:0.256000pt;}
.ls17{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls25{letter-spacing:0.426667pt;}
.ls7{letter-spacing:0.640000pt;}
.ls12{letter-spacing:0.688000pt;}
.ls2d{letter-spacing:0.704000pt;}
.ls21{letter-spacing:1.280000pt;}
.ls24{letter-spacing:1.920000pt;}
.ls32{letter-spacing:3.200000pt;}
.ls20{letter-spacing:5.738667pt;}
.ls29{letter-spacing:5.760000pt;}
.ls1f{letter-spacing:7.018667pt;}
.ls14{letter-spacing:7.680000pt;}
.ls2c{letter-spacing:14.880000pt;}
.ls15{letter-spacing:22.400000pt;}
.lsf{letter-spacing:50.560000pt;}
.ls2e{letter-spacing:57.600000pt;}
.ls31{letter-spacing:87.680000pt;}
.ls30{letter-spacing:104.960000pt;}
.ls2f{letter-spacing:122.880000pt;}
.lse{letter-spacing:135.018667pt;}
.ls8{letter-spacing:136.298667pt;}
.ws19{word-spacing:-58.880000pt;}
.ws2{word-spacing:-31.488000pt;}
.ws22{word-spacing:-16.704000pt;}
.ws14{word-spacing:-16.640000pt;}
.ws16{word-spacing:-16.256000pt;}
.ws12{word-spacing:-16.128000pt;}
.wsa{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws1e{word-spacing:-15.936000pt;}
.ws20{word-spacing:-15.872000pt;}
.ws13{word-spacing:-15.808000pt;}
.ws1a{word-spacing:-15.744000pt;}
.ws17{word-spacing:-15.424000pt;}
.ws24{word-spacing:-15.168000pt;}
.ws1f{word-spacing:-14.991467pt;}
.ws15{word-spacing:-14.953067pt;}
.wsc{word-spacing:-14.855467pt;}
.ws23{word-spacing:-14.817067pt;}
.wse{word-spacing:-14.720000pt;}
.ws1d{word-spacing:-14.622933pt;}
.wsb{word-spacing:-14.215467pt;}
.ws1c{word-spacing:-14.176000pt;}
.ws1b{word-spacing:-14.080000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.328000pt;}
.ws5{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.096533pt;}
.ws10{word-spacing:-12.688640pt;}
.ws21{word-spacing:-12.640000pt;}
.ws18{word-spacing:-12.320000pt;}
.wsd{word-spacing:-12.192000pt;}
.ws8{word-spacing:-12.000000pt;}
.wsf{word-spacing:-11.888000pt;}
.ws9{word-spacing:-11.680000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws0{word-spacing:-10.400000pt;}
.ws25{word-spacing:-10.319467pt;}
.ws7{word-spacing:0.000000pt;}
._23{margin-left:-15.328000pt;}
._44{margin-left:-11.637333pt;}
._1c{margin-left:-10.639360pt;}
._25{margin-left:-8.224000pt;}
._1e{margin-left:-6.592000pt;}
._36{margin-left:-4.432640pt;}
._3{margin-left:-3.419093pt;}
._7{margin-left:-2.124587pt;}
._0{margin-left:-1.200640pt;}
._2{width:0.897280pt;}
._1{width:1.806507pt;}
._d{width:3.547307pt;}
._6{width:4.864000pt;}
._4{width:5.824000pt;}
._5{width:6.983253pt;}
._c{width:7.985493pt;}
._a{width:9.408000pt;}
._b{width:10.406827pt;}
._f{width:11.505067pt;}
._32{width:12.400213pt;}
._9{width:13.312000pt;}
._35{width:14.272000pt;}
._48{width:15.674667pt;}
._e{width:17.216000pt;}
._11{width:18.900480pt;}
._12{width:20.306773pt;}
._30{width:22.080000pt;}
._31{width:23.113387pt;}
._34{width:24.396373pt;}
._39{width:25.497600pt;}
._2f{width:27.018667pt;}
._3c{width:28.394667pt;}
._33{width:30.008533pt;}
._3a{width:31.072000pt;}
._20{width:32.096000pt;}
._59{width:33.120000pt;}
._4d{width:34.442667pt;}
._43{width:35.906987pt;}
._4c{width:37.350827pt;}
._22{width:38.423040pt;}
._4b{width:39.498667pt;}
._46{width:40.504533pt;}
._14{width:41.615787pt;}
._4f{width:43.072000pt;}
._1b{width:44.394667pt;}
._2b{width:45.827200pt;}
._3b{width:48.768000pt;}
._24{width:50.144000pt;}
._47{width:52.096000pt;}
._3d{width:57.162667pt;}
._4e{width:58.944000pt;}
._18{width:60.394667pt;}
._53{width:61.696000pt;}
._21{width:62.602667pt;}
._27{width:64.512000pt;}
._13{width:65.995947pt;}
._42{width:68.074667pt;}
._28{width:70.191360pt;}
._17{width:72.157013pt;}
._2e{width:73.836587pt;}
._49{width:75.498667pt;}
._1a{width:76.512000pt;}
._40{width:78.543360pt;}
._41{width:84.458667pt;}
._3e{width:85.706667pt;}
._2a{width:87.434667pt;}
._37{width:88.514560pt;}
._2d{width:89.408000pt;}
._5c{width:90.621440pt;}
._3f{width:91.673173pt;}
._45{width:96.032000pt;}
._1f{width:98.304000pt;}
._26{width:100.993707pt;}
._10{width:103.018667pt;}
._38{width:104.824320pt;}
._54{width:109.098667pt;}
._29{width:110.816000pt;}
._2c{width:112.394667pt;}
._50{width:114.624000pt;}
._16{width:116.305920pt;}
._19{width:117.888000pt;}
._51{width:119.338667pt;}
._52{width:120.352000pt;}
._4a{width:130.154667pt;}
._1d{width:135.200000pt;}
._15{width:136.480000pt;}
._5a{width:167.872000pt;}
._5b{width:168.970667pt;}
._58{width:179.178667pt;}
._56{width:183.488000pt;}
._55{width:403.136000pt;}
._57{width:439.680000pt;}
._8{width:443.018667pt;}
.fs6{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs5{font-size:53.120000pt;}
.fs7{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:85.120000pt;}
.fs3{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:2.240000pt;}
.y36{bottom:2.720000pt;}
.y34{bottom:2.880000pt;}
.yaf{bottom:3.200000pt;}
.yac{bottom:3.240000pt;}
.yaa{bottom:3.360000pt;}
.y4{bottom:14.400000pt;}
.y33{bottom:18.240000pt;}
.yd8{bottom:20.160000pt;}
.y2{bottom:25.600000pt;}
.y3{bottom:26.720000pt;}
.y32{bottom:33.440000pt;}
.y31{bottom:48.800000pt;}
.y7{bottom:63.360000pt;}
.y38{bottom:64.640000pt;}
.y67{bottom:116.480000pt;}
.yd4{bottom:116.800000pt;}
.yf1{bottom:121.792000pt;}
.yf9{bottom:123.232000pt;}
.y2f{bottom:126.432000pt;}
.ya6{bottom:128.512000pt;}
.y176{bottom:129.152000pt;}
.ya7{bottom:129.632000pt;}
.y66{bottom:133.466667pt;}
.yd3{bottom:135.386667pt;}
.y14d{bottom:138.746667pt;}
.yf8{bottom:141.626667pt;}
.y2e{bottom:144.826667pt;}
.ya5{bottom:146.906667pt;}
.y175{bottom:147.546667pt;}
.y88{bottom:148.026667pt;}
.y65{bottom:150.266667pt;}
.y142{bottom:150.586667pt;}
.yd2{bottom:152.186667pt;}
.y141{bottom:154.586667pt;}
.y90{bottom:155.546667pt;}
.yf7{bottom:160.026667pt;}
.y2d{bottom:163.226667pt;}
.ya4{bottom:165.306667pt;}
.y174{bottom:165.946667pt;}
.y87{bottom:166.426667pt;}
.y64{bottom:167.226667pt;}
.ye2{bottom:167.546667pt;}
.yd1{bottom:169.146667pt;}
.y140{bottom:169.306667pt;}
.yf0{bottom:172.506667pt;}
.yd0{bottom:174.426667pt;}
.yf6{bottom:178.426667pt;}
.ya3{bottom:183.706667pt;}
.y63{bottom:184.026667pt;}
.yef{bottom:184.346667pt;}
.y86{bottom:184.826667pt;}
.y2c{bottom:184.986667pt;}
.ycf{bottom:186.266667pt;}
.ye4{bottom:189.306667pt;}
.yf5{bottom:196.826667pt;}
.y62{bottom:200.986667pt;}
.ye3{bottom:201.146667pt;}
.ya2{bottom:202.106667pt;}
.y173{bottom:202.746667pt;}
.y85{bottom:203.226667pt;}
.y2b{bottom:203.386667pt;}
.y8f{bottom:206.266667pt;}
.yee{bottom:207.066667pt;}
.yce{bottom:210.586667pt;}
.yf4{bottom:215.226667pt;}
.y61{bottom:217.786667pt;}
.ya1{bottom:220.506667pt;}
.y172{bottom:221.146667pt;}
.y84{bottom:221.626667pt;}
.y2a{bottom:221.786667pt;}
.y60{bottom:223.066667pt;}
.yec{bottom:225.466667pt;}
.ycd{bottom:228.986667pt;}
.yf3{bottom:230.106667pt;}
.yed{bottom:231.546667pt;}
.y8e{bottom:234.586667pt;}
.y5f{bottom:234.906667pt;}
.ye1{bottom:235.386667pt;}
.ya0{bottom:238.906667pt;}
.y171{bottom:239.546667pt;}
.y8d{bottom:239.866667pt;}
.y83{bottom:240.026667pt;}
.yeb{bottom:243.866667pt;}
.ycc{bottom:247.386667pt;}
.y30{bottom:249.626667pt;}
.y13e{bottom:251.546667pt;}
.y8c{bottom:251.866667pt;}
.ye0{bottom:252.186667pt;}
.y5e{bottom:255.066667pt;}
.y153{bottom:256.826667pt;}
.y9f{bottom:257.306667pt;}
.y170{bottom:257.946667pt;}
.y82{bottom:258.426667pt;}
.yea{bottom:262.266667pt;}
.ycb{bottom:265.786667pt;}
.y13d{bottom:268.346667pt;}
.y152{bottom:268.666667pt;}
.ydf{bottom:269.786667pt;}
.y5c{bottom:273.466667pt;}
.y113{bottom:275.226667pt;}
.y9e{bottom:275.706667pt;}
.y16f{bottom:276.346667pt;}
.y81{bottom:276.826667pt;}
.y5d{bottom:279.546667pt;}
.ye9{bottom:280.666667pt;}
.y114{bottom:281.306667pt;}
.yca{bottom:284.186667pt;}
.y13c{bottom:285.306667pt;}
.yde{bottom:286.586667pt;}
.y5b{bottom:291.866667pt;}
.y112{bottom:293.626667pt;}
.y9d{bottom:294.106667pt;}
.y16e{bottom:294.746667pt;}
.y80{bottom:295.226667pt;}
.ye8{bottom:299.066667pt;}
.y13b{bottom:302.106667pt;}
.yc9{bottom:302.586667pt;}
.ydd{bottom:303.386667pt;}
.y5a{bottom:310.266667pt;}
.y111{bottom:312.026667pt;}
.y9c{bottom:312.506667pt;}
.y16d{bottom:313.146667pt;}
.y7f{bottom:313.626667pt;}
.ye7{bottom:313.946667pt;}
.y13a{bottom:318.906667pt;}
.ydc{bottom:320.346667pt;}
.yc8{bottom:320.986667pt;}
.y14c{bottom:324.186667pt;}
.y29{bottom:328.506667pt;}
.y59{bottom:328.666667pt;}
.y110{bottom:330.426667pt;}
.y9b{bottom:330.906667pt;}
.y16c{bottom:331.546667pt;}
.y7e{bottom:332.026667pt;}
.y139{bottom:335.866667pt;}
.y14b{bottom:336.186667pt;}
.ydb{bottom:337.146667pt;}
.yc7{bottom:339.386667pt;}
.y28{bottom:343.386667pt;}
.y58{bottom:347.106667pt;}
.y10f{bottom:348.866667pt;}
.y9a{bottom:349.346667pt;}
.y16b{bottom:349.986667pt;}
.y7d{bottom:350.466667pt;}
.y138{bottom:352.706667pt;}
.yda{bottom:354.146667pt;}
.yc6{bottom:357.826667pt;}
.y57{bottom:365.506667pt;}
.y10d{bottom:367.266667pt;}
.y99{bottom:367.746667pt;}
.y16a{bottom:368.386667pt;}
.y7c{bottom:368.866667pt;}
.y137{bottom:369.666667pt;}
.y149{bottom:371.106667pt;}
.yd9{bottom:371.586667pt;}
.y10e{bottom:373.346667pt;}
.y27{bottom:374.946667pt;}
.yc5{bottom:376.226667pt;}
.y14a{bottom:377.186667pt;}
.y56{bottom:383.906667pt;}
.y10c{bottom:385.666667pt;}
.y98{bottom:386.146667pt;}
.y136{bottom:386.466667pt;}
.y169{bottom:386.786667pt;}
.y7b{bottom:387.266667pt;}
.yd7{bottom:389.186667pt;}
.y148{bottom:389.506667pt;}
.y26{bottom:393.346667pt;}
.yc4{bottom:394.626667pt;}
.y55{bottom:402.306667pt;}
.y135{bottom:403.266667pt;}
.y10b{bottom:404.066667pt;}
.y97{bottom:404.546667pt;}
.y168{bottom:405.186667pt;}
.y7a{bottom:405.666667pt;}
.y147{bottom:407.906667pt;}
.y25{bottom:411.746667pt;}
.yc3{bottom:413.026667pt;}
.y134{bottom:420.226667pt;}
.y54{bottom:420.706667pt;}
.y10a{bottom:422.466667pt;}
.y96{bottom:422.946667pt;}
.y167{bottom:423.586667pt;}
.y79{bottom:424.066667pt;}
.y146{bottom:426.306667pt;}
.yd6{bottom:426.786667pt;}
.y24{bottom:430.146667pt;}
.yc2{bottom:431.426667pt;}
.y133{bottom:437.346667pt;}
.y53{bottom:439.106667pt;}
.y109{bottom:440.866667pt;}
.y95{bottom:441.346667pt;}
.y166{bottom:441.986667pt;}
.y78{bottom:442.466667pt;}
.yd5{bottom:443.746667pt;}
.y145{bottom:444.386667pt;}
.y23{bottom:448.546667pt;}
.yc1{bottom:449.826667pt;}
.y52{bottom:457.506667pt;}
.y150{bottom:458.626667pt;}
.y108{bottom:459.266667pt;}
.y94{bottom:459.746667pt;}
.y165{bottom:460.386667pt;}
.y77{bottom:460.866667pt;}
.y22{bottom:466.946667pt;}
.yc0{bottom:468.226667pt;}
.y51{bottom:475.906667pt;}
.y14f{bottom:476.226667pt;}
.y107{bottom:477.666667pt;}
.y93{bottom:478.466667pt;}
.y164{bottom:478.786667pt;}
.y76{bottom:479.266667pt;}
.y21{bottom:486.466667pt;}
.ybf{bottom:486.626667pt;}
.y132{bottom:486.786667pt;}
.y14e{bottom:493.666667pt;}
.y50{bottom:494.306667pt;}
.y106{bottom:496.066667pt;}
.y163{bottom:497.186667pt;}
.y92{bottom:497.346667pt;}
.y75{bottom:497.666667pt;}
.ybe{bottom:505.026667pt;}
.y131{bottom:505.186667pt;}
.y20{bottom:509.826667pt;}
.y4f{bottom:512.706667pt;}
.y105{bottom:514.146667pt;}
.y162{bottom:515.586667pt;}
.y74{bottom:516.066667pt;}
.y144{bottom:517.346667pt;}
.y8b{bottom:522.146667pt;}
.ybd{bottom:523.426667pt;}
.y130{bottom:523.586667pt;}
.y1f{bottom:528.226667pt;}
.y104{bottom:528.386667pt;}
.y4e{bottom:531.106667pt;}
.y161{bottom:533.986667pt;}
.y73{bottom:534.466667pt;}
.y13f{bottom:540.546667pt;}
.ybc{bottom:541.826667pt;}
.y12f{bottom:541.986667pt;}
.y103{bottom:545.986667pt;}
.y1e{bottom:546.626667pt;}
.y4d{bottom:549.506667pt;}
.y160{bottom:552.386667pt;}
.y72{bottom:552.706667pt;}
.yf2{bottom:553.986667pt;}
.ybb{bottom:560.226667pt;}
.y12e{bottom:560.386667pt;}
.y102{bottom:563.426667pt;}
.y1d{bottom:565.026667pt;}
.y4c{bottom:567.906667pt;}
.y15f{bottom:570.813333pt;}
.y71{bottom:571.133333pt;}
.yba{bottom:578.653333pt;}
.y12d{bottom:578.813333pt;}
.y101{bottom:581.053333pt;}
.y1c{bottom:584.573333pt;}
.y4b{bottom:586.333333pt;}
.y15e{bottom:589.213333pt;}
.y70{bottom:589.533333pt;}
.yb9{bottom:597.053333pt;}
.y12c{bottom:597.213333pt;}
.y100{bottom:598.493333pt;}
.y4a{bottom:604.733333pt;}
.y15d{bottom:607.613333pt;}
.y1b{bottom:607.933333pt;}
.yb8{bottom:615.453333pt;}
.y12b{bottom:615.613333pt;}
.yff{bottom:616.093333pt;}
.y49{bottom:623.133333pt;}
.y15c{bottom:626.013333pt;}
.y1a{bottom:626.333333pt;}
.yb7{bottom:633.853333pt;}
.y129{bottom:634.013333pt;}
.y12a{bottom:640.093333pt;}
.y48{bottom:641.533333pt;}
.y15b{bottom:644.413333pt;}
.y19{bottom:644.733333pt;}
.yfe{bottom:649.853333pt;}
.yb5{bottom:652.253333pt;}
.y128{bottom:652.413333pt;}
.yb6{bottom:658.333333pt;}
.y47{bottom:659.933333pt;}
.y15a{bottom:662.813333pt;}
.y18{bottom:663.133333pt;}
.yb4{bottom:670.653333pt;}
.y127{bottom:670.813333pt;}
.y46{bottom:678.333333pt;}
.y159{bottom:681.213333pt;}
.y6f{bottom:681.533333pt;}
.y17{bottom:682.813333pt;}
.yfd{bottom:687.453333pt;}
.yb3{bottom:689.053333pt;}
.y126{bottom:689.213333pt;}
.y45{bottom:696.733333pt;}
.y158{bottom:699.613333pt;}
.y6e{bottom:699.933333pt;}
.ye6{bottom:701.213333pt;}
.yfc{bottom:704.413333pt;}
.y16{bottom:706.173333pt;}
.yb2{bottom:707.453333pt;}
.y125{bottom:707.613333pt;}
.y44{bottom:715.133333pt;}
.y157{bottom:718.013333pt;}
.y6d{bottom:718.333333pt;}
.yfb{bottom:721.213333pt;}
.y15{bottom:724.573333pt;}
.yb1{bottom:725.533333pt;}
.y124{bottom:726.013333pt;}
.y43{bottom:733.533333pt;}
.y156{bottom:736.413333pt;}
.y6c{bottom:736.733333pt;}
.yfa{bottom:738.013333pt;}
.yb0{bottom:742.333333pt;}
.y14{bottom:742.973333pt;}
.y123{bottom:744.413333pt;}
.y42{bottom:751.933333pt;}
.y155{bottom:754.813333pt;}
.y6b{bottom:755.133333pt;}
.yae{bottom:756.733333pt;}
.ye5{bottom:761.213333pt;}
.y13{bottom:761.373333pt;}
.y122{bottom:762.813333pt;}
.y41{bottom:770.333333pt;}
.y154{bottom:773.213333pt;}
.y6a{bottom:773.533333pt;}
.yad{bottom:774.173333pt;}
.y91{bottom:779.613333pt;}
.y12{bottom:780.893333pt;}
.y121{bottom:781.213333pt;}
.y40{bottom:788.733333pt;}
.yab{bottom:791.773333pt;}
.y69{bottom:791.933333pt;}
.y151{bottom:798.053333pt;}
.y120{bottom:799.653333pt;}
.y11{bottom:804.293333pt;}
.y3f{bottom:807.173333pt;}
.ya9{bottom:809.253333pt;}
.y68{bottom:810.373333pt;}
.y11f{bottom:818.053333pt;}
.y10{bottom:822.693333pt;}
.y3e{bottom:828.773333pt;}
.ya8{bottom:830.053333pt;}
.y8a{bottom:834.853333pt;}
.y11e{bottom:836.453333pt;}
.yf{bottom:841.093333pt;}
.y3d{bottom:847.173333pt;}
.y11d{bottom:854.853333pt;}
.ye{bottom:859.493333pt;}
.y3c{bottom:865.573333pt;}
.y11c{bottom:870.373333pt;}
.yd{bottom:879.013333pt;}
.y3b{bottom:883.973333pt;}
.y11b{bottom:887.973333pt;}
.yc{bottom:902.373333pt;}
.y11a{bottom:905.413333pt;}
.yb{bottom:920.773333pt;}
.y119{bottom:923.013333pt;}
.y3a{bottom:939.173333pt;}
.y118{bottom:940.453333pt;}
.ya{bottom:942.533333pt;}
.y39{bottom:957.573333pt;}
.y117{bottom:958.053333pt;}
.y89{bottom:963.653333pt;}
.y9{bottom:975.973333pt;}
.y116{bottom:978.853333pt;}
.y8{bottom:994.373333pt;}
.y115{bottom:995.653333pt;}
.y143{bottom:1000.453333pt;}
.y6{bottom:1027.520000pt;}
.y1{bottom:1038.720000pt;}
.y37{bottom:1050.400000pt;}
.y35{bottom:1061.600000pt;}
.hb{height:13.920000pt;}
.h12{height:16.800000pt;}
.h11{height:16.832000pt;}
.h10{height:16.960000pt;}
.h17{height:16.992000pt;}
.hd{height:32.570625pt;}
.h15{height:33.760000pt;}
.h18{height:36.138125pt;}
.h2{height:36.800000pt;}
.h14{height:36.809062pt;}
.h4{height:37.624687pt;}
.h16{height:41.543750pt;}
.h3{height:42.117188pt;}
.h13{height:44.363437pt;}
.h8{height:45.156250pt;}
.ha{height:46.609688pt;}
.he{height:51.663750pt;}
.hf{height:52.750000pt;}
.hc{height:53.937500pt;}
.h5{height:56.156250pt;}
.h19{height:59.662500pt;}
.h9{height:61.280000pt;}
.h7{height:74.687812pt;}
.h6{height:112.312500pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.wc{width:45.600000pt;}
.w6{width:46.880000pt;}
.w22{width:60.000000pt;}
.w20{width:60.160000pt;}
.w21{width:60.192000pt;}
.w11{width:76.672000pt;}
.w12{width:93.280000pt;}
.w10{width:93.440000pt;}
.w17{width:93.792000pt;}
.wf{width:93.952000pt;}
.w1b{width:97.632000pt;}
.w19{width:102.400000pt;}
.w16{width:103.360000pt;}
.w18{width:103.392000pt;}
.w1a{width:108.640000pt;}
.w1d{width:108.800000pt;}
.wd{width:112.320000pt;}
.we{width:112.672000pt;}
.w1c{width:125.312000pt;}
.w14{width:139.706667pt;}
.w13{width:140.666667pt;}
.w15{width:140.826667pt;}
.w1e{width:181.626667pt;}
.w1f{width:181.786667pt;}
.w8{width:185.626667pt;}
.w2{width:216.986667pt;}
.wb{width:217.306667pt;}
.wa{width:293.026667pt;}
.w7{width:315.106667pt;}
.w3{width:329.986667pt;}
.w5{width:547.933333pt;}
.w9{width:793.279976pt;}
.w4{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x4{left:8.800000pt;}
.x3c{left:15.880000pt;}
.x3e{left:19.400000pt;}
.x40{left:20.480000pt;}
.x3b{left:23.200000pt;}
.x22{left:26.240000pt;}
.x10{left:32.160000pt;}
.x3f{left:46.280000pt;}
.x39{left:49.120000pt;}
.x3d{left:51.840000pt;}
.x3a{left:60.160000pt;}
.x51{left:65.439988pt;}
.xe{left:96.480000pt;}
.x9{left:105.800000pt;}
.x1{left:113.472000pt;}
.x6{left:117.312000pt;}
.x2e{left:122.751988pt;}
.x1f{left:126.111988pt;}
.x20{left:130.911988pt;}
.x21{left:137.466655pt;}
.x50{left:145.946655pt;}
.x11{left:151.226655pt;}
.x7{left:160.346667pt;}
.x12{left:161.466655pt;}
.x34{left:169.946643pt;}
.x43{left:171.706643pt;}
.x35{left:180.826655pt;}
.x44{left:182.586655pt;}
.x5{left:193.466655pt;}
.x25{left:208.186667pt;}
.x36{left:223.386667pt;}
.x1b{left:227.226667pt;}
.xa{left:238.306643pt;}
.xb{left:243.746655pt;}
.x30{left:255.586667pt;}
.x4f{left:275.266643pt;}
.x26{left:285.506667pt;}
.x49{left:296.386667pt;}
.xc{left:305.506655pt;}
.x37{left:321.666667pt;}
.x41{left:325.026643pt;}
.x3{left:330.466667pt;}
.x42{left:335.906655pt;}
.x1c{left:340.546667pt;}
.x13{left:348.706643pt;}
.x14{left:354.146655pt;}
.x4b{left:357.186667pt;}
.x31{left:359.586667pt;}
.x2a{left:373.026643pt;}
.x2b{left:378.466655pt;}
.x27{left:379.426667pt;}
.x45{left:394.653310pt;}
.x47{left:403.453310pt;}
.x46{left:405.533322pt;}
.xd{left:406.493333pt;}
.x48{left:414.333322pt;}
.x4c{left:418.013333pt;}
.x15{left:424.893310pt;}
.x16{left:430.333322pt;}
.x19{left:447.613310pt;}
.x1a{left:453.053322pt;}
.x32{left:454.013333pt;}
.x8{left:475.453333pt;}
.x4a{left:478.813333pt;}
.x1d{left:497.533310pt;}
.x1e{left:502.973322pt;}
.x23{left:509.693310pt;}
.x24{left:515.133322pt;}
.x28{left:520.733333pt;}
.x4d{left:539.453333pt;}
.x38{left:551.653333pt;}
.x33{left:558.053333pt;}
.x4e{left:600.293333pt;}
.xf{left:623.813333pt;}
.x17{left:626.533310pt;}
.x29{left:629.093322pt;}
.x18{left:631.973322pt;}
.x2f{left:647.973322pt;}
.x2c{left:650.213310pt;}
.x2d{left:661.093322pt;}
}




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