
    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_300916da9baf804545c62a92.woff')format("woff");}.ff1{font-family:ff1;line-height:0.751465;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_ef2cf62b9537097d40a5c7ed.woff')format("woff");}.ff2{font-family:ff2;line-height:1.057617;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_680aead85bf5d533bfc409df.woff')format("woff");}.ff3{font-family:ff3;line-height:0.978027;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_672ab9642704612c0c504562.woff')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_7a6c13f38a147b7f3ce6b4b1.woff')format("woff");}.ff5{font-family:ff5;line-height:0.772949;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_92c06ca93fd81be5a21c412c.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9bc4db092f66af90edd04775.woff')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_b4feb020e884746ba36338c3.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_33981a862525f91375b15e46.woff')format("woff");}.ff9{font-family:ff9;line-height:1.106934;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_2635ce1058f29ec480ac1a0f.woff')format("woff");}.ffa{font-family:ffa;line-height:4.274414;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_00363d9739cde21517390641.woff')format("woff");}.ffb{font-family:ffb;line-height:4.274414;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_b5e4a88a0ec7a528e0f3c64d.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_b2eec437617c997facf0be1c.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_f2d98c987d71953cad9e949c.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff10{font-family:ff10;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.vc{vertical-align:-182.160000px;}
.v3{vertical-align:-152.040000px;}
.vb{vertical-align:-95.760000px;}
.v2{vertical-align:-27.000000px;}
.v5{vertical-align:-14.760120px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:3.960024px;}
.v1{vertical-align:24.120120px;}
.v8{vertical-align:26.280060px;}
.vd{vertical-align:41.399940px;}
.v9{vertical-align:123.600000px;}
.va{vertical-align:129.600000px;}
.v7{vertical-align:131.040000px;}
.v6{vertical-align:137.520000px;}
.ls7{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.000060px;}
.ls27{letter-spacing:0.021960px;}
.ls11{letter-spacing:0.071940px;}
.ls1d{letter-spacing:0.072000px;}
.ls1a{letter-spacing:0.072060px;}
.ls0{letter-spacing:0.090000px;}
.lsd{letter-spacing:0.109680px;}
.lsa{letter-spacing:0.109860px;}
.ls13{letter-spacing:0.143940px;}
.ls18{letter-spacing:0.144000px;}
.ls2a{letter-spacing:0.144060px;}
.ls16{letter-spacing:0.162000px;}
.ls2{letter-spacing:0.179940px;}
.ls1{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.270000px;}
.ls26{letter-spacing:0.288060px;}
.lsb{letter-spacing:2.535780px;}
.lse{letter-spacing:2.535960px;}
.ls22{letter-spacing:2.952000px;}
.ls14{letter-spacing:3.833280px;}
.ls2c{letter-spacing:3.833400px;}
.ls20{letter-spacing:15.933540px;}
.ls21{letter-spacing:15.933720px;}
.lsc{letter-spacing:18.829800px;}
.ls1b{letter-spacing:19.533540px;}
.ls1f{letter-spacing:19.893540px;}
.ls24{letter-spacing:20.016000px;}
.ls2b{letter-spacing:21.801360px;}
.ls23{letter-spacing:22.481280px;}
.lsf{letter-spacing:23.509800px;}
.ls25{letter-spacing:36.288000px;}
.ls9{letter-spacing:38.241360px;}
.ls15{letter-spacing:41.121360px;}
.ls29{letter-spacing:43.200000px;}
.ls6{letter-spacing:44.361360px;}
.ls10{letter-spacing:54.864000px;}
.ls1c{letter-spacing:70.526640px;}
.ls2d{letter-spacing:73.881360px;}
.ls17{letter-spacing:74.601360px;}
.ls1e{letter-spacing:75.600000px;}
.ls19{letter-spacing:83.601360px;}
.ls28{letter-spacing:96.150000px;}
.ls5{letter-spacing:1520.790000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-72.000000px;}
.ws8{word-spacing:-60.120000px;}
.ws3{word-spacing:-21.150000px;}
.ws4{word-spacing:-20.970000px;}
.ws1{word-spacing:-18.000000px;}
.wsb{word-spacing:-15.912000px;}
.ws6{word-spacing:-15.840000px;}
.ws7{word-spacing:-13.248360px;}
.wsf{word-spacing:-13.226400px;}
.ws0{word-spacing:-12.150000px;}
.ws2{word-spacing:0.000000px;}
.wse{word-spacing:44.136000px;}
.wsc{word-spacing:55.800000px;}
.ws10{word-spacing:55.872000px;}
.ws11{word-spacing:64.152000px;}
.wsd{word-spacing:111.240000px;}
.wsa{word-spacing:115.896000px;}
.ws9{word-spacing:135.360000px;}
._19{margin-left:-20.168664px;}
._2b{margin-left:-15.840000px;}
._1e{margin-left:-10.358640px;}
._17{margin-left:-4.968000px;}
._16{margin-left:-3.600000px;}
._d{margin-left:-2.160000px;}
._1{margin-left:-1.118760px;}
._0{width:1.085160px;}
._8{width:3.096000px;}
._7{width:4.104000px;}
._3{width:5.400000px;}
._2{width:6.480000px;}
._12{width:7.488000px;}
._f{width:8.496000px;}
._e{width:9.648000px;}
._14{width:10.693620px;}
._6{width:11.808000px;}
._c{width:13.115520px;}
._15{width:14.348760px;}
._13{width:15.624000px;}
._b{width:16.920000px;}
._2e{width:18.388320px;}
._9{width:19.512000px;}
._2d{width:20.520000px;}
._a{width:21.528000px;}
._18{width:22.608000px;}
._5{width:24.264000px;}
._11{width:26.064000px;}
._10{width:27.144000px;}
._4{width:32.688000px;}
._1a{width:35.928000px;}
._1c{width:41.880000px;}
._1d{width:43.617600px;}
._28{width:71.904000px;}
._26{width:80.063940px;}
._29{width:92.304120px;}
._2a{width:95.663940px;}
._27{width:100.223940px;}
._21{width:103.608060px;}
._25{width:116.256000px;}
._23{width:132.480000px;}
._2f{width:154.344000px;}
._37{width:160.248000px;}
._22{width:163.631820px;}
._20{width:187.464000px;}
._36{width:192.648000px;}
._3e{width:226.272000px;}
._31{width:242.136000px;}
._32{width:252.264000px;}
._30{width:276.600000px;}
._3a{width:290.208000px;}
._3b{width:318.144000px;}
._34{width:324.696000px;}
._3d{width:330.168000px;}
._35{width:350.112000px;}
._39{width:364.176000px;}
._38{width:370.632000px;}
._33{width:390.216000px;}
._3f{width:438.672000px;}
._3c{width:630.624000px;}
._1b{width:653.400000px;}
._2c{width:1296.960000px;}
._24{width:1332.960000px;}
._1f{width:2592.240000px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:47.880000px;}
.fs9{font-size:51.120000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:60.120000px;}
.fs2{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:83.880000px;}
.fs8{font-size:88.416399px;}
.fs5{font-size:96.120000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:44.010000px;}
.y8{bottom:59.580000px;}
.y28{bottom:62.460000px;}
.y7{bottom:79.110000px;}
.y27{bottom:88.020000px;}
.y6{bottom:101.790000px;}
.y26{bottom:116.280000px;}
.y5{bottom:127.350000px;}
.yb9{bottom:137.159850px;}
.ye3{bottom:137.159997px;}
.y25{bottom:137.160000px;}
.y4{bottom:155.610000px;}
.y4b{bottom:163.440000px;}
.y6a{bottom:168.300000px;}
.yfb{bottom:170.010000px;}
.y18c{bottom:173.430000px;}
.ye2{bottom:176.310000px;}
.y3{bottom:176.490000px;}
.y16f{bottom:182.880000px;}
.y7f{bottom:185.040000px;}
.y9c{bottom:188.100000px;}
.y4a{bottom:191.250000px;}
.yb8{bottom:193.859850px;}
.y69{bottom:196.110000px;}
.ye1{bottom:197.370000px;}
.y22{bottom:200.159940px;}
.y18b{bottom:200.880000px;}
.ydf{bottom:208.799997px;}
.y16e{bottom:210.420000px;}
.yfa{bottom:212.940000px;}
.y14d{bottom:217.980000px;}
.ye0{bottom:218.520000px;}
.y49{bottom:219.060000px;}
.yb7{bottom:219.959850px;}
.y121{bottom:222.750015px;}
.y122{bottom:222.750030px;}
.y68{bottom:223.920000px;}
.y9b{bottom:225.660000px;}
.y18a{bottom:227.010000px;}
.yc7{bottom:227.370000px;}
.y21{bottom:228.089940px;}
.y120{bottom:233.130000px;}
.y7e{bottom:236.370000px;}
.y16d{bottom:236.460000px;}
.y48{bottom:246.900000px;}
.y67{bottom:251.760000px;}
.y14c{bottom:254.460000px;}
.y9a{bottom:254.910000px;}
.y20{bottom:255.899940px;}
.y189{bottom:257.700000px;}
.yf9{bottom:259.230000px;}
.yb6{bottom:261.569850px;}
.y16c{bottom:267.150000px;}
.yde{bottom:270.029997px;}
.y11f{bottom:270.210000px;}
.y47{bottom:274.710000px;}
.y11c{bottom:280.560000px;}
.y66{bottom:283.170000px;}
.y1f{bottom:283.709940px;}
.y188{bottom:285.150000px;}
.yb5{bottom:287.669850px;}
.y7d{bottom:287.760000px;}
.y14b{bottom:290.820000px;}
.y11e{bottom:290.910000px;}
.y16b{bottom:294.690000px;}
.y99{bottom:296.580000px;}
.ydd{bottom:297.029997px;}
.yf8{bottom:299.820000px;}
.y11b{bottom:301.260000px;}
.y46{bottom:302.520000px;}
.y65{bottom:310.980000px;}
.y187{bottom:311.250000px;}
.y1e{bottom:311.519940px;}
.y11d{bottom:311.610000px;}
.y7c{bottom:315.570000px;}
.y16a{bottom:320.700000px;}
.y98{bottom:322.590000px;}
.y14a{bottom:327.180000px;}
.yb4{bottom:328.079850px;}
.y45{bottom:330.330000px;}
.y11a{bottom:338.250000px;}
.ydc{bottom:338.699997px;}
.y64{bottom:338.790000px;}
.y1d{bottom:339.329940px;}
.yf7{bottom:341.310000px;}
.y186{bottom:341.940000px;}
.y7b{bottom:343.380000px;}
.y117{bottom:348.600000px;}
.y169{bottom:351.390000px;}
.y149{bottom:357.960000px;}
.y44{bottom:358.140000px;}
.yb3{bottom:358.589850px;}
.y119{bottom:358.950000px;}
.y97{bottom:363.090000px;}
.y63{bottom:366.600000px;}
.y1c{bottom:367.139940px;}
.y116{bottom:369.300000px;}
.y185{bottom:369.390000px;}
.y7a{bottom:371.190000px;}
.y168{bottom:378.930000px;}
.y118{bottom:379.650000px;}
.yf6{bottom:380.280000px;}
.y148{bottom:385.770000px;}
.ydb{bottom:385.859997px;}
.y43{bottom:385.950000px;}
.yb2{bottom:386.399850px;}
.y62{bottom:394.410000px;}
.y1b{bottom:394.949940px;}
.y184{bottom:395.490000px;}
.y79{bottom:399.000000px;}
.y96{bottom:400.260000px;}
.y167{bottom:405.030000px;}
.y115{bottom:406.379985px;}
.y112{bottom:406.559985px;}
.yf5{bottom:412.050000px;}
.yb1{bottom:412.859850px;}
.y147{bottom:413.580000px;}
.y42{bottom:413.760000px;}
.y10f{bottom:416.910000px;}
.y61{bottom:422.220000px;}
.y1a{bottom:422.759940px;}
.yda{bottom:424.829997px;}
.y183{bottom:426.180000px;}
.y95{bottom:426.360000px;}
.y78{bottom:426.810000px;}
.y114{bottom:427.079985px;}
.y111{bottom:427.529985px;}
.y166{bottom:435.630000px;}
.y10e{bottom:437.610000px;}
.y146{bottom:441.390000px;}
.y41{bottom:441.570000px;}
.yf4{bottom:444.450000px;}
.y113{bottom:447.959985px;}
.y110{bottom:448.229985px;}
.y60{bottom:450.030000px;}
.y94{bottom:452.730000px;}
.yb0{bottom:452.999850px;}
.y182{bottom:453.630000px;}
.y19{bottom:460.829940px;}
.yd9{bottom:463.169997px;}
.y165{bottom:463.170000px;}
.y145{bottom:469.200000px;}
.y40{bottom:469.380000px;}
.yf3{bottom:471.990000px;}
.y77{bottom:472.890000px;}
.y10d{bottom:474.870000px;}
.y5f{bottom:477.840000px;}
.y93{bottom:479.730000px;}
.y164{bottom:489.270000px;}
.yaf{bottom:493.229850px;}
.y144{bottom:497.010000px;}
.y3f{bottom:497.190000px;}
.y76{bottom:498.630000px;}
.yf2{bottom:499.260000px;}
.yd8{bottom:501.509997px;}
.y10c{bottom:503.310000px;}
.y92{bottom:506.640000px;}
.y181{bottom:510.420000px;}
.y5e{bottom:515.460000px;}
.y163{bottom:519.870000px;}
.yae{bottom:521.039850px;}
.y143{bottom:524.820000px;}
.y3e{bottom:525.000000px;}
.y10b{bottom:528.690000px;}
.yf1{bottom:529.139958px;}
.yd7{bottom:530.490000px;}
.y91{bottom:536.520000px;}
.y75{bottom:536.610000px;}
.y5d{bottom:543.270000px;}
.y162{bottom:547.410000px;}
.yad{bottom:547.499850px;}
.yf0{bottom:550.199958px;}
.y142{bottom:552.630000px;}
.y3d{bottom:552.810000px;}
.yd6{bottom:552.900000px;}
.y10a{bottom:554.160000px;}
.yee{bottom:561.630000px;}
.y90{bottom:563.340000px;}
.y180{bottom:567.120000px;}
.y5c{bottom:571.080000px;}
.yef{bottom:571.349958px;}
.y161{bottom:573.510000px;}
.yd5{bottom:575.310000px;}
.y109{bottom:579.720000px;}
.y141{bottom:580.440000px;}
.y3c{bottom:580.620000px;}
.yac{bottom:588.089850px;}
.y74{bottom:588.720000px;}
.y18{bottom:592.289940px;}
.y8f{bottom:593.220000px;}
.y17f{bottom:594.660000px;}
.y5b{bottom:598.890000px;}
.y160{bottom:604.110000px;}
.y108{bottom:605.730000px;}
.y140{bottom:608.250000px;}
.y3b{bottom:612.030000px;}
.y8e{bottom:620.130000px;}
.y17e{bottom:620.760000px;}
.yed{bottom:622.740000px;}
.yab{bottom:623.549850px;}
.yd4{bottom:626.070000px;}
.y5a{bottom:626.700000px;}
.y15f{bottom:630.210000px;}
.y13f{bottom:636.060000px;}
.y3a{bottom:639.930000px;}
.y107{bottom:647.160000px;}
.y8d{bottom:649.950000px;}
.y17d{bottom:651.390000px;}
.yec{bottom:651.570000px;}
.yaa{bottom:652.829850px;}
.y17{bottom:653.009940px;}
.y59{bottom:654.540000px;}
.y15e{bottom:660.930000px;}
.y73{bottom:663.360000px;}
.y13e{bottom:663.900000px;}
.y39{bottom:667.770000px;}
.yd3{bottom:668.400000px;}
.y106{bottom:674.700000px;}
.yc6{bottom:677.130000px;}
.y8c{bottom:677.490000px;}
.y58{bottom:682.350000px;}
.y15d{bottom:686.940000px;}
.y72{bottom:690.450000px;}
.yeb{bottom:690.540000px;}
.y16{bottom:691.259940px;}
.y13d{bottom:691.710000px;}
.ya9{bottom:694.949850px;}
.y38{bottom:695.580000px;}
.y8b{bottom:704.400000px;}
.yc5{bottom:704.940000px;}
.y17c{bottom:708.180000px;}
.y57{bottom:710.160000px;}
.y105{bottom:713.670000px;}
.y197{bottom:714.570000px;}
.yea{bottom:716.910000px;}
.y15c{bottom:717.630000px;}
.yd2{bottom:718.530000px;}
.y15{bottom:722.489940px;}
.y37{bottom:723.390000px;}
.y13c{bottom:729.870000px;}
.yc4{bottom:732.660000px;}
.y17b{bottom:734.190000px;}
.ya8{bottom:734.999850px;}
.y56{bottom:737.970000px;}
.y71{bottom:738.870000px;}
.y8a{bottom:742.920000px;}
.y15b{bottom:743.730000px;}
.y196{bottom:749.670000px;}
.y104{bottom:750.930000px;}
.y36{bottom:751.200000px;}
.ye9{bottom:754.530000px;}
.yc3{bottom:760.470000px;}
.y14{bottom:760.739940px;}
.y17a{bottom:764.880000px;}
.y55{bottom:765.780000px;}
.y70{bottom:766.680000px;}
.y13b{bottom:767.670000px;}
.yd1{bottom:768.390000px;}
.y15a{bottom:774.420000px;}
.ya7{bottom:775.409850px;}
.y195{bottom:776.040000px;}
.y35{bottom:779.010000px;}
.y89{bottom:780.900000px;}
.y103{bottom:788.640000px;}
.y179{bottom:790.980000px;}
.y13{bottom:791.969940px;}
.y54{bottom:793.590000px;}
.y6f{bottom:794.490000px;}
.y13a{bottom:795.480000px;}
.ye8{bottom:800.250000px;}
.y159{bottom:800.430000px;}
.ya6{bottom:801.509850px;}
.y194{bottom:802.410000px;}
.yc2{bottom:803.040000px;}
.y34{bottom:806.820000px;}
.y88{bottom:808.350000px;}
.yd0{bottom:814.200000px;}
.y53{bottom:821.400000px;}
.y178{bottom:821.670000px;}
.y6e{bottom:822.300000px;}
.y139{bottom:823.290000px;}
.y193{bottom:827.790000px;}
.y158{bottom:831.120000px;}
.y102{bottom:833.100000px;}
.y33{bottom:834.630000px;}
.y87{bottom:835.800000px;}
.y12{bottom:836.969940px;}
.ya5{bottom:838.859850px;}
.yc1{bottom:840.300000px;}
.ye7{bottom:840.660000px;}
.y177{bottom:849.120000px;}
.y52{bottom:849.210000px;}
.y138{bottom:849.390000px;}
.y192{bottom:853.350000px;}
.ycf{bottom:855.420000px;}
.y11{bottom:856.499940px;}
.y157{bottom:858.660000px;}
.y32{bottom:860.730000px;}
.y86{bottom:863.250000px;}
.ya4{bottom:866.309850px;}
.y6d{bottom:868.470000px;}
.y176{bottom:875.220000px;}
.y51{bottom:877.020000px;}
.y137{bottom:877.919970px;}
.y101{bottom:878.460000px;}
.y191{bottom:878.820000px;}
.ye6{bottom:880.620000px;}
.yc0{bottom:881.520000px;}
.y10{bottom:884.670000px;}
.y156{bottom:884.760000px;}
.y134{bottom:888.269940px;}
.y85{bottom:890.340000px;}
.y31{bottom:894.840000px;}
.y6c{bottom:898.260000px;}
.y136{bottom:898.619970px;}
.y133{bottom:898.620000px;}
.yce{bottom:901.230000px;}
.y50{bottom:904.830000px;}
.y100{bottom:905.910000px;}
.ybf{bottom:907.530000px;}
.y190{bottom:907.620000px;}
.ya3{bottom:908.429850px;}
.yf{bottom:912.750000px;}
.y155{bottom:915.450000px;}
.y135{bottom:919.319970px;}
.ye5{bottom:921.300000px;}
.y30{bottom:922.290000px;}
.y6b{bottom:927.960000px;}
.y4f{bottom:932.640000px;}
.y175{bottom:933.360000px;}
.y84{bottom:934.170000px;}
.y18f{bottom:935.070000px;}
.ycd{bottom:937.860000px;}
.ye{bottom:941.190000px;}
.y154{bottom:941.460000px;}
.yff{bottom:944.970000px;}
.y131{bottom:946.049970px;}
.y130{bottom:946.050000px;}
.ya2{bottom:946.139850px;}
.ybe{bottom:947.580000px;}
.ye4{bottom:948.660000px;}
.y174{bottom:959.460000px;}
.y4e{bottom:960.450000px;}
.y18e{bottom:961.170000px;}
.y2f{bottom:961.350000px;}
.y132{bottom:966.749970px;}
.y12f{bottom:966.750000px;}
.y153{bottom:972.150000px;}
.ycc{bottom:977.910000px;}
.y83{bottom:978.180000px;}
.yd{bottom:979.170000px;}
.yfe{bottom:980.700000px;}
.ya1{bottom:984.389850px;}
.ybd{bottom:987.900000px;}
.y4d{bottom:988.260000px;}
.y173{bottom:990.150000px;}
.y2e{bottom:991.860000px;}
.y12e{bottom:993.479970px;}
.y12d{bottom:993.480000px;}
.y152{bottom:998.250000px;}
.y12c{bottom:1014.180000px;}
.ya0{bottom:1015.079850px;}
.y4c{bottom:1016.070000px;}
.ycb{bottom:1016.880000px;}
.y172{bottom:1017.600000px;}
.yfd{bottom:1018.860000px;}
.y18d{bottom:1019.310000px;}
.y2d{bottom:1019.670000px;}
.y82{bottom:1027.860000px;}
.yc{bottom:1028.040000px;}
.ybc{bottom:1028.310000px;}
.y151{bottom:1028.940000px;}
.y12b{bottom:1040.820180px;}
.y171{bottom:1045.410000px;}
.y2c{bottom:1047.480000px;}
.y127{bottom:1051.170180px;}
.y9f{bottom:1053.690000px;}
.y81{bottom:1053.870000px;}
.y150{bottom:1054.950000px;}
.yca{bottom:1055.220000px;}
.y124{bottom:1061.520030px;}
.y12a{bottom:1061.520180px;}
.ybb{bottom:1065.570000px;}
.y123{bottom:1071.900000px;}
.y126{bottom:1071.900030px;}
.y2b{bottom:1075.320000px;}
.y170{bottom:1076.130000px;}
.y80{bottom:1079.370000px;}
.y129{bottom:1082.250180px;}
.yb{bottom:1085.040000px;}
.yfc{bottom:1087.380000px;}
.y9e{bottom:1092.420000px;}
.y125{bottom:1092.600030px;}
.yc9{bottom:1093.500000px;}
.y14f{bottom:1094.400000px;}
.y128{bottom:1102.950180px;}
.y2a{bottom:1103.130000px;}
.yba{bottom:1103.580000px;}
.ya{bottom:1113.570000px;}
.y9d{bottom:1129.680000px;}
.y29{bottom:1130.940000px;}
.y14e{bottom:1131.570000px;}
.yc8{bottom:1131.840000px;}
.y2{bottom:1151.370000px;}
.y24{bottom:1154.970000px;}
.y1{bottom:1172.160000px;}
.y23{bottom:1173.780000px;}
.h11{height:34.624160px;}
.h4{height:41.159180px;}
.he{height:42.666504px;}
.h8{height:44.062559px;}
.h7{height:48.120117px;}
.h5{height:50.214199px;}
.hb{height:50.800781px;}
.h2{height:52.769531px;}
.h10{height:54.878906px;}
.h3{height:55.863281px;}
.hd{height:57.902280px;}
.hc{height:57.902640px;}
.h15{height:59.182910px;}
.h6{height:64.160156px;}
.ha{height:67.819043px;}
.h16{height:71.613281px;}
.hf{height:74.746582px;}
.h9{height:78.574219px;}
.h1b{height:78.685312px;}
.h24{height:105.559916px;}
.h1e{height:105.560096px;}
.h20{height:105.560216px;}
.h22{height:105.560276px;}
.h23{height:146.960036px;}
.h1f{height:146.960156px;}
.h21{height:147.080216px;}
.h14{height:174.445312px;}
.h1d{height:203.228789px;}
.h13{height:207.188813px;}
.h12{height:214.219811px;}
.h1c{height:297.565145px;}
.h19{height:297.685324px;}
.h1a{height:304.045312px;}
.h18{height:305.485312px;}
.h17{height:311.965312px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x31{left:82.170000px;}
.x2d{left:87.030000px;}
.x2b{left:113.669910px;}
.x3{left:114.840000px;}
.x5{left:118.440000px;}
.x32{left:124.019983px;}
.x20{left:125.459973px;}
.x14{left:131.219994px;}
.x15{left:133.469994px;}
.x4{left:136.170000px;}
.x8{left:138.690015px;}
.x12{left:140.790015px;}
.xb{left:142.770015px;}
.x23{left:146.100060px;}
.xe{left:153.930015px;}
.x16{left:158.249994px;}
.x13{left:162.299985px;}
.x1a{left:168.870009px;}
.x21{left:178.679958px;}
.x1d{left:183.539973px;}
.x1b{left:194.250009px;}
.x1f{left:195.869973px;}
.x22{left:200.009958px;}
.x26{left:202.169670px;}
.x2c{left:204.689904px;}
.xc{left:206.310015px;}
.x1e{left:210.539973px;}
.x25{left:216.119790px;}
.x1c{left:221.249949px;}
.x6{left:230.070015px;}
.x30{left:256.080000px;}
.x11{left:272.730015px;}
.x17{left:328.530063px;}
.x10{left:337.620015px;}
.x18{left:340.140000px;}
.x28{left:350.219535px;}
.x27{left:367.769565px;}
.x1{left:376.410000px;}
.x9{left:390.900015px;}
.xd{left:394.950015px;}
.x2a{left:404.759445px;}
.x24{left:407.550015px;}
.x29{left:408.719490px;}
.xa{left:446.100015px;}
.xf{left:448.260015px;}
.x2e{left:451.230000px;}
.x19{left:460.949379px;}
.x7{left:472.110015px;}
.x2f{left:615.749970px;}
.x2{left:650.220000px;}
@media print{
.vc{vertical-align:-161.920000pt;}
.v3{vertical-align:-135.146667pt;}
.vb{vertical-align:-85.120000pt;}
.v2{vertical-align:-24.000000pt;}
.v5{vertical-align:-13.120107pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:3.520021pt;}
.v1{vertical-align:21.440107pt;}
.v8{vertical-align:23.360053pt;}
.vd{vertical-align:36.799947pt;}
.v9{vertical-align:109.866667pt;}
.va{vertical-align:115.200000pt;}
.v7{vertical-align:116.480000pt;}
.v6{vertical-align:122.240000pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.000053pt;}
.ls27{letter-spacing:0.019520pt;}
.ls11{letter-spacing:0.063947pt;}
.ls1d{letter-spacing:0.064000pt;}
.ls1a{letter-spacing:0.064053pt;}
.ls0{letter-spacing:0.080000pt;}
.lsd{letter-spacing:0.097493pt;}
.lsa{letter-spacing:0.097653pt;}
.ls13{letter-spacing:0.127947pt;}
.ls18{letter-spacing:0.128000pt;}
.ls2a{letter-spacing:0.128053pt;}
.ls16{letter-spacing:0.144000pt;}
.ls2{letter-spacing:0.159947pt;}
.ls1{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.240000pt;}
.ls26{letter-spacing:0.256053pt;}
.lsb{letter-spacing:2.254027pt;}
.lse{letter-spacing:2.254187pt;}
.ls22{letter-spacing:2.624000pt;}
.ls14{letter-spacing:3.407360pt;}
.ls2c{letter-spacing:3.407467pt;}
.ls20{letter-spacing:14.163147pt;}
.ls21{letter-spacing:14.163307pt;}
.lsc{letter-spacing:16.737600pt;}
.ls1b{letter-spacing:17.363147pt;}
.ls1f{letter-spacing:17.683147pt;}
.ls24{letter-spacing:17.792000pt;}
.ls2b{letter-spacing:19.378987pt;}
.ls23{letter-spacing:19.983360pt;}
.lsf{letter-spacing:20.897600pt;}
.ls25{letter-spacing:32.256000pt;}
.ls9{letter-spacing:33.992320pt;}
.ls15{letter-spacing:36.552320pt;}
.ls29{letter-spacing:38.400000pt;}
.ls6{letter-spacing:39.432320pt;}
.ls10{letter-spacing:48.768000pt;}
.ls1c{letter-spacing:62.690347pt;}
.ls2d{letter-spacing:65.672320pt;}
.ls17{letter-spacing:66.312320pt;}
.ls1e{letter-spacing:67.200000pt;}
.ls19{letter-spacing:74.312320pt;}
.ls28{letter-spacing:85.466667pt;}
.ls5{letter-spacing:1351.813333pt;}
.ws5{word-spacing:-64.000000pt;}
.ws8{word-spacing:-53.440000pt;}
.ws3{word-spacing:-18.800000pt;}
.ws4{word-spacing:-18.640000pt;}
.ws1{word-spacing:-16.000000pt;}
.wsb{word-spacing:-14.144000pt;}
.ws6{word-spacing:-14.080000pt;}
.ws7{word-spacing:-11.776320pt;}
.wsf{word-spacing:-11.756800pt;}
.ws0{word-spacing:-10.800000pt;}
.ws2{word-spacing:0.000000pt;}
.wse{word-spacing:39.232000pt;}
.wsc{word-spacing:49.600000pt;}
.ws10{word-spacing:49.664000pt;}
.ws11{word-spacing:57.024000pt;}
.wsd{word-spacing:98.880000pt;}
.wsa{word-spacing:103.018667pt;}
.ws9{word-spacing:120.320000pt;}
._19{margin-left:-17.927701pt;}
._2b{margin-left:-14.080000pt;}
._1e{margin-left:-9.207680pt;}
._17{margin-left:-4.416000pt;}
._16{margin-left:-3.200000pt;}
._d{margin-left:-1.920000pt;}
._1{margin-left:-0.994453pt;}
._0{width:0.964587pt;}
._8{width:2.752000pt;}
._7{width:3.648000pt;}
._3{width:4.800000pt;}
._2{width:5.760000pt;}
._12{width:6.656000pt;}
._f{width:7.552000pt;}
._e{width:8.576000pt;}
._14{width:9.505440pt;}
._6{width:10.496000pt;}
._c{width:11.658240pt;}
._15{width:12.754453pt;}
._13{width:13.888000pt;}
._b{width:15.040000pt;}
._2e{width:16.345173pt;}
._9{width:17.344000pt;}
._2d{width:18.240000pt;}
._a{width:19.136000pt;}
._18{width:20.096000pt;}
._5{width:21.568000pt;}
._11{width:23.168000pt;}
._10{width:24.128000pt;}
._4{width:29.056000pt;}
._1a{width:31.936000pt;}
._1c{width:37.226667pt;}
._1d{width:38.771200pt;}
._28{width:63.914667pt;}
._26{width:71.167947pt;}
._29{width:82.048107pt;}
._2a{width:85.034613pt;}
._27{width:89.087947pt;}
._21{width:92.096053pt;}
._25{width:103.338667pt;}
._23{width:117.760000pt;}
._2f{width:137.194667pt;}
._37{width:142.442667pt;}
._22{width:145.450507pt;}
._20{width:166.634667pt;}
._36{width:171.242667pt;}
._3e{width:201.130667pt;}
._31{width:215.232000pt;}
._32{width:224.234667pt;}
._30{width:245.866667pt;}
._3a{width:257.962667pt;}
._3b{width:282.794667pt;}
._34{width:288.618667pt;}
._3d{width:293.482667pt;}
._35{width:311.210667pt;}
._39{width:323.712000pt;}
._38{width:329.450667pt;}
._33{width:346.858667pt;}
._3f{width:389.930667pt;}
._3c{width:560.554667pt;}
._1b{width:580.800000pt;}
._2c{width:1152.853333pt;}
._24{width:1184.853333pt;}
._1f{width:2304.213333pt;}
.fs6{font-size:42.560000pt;}
.fs9{font-size:45.440000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.440000pt;}
.fs2{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.560000pt;}
.fs8{font-size:78.592355pt;}
.fs5{font-size:85.440000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:39.120000pt;}
.y8{bottom:52.960000pt;}
.y28{bottom:55.520000pt;}
.y7{bottom:70.320000pt;}
.y27{bottom:78.240000pt;}
.y6{bottom:90.480000pt;}
.y26{bottom:103.360000pt;}
.y5{bottom:113.200000pt;}
.yb9{bottom:121.919867pt;}
.ye3{bottom:121.919997pt;}
.y25{bottom:121.920000pt;}
.y4{bottom:138.320000pt;}
.y4b{bottom:145.280000pt;}
.y6a{bottom:149.600000pt;}
.yfb{bottom:151.120000pt;}
.y18c{bottom:154.160000pt;}
.ye2{bottom:156.720000pt;}
.y3{bottom:156.880000pt;}
.y16f{bottom:162.560000pt;}
.y7f{bottom:164.480000pt;}
.y9c{bottom:167.200000pt;}
.y4a{bottom:170.000000pt;}
.yb8{bottom:172.319867pt;}
.y69{bottom:174.320000pt;}
.ye1{bottom:175.440000pt;}
.y22{bottom:177.919947pt;}
.y18b{bottom:178.560000pt;}
.ydf{bottom:185.599997pt;}
.y16e{bottom:187.040000pt;}
.yfa{bottom:189.280000pt;}
.y14d{bottom:193.760000pt;}
.ye0{bottom:194.240000pt;}
.y49{bottom:194.720000pt;}
.yb7{bottom:195.519867pt;}
.y121{bottom:198.000013pt;}
.y122{bottom:198.000027pt;}
.y68{bottom:199.040000pt;}
.y9b{bottom:200.586667pt;}
.y18a{bottom:201.786667pt;}
.yc7{bottom:202.106667pt;}
.y21{bottom:202.746613pt;}
.y120{bottom:207.226667pt;}
.y7e{bottom:210.106667pt;}
.y16d{bottom:210.186667pt;}
.y48{bottom:219.466667pt;}
.y67{bottom:223.786667pt;}
.y14c{bottom:226.186667pt;}
.y9a{bottom:226.586667pt;}
.y20{bottom:227.466613pt;}
.y189{bottom:229.066667pt;}
.yf9{bottom:230.426667pt;}
.yb6{bottom:232.506533pt;}
.y16c{bottom:237.466667pt;}
.yde{bottom:240.026664pt;}
.y11f{bottom:240.186667pt;}
.y47{bottom:244.186667pt;}
.y11c{bottom:249.386667pt;}
.y66{bottom:251.706667pt;}
.y1f{bottom:252.186613pt;}
.y188{bottom:253.466667pt;}
.yb5{bottom:255.706533pt;}
.y7d{bottom:255.786667pt;}
.y14b{bottom:258.506667pt;}
.y11e{bottom:258.586667pt;}
.y16b{bottom:261.946667pt;}
.y99{bottom:263.626667pt;}
.ydd{bottom:264.026664pt;}
.yf8{bottom:266.506667pt;}
.y11b{bottom:267.786667pt;}
.y46{bottom:268.906667pt;}
.y65{bottom:276.426667pt;}
.y187{bottom:276.666667pt;}
.y1e{bottom:276.906613pt;}
.y11d{bottom:276.986667pt;}
.y7c{bottom:280.506667pt;}
.y16a{bottom:285.066667pt;}
.y98{bottom:286.746667pt;}
.y14a{bottom:290.826667pt;}
.yb4{bottom:291.626533pt;}
.y45{bottom:293.626667pt;}
.y11a{bottom:300.666667pt;}
.ydc{bottom:301.066664pt;}
.y64{bottom:301.146667pt;}
.y1d{bottom:301.626613pt;}
.yf7{bottom:303.386667pt;}
.y186{bottom:303.946667pt;}
.y7b{bottom:305.226667pt;}
.y117{bottom:309.866667pt;}
.y169{bottom:312.346667pt;}
.y149{bottom:318.186667pt;}
.y44{bottom:318.346667pt;}
.yb3{bottom:318.746533pt;}
.y119{bottom:319.066667pt;}
.y97{bottom:322.746667pt;}
.y63{bottom:325.866667pt;}
.y1c{bottom:326.346613pt;}
.y116{bottom:328.266667pt;}
.y185{bottom:328.346667pt;}
.y7a{bottom:329.946667pt;}
.y168{bottom:336.826667pt;}
.y118{bottom:337.466667pt;}
.yf6{bottom:338.026667pt;}
.y148{bottom:342.906667pt;}
.ydb{bottom:342.986664pt;}
.y43{bottom:343.066667pt;}
.yb2{bottom:343.466533pt;}
.y62{bottom:350.586667pt;}
.y1b{bottom:351.066613pt;}
.y184{bottom:351.546667pt;}
.y79{bottom:354.666667pt;}
.y96{bottom:355.786667pt;}
.y167{bottom:360.026667pt;}
.y115{bottom:361.226653pt;}
.y112{bottom:361.386653pt;}
.yf5{bottom:366.266667pt;}
.yb1{bottom:366.986533pt;}
.y147{bottom:367.626667pt;}
.y42{bottom:367.786667pt;}
.y10f{bottom:370.586667pt;}
.y61{bottom:375.306667pt;}
.y1a{bottom:375.786613pt;}
.yda{bottom:377.626664pt;}
.y183{bottom:378.826667pt;}
.y95{bottom:378.986667pt;}
.y78{bottom:379.386667pt;}
.y114{bottom:379.626653pt;}
.y111{bottom:380.026653pt;}
.y166{bottom:387.226667pt;}
.y10e{bottom:388.986667pt;}
.y146{bottom:392.346667pt;}
.y41{bottom:392.506667pt;}
.yf4{bottom:395.066667pt;}
.y113{bottom:398.186653pt;}
.y110{bottom:398.426653pt;}
.y60{bottom:400.026667pt;}
.y94{bottom:402.426667pt;}
.yb0{bottom:402.666533pt;}
.y182{bottom:403.226667pt;}
.y19{bottom:409.626613pt;}
.yd9{bottom:411.706664pt;}
.y165{bottom:411.706667pt;}
.y145{bottom:417.066667pt;}
.y40{bottom:417.226667pt;}
.yf3{bottom:419.546667pt;}
.y77{bottom:420.346667pt;}
.y10d{bottom:422.106667pt;}
.y5f{bottom:424.746667pt;}
.y93{bottom:426.426667pt;}
.y164{bottom:434.906667pt;}
.yaf{bottom:438.426533pt;}
.y144{bottom:441.786667pt;}
.y3f{bottom:441.946667pt;}
.y76{bottom:443.226667pt;}
.yf2{bottom:443.786667pt;}
.yd8{bottom:445.786664pt;}
.y10c{bottom:447.386667pt;}
.y92{bottom:450.346667pt;}
.y181{bottom:453.706667pt;}
.y5e{bottom:458.186667pt;}
.y163{bottom:462.106667pt;}
.yae{bottom:463.146533pt;}
.y143{bottom:466.506667pt;}
.y3e{bottom:466.666667pt;}
.y10b{bottom:469.946667pt;}
.yf1{bottom:470.346629pt;}
.yd7{bottom:471.546667pt;}
.y91{bottom:476.906667pt;}
.y75{bottom:476.986667pt;}
.y5d{bottom:482.906667pt;}
.y162{bottom:486.586667pt;}
.yad{bottom:486.666533pt;}
.yf0{bottom:489.066629pt;}
.y142{bottom:491.226667pt;}
.y3d{bottom:491.386667pt;}
.yd6{bottom:491.466667pt;}
.y10a{bottom:492.586667pt;}
.yee{bottom:499.226667pt;}
.y90{bottom:500.746667pt;}
.y180{bottom:504.106667pt;}
.y5c{bottom:507.626667pt;}
.yef{bottom:507.866629pt;}
.y161{bottom:509.786667pt;}
.yd5{bottom:511.386667pt;}
.y109{bottom:515.306667pt;}
.y141{bottom:515.946667pt;}
.y3c{bottom:516.106667pt;}
.yac{bottom:522.746533pt;}
.y74{bottom:523.306667pt;}
.y18{bottom:526.479947pt;}
.y8f{bottom:527.306667pt;}
.y17f{bottom:528.586667pt;}
.y5b{bottom:532.346667pt;}
.y160{bottom:536.986667pt;}
.y108{bottom:538.426667pt;}
.y140{bottom:540.666667pt;}
.y3b{bottom:544.026667pt;}
.y8e{bottom:551.226667pt;}
.y17e{bottom:551.786667pt;}
.yed{bottom:553.546667pt;}
.yab{bottom:554.266533pt;}
.yd4{bottom:556.506667pt;}
.y5a{bottom:557.066667pt;}
.y15f{bottom:560.186667pt;}
.y13f{bottom:565.386667pt;}
.y3a{bottom:568.826667pt;}
.y107{bottom:575.253333pt;}
.y8d{bottom:577.733333pt;}
.y17d{bottom:579.013333pt;}
.yec{bottom:579.173333pt;}
.yaa{bottom:580.293200pt;}
.y17{bottom:580.453280pt;}
.y59{bottom:581.813333pt;}
.y15e{bottom:587.493333pt;}
.y73{bottom:589.653333pt;}
.y13e{bottom:590.133333pt;}
.y39{bottom:593.573333pt;}
.yd3{bottom:594.133333pt;}
.y106{bottom:599.733333pt;}
.yc6{bottom:601.893333pt;}
.y8c{bottom:602.213333pt;}
.y58{bottom:606.533333pt;}
.y15d{bottom:610.613333pt;}
.y72{bottom:613.733333pt;}
.yeb{bottom:613.813333pt;}
.y16{bottom:614.453280pt;}
.y13d{bottom:614.853333pt;}
.ya9{bottom:617.733200pt;}
.y38{bottom:618.293333pt;}
.y8b{bottom:626.133333pt;}
.yc5{bottom:626.613333pt;}
.y17c{bottom:629.493333pt;}
.y57{bottom:631.253333pt;}
.y105{bottom:634.373333pt;}
.y197{bottom:635.173333pt;}
.yea{bottom:637.253333pt;}
.y15c{bottom:637.893333pt;}
.yd2{bottom:638.693333pt;}
.y15{bottom:642.213280pt;}
.y37{bottom:643.013333pt;}
.y13c{bottom:648.773333pt;}
.yc4{bottom:651.253333pt;}
.y17b{bottom:652.613333pt;}
.ya8{bottom:653.333200pt;}
.y56{bottom:655.973333pt;}
.y71{bottom:656.773333pt;}
.y8a{bottom:660.373333pt;}
.y15b{bottom:661.093333pt;}
.y196{bottom:666.373333pt;}
.y104{bottom:667.493333pt;}
.y36{bottom:667.733333pt;}
.ye9{bottom:670.693333pt;}
.yc3{bottom:675.973333pt;}
.y14{bottom:676.213280pt;}
.y17a{bottom:679.893333pt;}
.y55{bottom:680.693333pt;}
.y70{bottom:681.493333pt;}
.y13b{bottom:682.373333pt;}
.yd1{bottom:683.013333pt;}
.y15a{bottom:688.373333pt;}
.ya7{bottom:689.253200pt;}
.y195{bottom:689.813333pt;}
.y35{bottom:692.453333pt;}
.y89{bottom:694.133333pt;}
.y103{bottom:701.013333pt;}
.y179{bottom:703.093333pt;}
.y13{bottom:703.973280pt;}
.y54{bottom:705.413333pt;}
.y6f{bottom:706.213333pt;}
.y13a{bottom:707.093333pt;}
.ye8{bottom:711.333333pt;}
.y159{bottom:711.493333pt;}
.ya6{bottom:712.453200pt;}
.y194{bottom:713.253333pt;}
.yc2{bottom:713.813333pt;}
.y34{bottom:717.173333pt;}
.y88{bottom:718.533333pt;}
.yd0{bottom:723.733333pt;}
.y53{bottom:730.133333pt;}
.y178{bottom:730.373333pt;}
.y6e{bottom:730.933333pt;}
.y139{bottom:731.813333pt;}
.y193{bottom:735.813333pt;}
.y158{bottom:738.773333pt;}
.y102{bottom:740.533333pt;}
.y33{bottom:741.893333pt;}
.y87{bottom:742.933333pt;}
.y12{bottom:743.973280pt;}
.ya5{bottom:745.653200pt;}
.yc1{bottom:746.933333pt;}
.ye7{bottom:747.253333pt;}
.y177{bottom:754.773333pt;}
.y52{bottom:754.853333pt;}
.y138{bottom:755.013333pt;}
.y192{bottom:758.533333pt;}
.ycf{bottom:760.373333pt;}
.y11{bottom:761.333280pt;}
.y157{bottom:763.253333pt;}
.y32{bottom:765.093333pt;}
.y86{bottom:767.333333pt;}
.ya4{bottom:770.053200pt;}
.y6d{bottom:771.973333pt;}
.y176{bottom:777.973333pt;}
.y51{bottom:779.573333pt;}
.y137{bottom:780.373307pt;}
.y101{bottom:780.853333pt;}
.y191{bottom:781.173333pt;}
.ye6{bottom:782.773333pt;}
.yc0{bottom:783.573333pt;}
.y10{bottom:786.373333pt;}
.y156{bottom:786.453333pt;}
.y134{bottom:789.573280pt;}
.y85{bottom:791.413333pt;}
.y31{bottom:795.413333pt;}
.y6c{bottom:798.453333pt;}
.y136{bottom:798.773307pt;}
.y133{bottom:798.773333pt;}
.yce{bottom:801.093333pt;}
.y50{bottom:804.293333pt;}
.y100{bottom:805.253333pt;}
.ybf{bottom:806.693333pt;}
.y190{bottom:806.773333pt;}
.ya3{bottom:807.493200pt;}
.yf{bottom:811.333333pt;}
.y155{bottom:813.733333pt;}
.y135{bottom:817.173307pt;}
.ye5{bottom:818.933333pt;}
.y30{bottom:819.813333pt;}
.y6b{bottom:824.853333pt;}
.y4f{bottom:829.013333pt;}
.y175{bottom:829.653333pt;}
.y84{bottom:830.373333pt;}
.y18f{bottom:831.173333pt;}
.ycd{bottom:833.653333pt;}
.ye{bottom:836.613333pt;}
.y154{bottom:836.853333pt;}
.yff{bottom:839.973333pt;}
.y131{bottom:840.933307pt;}
.y130{bottom:840.933333pt;}
.ya2{bottom:841.013200pt;}
.ybe{bottom:842.293333pt;}
.ye4{bottom:843.253333pt;}
.y174{bottom:852.853333pt;}
.y4e{bottom:853.733333pt;}
.y18e{bottom:854.373333pt;}
.y2f{bottom:854.533333pt;}
.y132{bottom:859.333307pt;}
.y12f{bottom:859.333333pt;}
.y153{bottom:864.133333pt;}
.ycc{bottom:869.253333pt;}
.y83{bottom:869.493333pt;}
.yd{bottom:870.373333pt;}
.yfe{bottom:871.733333pt;}
.ya1{bottom:875.013200pt;}
.ybd{bottom:878.133333pt;}
.y4d{bottom:878.453333pt;}
.y173{bottom:880.133333pt;}
.y2e{bottom:881.653333pt;}
.y12e{bottom:883.093307pt;}
.y12d{bottom:883.093333pt;}
.y152{bottom:887.333333pt;}
.y12c{bottom:901.493333pt;}
.ya0{bottom:902.293200pt;}
.y4c{bottom:903.173333pt;}
.ycb{bottom:903.893333pt;}
.y172{bottom:904.533333pt;}
.yfd{bottom:905.653333pt;}
.y18d{bottom:906.053333pt;}
.y2d{bottom:906.373333pt;}
.y82{bottom:913.653333pt;}
.yc{bottom:913.813333pt;}
.ybc{bottom:914.053333pt;}
.y151{bottom:914.613333pt;}
.y12b{bottom:925.173493pt;}
.y171{bottom:929.253333pt;}
.y2c{bottom:931.093333pt;}
.y127{bottom:934.373493pt;}
.y9f{bottom:936.613333pt;}
.y81{bottom:936.773333pt;}
.y150{bottom:937.733333pt;}
.yca{bottom:937.973333pt;}
.y124{bottom:943.573360pt;}
.y12a{bottom:943.573493pt;}
.ybb{bottom:947.173333pt;}
.y123{bottom:952.800000pt;}
.y126{bottom:952.800027pt;}
.y2b{bottom:955.840000pt;}
.y170{bottom:956.560000pt;}
.y80{bottom:959.440000pt;}
.y129{bottom:962.000160pt;}
.yb{bottom:964.480000pt;}
.yfc{bottom:966.560000pt;}
.y9e{bottom:971.040000pt;}
.y125{bottom:971.200027pt;}
.yc9{bottom:972.000000pt;}
.y14f{bottom:972.800000pt;}
.y128{bottom:980.400160pt;}
.y2a{bottom:980.560000pt;}
.yba{bottom:980.960000pt;}
.ya{bottom:989.840000pt;}
.y9d{bottom:1004.160000pt;}
.y29{bottom:1005.280000pt;}
.y14e{bottom:1005.840000pt;}
.yc8{bottom:1006.080000pt;}
.y2{bottom:1023.440000pt;}
.y24{bottom:1026.640000pt;}
.y1{bottom:1041.920000pt;}
.y23{bottom:1043.360000pt;}
.h11{height:30.777031pt;}
.h4{height:36.585938pt;}
.he{height:37.925781pt;}
.h8{height:39.166719pt;}
.h7{height:42.773438pt;}
.h5{height:44.634844pt;}
.hb{height:45.156250pt;}
.h2{height:46.906250pt;}
.h10{height:48.781250pt;}
.h3{height:49.656250pt;}
.hd{height:51.468693pt;}
.hc{height:51.469013pt;}
.h15{height:52.607031pt;}
.h6{height:57.031250pt;}
.ha{height:60.283594pt;}
.h16{height:63.656250pt;}
.hf{height:66.441406pt;}
.h9{height:69.843750pt;}
.h1b{height:69.942500pt;}
.h24{height:93.831037pt;}
.h1e{height:93.831197pt;}
.h20{height:93.831303pt;}
.h22{height:93.831357pt;}
.h23{height:130.631143pt;}
.h1f{height:130.631250pt;}
.h21{height:130.737970pt;}
.h14{height:155.062500pt;}
.h1d{height:180.647812pt;}
.h13{height:184.167834pt;}
.h12{height:190.417610pt;}
.h1c{height:264.502351pt;}
.h19{height:264.609177pt;}
.h1a{height:270.262500pt;}
.h18{height:271.542500pt;}
.h17{height:277.302500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x31{left:73.040000pt;}
.x2d{left:77.360000pt;}
.x2b{left:101.039920pt;}
.x3{left:102.080000pt;}
.x5{left:105.280000pt;}
.x32{left:110.239985pt;}
.x20{left:111.519976pt;}
.x14{left:116.639995pt;}
.x15{left:118.639995pt;}
.x4{left:121.040000pt;}
.x8{left:123.280013pt;}
.x12{left:125.146680pt;}
.xb{left:126.906680pt;}
.x23{left:129.866720pt;}
.xe{left:136.826680pt;}
.x16{left:140.666661pt;}
.x13{left:144.266653pt;}
.x1a{left:150.106675pt;}
.x21{left:158.826629pt;}
.x1d{left:163.146643pt;}
.x1b{left:172.666675pt;}
.x1f{left:174.106643pt;}
.x22{left:177.786629pt;}
.x26{left:179.706373pt;}
.x2c{left:181.946581pt;}
.xc{left:183.386680pt;}
.x1e{left:187.146643pt;}
.x25{left:192.106480pt;}
.x1c{left:196.666621pt;}
.x6{left:204.506680pt;}
.x30{left:227.626667pt;}
.x11{left:242.426680pt;}
.x17{left:292.026723pt;}
.x10{left:300.106680pt;}
.x18{left:302.346667pt;}
.x28{left:311.306253pt;}
.x27{left:326.906280pt;}
.x1{left:334.586667pt;}
.x9{left:347.466680pt;}
.xd{left:351.066680pt;}
.x2a{left:359.786173pt;}
.x24{left:362.266680pt;}
.x29{left:363.306213pt;}
.xa{left:396.533347pt;}
.xf{left:398.453347pt;}
.x2e{left:401.093333pt;}
.x19{left:409.732781pt;}
.x7{left:419.653347pt;}
.x2f{left:547.333307pt;}
.x2{left:577.973333pt;}
}




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